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 pip group across 3 directories with 2 updates #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

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

Bumps the pip group with 1 update in the / directory: jsonpickle.
Bumps the pip group with 2 updates in the /samples/django/django_user directory: django and jsonpickle.
Bumps the pip group with 2 updates in the /samples/django/google_user directory: django and jsonpickle.

Updates jsonpickle from 1.1.0 to 1.5.0

Changelog

Sourced from jsonpickle's changelog.

v1.5.0

* Previous versions of jsonpickle with `make_refs=False` would emit
  ``null`` when encountering an object it had already seen when
  traversing objects.  All instances of the object are now serialized.
  While this is arguably an improvement in the vast majority of
  scenarios, it is a change in behavior and is thus considered a
  minor-level change.  ([#333](https://github.com/jsonpickle/jsonpickle/issues/333)) ([#334](https://github.com/jsonpickle/jsonpickle/issues/334)) ([#337](https://github.com/jsonpickle/jsonpickle/issues/337)) (+338)
* Multiple enums are now serialized correctly with `make_refs=False`.  ([#235](https://github.com/jsonpickle/jsonpickle/issues/235))

v1.4.2

* Use importlib.metadata from the stdlib on Python 3.8.  (+305) ([#303](https://github.com/jsonpickle/jsonpickle/issues/303))
* Micro-optimize type checks to use a `set` for lookups. (+327)
* Documentation improvements.

v1.4.1

* Patch release for Python 3.8 `importlib_metadata` support.
  ([#300](https://github.com/jsonpickle/jsonpickle/issues/300))

v1.4

* Python 3.8 support.  ([#292](https://github.com/jsonpickle/jsonpickle/issues/292))
* ``jsonpickle.encode`` now supports the standard ``indent``
  and ``separators`` arguments, and passes them through to the
  active JSON backend library.  ([#183](https://github.com/jsonpickle/jsonpickle/issues/183))
* We now include a custom handler for `array.array` objects.  ([#199](https://github.com/jsonpickle/jsonpickle/issues/199))
* Dict key order is preserved when pickling dictionaries on Python3.  ([#193](https://github.com/jsonpickle/jsonpickle/issues/193))
* Improved serialization of dictionaries with non-string keys.
  Previously, using an enum that was both the key and a value in
  a dictionary could end up with incorrect references to other
  objects.  The references are now properly maintained for dicts
  with object keys that are also referenced in the dict's values.  ([#286](https://github.com/jsonpickle/jsonpickle/issues/286))
* Improved serialization of pandas.Series objects.  ([#287](https://github.com/jsonpickle/jsonpickle/issues/287))

v1.3

* Improved round tripping of default dicts.  (+283) ([#282](https://github.com/jsonpickle/jsonpickle/issues/282))
  • Better support for cyclical references when encoding with unpicklable=False. (+264)

v1.2

* Simplified JSON representation for `__reduce__` values.  (+261)
  • Improved Pandas support with new handlers for more Pandas data types. (+256)

... (truncated)

Commits
  • ae0689a CHANGES: prepare for jsonpickle v1.5.0
  • 33284f3 Merge pull request #338 from davvid/refs
  • 24cee67 Merge pull request #329 from cclauss/patch-1
  • 250a5fa tests: add more tests with duplicate objects and make_refs=False
  • caa5cf2 pickler: create copies of seen objects
  • fa62b73 Travis CI: Upgrade &latest_py3 to Python 3.9
  • 18c353f tests: move remaining freestanding object_test methods to standalone functions
  • 7fcc6f0 tests: levarge pytest to flatten more object tests
  • 99af0c8 enums: properly serialize multiple enums when make_refs=False
  • 4a0dffc tests: leverage pytest for the unicode mixin tests
  • Additional commits viewable in compare view

Updates django from 1.10.0 to 3.2.25

Commits

Updates jsonpickle from 0.9.3 to 1.5.0

Changelog

Sourced from jsonpickle's changelog.

v1.5.0

* Previous versions of jsonpickle with `make_refs=False` would emit
  ``null`` when encountering an object it had already seen when
  traversing objects.  All instances of the object are now serialized.
  While this is arguably an improvement in the vast majority of
  scenarios, it is a change in behavior and is thus considered a
  minor-level change.  ([#333](https://github.com/jsonpickle/jsonpickle/issues/333)) ([#334](https://github.com/jsonpickle/jsonpickle/issues/334)) ([#337](https://github.com/jsonpickle/jsonpickle/issues/337)) (+338)
* Multiple enums are now serialized correctly with `make_refs=False`.  ([#235](https://github.com/jsonpickle/jsonpickle/issues/235))

v1.4.2

* Use importlib.metadata from the stdlib on Python 3.8.  (+305) ([#303](https://github.com/jsonpickle/jsonpickle/issues/303))
* Micro-optimize type checks to use a `set` for lookups. (+327)
* Documentation improvements.

v1.4.1

* Patch release for Python 3.8 `importlib_metadata` support.
  ([#300](https://github.com/jsonpickle/jsonpickle/issues/300))

v1.4

* Python 3.8 support.  ([#292](https://github.com/jsonpickle/jsonpickle/issues/292))
* ``jsonpickle.encode`` now supports the standard ``indent``
  and ``separators`` arguments, and passes them through to the
  active JSON backend library.  ([#183](https://github.com/jsonpickle/jsonpickle/issues/183))
* We now include a custom handler for `array.array` objects.  ([#199](https://github.com/jsonpickle/jsonpickle/issues/199))
* Dict key order is preserved when pickling dictionaries on Python3.  ([#193](https://github.com/jsonpickle/jsonpickle/issues/193))
* Improved serialization of dictionaries with non-string keys.
  Previously, using an enum that was both the key and a value in
  a dictionary could end up with incorrect references to other
  objects.  The references are now properly maintained for dicts
  with object keys that are also referenced in the dict's values.  ([#286](https://github.com/jsonpickle/jsonpickle/issues/286))
* Improved serialization of pandas.Series objects.  ([#287](https://github.com/jsonpickle/jsonpickle/issues/287))

v1.3

* Improved round tripping of default dicts.  (+283) ([#282](https://github.com/jsonpickle/jsonpickle/issues/282))
  • Better support for cyclical references when encoding with unpicklable=False. (+264)

v1.2

* Simplified JSON representation for `__reduce__` values.  (+261)
  • Improved Pandas support with new handlers for more Pandas data types. (+256)

... (truncated)

Commits
  • ae0689a CHANGES: prepare for jsonpickle v1.5.0
  • 33284f3 Merge pull request #338 from davvid/refs
  • 24cee67 Merge pull request #329 from cclauss/patch-1
  • 250a5fa tests: add more tests with duplicate objects and make_refs=False
  • caa5cf2 pickler: create copies of seen objects
  • fa62b73 Travis CI: Upgrade &latest_py3 to Python 3.9
  • 18c353f tests: move remaining freestanding object_test methods to standalone functions
  • 7fcc6f0 tests: levarge pytest to flatten more object tests
  • 99af0c8 enums: properly serialize multiple enums when make_refs=False
  • 4a0dffc tests: leverage pytest for the unicode mixin tests
  • Additional commits viewable in compare view

Updates django from 1.10.0 to 3.2.25

Commits

Updates jsonpickle from 0.9.3 to 1.5.0

Changelog

Sourced from jsonpickle's changelog.

v1.5.0

* Previous versions of jsonpickle with `make_refs=False` would emit
  ``null`` when encountering an object it had already seen when
  traversing objects.  All instances of the object are now serialized.
  While this is arguably an improvement in the vast majority of
  scenarios, it is a change in behavior and is thus considered a
  minor-level change.  ([#333](https://github.com/jsonpickle/jsonpickle/issues/333)) ([#334](https://github.com/jsonpickle/jsonpickle/issues/334)) ([#337](https://github.com/jsonpickle/jsonpickle/issues/337)) (+338)
* Multiple enums are now serialized correctly with `make_refs=False`.  ([#235](https://github.com/jsonpickle/jsonpickle/issues/235))

v1.4.2

* Use importlib.metadata from the stdlib on Python 3.8.  (+305) ([#303](https://github.com/jsonpickle/jsonpickle/issues/303))
* Micro-optimize type checks to use a `set` for lookups. (+327)
* Documentation improvements.

v1.4.1

* Patch release for Python 3.8 `importlib_metadata` support.
  ([#300](https://github.com/jsonpickle/jsonpickle/issues/300))

v1.4

* Python 3.8 support.  ([#292](https://github.com/jsonpickle/jsonpickle/issues/292))
* ``jsonpickle.encode`` now supports the standard ``indent``
  and ``separators`` arguments, and passes them through to the
  active JSON backend library.  ([#183](https://github.com/jsonpickle/jsonpickle/issues/183))
* We now include a custom handler for `array.array` objects.  ([#199](https://github.com/jsonpickle/jsonpickle/issues/199))
* Dict key order is preserved when pickling dictionaries on Python3.  ([#193](https://github.com/jsonpickle/jsonpickle/issues/193))
* Improved serialization of dictionaries with non-string keys.
  Previously, using an enum that was both the key and a value in
  a dictionary could end up with incorrect references to other
  objects.  The references are now properly maintained for dicts
  with object keys that are also referenced in the dict's values.  ([#286](https://github.com/jsonpickle/jsonpickle/issues/286))
* Improved serialization of pandas.Series objects.  ([#287](https://github.com/jsonpickle/jsonpickle/issues/287))

v1.3

* Improved round tripping of default dicts.  (+283) ([#282](https://github.com/jsonpickle/jsonpickle/issues/282))
  • Better support for cyclical references when encoding with unpicklable=False. (+264)

v1.2

* Simplified JSON representation for `__reduce__` values.  (+261)
  • Improved Pandas support with new handlers for more Pandas data types. (+256)

... (truncated)

Commits
  • ae0689a CHANGES: prepare for jsonpickle v1.5.0
  • 33284f3 Merge pull request #338 from davvid/refs
  • 24cee67 Merge pull request #329 from cclauss/patch-1
  • 250a5fa tests: add more tests with duplicate objects and make_refs=False
  • caa5cf2 pickler: create copies of seen objects
  • fa62b73 Travis CI: Upgrade &latest_py3 to Python 3.9
  • 18c353f tests: move remaining freestanding object_test methods to standalone functions
  • 7fcc6f0 tests: levarge pytest to flatten more object tests
  • 99af0c8 enums: properly serialize multiple enums when make_refs=False
  • 4a0dffc tests: leverage pytest for the unicode mixin tests
  • 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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the pip group with 1 update in the / directory: [jsonpickle](https://github.com/jsonpickle/jsonpickle).
Bumps the pip group with 2 updates in the /samples/django/django_user directory: [django](https://github.com/django/django) and [jsonpickle](https://github.com/jsonpickle/jsonpickle).
Bumps the pip group with 2 updates in the /samples/django/google_user directory: [django](https://github.com/django/django) and [jsonpickle](https://github.com/jsonpickle/jsonpickle).


Updates `jsonpickle` from 1.1.0 to 1.5.0
- [Changelog](https://github.com/jsonpickle/jsonpickle/blob/main/CHANGES.rst)
- [Commits](jsonpickle/jsonpickle@v1.1...v1.5.0)

Updates `django` from 1.10.0 to 3.2.25
- [Commits](django/django@1.10...3.2.25)

Updates `jsonpickle` from 0.9.3 to 1.5.0
- [Changelog](https://github.com/jsonpickle/jsonpickle/blob/main/CHANGES.rst)
- [Commits](jsonpickle/jsonpickle@v1.1...v1.5.0)

Updates `django` from 1.10.0 to 3.2.25
- [Commits](django/django@1.10...3.2.25)

Updates `jsonpickle` from 0.9.3 to 1.5.0
- [Changelog](https://github.com/jsonpickle/jsonpickle/blob/main/CHANGES.rst)
- [Commits](jsonpickle/jsonpickle@v1.1...v1.5.0)

---
updated-dependencies:
- dependency-name: jsonpickle
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: django
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: jsonpickle
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: django
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: jsonpickle
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 22, 2024
Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
pypi/[email protected] environment, eval, filesystem, network, shell, unsafe 0 39.7 MB felixx, nessita, sarahboyce, ...1 more
pypi/[email protected] environment, eval, filesystem, network, unsafe Transitive: shell +615 5.78 GB Theelx, davvid, jaraco, ...1 more

🚮 Removed packages: pypi/[email protected], pypi/[email protected], pypi/[email protected], pypi/[email protected], pypi/[email protected]

View full report↗︎

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants