17
0

12 Commits

Author SHA256 Message Date
be976a56a9 Accepting request 1219197 from devel:languages:python
- update to 1.7.0:
  * Allow raw numeric values to be used as keys
  * Add `wherenot`
  * Added EZRegex pattern for the split extension regex
  * Added negative and * indecies and quotes to `Split`
    parameters
  * Typo: duplicate line removed.
  * Added `path` extension that exposes datum's path from the
    jsonpath expression itself.
  * Remove Python 3.7 support
  *  Only construct the parse table once
  * updated test for `jsonpath.py` changes
  * fix for Updating a json object fails if the value of a key is
    boolean #73
  * Add Codespaces configuration
  * Add `.editorconfig`
  * Fix a GitHub workflow schema issue

OBS-URL: https://build.opensuse.org/request/show/1219197
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jsonpath-ng?expand=0&rev=6
2024-10-30 16:36:38 +00:00
b6ffb932ff - update to 1.7.0:
* Allow raw numeric values to be used as keys
  * Add `wherenot`
  * Added EZRegex pattern for the split extension regex
  * Added negative and * indecies and quotes to `Split`
    parameters
  * Typo: duplicate line removed.
  * Added `path` extension that exposes datum's path from the
    jsonpath expression itself.
  * Remove Python 3.7 support
  *  Only construct the parse table once
  * updated test for `jsonpath.py` changes
  * fix for Updating a json object fails if the value of a key is
    boolean #73
  * Add Codespaces configuration
  * Add `.editorconfig`
  * Fix a GitHub workflow schema issue

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonpath-ng?expand=0&rev=10
2024-10-29 21:38:21 +00:00
8dcb1318f6 Accepting request 1145940 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1145940
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jsonpath-ng?expand=0&rev=5
2024-02-11 14:46:15 +00:00
John Vandenberg
8ca8d8f15c Accepting request 1145494 from home:kairu:branches:devel:languages:python
- Switch to Python 3.11 build.
- Remove build dependency oslotest (pull request #137).

OBS-URL: https://build.opensuse.org/request/show/1145494
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonpath-ng?expand=0&rev=8
2024-02-11 04:07:04 +00:00
76674b0059 Accepting request 1140745 from devel:languages:python
- update to 1.6.1:
  * Fix issue with lambda based updates
  * Remove unused code from the test suite
  * De-duplicate the parser test cases
  * Remove a test that merely checks exception inheritance
  * Add pytest-randomly to shake out auto_id side effects
  * Include the test suite in coverage reports
  * Remove tests that don't affect coverage and contribute
    nothing
  * Reformat `tests/test_create.py`
  * Remove `test_doctests`, which is a no-op
  * Demonstrate that there are no doctests
  * Remove the `coveralls` dependency
  * Migrate `tests/bin/test_jsonpath.py` to use pytest
  * remove Python2 crumbs
  * Add CodeQL analysis
  * Remove the `oslotest` dependency
  * Fix running CI against incoming PRs
  * Support, and test against, Python 3.12
  * Update the currently-tested CPython versions in the README
  * Remove an unused Travis CI config file
  * Add a Dependabot config to keep GitHub action versions
    updated
  * add a test for the case when root element is a list
  * Fix issue with assignment in case root element is a list.
  * Fix typo in README
  * Fix test commands in Makefile
  * Fix .coveragerc path
  * Simplify clean in Makefile
  * Refactor unit tests for better errors

OBS-URL: https://build.opensuse.org/request/show/1140745
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jsonpath-ng?expand=0&rev=4
2024-01-23 21:56:06 +00:00
47715b46e0 - update to 1.6.1:
* Fix issue with lambda based updates
  * Remove unused code from the test suite
  * De-duplicate the parser test cases
  * Remove a test that merely checks exception inheritance
  * Add pytest-randomly to shake out auto_id side effects
  * Include the test suite in coverage reports
  * Remove tests that don't affect coverage and contribute
    nothing
  * Reformat `tests/test_create.py`
  * Remove `test_doctests`, which is a no-op
  * Demonstrate that there are no doctests
  * Remove the `coveralls` dependency
  * Migrate `tests/bin/test_jsonpath.py` to use pytest
  * remove Python2 crumbs
  * Add CodeQL analysis
  * Remove the `oslotest` dependency
  * Fix running CI against incoming PRs
  * Support, and test against, Python 3.12
  * Update the currently-tested CPython versions in the README
  * Remove an unused Travis CI config file
  * Add a Dependabot config to keep GitHub action versions
    updated
  * add a test for the case when root element is a list
  * Fix issue with assignment in case root element is a list.
  * Fix typo in README
  * Fix test commands in Makefile
  * Fix .coveragerc path
  * Simplify clean in Makefile
  * Refactor unit tests for better errors

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonpath-ng?expand=0&rev=6
2024-01-22 23:46:32 +00:00
012973ea76 Accepting request 1112029 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1112029
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jsonpath-ng?expand=0&rev=3
2023-09-20 11:27:06 +00:00
034d4ddfc7 Accepting request 1111494 from home:pgajdos:python
- version update to 1.6.0
  1.6.0 / 2023-09-13
  *  Enclose field names containing literals in quotes
  *  Add note about extensions
  *  Remove documentation status link
  *  Update supported versions in setup.py
  *  Add LICENSE file
  *  Code cleanup
  *  Remove dependency on six
  *  Update build status badge
  *  (origin/github-actions, github-actions) Remove testscenarios dependency
  *  Remove pytest version constraints
  *  Add testing with GitHub actions
  *  Escape back slashes in tests to avoid DeprecationWarning.
  *  Use raw strings for regular expressions to avoid DeprecationWarning.
  *  refactor(package): remove dependency for decorator
  *  Merge pull request #128 from michaelmior/hashable
  *  (origin/hashable, hashable) Make path instances hashable
  *  Merge pull request #122 from snopoke/snopoke-patch-1
  *  Add more detail to filter docs.
  *  remove incorrect parenthesis in filter examples
  *  Merge pull request #119 from snopoke/patch-1
  *  add 'sub' line with function param names
  *  readme formatting fixes
  *  chore(history): update
  *  Update __init__.py
  1.5.3 / 2021-07-05
  * Update __init__.py
  * Update setup.py
  * Merge pull request #72 from kaapstorm/find_or_create

OBS-URL: https://build.opensuse.org/request/show/1111494
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonpath-ng?expand=0&rev=4
2023-09-18 15:34:25 +00:00
1bc45bfd4b Accepting request 928964 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/928964
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jsonpath-ng?expand=0&rev=2
2021-11-03 16:26:22 +00:00
John Vandenberg
018563dba9 Accepting request 928963 from home:pgajdos:python
- version update to 1.5.2
  * Merge pull request #41 from josephwhite13/allow-dictionary-filtering
  * Merge pull request #48 from back2root/master
  * Check for null value.
  * Merge pull request #40 from memborsky/add-regular-expression-contains-support
  * feat: support regular expression for performing contains (=~) filtering
  * if datum.value is a dictionary, filter on the list of values
- %check: use python -m pytest instead of setup.py test

OBS-URL: https://build.opensuse.org/request/show/928963
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonpath-ng?expand=0&rev=3
2021-11-03 08:37:18 +00:00
9184b9684f Accepting request 889535 from devel:languages:python
maintained fork of python-jsonpath-rw

OBS-URL: https://build.opensuse.org/request/show/889535
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jsonpath-ng?expand=0&rev=1
2021-04-30 22:46:53 +00:00
099c4e855a Accepting request 889410 from home:jayvdb:py-submit
maintained fork of python-jsonpath-rw

OBS-URL: https://build.opensuse.org/request/show/889410
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonpath-ng?expand=0&rev=1
2021-04-30 11:27:04 +00:00