Hanra-s-work / point_one_robot_car

This is the repository that was chosen to be used for an autonomous car project.
MIT License
0 stars 0 forks source link

Update dependency simplejson to v3.19.2 #148

Closed renovate[bot] closed 4 weeks ago

renovate[bot] commented 4 weeks ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
simplejson ==3.13.2 -> ==3.19.2 age adoption passing confidence

[!WARNING] Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

simplejson/simplejson (simplejson) ### [`v3.19.2`](https://togithub.com/simplejson/simplejson/releases/tag/v3.19.2) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.19.1...v3.19.2) Version 3.19.2 released 2023-10-05 - Updated test & build matrix to include Python 3.12 and use GitHub Actions as a Trusted Publisher (OI[https://github.com/simplejson/simplejson/pull/317](https://togithub.com/simplejson/simplejson/pull/317)pull/317 ### [`v3.19.1`](https://togithub.com/simplejson/simplejson/releases/tag/v3.19.1) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.18.4...v3.19.1) Version 3.19.1 released 2023-04-06 - This release contains security hardening measures based on recommendations by a security audit sponsored by OSTIF and conducted by X41 D-Sec GmbH. Several of these measures include changing defaults to be more strict, by default simplejson will now only consume and produce compliant JSON, but the flags still exist for any backwards compatibility needs. No high priority issues were discovered, the reference count leak is thought to be unreachable since the digits of the float are checked before PyOS_string_to_double is called. A link to the public version of this report will be included in a future release of simplejson. The followin[https://github.com/simplejson/simplejson/pull/313](https://togithub.com/simplejson/simplejson/pull/313)ithub.com/simplejson/simplejson/pull/313 - Fix invalid handling of unicode escape sequences in the pure Python implementation of the decoder (SJ-PT-23-01) - Fix missing reference count decrease if PyOS_string_to_double raises an exception in Python 2.x; was probably unreachable (SJ-PT-23-02) - Backport the integer string length limitation from Python 3.11 to limit quadratic number parsing (SJ-PT-23-03) - Fix inconsistencies with error messages between the C and Python implementations (SJ-PT-23-100) - Remove unused unichr import from encoder (SJ-PT-23-101) - Remove unused namedtuple_as_object and tuple_as_array arguments from simplejson.load (SJ-PT-23-102) - Remove vestigial \_one_shot code from iterencode (SJ-PT-23-103) - Change default of allow_nan from True to False and add allow_nan to decoder (SJ-PT-23-107) ### [`v3.18.4`](https://togithub.com/simplejson/simplejson/releases/tag/v3.18.4) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.18.3...v3.18.4) Version 3.18.4 released 2023-03-14 - Test the sdist to prevent future regressions [https://github.com/simplejson/simplejson/pull/311](https://togithub.com/simplejson/simplejson/pull/311)/311 - Enable ppc64le wheels [https://github.com/simplejson/simplejson/pull/312](https://togithub.com/simplejson/simplejson/pull/312)/312 ### [`v3.18.3`](https://togithub.com/simplejson/simplejson/releases/tag/v3.18.3) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.18.2...v3.18.3) Version 3.18.3 released 2023-02-05 - Fix regression in sdist archive [https://github.com/simplejson/simplejson/pull/310](https://togithub.com/simplejson/simplejson/pull/310)/310 ### [`v3.18.2`](https://togithub.com/simplejson/simplejson/releases/tag/v3.18.2) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.18.1...v3.18.2) Version 3.18.2 released 2023-02-04 - Distribute a pure python wheel for Pyodide [https://github.com/simplejson/simplejson/pull/308](https://togithub.com/simplejson/simplejson/pull/308)/308 ### [`v3.18.1`](https://togithub.com/simplejson/simplejson/releases/tag/v3.18.1) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.18.0...v3.18.1) Version 3.18.1 released 2023-01-03 - Remove unnecessary `i` variable from encoder module namespace [https://github.com/simplejson/simplejson/pull/303](https://togithub.com/simplejson/simplejson/pull/303)/303 - Declare support for Python 3.11 and add wheels [https://github.com/simplejson/simplejson/pull/305](https://togithub.com/simplejson/simplejson/pull/305)/305 ### [`v3.18.0`](https://togithub.com/simplejson/simplejson/releases/tag/v3.18.0) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.17.6...v3.18.0) Version 3.18.0 released 2022-11-14 - Allow serialization of classes that implement for_json or \_asdict by ignoring TypeError when those methods are ca[https://github.com/simplejson/simplejson/pull/302](https://togithub.com/simplejson/simplejson/pull/302)/pull/302 - Raise JSONDecodeError instead of ValueError in invalid unicode escape sequence edge c[https://github.com/simplejson/simplejson/pull/298](https://togithub.com/simplejson/simplejson/pull/298)pull/298 ### [`v3.17.6`](https://togithub.com/simplejson/simplejson/releases/tag/v3.17.6) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.17.5...v3.17.6) Version 3.17.6 released 2021-11-15 - Declare support for Python 3.10 and add wheels [https://github.com/simplejson/simplejson/pull/291](https://togithub.com/simplejson/simplejson/pull/291)/[https://github.com/simplejson/simplejson/pull/292](https://togithub.com/simplejson/simplejson/pull/292)pull/292 ### [`v3.17.5`](https://togithub.com/simplejson/simplejson/releases/tag/v3.17.5) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.17.4...v3.17.5) Version 3.17.5 released 2021-08-23 - Fix the C extension module to harden is_namedtuple against looks-a-likes such as Mocks. Also prevent dict encoding from causing an unraised SystemError when encountering a non-Dict. Noticed by running user tests against a CPython interpreter with C asserts enabled (COPTS +=[https://github.com/simplejson/simplejson/pull/284](https://togithub.com/simplejson/simplejson/pull/284)plejson/pull/284 ### [`v3.17.4`](https://togithub.com/simplejson/simplejson/releases/tag/v3.17.4) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.17.3...v3.17.4) Version 3.17.4 released 2021-08-19 - Upgrade cibuildwheel [https://github.com/simplejson/simplejson/pull/287](https://togithub.com/simplejson/simplejson/pull/287)/287 ### [`v3.17.3`](https://togithub.com/simplejson/simplejson/releases/tag/v3.17.3) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.17.2...v3.17.3) Version 3.17.3 released 2021-07-09 - Replaced Travis-CI and AppVeyor with Github Actions, adding wheels for Python 3[https://github.com/simplejson/simplejson/pull/283](https://togithub.com/simplejson/simplejson/pull/283)pull/283 ### [`v3.17.2`](https://togithub.com/simplejson/simplejson/releases/tag/v3.17.2) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.17.0...v3.17.2) Version 3.17.2 released 2020-07-16 - Added arm64 to build matrix and reintroduced manylinux whe[https://github.com/simplejson/simplejson/pull/264](https://togithub.com/simplejson/simplejson/pull/264)pull/264 - No more bdist_wininst builds per PEP 527 [https://github.com/simplejson/simplejson/pull/260](https://togithub.com/simplejson/simplejson/pull/260)/260 - Minor grammatical issue fixed in README [https://github.com/simplejson/simplejson/pull/261](https://togithub.com/simplejson/simplejson/pull/261)/261 ### [`v3.17.0`](https://togithub.com/simplejson/simplejson/releases/tag/v3.17.0) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.16.0...v3.17.0) - Updated documentation to be Python 3 first, and have removed documentation notes about version changes that occurred more than five yea[https://github.com/simplejson/simplejson/pull/257](https://togithub.com/simplejson/simplejson/pull/257)s[https://github.com/simplejson/simplejson/pull/254](https://togithub.com/simplejson/simplejson/pull/254)plejson/pull/254 - Update build matrix for Python 3.8 [https://github.com/simplejson/simplejson/pull/255](https://togithub.com/simplejson/simplejson/pull/255)/[https://github.com/simplejson/simplejson/pull/256](https://togithub.com/simplejson/simplejson/pull/256)pull/256 ### [`v3.16.0`](https://togithub.com/simplejson/simplejson/releases/tag/v3.16.0) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.15.0...v3.16.0) - Restore old behavior with regard to the type of decoded empty strings with speedups enabled on Python [https://github.com/simplejson/simplejson/pull/225](https://togithub.com/simplejson/simplejson/pull/225)pull/225 - Add python_requires to setup.py to help pip [https://github.com/simplejson/simplejson/pull/224](https://togithub.com/simplejson/simplejson/pull/224)/224 - Fix CSS in docs when built locally [https://github.com/simplejson/simplejson/pull/222](https://togithub.com/simplejson/simplejson/pull/222)/222 ### [`v3.15.0`](https://togithub.com/simplejson/simplejson/releases/tag/v3.15.0) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.14.0...v3.15.0) - Clean up the C code [https://github.com/simplejson/simplejson/pull/220](https://togithub.com/simplejson/simplejson/pull/220)/220 - Bypass the decode() method in bytes subclasses [https://github.com/simplejson/simplejson/pull/219](https://togithub.com/simplejson/simplejson/pull/219)/219 - Support builds without cStringIO [https://github.com/simplejson/simplejson/pull/217](https://togithub.com/simplejson/simplejson/pull/217)/217 - Allow to disable serializing bytes by default in Python 3 [https://github.com/simplejson/simplejson/pull/216](https://togithub.com/simplejson/simplejson/pull/216)/216 - Simplify the compatibility code [https://github.com/simplejson/simplejson/pull/215](https://togithub.com/simplejson/simplejson/pull/215)/215 - Fix tests in Python 2.5 [https://github.com/simplejson/simplejson/pull/214](https://togithub.com/simplejson/simplejson/pull/214)/214 ### [`v3.14.0`](https://togithub.com/simplejson/simplejson/releases/tag/v3.14.0) [Compare Source](https://togithub.com/simplejson/simplejson/compare/v3.13.2...v3.14.0) - Defer is_raw_json test (performance improvement) [https://github.com/simplejson/simplejson/pull/212](https://togithub.com/simplejson/simplejson/pull/212)/212 - Avoid escaping U+2028 and U+2029 without ensure_ascii [https://github.com/simplejson/simplejson/pull/211](https://togithub.com/simplejson/simplejson/pull/211)/211 - Fix an incorrect type test in Python 2, avoiding an unnecessary unicode copy. [https://github.com/simplejson/simplejson/pull/210](https://togithub.com/simplejson/simplejson/pull/210)/210

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.



This PR has been generated by Mend Renovate. View repository job log here.