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 dependency datamodel-code-generator to v0.26.0 - autoclosed #37

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 11, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
datamodel-code-generator ==0.13.0 -> ==0.26.0 age adoption passing confidence

Release Notes

koxudaxi/datamodel-code-generator (datamodel-code-generator)

v0.26.0

Compare Source

What's Changed

Breaking Changes

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.9...0.26.0

v0.25.9

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.8...0.25.9

v0.25.8

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.7...0.25.8

v0.25.7

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.6...0.25.7

v0.25.6

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.5...0.25.6

v0.25.5

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.4...0.25.5

v0.25.4

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.3...0.25.4

v0.25.3

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.2...0.25.3

v0.25.2

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.25.1...0.25.2

v0.25.1

Compare Source

What's Changed

Full Changelog: koxudaxi/datamodel-code-generator@0.25.0...0.25.1

v0.25.0

Compare Source

What's Changed

Breaking Changes

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.24.2...0.25.0

v0.24.2

Compare Source

What's Changed

Full Changelog: koxudaxi/datamodel-code-generator@0.24.1...0.24.2

v0.24.1

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.24.0...0.24.1

v0.24.0

Compare Source

What's Changed

Breaking Changes

  • The version drop pysnooper, prance, openapi-spec-validator from the default dependencies list.
    If you want to use --debug and --validation, please add the extra option when you install packages datamodel-code-generator[debug] and datamodel-code-generator[validation]

Depreacated

  • --validation option will be removed in the new future. please use other tools to validate OpenAPI Schema.

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.23.0...0.24.0

v0.23.0

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.22.1...0.23.0

v0.22.1

Compare Source

What's Changed

Full Changelog: koxudaxi/datamodel-code-generator@0.22.0...0.22.1

v0.22.0

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.21.5...0.22.0

v0.21.5

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.21.4...0.21.5

v0.21.4

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.21.3...0.21.4

v0.21.3

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.21.2...0.21.3

v0.21.2

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.21.1...0.21.2

v0.21.1

Compare Source

What's Changed

New Contributors

Full Changelog: koxudaxi/datamodel-code-generator@0.21.0...0.21.1

v0.21.0

Compare Source

What's Changed

New Contributors

What is the difference between pydantic v1 and v2 output model?

Summary

datamodel-code-generator supports Pydantic v1 and v2 as output model type.

Pydantic v2 is a major release with many breaking changes. See the migration guide for more information:
https://docs.pydantic.dev/2.0/migration/

What's changes in v2 output?

__root__ field (a.k.a Custom Root Types)

__root__ field (a.k.a Custom Root Types) is removed in pydantic v2.
The model is changed to RootModel

pydantic.Field

https://docs.pydantic.dev/2.0/migration/#changes-to-pydanticfield

  • const -> removed
  • min_items (use min_length instead)
  • max_items (use max_length instead)
  • unique_items -> removed and the list type will be replaced by typing.Set. this feature is discussed in https://github.com/pydantic/pydantic-core/issues/296
  • allow_mutation (use frozen instead)
  • regex (use pattern instead)
Model Config
  • pydantic.Config -> pydantic.ConfigDict
  • allow_mutation —> frozen (inverse value for getting same behavior).
  • allow_population_by_field_name → populate_by_name

Full Changelog: koxudaxi/datamodel-code-generator@0.20.0...0.21.0

v0.20.0

Compare Source

What's Changed

Breaking Changes

Due to differences in file loading order between operating systems, we've added a sorting process when fetching file listings within directories in order to eliminate discrepancies in model and field names. As a result, model names that differ from those generated by existing earlier versions may be produced.

New Contributors


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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/datamodel-code-generator-0.x branch from 6ac0e48 to b1468ce Compare November 20, 2022 08:39
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.13.1 fix(deps): update dependency datamodel-code-generator to v0.14.0 Nov 20, 2022
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.14.0 fix(deps): update dependency datamodel-code-generator to v0.17.1 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from b1468ce to 58a2952 Compare March 16, 2023 18:00
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.17.1 fix(deps): update dependency datamodel-code-generator to v0.17.2 Mar 31, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 58a2952 to cca679d Compare March 31, 2023 17:04
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from cca679d to e052412 Compare April 17, 2023 11:55
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.17.2 fix(deps): update dependency datamodel-code-generator to v0.18.0 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from e052412 to 69cd6a5 Compare May 28, 2023 10:37
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.18.0 fix(deps): update dependency datamodel-code-generator to v0.19.0 May 28, 2023
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.19.0 fix(deps): update dependency datamodel-code-generator to v0.20.0 Jun 6, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 69cd6a5 to 886d972 Compare June 6, 2023 18:06
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 886d972 to 024dfe0 Compare July 3, 2023 05:05
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.20.0 fix(deps): update dependency datamodel-code-generator to v0.21.0 Jul 3, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 024dfe0 to 2b85d1d Compare July 6, 2023 07:42
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.21.0 fix(deps): update dependency datamodel-code-generator to v0.21.1 Jul 6, 2023
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.21.1 fix(deps): update dependency datamodel-code-generator to v0.21.2 Jul 20, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 2b85d1d to 8f82080 Compare July 20, 2023 17:23
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 8f82080 to 73ca5b2 Compare August 3, 2023 19:32
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.21.2 fix(deps): update dependency datamodel-code-generator to v0.21.3 Aug 3, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 73ca5b2 to ded5753 Compare August 9, 2023 19:56
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.21.3 fix(deps): update dependency datamodel-code-generator to v0.21.4 Aug 9, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from ded5753 to ed4281f Compare September 6, 2023 16:40
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.21.4 fix(deps): update dependency datamodel-code-generator to v0.21.5 Sep 6, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from ed4281f to e2c6a5e Compare September 23, 2023 18:49
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.21.5 fix(deps): update dependency datamodel-code-generator to v0.22.0 Sep 23, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from e2c6a5e to 3e4ffad Compare October 8, 2023 04:27
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.22.0 fix(deps): update dependency datamodel-code-generator to v0.22.1 Oct 8, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 3e4ffad to e48d29b Compare November 8, 2023 17:14
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.22.1 fix(deps): update dependency datamodel-code-generator to v0.23.0 Nov 8, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 730c68b to 5839477 Compare November 26, 2023 18:03
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.0 fix(deps): update dependency datamodel-code-generator to v0.25.1 Nov 26, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 5839477 to be76cbb Compare December 21, 2023 18:25
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.1 fix(deps): update dependency datamodel-code-generator to v0.25.2 Dec 21, 2023
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from be76cbb to bfac806 Compare February 1, 2024 19:58
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.2 fix(deps): update dependency datamodel-code-generator to v0.25.3 Feb 1, 2024
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from bfac806 to 7607988 Compare February 13, 2024 19:17
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.3 fix(deps): update dependency datamodel-code-generator to v0.25.4 Feb 13, 2024
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 7607988 to 9ecf9af Compare March 16, 2024 20:20
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.4 fix(deps): update dependency datamodel-code-generator to v0.25.5 Mar 16, 2024
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 9ecf9af to a7ebdbb Compare April 25, 2024 17:48
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.5 fix(deps): update dependency datamodel-code-generator to v0.25.6 Apr 25, 2024
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from a7ebdbb to 617a228 Compare June 11, 2024 18:55
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.6 fix(deps): update dependency datamodel-code-generator to v0.25.7 Jun 11, 2024
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 617a228 to c88dd47 Compare July 4, 2024 16:19
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.7 fix(deps): update dependency datamodel-code-generator to v0.25.8 Jul 4, 2024
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from c88dd47 to 9f57ecc Compare August 7, 2024 05:18
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.8 fix(deps): update dependency datamodel-code-generator to v0.25.9 Aug 7, 2024
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.9 fix(deps): update dependency datamodel-code-generator to v0.25.9 - autoclosed Aug 27, 2024
@renovate renovate bot closed this Aug 27, 2024
@renovate renovate bot deleted the renovate/datamodel-code-generator-0.x branch August 27, 2024 16:28
@renovate renovate bot restored the renovate/datamodel-code-generator-0.x branch August 27, 2024 19:41
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.9 - autoclosed fix(deps): update dependency datamodel-code-generator to v0.25.9 Aug 27, 2024
@renovate renovate bot reopened this Aug 27, 2024
@renovate renovate bot force-pushed the renovate/datamodel-code-generator-0.x branch from 9f57ecc to 3ee5ed6 Compare September 2, 2024 19:03
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.25.9 fix(deps): update dependency datamodel-code-generator to v0.26.0 Sep 2, 2024
@renovate renovate bot changed the title fix(deps): update dependency datamodel-code-generator to v0.26.0 fix(deps): update dependency datamodel-code-generator to v0.26.0 - autoclosed Sep 22, 2024
@renovate renovate bot closed this Sep 22, 2024
@renovate renovate bot deleted the renovate/datamodel-code-generator-0.x branch September 22, 2024 21:51
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