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 typesystem from 0.2.5 to 0.4.1 #9

Merged
merged 1 commit into from
Dec 4, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 9, 2023

Bumps typesystem from 0.2.5 to 0.4.1.

Release notes

Sourced from typesystem's releases.

Version 0.4.1

Fixed

Version 0.4.0

Added

  • Update JSON schema ref according to OAS 3: #/components/schemas/

Version 0.3.1

Added

  • Email field (#111)
  • IPAddress field (#114)
  • URL field (#117)

Version 0.3.0

Version 0.3.0 changes how Schema validators are created. In this release validators are created as instances of Schema.

import typesystem
artist_schema = typesystem.Schema(
fields={
"name": typesystem.String(max_length=100)
}
)
definitions = typesystem.Definitions()
definitions["Artist"] = artist_schema
album_schema = typesystem.Schema(
fields={
"title": typesystem.String(max_length=100),
"release_date": typesystem.Date(),
"artist": typesystem.Reference("Artist", definitions=definitions)
}
)

The output of validation is also a dict, so there's no need to serialize validated data.

album, error = album_schema.validate_or_error(data)

Version 0.3.0.dev2

No release notes provided.

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 9, 2023
@codecov-commenter
Copy link

codecov-commenter commented Sep 9, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (5b49d0b) 82.56% compared to head (6cdad8d) 82.56%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main       #9   +/-   ##
=======================================
  Coverage   82.56%   82.56%           
=======================================
  Files          12       12           
  Lines         218      218           
=======================================
  Hits          180      180           
  Misses         38       38           
Flag Coverage Δ
unittests 82.56% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@amotl
Copy link
Member

amotl commented Sep 9, 2023

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/pip/typesystem-0.4.1 branch from e532fb2 to 0413b2d Compare September 9, 2023 18:10
@amotl
Copy link
Member

amotl commented Nov 25, 2023

@dependabot rebase

Bumps [typesystem](https://github.com/encode/typesystem) from 0.2.5 to 0.4.1.
- [Release notes](https://github.com/encode/typesystem/releases)
- [Commits](encode/typesystem@0.2.5...0.4.1)

---
updated-dependencies:
- dependency-name: typesystem
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/typesystem-0.4.1 branch from 0413b2d to 6cdad8d Compare November 25, 2023 22:04
@amotl amotl merged commit 6d120f5 into main Dec 4, 2023
2 checks passed
@amotl amotl deleted the dependabot/pip/typesystem-0.4.1 branch December 4, 2023 05:16
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 python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants