You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,12 @@
1
1
# Python JSONPath Change Log
2
2
3
-
## Version 0.11.0 (unreleased)
3
+
## Version 1.0.0
4
+
5
+
[RFC 9535](https://datatracker.ietf.org/doc/html/rfc9535) (JSONPath: Query Expressions for JSON) is now out, replacing the [draft IETF JSONPath base](https://datatracker.ietf.org/doc/html/draft-ietf-jsonpath-base-21).
6
+
7
+
**Breaking Changes**
8
+
9
+
- The undocumented `keys` function extension is no longer enabled by default. A new, well-typed `keys` function is planned for the future.
4
10
5
11
**Fixes**
6
12
@@ -13,7 +19,7 @@
13
19
14
20
## Version 0.10.3
15
21
16
-
**Changes**
22
+
**Breaking Changes**
17
23
18
24
- Changed the exception raised when attempting to compare a non-singular filter query from `JSONPathSyntaxError` to `JSONPathTypeError`.
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
<h1align="center">Python JSONPath</h1>
2
2
3
3
<palign="center">
4
-
A flexible JSONPath engine for Python with JSON Pointer and JSON Patch.
4
+
A flexible JSONPath engine for Python.
5
5
<br>
6
6
We follow <ahref="https://datatracker.ietf.org/doc/html/rfc9535">RFC 9535</a> and test against the <ahref="https://github.com/jsonpath-standard/jsonpath-compliance-test-suite">JSONPath Compliance Test Suite</a>.
7
7
</p>
@@ -38,19 +38,19 @@ We follow <a href="https://datatracker.ietf.org/doc/html/rfc9535">RFC 9535</a> a
38
38
39
39
Install Python JSONPath using [pip](https://pip.pypa.io/en/stable/getting-started/):
40
40
41
-
```console
41
+
```
42
42
pip install python-jsonpath
43
43
```
44
44
45
45
Or [Pipenv](https://pipenv.pypa.io/en/latest/):
46
46
47
-
```console
47
+
```
48
48
pipenv install -u python-jsonpath
49
49
```
50
50
51
51
Or from [conda-forge](https://anaconda.org/conda-forge/python-jsonpath):
0 commit comments