15
0
forked from pool/python-json5

- update to 0.9.8:

* Fixed error reporting in some cases due to how parsing was handling
    nested rules in the grammar - previously the reported location for
    the error could be far away from the point where it actually happened.
  * Fixed behavior of `default` fn in `dump` and `dumps`. Previously
    we didn't require the function to return a string, and so we could
    end up returning something that wasn't actually valid. This change
    now matches the behavior in the `json` module.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-json5?expand=0&rev=13
This commit is contained in:
2022-05-29 20:18:50 +00:00
committed by Git OBS Bridge
parent 8e3ea8a5b2
commit fba20e86f1
4 changed files with 17 additions and 5 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Sun May 29 20:17:37 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 0.9.8:
* Fixed error reporting in some cases due to how parsing was handling
nested rules in the grammar - previously the reported location for
the error could be far away from the point where it actually happened.
* Fixed behavior of `default` fn in `dump` and `dumps`. Previously
we didn't require the function to return a string, and so we could
end up returning something that wasn't actually valid. This change
now matches the behavior in the `json` module.
-------------------------------------------------------------------
Tue Oct 5 16:04:01 UTC 2021 - Stefan Schubert <schubi@suse.de>