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

Bump the minor group in /backend with 6 updates #25

Merged
merged 1 commit into from
Apr 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 29, 2024

Bumps the minor group in /backend with 6 updates:

Package From To
lexik/jwt-authentication-bundle 2.20.3 2.21.0
nelmio/api-doc-bundle 4.25.2 4.26.1
phpstan/phpstan-doctrine 1.3.65 1.3.69
phpstan/phpstan-symfony 1.3.9 1.3.12
phpunit/phpunit 11.1.2 11.1.3
symfony/maker-bundle 1.58.0 1.59.0

Updates lexik/jwt-authentication-bundle from 2.20.3 to 2.21.0

Changelog

Sourced from lexik/jwt-authentication-bundle's changelog.

2.21.0 (2024-04-27)

Commits
  • d57159d Update CHANGELOG for v2.21.0
  • ed77442 feature #1218 Invalidate a JWT token - Adding the jti claim by the JWTManager...
  • 069b7bb Invalidate a JWT token - Adding the jti claim by the JWTManager class instead...
  • 3785c0f feature #1170 feat: Invalidate a JWT token (ldaspt)
  • bb8aa6d feat: Invalidate a JWT token
  • 3d7359d Rector
  • c3f89d5 Fix CS
  • 60770f1 Fix CI 2.x
  • d737b37 feature #1207 Web-Token Framework simplified (Spomky)
  • 993168e Web-Token Framework simplified
  • Additional commits viewable in compare view

Updates nelmio/api-doc-bundle from 4.25.2 to 4.26.1

Release notes

Sourced from nelmio/api-doc-bundle's releases.

v4.26.1

What's Changed

Full Changelog: nelmio/NelmioApiDocBundle@v4.26.0...v4.26.1

v4.26.0

What's Changed

New Contributors

Full Changelog: nelmio/NelmioApiDocBundle@4.25.3...v4.26.0

4.25.3

What's Changed

Full Changelog: nelmio/NelmioApiDocBundle@4.25.2...4.25.3

Changelog

Sourced from nelmio/api-doc-bundle's changelog.

CHANGELOG

4.26.0

  • Add ability to configure UI through configuration
nelmio_api_doc:
  html_config:
    assets_mode: bundle
    redocly_config:
      expandResponses: '200,201'
      hideDownloadButton: true
    swagger_ui_config:
      deepLinking: true

4.25.0

  • Added support for JMS @​Discriminator annotation/attribute
    #[\JMS\Serializer\Annotation\Discriminator(field: 'type', map: ['car' => Car::class, 'plane' => Plane::class])]
    abstract class Vehicle { }
    class Car extends Vehicle { }
    class Plane extends Vehicle { }

4.24.0

  • Added support for some integer ranges (https://phpstan.org/writing-php-code/phpdoc-types#integer-ranges).
    Annotations attached to integer properties like:
      /**
       * @var int<6, 11>
       * @var int<min, 11>
       * @var int<6, max>
       * @var positive-int
       * @var negative-int
       */
    will be interpreted as appropriate minimum and maximum properties in the generated OpenAPI specification.

Minor breaking change

Dropped support for PHP 7.2 and PHP 7.3. PHP 7.4 is the minimum required version now.

4.23.0

  • Cache configuration option nelmio_api_doc.cache.item_id now automatically gets the area appended.
    nelmio_api_doc:

... (truncated)

Commits

Updates phpstan/phpstan-doctrine from 1.3.65 to 1.3.69

Release notes

Sourced from phpstan/phpstan-doctrine's releases.

1.3.69

  • ac56740 - Revert "Add __benevolent return types to doctrine Result stub"

1.3.68

  • 1e59c4e - Add __benevolent return types to doctrine Result stub

1.3.67

  • 664e380 - Fix compatibility with DBAL 4

1.3.66

  • 45aa443 - Enforce literal string for connection execute methods
Commits
  • ac56740 Revert "Add __benevolent return types to doctrine Result stub"
  • 1e59c4e Add __benevolent return types to doctrine Result stub
  • 664e380 Fix compatibility with DBAL 4
  • 45aa443 Enforce literal string for connection execute methods
  • See full diff in compare view

Updates phpstan/phpstan-symfony from 1.3.9 to 1.3.12

Release notes

Sourced from phpstan/phpstan-symfony's releases.

1.3.12

  • f4b9407 - Synchronize stub with symfony

1.3.11

  • 3fbf634 - Synchronize stub with symfony

1.3.10

  • 99848d8 - Add stub for Compound::getConstraints()
Commits

Updates phpunit/phpunit from 11.1.2 to 11.1.3

Release notes

Sourced from phpunit/phpunit's releases.

PHPUnit 11.1.3

Fixed

  • #5771: JUnit XML logger may crash when test that is run in separate process exits unexpectedly
  • #5819: Duplicate keys from different data providers are not handled properly

How to install or update PHPUnit

Changelog

Sourced from phpunit/phpunit's changelog.

[11.1.3] - 2024-04-24

Fixed

  • #5771: JUnit XML logger may crash when test that is run in separate process exits unexpectedly
  • #5819: Duplicate keys from different data providers are not handled properly
Commits
  • d475be0 Prepare release
  • eeb58ad Merge branch '10.5' into 11.1
  • 547d314 Prepare release
  • 5fc31bd Merge branch '10.5' into 11.1
  • 6da42ed Make this test work on Windows
  • d02eef1 Merge branch '10.5' into 11.1
  • 371fc2c Update ChangeLog
  • 77dc808 Use JUnit XML logfile as expectation instead of test runner output
  • c722fb2 Do not crash when test run in child process ends unexpectedly and `--log-juni...
  • b2b3555 Add --log-junit to test
  • Additional commits viewable in compare view

Updates symfony/maker-bundle from 1.58.0 to 1.59.0

Release notes

Sourced from symfony/maker-bundle's releases.

So long make:auth, Hello better security with tests...

Howdy Makers,

One of the most notable changes to this release is the deprecation of make:auth. Almost a year ago, we introduced make:security:form-login in v1.49.0 and in this release we're introducing make:security:custom to speed up making custom security authenticators. These two commands fill the gap that make:auth would leave otherwise.

Along with a handful of other features, make:entity no longer adds any of the @method annotations to the entity class and if you're adding a relation to an entity with the same name as the "parent" entity - maker will help differentiate the two classes in the CLI output.

Aside from fixing the code generated by make:serializer:encoder to match the interface signatures it uses, we've also introduced another new feature:

Experimental

We've added the ability to generate tests that should work out of the box for:

  • make:crud
  • make:registration
  • make:reset-password
  • make:security:form-login

To generate these tests, you can either answer y || yes when the maker asks you "Do you want to generate PHPUnit tests?" Or simply pass --with-tests when calling the command. Review the generated test, customize it to your needs, and finally run php bin/phpunit. More tests for more makers are soon to follow!

Enjoy!

v1.59.0

April 27th, 2024

Feature

Bug

New Contributors

Diff: symfony/maker-bundle@v1.58.0...v1.59.0

Changelog

Sourced from symfony/maker-bundle's changelog.

v1.59.0

April 27th, 2024

Feature

Bug

Commits
  • 1f02b59 minor #1526 [release] v1.59.0
  • 03b5a9f feature #1523 [make:auth] deprecated command
  • 03592b9 feature #1515 [make:security:form-login] add ability to generate tests
  • 48846de feature 1520 [make:entity] Simplify repository PHPDoc removes method annotations
  • ff1c8c5 bug #1525 [make:serializer:encoder] fix interface signature mismatch in templ...
  • ed3465b feature #1522 [make:security:custom] create a custom authenticator
  • e7ea13d feature #1497 [make:*] add ability to generate tests
  • 48d317e feature #1521 [make:reset-password] improve types for static analysis in user...
  • d711796 feature #1519 [make:registration] use "User" type in EmailVerifier
  • e209117 feature #1518 [make:registration] add bool type to User::isVerified
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor group in /backend with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [lexik/jwt-authentication-bundle](https://github.com/lexik/LexikJWTAuthenticationBundle) | `2.20.3` | `2.21.0` |
| [nelmio/api-doc-bundle](https://github.com/nelmio/NelmioApiDocBundle) | `4.25.2` | `4.26.1` |
| [phpstan/phpstan-doctrine](https://github.com/phpstan/phpstan-doctrine) | `1.3.65` | `1.3.69` |
| [phpstan/phpstan-symfony](https://github.com/phpstan/phpstan-symfony) | `1.3.9` | `1.3.12` |
| [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) | `11.1.2` | `11.1.3` |
| [symfony/maker-bundle](https://github.com/symfony/maker-bundle) | `1.58.0` | `1.59.0` |


Updates `lexik/jwt-authentication-bundle` from 2.20.3 to 2.21.0
- [Release notes](https://github.com/lexik/LexikJWTAuthenticationBundle/releases)
- [Changelog](https://github.com/lexik/LexikJWTAuthenticationBundle/blob/v2.21.0/CHANGELOG.md)
- [Commits](lexik/LexikJWTAuthenticationBundle@v2.20.3...v2.21.0)

Updates `nelmio/api-doc-bundle` from 4.25.2 to 4.26.1
- [Release notes](https://github.com/nelmio/NelmioApiDocBundle/releases)
- [Changelog](https://github.com/nelmio/NelmioApiDocBundle/blob/master/CHANGELOG.md)
- [Commits](nelmio/NelmioApiDocBundle@4.25.2...v4.26.1)

Updates `phpstan/phpstan-doctrine` from 1.3.65 to 1.3.69
- [Release notes](https://github.com/phpstan/phpstan-doctrine/releases)
- [Commits](phpstan/phpstan-doctrine@1.3.65...1.3.69)

Updates `phpstan/phpstan-symfony` from 1.3.9 to 1.3.12
- [Release notes](https://github.com/phpstan/phpstan-symfony/releases)
- [Commits](phpstan/phpstan-symfony@1.3.9...1.3.12)

Updates `phpunit/phpunit` from 11.1.2 to 11.1.3
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/11.1.3/ChangeLog-11.1.md)
- [Commits](sebastianbergmann/phpunit@11.1.2...11.1.3)

Updates `symfony/maker-bundle` from 1.58.0 to 1.59.0
- [Release notes](https://github.com/symfony/maker-bundle/releases)
- [Changelog](https://github.com/symfony/maker-bundle/blob/main/CHANGELOG.md)
- [Commits](symfony/maker-bundle@v1.58.0...v1.59.0)

---
updated-dependencies:
- dependency-name: lexik/jwt-authentication-bundle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: nelmio/api-doc-bundle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: phpstan/phpstan-doctrine
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: phpstan/phpstan-symfony
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: phpunit/phpunit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: symfony/maker-bundle
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Apr 29, 2024
@algirdasc algirdasc merged commit ffa3dc9 into main Apr 30, 2024
2 checks passed
@algirdasc algirdasc deleted the dependabot/composer/backend/minor-473136a229 branch April 30, 2024 06:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file php Pull requests that update Php code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant