Skip to content

Bump pyserde from 0.8.3 to 0.10.2#134

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pyserde-0.10.2
Open

Bump pyserde from 0.8.3 to 0.10.2#134
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pyserde-0.10.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 6, 2023

Copy link
Copy Markdown

Bumps pyserde from 0.8.3 to 0.10.2.

Release notes

Sourced from pyserde's releases.

v0.10.2

What's Changed

Bug fixes

Refactoring

Full Changelog: yukinarit/pyserde@v0.10.1...v0.10.2

v0.10.1

What's Changed

Bug fixes

Full Changelog: yukinarit/pyserde@v0.10.0...v0.10.1

v0.10.0

What's Changed

New features

pyserde can (de)serialize dataclasses without @serde since v0.10.0. This feature is convenient when you want to use classes declared in external libraries or a type checker doesn't work with @serde decorator. See this example. Thanks @​Kobzol!

@dataclass
class Foo:
    i: int
    s: str
    f: float
    b: bool
f = Foo(i=10, s='foo', f=100.0, b=True)
print(f"Into Json: {to_json(f)}")
s = '{"i": 10, "s": "foo", "f": 100.0, "b": true}'
print(f"From Json: {from_json(Foo, s)}")

Bug fixes

... (truncated)

Commits
  • 4d66e94 Merge pull request #325 from yukinarit/fix-typing
  • e4cc087 Add type annotations to from_dict, from_tuple and from_msgpack
  • 8cd7e26 Merge pull request #322 from yukinarit/fix-more-type-errors
  • f0b076b Fix more type errors
  • 0a597e5 Merge pull request #321 from yukinarit/fix-variable-length-tuple
  • 6a3324a Fix variable length of tuple
  • 322805f Merge pull request #320 from yukinarit/0.10.0
  • 44040be s/0.9.10/0.10.0/
  • aa49eb5 Merge pull request #319 from yukinarit/update-docs
  • 700585c Document (de)serializing dataclasses without @​serde
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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)

Bumps [pyserde](https://github.com/yukinarit/pyserde) from 0.8.3 to 0.10.2.
- [Release notes](https://github.com/yukinarit/pyserde/releases)
- [Commits](yukinarit/pyserde@v0.8.3...v0.10.2)

---
updated-dependencies:
- dependency-name: pyserde
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 6, 2023
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.

0 participants