2019-07-09 12:52:18 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Jul 4 17:27:13 UTC 2019 - myen@suse.com
|
|
|
|
|
2019-08-21 10:24:12 +02:00
|
|
|
- Make jq depend on libjq1, so upgrading jq upgrades both
|
|
|
|
See: https://github.com/stedolan/jq/issues/1904
|
2019-07-09 12:52:18 +02:00
|
|
|
|
2017-02-03 10:28:44 +01:00
|
|
|
-------------------------------------------------------------------
|
2018-11-03 09:58:11 +01:00
|
|
|
Fri Nov 2 12:35:25 UTC 2018 - Avindra Goolcharan <aavindraa@gmail.com>
|
|
|
|
|
|
|
|
- Update to version 1.6
|
|
|
|
* Destructuring Alternation
|
|
|
|
* many new builtins (see docs)
|
|
|
|
* Add support for ASAN and UBSAN
|
|
|
|
* Make it easier to use jq with shebangs
|
|
|
|
* Add $ENV builtin variable to access environment
|
|
|
|
* Add JQ_COLORS env var for configuring the output colors
|
|
|
|
* change: Calling jq without a program argument now always assumes
|
|
|
|
"." for the program, regardless of stdin/stdout
|
|
|
|
* fix: Make sorting stable regardless of qsort.
|
|
|
|
- cleanup with spec-cleaner
|
|
|
|
- drop CVE-2015-8863.patch (upstreamed in 8eb1367ca44e772963e704a700ef72ae2e12babd)
|
|
|
|
- drop CVE-2016-4074.patch (upstreamed in fd4ae8304e23007672af9a37855c7a76de7c78cf)
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2017-02-03 10:28:44 +01:00
|
|
|
Fri Feb 3 09:26:17 UTC 2017 - idonmez@suse.com
|
|
|
|
|
|
|
|
- Add CVE-2016-4074.patch to prevent a stack exhaustion
|
|
|
|
CVE-2016-4074 bsc#1014176
|
|
|
|
|
2017-01-03 00:10:44 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Jan 2 08:47:00 UTC 2017 - mpluskal@suse.com
|
|
|
|
|
|
|
|
- Update tests dependencies to increase test coverage (bsc#1017157)
|
|
|
|
* valgrind based tests were skipped
|
|
|
|
- Do not run tests in qemu builds, valgrind does not work reliably
|
|
|
|
in such conditions
|
|
|
|
|
2016-07-16 20:11:18 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Jul 16 10:14:33 UTC 2016 - mpluskal@suse.com
|
|
|
|
|
|
|
|
- Make building more verbose
|
|
|
|
- Run tests
|
|
|
|
|
2016-04-25 13:52:50 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Apr 25 11:48:27 UTC 2016 - idonmez@suse.com
|
|
|
|
|
|
|
|
- Add CVE-2015-8863.patch to fix a heap overflow bsc#976992
|
|
|
|
|
2015-08-21 10:59:18 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Aug 18 09:12:21 UTC 2015 - idonmez@suse.com
|
|
|
|
|
|
|
|
- Update to version 1.5
|
|
|
|
* Regexp support
|
|
|
|
* A proper module system
|
|
|
|
* Destructuring syntax
|
|
|
|
* Math functions
|
|
|
|
* An online streaming parser
|
|
|
|
* Minimal I/O builtins (inputs, debug)
|
|
|
|
* try/catch for catching and handling errors
|
|
|
|
* Tail call optimization
|
|
|
|
* Datetime functions
|
|
|
|
* Performance enhancements
|
|
|
|
- Add oniguruma-devel BuildRequires for regexp support
|
|
|
|
|
2014-06-27 13:08:04 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Jun 27 09:55:52 UTC 2014 - idonmez@suse.com
|
|
|
|
|
|
|
|
- Don't package static libs
|
|
|
|
- Fix rpath on the main binary
|
|
|
|
|
2014-06-15 23:14:53 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Jun 15 20:52:42 UTC 2014 - prusnak@opensuse.org
|
|
|
|
|
2014-06-24 13:37:07 +02:00
|
|
|
- Updated to 1.4
|
|
|
|
+ New command line arguments
|
|
|
|
* jq --arg-file variable file
|
|
|
|
* jq --unbuffered
|
|
|
|
* jq -e / --exit-status (set exit status based on outputs)
|
|
|
|
* jq -S / --sort-keys (now jq no longer sorts object keys by
|
|
|
|
default
|
|
|
|
+ Syntax changes
|
|
|
|
* .. -> like // in XPath (recursive traversal)
|
|
|
|
* question mark (e.g., .a?) to suppress errors
|
|
|
|
* ."foo" syntax (equivalent to .["foo"])
|
|
|
|
* better error handling for .foo
|
|
|
|
* added % operator (modulo)
|
|
|
|
* allow negation without requiring extra parenthesis
|
|
|
|
* more function arguments (up to six)
|
|
|
|
+ New filters
|
|
|
|
* any, all
|
|
|
|
* iterables, arrays, objects, scalars, nulls, booleans,
|
|
|
|
numbers, strings, values
|
|
|
|
+ New string built-ins
|
|
|
|
* split
|
|
|
|
* join (join an array of strings with a given separator string)
|
|
|
|
* ltrimstr, rtrimstr
|
|
|
|
* startswith, endswith
|
|
|
|
* explode, implode
|
|
|
|
* fromjson, tojson
|
|
|
|
* index, rindex, indices
|
|
|
|
+ New math functions
|
|
|
|
* floor, sqrt, cbrt, etc.
|
|
|
|
+ Addition of libjq, a C API interface to jq's JSON representation
|
|
|
|
and for running jq programs from C applications.
|
|
|
|
|
2014-06-15 23:14:53 +02:00
|
|
|
|
2013-10-17 21:34:50 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Oct 17 15:55:03 UTC 2013 - cdenicolo@suse.com
|
|
|
|
|
|
|
|
- license update: MIT and CC-BY-3.0
|
|
|
|
documentation is licensed under CC-BY-3.0
|
|
|
|
|
2013-10-01 19:06:13 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Oct 1 15:09:01 UTC 2013 - robert.munteanu@gmail.com
|
|
|
|
|
2014-06-15 23:14:53 +02:00
|
|
|
- Initial packaging of version 1.3
|
2013-10-01 19:06:13 +02:00
|
|
|
|