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 dependency api-platform/core to ^3.4.9 - autoclosed #139

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 4, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
api-platform/core (source) ^3.2.26 -> ^3.4.9 age adoption passing confidence

Release Notes

api-platform/core (api-platform/core)

v3.4.9

Compare Source

What's Changed

Notes

  • Parameter::getValue() now takes a default value as argument getValue(mixed $default = new ParameterNotFound()): mixed
  • Parametes::get(string $key, string $parameterClass = QueryParameter::class) (but also has and remove) now has a default value as second argument to QueryParameter::class
  • Constraint violation had the wrong message when using property, fixed by using the key instead

New Contributors

Full Changelog: api-platform/core@v3.4.8...v3.4.9

v3.4.8

Compare Source

Bug fixes
  • 4d7deeaf7 fix(jsonld): check if supportedTypes exists (#​6825)
  • 5111935d4 fix(symfony): object typed property schema collection restriction (#​6823)
  • 6bf894f6f fix(serializer): use attribute denormalization context for constructor arguments (#​6821)
  • 86c97cac3 fix(symfony): symfony 7.2 deprecations (#​6835)
  • d312eae7e fix(doctrine): fixed orm datefilter applying inner join when no filtering values have been provided (#​6849)

v3.4.7

Compare Source

Bug fixes
  • 2d25e79e0 fix(symfony): unset item_uri_template when serializing an error (#​6816)

v3.4.6

Compare Source

Bug fixes

v3.4.5

Compare Source

Bug fixes

v3.4.4

Compare Source

Bug fixes

v3.4.3

Compare Source

Bug fixes
  • 3ca599158 fix(hydra): hydra_prefix on errors (#​6704)
  • f7f605dc8 fix: check that api-platform/ramsey-uuid is installed before registering related services (#​6696)
  • fbb53e5e3 fix(symfony): metadata aware name converter has 0 arguments by default (#​6711)

v3.4.2

Compare Source

Bug fixes
  • 0ca76fc89 fix(elasticsearch): allow elasticsearch 7 (#​6689)
  • 15d61c4b7 fix(metadata): using parameters in fromClass and toClass uriVariables' options (#​6663)
  • 2e2044636 fix(metadata): parameter provider in a long running http worker (#​6683)
  • 4c58b33e8 fix(jsonapi): fixed definition name to allow using the same class names in different namespaces (#​6676)
  • 4f5f56756 fix: remove hydra prefix on errors (#​6624)
  • afe7d47d7 fix(metadata): passing class as parameter in XML ApiResource's definition (#​6659)
  • b93ee467c fix(metadata): overwriting XML ApiResource definition by YAML ApiResource definition (#​6660)

v3.4.1

Compare Source

Bug fixes
  • 219199db3 fix(symfony): missing alias to serializer context builder interface (#​6643)
  • 5f943e3bb fix(graphql): wrong exception namespace (#​6647)
  • 93314b08d fix(serializer): allow state's SerializerFilterContextBuilderInterface (#​6632)
  • 9a0afc917 fix(serializer): remove unnecessary dependency
  • e327f5f69 fix(symfony): namespace of path segment name generator services (#​6642)

v3.4.0

Compare Source

Deprecations:

Namespaces like ApiPlatform/Api or ApiPlatform/Util are deprecated and will be removed in 4.0.
You should now install api-platform/symfony instead of api-platform/core.

Read the upgrade guide for detailed steps.

Bug fixes

Various fixes for components isolation.

Features

v3.3.14

Compare Source

Bug fixes
  • 4c58b33e8 fix(jsonapi): fixed definition name to allow using the same class names in different namespaces (#​6676)

v3.3.13

Compare Source

Bug fixes

v3.3.12

Compare Source

Bug fixes
  • 0a461d749 fix(symfony): allow schema restriction for collection like property from choice constraint (#​6520)
  • 0e91b0451 fix: use correct class in FilterValidationException deprecation message (#​6549)
  • 2da8dd326 fix(symfony): replace tagged by tagged_iterator
  • 3b42c9ff2 fix: deserialization path for not denormalizable relations collected errors (#​6537)
  • 41deeb4e4 fix(symfony): fix debug:api-resource command for class with multiple resources with same uriTemplate (#​6505)
  • 52fd9818b fix(elasticsearch): change normalize return type to compatible with other normalizers (#​6493)
  • b3d7c0768 fix(openapi): allow null return type parameter

v3.3.11

Compare Source

Features

v3.3.10

Compare Source

Bug fixes

v3.3.9

Compare Source

Bug fixes

v3.3.8

Compare Source

Bug fixes
Features

These are enhancement to the experimental Parameter feature:

v3.3.7

Compare Source

Bug fixes

v3.3.6

Compare Source

Bug fixes

Notes:

The patch at #​6426 introduces a new validateAfterResolver option to mitigate the BC-break introduced in 3.3 that does the validation before calling the resolver:

new Mutation(
    resolver: 'app.graphql.mutation_resolver.activity_log',
    name: 'create',
    validateAfterResolver: true,
    validate: false
)

v3.3.5

Compare Source

Bug fixes

v3.3.4

Compare Source

Bug fixes

v3.3.3

Compare Source

Bug fixes

v3.3.2

Compare Source

Bug fixes
Notes

You can remove the event_listeners_backward_compatibility_layer flag and set use_symfony_listeners instead. The use_symfony_listeners should be true if you use controllers or if you rely on Symfony event listeners. Note that now flags like read can be forced to true if you want to call a Provider even on POST operations. These are the rules we set up on runtime if no value has been set:

if (null === $operation->canValidate()) {
    $operation = $operation->withValidate(!$request->isMethodSafe() && !$request->isMethod('DELETE'));
}

if (null === $operation->canRead()) {
    $operation = $operation->withRead($operation->getUriVariables() || $request->isMethodSafe());
}

if (null === $operation->canDeserialize()) {
    $operation = $operation->withDeserialize(\in_array($operation->getMethod(), ['POST', 'PUT', 'PATCH'], true));
}

Previously listeners did the checks before reading our flags and you could not force the values.

When using GraphQl, with event_listeners_backward_compatibility_layer: true, mutation resolver gets called before validation, when using false (the future default) validation occurs on the user's input.

v3.3.1

Compare Source

Bug fixes
  • 0a461d749 fix(symfony): allow schema restriction for collection like property from choice constraint (#​6520)
  • 0e91b0451 fix: use correct class in FilterValidationException deprecation message (#​6549)
  • 2da8dd326 fix(symfony): replace tagged by tagged_iterator
  • 3b42c9ff2 fix: deserialization path for not denormalizable relations collected errors (#​6537)
  • 41deeb4e4 fix(symfony): fix debug:api-resource command for class with multiple resources with same uriTemplate (#​6505)
  • 52fd9818b fix(elasticsearch): change normalize return type to compatible with other normalizers (#​6493)
  • b3d7c0768 fix(openapi): allow null return type parameter

v3.3.0

Compare Source

Bug fixes
Features

Configuration

📅 Schedule: Branch creation - "* * * * 0,6" in timezone America/New_York, Automerge - "* 0-3 * * 1" in timezone America/New_York.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@renovate renovate bot force-pushed the renovate/api-platform branch 3 times, most recently from 0c7961f to 24fc077 Compare May 10, 2024 13:28
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.3.2 Update dependency api-platform/core to ^3.3.3 May 10, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch 2 times, most recently from f787b1b to c0ad22b Compare May 24, 2024 18:45
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.3.3 Update dependency api-platform/core to ^3.3.4 May 24, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch 2 times, most recently from 1508e88 to 6c73ba7 Compare May 25, 2024 12:29
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.3.4 Update dependency api-platform/core to ^3.3.5 May 29, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch 2 times, most recently from 840192b to 8f83075 Compare June 1, 2024 09:11
@renovate renovate bot force-pushed the renovate/api-platform branch from 8f83075 to d807d01 Compare June 14, 2024 09:31
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.3.5 Update dependency api-platform/core to ^3.3.6 Jun 14, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch 4 times, most recently from b1f21b8 to d8a1e6d Compare June 21, 2024 18:43
@renovate renovate bot force-pushed the renovate/api-platform branch from d8a1e6d to 29e77ea Compare June 28, 2024 11:02
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.3.6 Update dependency api-platform/core to ^3.3.7 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch from 29e77ea to 05b3cd3 Compare June 29, 2024 07:32
@renovate renovate bot force-pushed the renovate/api-platform branch 4 times, most recently from 3349d25 to 0bb7d25 Compare July 11, 2024 18:36
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.3.7 Update dependency api-platform/core to ^3.3.8 Jul 11, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch 3 times, most recently from f1f7a4b to e3b5a16 Compare July 15, 2024 19:44
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.3.8 Update dependency api-platform/core to ^3.3.9 Jul 15, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch 8 times, most recently from aaf5e1d to 2fd6124 Compare October 19, 2024 10:58
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.4.3 Update dependency api-platform/core to ^3.4.4 Oct 19, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch 2 times, most recently from 48e39d6 to c3ab0fa Compare October 26, 2024 10:46
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.4.4 Update dependency api-platform/core to ^3.4.5 Oct 26, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch 3 times, most recently from a406f47 to 92415f0 Compare November 7, 2024 00:46
@renovate renovate bot force-pushed the renovate/api-platform branch from 92415f0 to 57caa08 Compare November 15, 2024 12:33
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.4.5 Update dependency api-platform/core to ^3.4.6 Nov 15, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch from 57caa08 to 34a6a71 Compare November 22, 2024 11:13
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.4.6 Update dependency api-platform/core to ^3.4.7 Nov 22, 2024
Copy link
Contributor Author

renovate bot commented Nov 22, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: composer.lock
Command failed: composer install --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Your lock file does not contain a compatible set of packages. Please run composer update.

  Problem 1
    - laminas/laminas-code is locked to version 4.13.0 and an update of this package was not requested.
    - laminas/laminas-code 4.13.0 requires php ~8.1.0 || ~8.2.0 || ~8.3.0 -> your php version (8.4.1) does not satisfy that requirement.
  Problem 2
    - nette/schema is locked to version v1.3.0 and an update of this package was not requested.
    - nette/schema v1.3.0 requires php 8.1 - 8.3 -> your php version (8.4.1) does not satisfy that requirement.
  Problem 3
    - nette/utils is locked to version v4.0.4 and an update of this package was not requested.
    - nette/utils v4.0.4 requires php >=8.0 <8.4 -> your php version (8.4.1) does not satisfy that requirement.
  Problem 4
    - friendsofphp/proxy-manager-lts is locked to version v1.0.18 and an update of this package was not requested.
    - friendsofphp/proxy-manager-lts v1.0.18 requires laminas/laminas-code ~3.4.1|^4.0 -> satisfiable by laminas/laminas-code[4.13.0].
    - laminas/laminas-code 4.13.0 requires php ~8.1.0 || ~8.2.0 || ~8.3.0 -> your php version (8.4.1) does not satisfy that requirement.


@renovate renovate bot force-pushed the renovate/api-platform branch from 34a6a71 to de05165 Compare November 29, 2024 07:54
@renovate renovate bot force-pushed the renovate/api-platform branch from de05165 to 2a9fb1f Compare December 6, 2024 12:33
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.4.7 Update dependency api-platform/core to ^3.4.8 Dec 6, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch from 2a9fb1f to 41f8a3c Compare December 13, 2024 15:01
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.4.8 Update dependency api-platform/core to ^3.4.9 Dec 13, 2024
@renovate renovate bot force-pushed the renovate/api-platform branch from 41f8a3c to cb05260 Compare December 16, 2024 19:06
@renovate renovate bot changed the title Update dependency api-platform/core to ^3.4.9 Update dependency api-platform/core to ^3.4.9 - autoclosed Dec 18, 2024
@renovate renovate bot closed this Dec 18, 2024
@renovate renovate bot deleted the renovate/api-platform branch December 18, 2024 04:46
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