Skip to content

v10.0.0 All `*AllOf.php` are deleted

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 26 Dec 02:33
9b453a6

What's Changed

  • Bump up openapi generator version to 7.10.0 by @Yang-33 in #640
    • we bumped up openapi generator version internally. As a result, all *AllOf.php are deleted. See in below to understand how to migrate.
  • Support phpstan 2.0 by @eucyt in #635

How to migrate v9 to v10

If your application uses any *AllOf.php provided in this repository, please use *.php instead. only changing class name is enough, because they are same internally.

e.g.

  • MessageEventAllOf -> MessageEvent.
  • use LINE\Webhook\Model\MessageEventAllOf; -> use LINE\Webhook\Model\MessageEvent;
  • ClipboardActionAllOf -> ClipboardAction
  • use LINE\Clients\MessagingApi\Model\ClipboardActionAllOf; -> use LINE\Clients\MessagingApi\Model\ClipboardAction;

line-openapi updates

  • Codes are generated by openapi generator by @github-actions in #628

Dependency updates

  • chore(deps): update dependency squizlabs/php_codesniffer to v3.11.0 by @renovate in #623
  • chore(deps): update dependency squizlabs/php_codesniffer to v3.11.1 by @renovate in #624
  • chore(deps): update line-openapi digest to 6312d4b by @renovate in #627
  • chore(deps): update actions/github-script action to v7 by @renovate in #629
  • chore(deps): update line-openapi digest to e8fbce9 by @renovate in #631
  • chore(deps): update dependency squizlabs/php_codesniffer to v3.11.2 by @renovate in #634

Other Changes

  • Automate to prepare release note with next version by @Yang-33 in #626
  • Allow renovate PR to have un committed changes by @Yang-33 in #630
  • Set title and description written in line-openapi PR by @Yang-33 in #633
  • Show filenames of diff from auto-generated files in CI by @eucyt in #638
  • Refactor duplicated CI code by @eucyt in #639

Full Changelog: 9.12.0...v10.0.0


This release is prepared by @Yang-33