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

Update all non-major dependencies #646

Open
wants to merge 1 commit into
base: 3.3.x
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 7, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/cache action patch v4.0.0 -> v4.0.2 age adoption passing confidence
codecov/codecov-action action minor v4.0.0 -> v4.4.1 age adoption passing confidence
infection/infection require-dev minor ^0.27 -> ^0.29 age adoption passing confidence
jms/serializer (source) require-dev minor 3.28.0 -> 3.30.0 age adoption passing confidence
laminas/laminas-diactoros (source) require-dev patch 3.3.0 -> 3.3.1 age adoption passing confidence
middlewares/negotiation require-dev patch 2.1.0 -> 2.1.1 age adoption passing confidence
psr/http-factory require minor 1.0.2 -> 1.1.0 age adoption passing confidence
twig/twig (source) require-dev minor 3.8.0 -> 3.10.3 age adoption passing confidence

Release Notes

actions/cache (actions/cache)

v4.0.2

Compare Source

v4.0.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4...v4.0.1

codecov/codecov-action (codecov/codecov-action)

v4.4.1

Compare Source

What's Changed

New Contributors

Full Changelog: codecov/codecov-action@v4.4.0...v4.4.1

What's Changed

New Contributors

Full Changelog: codecov/codecov-action@v4.4.0...v4.4.1

v4.4.0

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.3.1...v4.4.0

v4.3.1

Compare Source

v4.3.0

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.2.0...v4.3.0

v4.2.0

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.1.1...v4.2.0

v4.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: codecov/codecov-action@v4.1.0...v4.1.1

v4.1.0

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.0.2...v4.1.0

v4.0.2

Compare Source

What's Changed
New Contributors

Full Changelog: codecov/codecov-action@v4.0.1...v4.0.2

v4.0.1

Compare Source

What's Changed

Full Changelog: codecov/codecov-action@v4.0.0...v4.0.1

infection/infection (infection/infection)

v0.29.0

Compare Source

Full Changelog

Added:

Read about how to create custom mutators: https://infection.github.io/guide/custom-mutators.html

Changed:

v0.28.1: Use CI (GitHub, GitLab) variable to detect project path

Compare Source

Changed:

New Contributors

Full Changelog: infection/infection@0.28.0...0.28.1

v0.28.0

Compare Source

Full Changelog

Added:

v0.27.11: Add --map-source-class-to-test option to speed up Mutation Testing

Compare Source

Added:

Changed:

Full Changelog: infection/infection@0.27.10...0.27.11

v0.27.10: Add support for `sebastian/diff` v6

Compare Source

Changed:

Full Changelog: infection/infection@0.27.9...0.27.10

v0.27.9: Fix an issue with numeric data provider keys in PHPUnit >= 10

Compare Source

Fixed:

Full Changelog: infection/infection@0.27.8...0.27.9

schmittjoh/serializer (jms/serializer)

v3.30.0

Compare Source

What's Changed

Upgrading

Starting from this release doctrine/annotations is an optional package.
If you still want to use them, please make sure that you require in composer.json file.

We strongly recommend to start using Attributes with PHP 8.
You can easily migrate annotations to attributes with rector and Rector\Symfony\Set\SymfonySetList::ANNOTATIONS_TO_ATTRIBUTES rules.

New Contributors

Full Changelog: schmittjoh/serializer@3.29.1...3.30.0

v3.29.1

Compare Source

What's Changed

Full Changelog: schmittjoh/serializer@3.29.0...3.29.1

v3.29.0

Compare Source

What's Changed

New Contributors

Full Changelog: schmittjoh/serializer@3.28.0...3.29.0

laminas/laminas-diactoros (laminas/laminas-diactoros)

v3.3.1

Compare Source

Release Notes for 3.3.1

3.3.x bugfix release (patch)

3.3.1
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
renovate
middlewares/negotiation (middlewares/negotiation)

v2.1.1

Compare Source

Fixed
  • Allow middlewares/utils 4.0
php-fig/http-factory (psr/http-factory)

v1.1.0

Compare Source

twigphp/Twig (twig/twig)

v3.10.3

Compare Source

  • Fix missing ; in generated code

v3.10.2

Compare Source

  • Fix support for the deprecated escaper signature

v3.10.1

Compare Source

  • Fix BC break on escaper extension
  • Fix constant return type

v3.10.0

Compare Source

  • Make CoreExtension::formatDate, CoreExtension::convertDate, and
    CoreExtension::formatNumber part of the public API

  • Add needs_charset option for filters and functions

  • Extract the escaping logic from the EscaperExtension class to a new
    EscaperRuntime class.

    The following methods from Twig\\Extension\\EscaperExtension are
    deprecated: setEscaper(), getEscapers(), setSafeClasses,
    addSafeClasses(). Use the same methods on the
    Twig\\Runtime\\EscaperRuntime class instead.

  • Fix capturing output from extensions that still use echo

  • Fix a PHP warning in the Lexer on malformed templates

  • Fix blocks not available under some circumstances

  • Synchronize source context in templates when setting a Node on a Node

v3.9.3

Compare Source

  • Add missing twig_escape_filter_is_safe deprecated function
  • Fix yield usage with CaptureNode
  • Add missing unwrap call when using a TemplateWrapper instance internally
  • Ensure Lexer is initialized early on

v3.9.2

Compare Source

  • Fix usage of display_end hook

v3.9.1

Compare Source

  • Fix missing $blocks variable in CaptureNode

v3.9.0

Compare Source

  • Add support for PHP 8.4
  • Deprecate AbstractNodeVisitor
  • Deprecate passing Template to Environment::resolveTemplate(), Environment::load(), and Template::loadTemplate()
  • Add a new "yield" mode for output generation;
    Node implementations that use "echo" or "print" should use "yield" instead;
    all Node implementations should be flagged with #[YieldReady] once they've been made ready for "yield";
    the "use_yield" Environment option can be turned on when all nodes have been made #[YieldReady];
    "yield" will be the only strategy supported in the next major version
  • Add return type for Symfony 7 compatibility
  • Fix premature loop exit in Security Policy lookup of allowed methods/properties
  • Deprecate all internal extension functions in favor of methods on the extension classes
  • Mark all extension functions as @​internal
  • Add SourcePolicyInterface to selectively enable the Sandbox based on a template's Source
  • Throw a proper Twig exception when using cycle on an empty array

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate label Dec 7, 2023
Copy link
Contributor Author

renovate bot commented Dec 7, 2023

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ece6594 to 2c65d64 Compare December 11, 2023 16:51
@renovate renovate bot changed the title Update dependency infection/infection to v0.27.9 Update all non-major dependencies Dec 11, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f788668 to 35cfccc Compare December 14, 2023 16:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 1a22a86 to 200352d Compare January 11, 2024 19:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from bee64bb to 5f3bb7c Compare January 19, 2024 11:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 5a76bff to 352d26e Compare January 30, 2024 19:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ba7873d to e9df100 Compare February 2, 2024 00:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 53946c7 to 33c6f9a Compare February 20, 2024 00:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1d2adf9 to 152f925 Compare February 26, 2024 11:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 189248e to 56d6e9d Compare February 29, 2024 19:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 081335a to 5d4cd75 Compare March 20, 2024 11:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 26ddb73 to f3aecd0 Compare March 26, 2024 16:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f2927d8 to eee3f48 Compare April 9, 2024 20:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 23cc035 to cfc865e Compare April 18, 2024 14:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cfc865e to eb9b0c2 Compare May 2, 2024 20:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from cae2eb1 to dba6586 Compare May 16, 2024 12:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dba6586 to 80bfe62 Compare May 20, 2024 19:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2192bcc to 68f477a Compare June 4, 2024 00:08
| datasource  | package                   | from   | to     |
| ----------- | ------------------------- | ------ | ------ |
| github-tags | actions/cache             | v4.0.0 | v4.0.2 |
| github-tags | codecov/codecov-action    | v4.0.0 | v4.4.1 |
| packagist   | infection/infection       | 0.27.8 | 0.29.3 |
| packagist   | jms/serializer            | 3.28.0 | 3.30.0 |
| packagist   | laminas/laminas-diactoros | 3.3.0  | 3.3.1  |
| packagist   | middlewares/negotiation   | 2.1.0  | 2.1.1  |
| packagist   | psr/http-factory          | 1.0.2  | 1.1.0  |
| packagist   | twig/twig                 | 3.8.0  | 3.10.3 |
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 68f477a to 2ab43ae Compare June 5, 2024 08:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants