Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #397

Merged
merged 1 commit into from
Feb 15, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 15, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/core (source) 7.26.8 -> 7.26.9 age adoption passing confidence devDependencies patch
@babel/preset-env (source) 7.26.8 -> 7.26.9 age adoption passing confidence devDependencies patch
astro (source) 5.2.5 -> 5.3.0 age adoption passing confidence dependencies minor
eslint (source) 9.20.0 -> 9.20.1 age adoption passing confidence devDependencies patch
jms/serializer (source) 3.32.2 -> 3.32.3 age adoption passing confidence require patch
mariadb 11.6 -> 11.7 age adoption passing confidence minor
phpstan/phpdoc-parser 2.0.0 -> 2.0.1 age adoption passing confidence require patch
phpstan/phpstan 2.1.3 -> 2.1.5 age adoption passing confidence require-dev patch
prettier (source) 3.5.0 -> 3.5.1 age adoption passing confidence devDependencies patch
rector/rector (source) 2.0.8 -> 2.0.9 age adoption passing confidence require-dev patch
sass 1.84.0 -> 1.85.0 age adoption passing confidence devDependencies minor
sass-loader 16.0.4 -> 16.0.5 age adoption passing confidence devDependencies patch
symfony/stimulus-bundle 2.22.1 -> 2.23.0 age adoption passing confidence require minor
symfony/ux-autocomplete (source) 2.22.1 -> 2.23.0 age adoption passing confidence require minor
symfony/ux-live-component (source) 2.22.1 -> 2.23.0 age adoption passing confidence require minor
tom-select (source) 2.4.2 -> 2.4.3 age adoption passing confidence devDependencies patch
twig/extra-bundle (source) 3.19.0 -> 3.20.0 age adoption passing confidence require minor
twig/markdown-extra (source) 3.19.0 -> 3.20.0 age adoption passing confidence require minor
twig/twig (source) 3.19.0 -> 3.20.0 age adoption passing confidence require minor
webpack 5.97.1 -> 5.98.0 age adoption passing confidence devDependencies minor

Release Notes

babel/babel (@​babel/core)

v7.26.9

Compare Source

🐛 Bug Fix
🏠 Internal
withastro/astro (astro)

v5.3.0

Compare Source

Minor Changes
  • #​13210 344e9bc Thanks @​VitaliyR! - Handle HEAD requests to an endpoint when a handler is not defined.

    If an endpoint defines a handler for GET, but does not define a handler for HEAD, Astro will call the GET handler and return the headers and status but an empty body.

  • #​13195 3b66955 Thanks @​MatthewLymer! - Improves SSR performance for synchronous components by avoiding the use of Promises. With this change, SSR rendering of on-demand pages can be up to 4x faster.

  • #​13145 8d4e566 Thanks @​ascorbic! - Adds support for adapters auto-configuring experimental session storage drivers.

    Adapters can now configure a default session storage driver when the experimental.session flag is enabled. If a hosting platform has a storage primitive that can be used for session storage, the adapter can automatically configure the session storage using that driver. This allows Astro to provide a more seamless experience for users who want to use sessions without needing to manually configure the session storage.

Patch Changes
  • #​13145 8d4e566 Thanks @​ascorbic! - ⚠️ BREAKING CHANGE FOR EXPERIMENTAL SESSIONS ONLY ⚠️

    Changes the experimental.session option to a boolean flag and moves session config to a top-level value. This change is to allow the new automatic session driver support. You now need to separately enable the experimental.session flag, and then configure the session driver using the top-level session key if providing manual configuration.

    defineConfig({
      // ...
      experimental: {
    -    session: {
    -      driver: 'upstash',
    -    },
    +    session: true,
      },
    +  session: {
    +    driver: 'upstash',
    +  },
    });

    You no longer need to configure a session driver if you are using an adapter that supports automatic session driver configuration and wish to use its default settings.

    defineConfig({
      adapter: node({
        mode: "standalone",
      }),
      experimental: {
    -    session: {
    -      driver: 'fs',
    -      cookie: 'astro-cookie',
    -    },
    +    session: true,
      },
    +  session: {
    +    cookie: 'astro-cookie',
    +  },
    });

    However, you can still manually configure additional driver options or choose a non-default driver to use with your adapter with the new top-level session config option. For more information, see the experimental session docs.

  • #​13101 2ed67d5 Thanks @​corneliusroemer! - Fixes a bug where HEAD and OPTIONS requests for non-prerendered pages were incorrectly rejected with 403 FORBIDDEN

v5.2.6

Compare Source

Patch Changes
eslint/eslint (eslint)

v9.20.1

Compare Source

schmittjoh/serializer (jms/serializer)

v3.32.3

Compare Source

What's Changed

Full Changelog: schmittjoh/serializer@3.32.2...3.32.3

phpstan/phpdoc-parser (phpstan/phpdoc-parser)

v2.0.1

Compare Source

  • 72e51f7 - TypeParser: Allow multiple newlines and also allow multiline union and intersection types for array shapes
  • 81de606 - Update LICENSE
  • 7adaab7 - Test inline @link
  • 04c8de0 - Slevomat CS merged PR about 2.0
phpstan/phpstan (phpstan/phpstan)

v2.1.5

Compare Source

Improvements 🔧

Bugfixes 🐛

v2.1.4

Compare Source

Improvements 🔧

Bugfixes 🐛

Function signature fixes 🤖

prettier/prettier (prettier)

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

rectorphp/rector (rector/rector)

v2.0.9: Released: Rector 2.0.9

Compare Source

Bugfixes 🐛

  • [Php81] Exclude Doctrine ODM MongoDB Document and EmbeddedDocument from ReadOnlyPropertyRector (#​6721), Thanks @​mickverm!
  • [PostRector] Handle with FQCN docblock on UnusedImportRemovingPostRector (#​6722)
  • Type hint array reduce closure (#​6725), Thanks @​peterfox!
  • [PHPStan 2.1.3] Add ReflectionAttribute and ReflectionIntersectionType stub for PHPStan 2.1.3 (#​6723)
sass/dart-sass (sass)

v1.85.0

Compare Source

  • No longer fully trim redundant selectors generated by @extend. This caused
    unacceptable performance issues for certain heavy users of @extend. We'll
    try to find a more performant way to accomplish it in the future.
webpack-contrib/sass-loader (sass-loader)

v16.0.5

Compare Source

symfony/stimulus-bundle (symfony/stimulus-bundle)

v2.23.0

Compare Source

symfony/ux-autocomplete (symfony/ux-autocomplete)

v2.23.0

Compare Source

  • Deprecate ExtraLazyChoiceLoader in favor of Symfony\Component\Form\ChoiceList\Loader\LazyChoiceLoader
  • Reset TomSelect when updating url attribute #​1505
  • Add getAttributes() method to define additional attributes for autocomplete results #​2541
symfony/ux-live-component (symfony/ux-live-component)

v2.23.0

Compare Source

  • Allow configuring the secret used to compute fingerprints and checksums.
  • Prevent __component property to be serialized when called JSON.stringify()
orchidjs/tom-select (tom-select)

v2.4.3

Compare Source

What's Changed

New Contributors

Full Changelog: orchidjs/tom-select@v2.4.2...v2.4.3

twigphp/twig-extra-bundle (twig/extra-bundle)

v3.20.0

Compare Source

twigphp/markdown-extra (twig/markdown-extra)

v3.20.0

Compare Source

twigphp/Twig (twig/twig)

v3.20.0

Compare Source

  • Fix support for ignoring syntax errors in an undefined handler in guard
  • Add configuration for Commonmark
  • Fix wrong array index
  • Bump minimum PHP version to 8.1
  • Add support for registering callbacks for undefined functions, filters or token parsers in the IntegrationTestCase
  • Use correct line number for ForElseNode
  • Fix timezone conversion on strings
webpack/webpack (webpack)

v5.98.0

Compare Source

Fixes
Performance Improvements
Chores
Features
Continuous Integration

New Contributors

Full Changelog: webpack/webpack@v5.97.1...v5.98.0


Configuration

📅 Schedule: Branch creation - "* * * * 0,6" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

Coverage report for commit: 319373f
File: coverage.xml

Summary - Lines: 58.59% ⏹️ | Methods: 52.71% ⏹️
false
FilesLinesMethods
src/Ai/Communicator
   AbstractCommunicator.php50.00% ⏹️50.00% ⏹️
   CommunicatorDefiner.php47.06% ⏹️33.33% ⏹️
   OllamaCommunicator.php72.09% ⏹️50.00% ⏹️
   OpenAiCommunicator.php70.59% ⏹️40.00% ⏹️
   PerplexicaCommunicator.php1.59% ⏹️16.67% ⏹️
src/Ai/Context
   ContextBuilder.php63.16% ⏹️50.00% ⏹️
   PerplexicaContextBuilder.php40.00% ⏹️66.67% ⏹️
src/Ai
   Message.php16.67% ⏹️50.00% ⏹️
src/Ai/Prompt
   AbstractBookPrompt.php66.67% ⏹️33.33% ⏹️
   PromptFactory.php81.82% ⏹️50.00% ⏹️
   SearchHintPrompt.php- ⏹️- ⏹️
   SummaryPrompt.php73.33% ⏹️75.00% ⏹️
   TagPrompt.php73.33% ⏹️75.00% ⏹️
src/Command
   BackupDbCommand.php- ⏹️- ⏹️
   BooksAiCommand.php- ⏹️- ⏹️
   BooksCheckCommand.php- ⏹️- ⏹️
   BooksExtractCoverCommand.php- ⏹️- ⏹️
   BooksRelocateCommand.php- ⏹️- ⏹️
   BooksScanCommand.php- ⏹️- ⏹️
   CreateUserCommand.php90.91% ⏹️66.67% ⏹️
   TranslationRetrieveFromProfilerCommand.php- ⏹️- ⏹️
src/Config
   ConfigValue.php28.57% ⏹️33.33% ⏹️
src/Controller
   AbstractController.php64.86% ⏹️14.29% ⏹️
   AiModelController.php79.76% ⏹️40.00% ⏹️
   AuthorController.php94.74% ⏹️- ⏹️
   AutocompleteGroupController.php74.07% ⏹️- ⏹️
   BookController.php45.87% ⏹️22.22% ⏹️
   DefaultController.php74.04% ⏹️20.00% ⏹️
   GroupController.php83.33% ⏹️50.00% ⏹️
   InstanceConfigurationController.php95.00% ⏹️- ⏹️
   LoginController.php85.71% ⏹️50.00% ⏹️
   OpdsAccessController.php92.31% ⏹️50.00% ⏹️
   ShelfCrudController.php66.67% ⏹️33.33% ⏹️
   UserController.php34.72% ⏹️40.00% ⏹️
src/Controller/Kobo
   KoboDeviceController.php40.00% ⏹️16.67% ⏹️
src/Controller/Kobo/Api
   ApiEndpointController.php- ⏹️- ⏹️
   ImageController.php66.67% ⏹️50.00% ⏹️
src/Controller/Kobo/Api/V1
   ProductsController.php75.00% ⏹️50.00% ⏹️
   TagController.php75.61% ⏹️25.00% ⏹️
src/Controller/Kobo/Api/V1/Library
   MetadataController.php83.33% ⏹️50.00% ⏹️
   StateController.php86.67% ⏹️25.00% ⏹️
src/Controller/Kobo/Api/V3
   ContentController.php28.57% ⏹️66.67% ⏹️
src/Controller/OPDS
   OpdsController.php34.52% ⏹️11.11% ⏹️
src/Entity
   AiModel.php88.89% ⏹️92.31% ⏹️
   Book.php41.22% ⏹️53.52% ⏹️
   BookInteraction.php54.29% ⏹️54.17% ⏹️
   BookmarkUser.php64.29% ⏹️61.90% ⏹️
   InstanceConfiguration.php28.57% ⏹️40.00% ⏹️
   KoboDevice.php63.16% ⏹️64.00% ⏹️
   KoboSyncedBook.php64.29% ⏹️50.00% ⏹️
   OpdsAccess.php75.00% ⏹️83.33% ⏹️
   RandomGeneratorTrait.php- ⏹️- ⏹️
   Shelf.php77.55% ⏹️68.97% ⏹️
   User.php40.40% ⏹️48.00% ⏹️
   UuidGeneratorTrait.php66.67% ⏹️- ⏹️
src/Enum
   AgeCategory.php93.33% ⏹️66.67% ⏹️
   AiMessageRole.php- ⏹️- ⏹️
   ReadStatus.php85.71% ⏹️66.67% ⏹️
   ReadingList.php85.71% ⏹️66.67% ⏹️
src/EventListener
   LanguageListener.php90.91% ⏹️50.00% ⏹️
   LoginListener.php85.71% ⏹️50.00% ⏹️
src/EventSubscriber
   KoboLogRequestSubscriber.php84.00% ⏹️75.00% ⏹️
src/Exception
   BookExtractionException.php- ⏹️- ⏹️
   BookFileNotFound.php- ⏹️- ⏹️
src/Form
   LabelTranslationFormExtension.php90.91% ⏹️60.00% ⏹️
   ShelfType.php72.73% ⏹️50.00% ⏹️
src/Kobo
   DownloadHelper.php89.55% ⏹️70.00% ⏹️
   SyncTokenParser.php88.24% ⏹️50.00% ⏹️
   UpstreamSyncMerger.php57.14% ⏹️50.00% ⏹️
src/Kobo/ImageProcessor
   CoverTransformer.php62.07% ⏹️- ⏹️
src/Kobo/Kepubify
   KebpubifyCachedData.php25.00% ⏹️50.00% ⏹️
   KepubifyMessageHandler.php54.84% ⏹️25.00% ⏹️
src/Kobo/ParamConverter
   KoboParamConverter.php95.00% ⏹️83.33% ⏹️
src/Kobo/Proxy
   KoboHeaderFilterTrait.php74.36% ⏹️50.00% ⏹️
   KoboProxyListener.php27.27% ⏹️50.00% ⏹️
   KoboProxyLogger.php- ⏹️- ⏹️
   KoboProxyLoggerFactory.php14.29% ⏹️33.33% ⏹️
   KoboStoreProxy.php77.33% ⏹️76.47% ⏹️
src/Kobo/Request
   TagDeleteRequest.php80.00% ⏹️- ⏹️
src/Kobo/Response
   ReadingStateResponse.php89.74% ⏹️40.00% ⏹️
   SyncResponse.php91.11% ⏹️86.67% ⏹️
   SyncResponseHelper.php81.25% ⏹️60.00% ⏹️
src/OPDS
   Opds.php47.50% ⏹️57.14% ⏹️
src/Repository
   BookInteractionRepository.php93.94% ⏹️33.33% ⏹️
   BookRepository.php85.85% ⏹️57.14% ⏹️
   BookmarkUserRepository.php- ⏹️- ⏹️
   InstanceConfigurationRepository.php25.00% ⏹️50.00% ⏹️
   KoboDeviceRepository.php57.14% ⏹️75.00% ⏹️
   ShelfRepository.php66.10% ⏹️75.00% ⏹️
   UserRepository.php63.64% ⏹️75.00% ⏹️
src/Security
   KoboAccessTokenAuthenticator.php65.22% ⏹️50.00% ⏹️
   KoboTokenExtractor.php76.92% ⏹️40.00% ⏹️
   KoboTokenHandler.php71.43% ⏹️50.00% ⏹️
   OpdsTokenExtractor.php41.67% ⏹️25.00% ⏹️
   OpdsTokenHandler.php80.00% ⏹️50.00% ⏹️
src/Security/Voter
   AiFeaturesVoter.php75.00% ⏹️66.67% ⏹️
   BookInteractionVoter.php14.29% ⏹️50.00% ⏹️
   BookVoter.php83.33% ⏹️50.00% ⏹️
   KoboDeviceVoter.php70.00% ⏹️50.00% ⏹️
   RelocationVoter.php50.00% ⏹️66.67% ⏹️
src/Service
   BookFileSystemManager.php15.09% ⏹️28.21% ⏹️
   BookInteractionService.php64.71% ⏹️- ⏹️
   BookManager.php- ⏹️- ⏹️
   BookProgressionService.php79.55% ⏹️20.00% ⏹️
   ConnectionKeepAliveSubscriber.php80.00% ⏹️- ⏹️
   KoboSyncTokenExtractor.php70.00% ⏹️80.00% ⏹️
   ThemeSelector.php83.33% ⏹️66.67% ⏹️
src/Service/Search
   SearchHelper.php57.14% ⏹️37.50% ⏹️
src/Twig/Components
   AddNewShelf.php- ⏹️- ⏹️
   Assistant.php18.29% ⏹️30.00% ⏹️
   BootstrapModal.php- ⏹️- ⏹️
   FieldGuesser.php- ⏹️- ⏹️
   InlineEditGroup.php- ⏹️- ⏹️
   InlineEditInteraction.php23.38% ⏹️41.67% ⏹️
   InlineEditMultiple.php- ⏹️- ⏹️
   InlineEditVerified.php25.00% ⏹️50.00% ⏹️
   Search.php69.81% ⏹️50.00% ⏹️
   UploadBookPicture.php- ⏹️- ⏹️
src/Twig/Runtime
   ThemeExtensionRuntime.php80.00% ⏹️50.00% ⏹️

🤖 comment via lucassabreu/comment-coverage-clover

@renovate renovate bot merged commit 2156ead into main Feb 15, 2025
3 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch February 15, 2025 05:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants