44 Commits

Author SHA256 Message Date
e6ad38f354 Accepting request 1296513 from utilities
OBS-URL: https://build.opensuse.org/request/show/1296513
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=21
2025-07-31 15:46:02 +00:00
8a3eaf0472 Accepting request 1293054 from utilities
- update to 4.46.1:
  * Added INI support
  * Fixed 'add' operator when piped in with no data #2378, #2383,
    #2384
  * Fixed delete after slice problem (bad node path) #2387 Thanks
    @antoinedeschenes
  * Fixed yq small build Thanks @imzue
  * Switched to YAML org supported go-yaml!
- update to 4.45.4:
  * Fixing wrong map() behaviour on empty map #2359
- update to 4.45.3:
  * Fixing regression (#2353, #2359, #2325) introduced with in
    4.45.2 with #2325 fix
- update to 4.45.2:
  * Added windows arm builds (Thanks @albertocavalcante,
    @ShukantPal)
  * Added s390x platform support (Thanks @ashokpariya0)
  * Additionally push docker images to ghcr.io (Thanks @reegnz)
  * Fixing add when there is no node match #2325
  * sort_by works on maps
- update to 4.45.1:
  * Create parent directories when --split-exp is used, Thanks
    @rudo-thomas
- drop Bump-golang.org-x-net-from-0.32.0-to-0.33.0.patch (upstream)

OBS-URL: https://build.opensuse.org/request/show/1293054
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=20
2025-07-15 14:43:31 +00:00
6f3004a366 - update to 4.46.1:
* Added INI support
  * Fixed 'add' operator when piped in with no data #2378, #2383,
    #2384
  * Fixed delete after slice problem (bad node path) #2387 Thanks
    @antoinedeschenes
  * Fixed yq small build Thanks @imzue
  * Switched to YAML org supported go-yaml!
- update to 4.45.4:
  * Fixing wrong map() behaviour on empty map #2359
- update to 4.45.3:
  * Fixing regression (#2353, #2359, #2325) introduced with in
    4.45.2 with #2325 fix
- update to 4.45.2:
  * Added windows arm builds (Thanks @albertocavalcante,
    @ShukantPal)
  * Added s390x platform support (Thanks @ashokpariya0)
  * Additionally push docker images to ghcr.io (Thanks @reegnz)
  * Fixing add when there is no node match #2325
  * sort_by works on maps
- update to 4.45.1:
  * Create parent directories when --split-exp is used, Thanks
    @rudo-thomas
- drop Bump-golang.org-x-net-from-0.32.0-to-0.33.0.patch (upstream)

OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=42
2025-07-14 08:02:04 +00:00
c80e323da1 Accepting request 1236178 from utilities
OBS-URL: https://build.opensuse.org/request/show/1236178
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=19
2025-01-12 10:14:17 +00:00
Robert Munteanu
bd8cdbd6bd fix CVE-2024-45338
old: utilities/yq
new: home:mslacken:branches:utilities/yq rev None
Index: vendor.tar.gz
===================================================================
Binary files vendor.tar.gz (revision 39) and vendor.tar.gz (revision 3) differ
Index: yq.changes
===================================================================
--- yq.changes (revision 39)
+++ yq.changes (revision 3)
@@ -1,4 +1,27 @@
 -------------------------------------------------------------------
+Wed Jan  8 16:52:32 UTC 2025 - Christian Goll <cgoll@suse.com>
+
+- Updated to 4.44.6:
+  * Fixed deleting items in array bug #2027, #2172; Thanks @jandubois
+  * Docker image for armv7 / raspberry pi3, Thanks @brianegge
+  * Fixed no-colors regression #2218
+  * Fixed various panic scenarios #2211
+  * Bumped dependencies
+- Changes from 4.44.5 (4.44.4 was skipped)
+  * Format comments with a gray foreground (Thanks @gabe565)
+  * Fixed handling of nulls with sort_by expressions #2164
+  * Force no color output when NO_COLOR env presents (Thanks @narqo)
+  * Fixed array subtraction update bug #2159
+  * Fixed index out of range error
+  * Can traverse straight from parent operator (parent.blah)
+  * Bumped dependencies
+
+- Bumped x/net to 0.33.0 to fix CVE-2024-45338
+  * add file Bump-golang.org-x-net-from-0.32.0-to-0.33.0.patch
+
+
+
+-------------------------------------------------------------------
 Mon Aug 12 13:18:36 UTC 2024 - Dirk Müller <dmueller@suse.com>
 
 - update to 4.44.3:
Index: yq.spec
===================================================================
--- yq.spec (revision 39)
+++ yq.spec (revision 3)
@@ -1,7 +1,7 @@
 #
 # spec file for package yq
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,14 @@
 %global import_path     %{provider_prefix}
 
 Name:           yq
-Version:        4.44.3
+Version:        4.44.6
 Release:        0
 Summary:        A portable command-line YAML processor
 License:        MIT
 URL:            https://github.com/mikefarah/yq
 Source0:        https://github.com/mikefarah/yq/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:        vendor.tar.gz
+Patch0:         Bump-golang.org-x-net-from-0.32.0-to-0.33.0.patch
 # conflict with all python3X-yq packages since they install /usr/bin/yq
 # we need to handle Leap 15.4 specially since the python3dist() is not
 # generated there
@@ -71,7 +72,7 @@
 Fish command line completion support for %{name}.
 
 %prep
-%setup -qa1
+%autosetup -p1 -a1
 
 %build
 go build -trimpath -buildmode=pie -mod=vendor -o bin/%{name}
Index: Bump-golang.org-x-net-from-0.32.0-to-0.33.0.patch
===================================================================
--- Bump-golang.org-x-net-from-0.32.0-to-0.33.0.patch (added)
+++ Bump-golang.org-x-net-from-0.32.0-to-0.33.0.patch (revision 3)
@@ -0,0 +1,56 @@
+From 7efae2dad9f3900a5d4e3ef275735657f0a34d2a Mon Sep 17 00:00:00 2001
+From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
+Date: Thu, 19 Dec 2024 03:23:37 +0000
+Subject: [PATCH] Bump golang.org/x/net from 0.32.0 to 0.33.0
+
+Bumps [golang.org/x/net](https://github.com/golang/net) from 0.32.0 to 0.33.0.
+- [Commits](https://github.com/golang/net/compare/v0.32.0...v0.33.0)
+
+---
+updated-dependencies:
+- dependency-name: golang.org/x/net
+  dependency-type: direct:production
+  update-type: version-update:semver-minor
+...
+
+Signed-off-by: dependabot[bot] <support@github.com>
+---
+ go.mod | 2 +-
+ go.sum | 8 ++++----
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/go.mod b/go.mod
+index f44bcbbd..56bd2a2c 100644
+--- a/go.mod
++++ b/go.mod
+@@ -16,7 +16,7 @@ require (
+ 	github.com/spf13/cobra v1.8.1
+ 	github.com/spf13/pflag v1.0.5
+ 	github.com/yuin/gopher-lua v1.1.1
+-	golang.org/x/net v0.32.0
++	golang.org/x/net v0.33.0
+ 	golang.org/x/text v0.21.0
+ 	gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473
+ 	gopkg.in/yaml.v3 v3.0.1
+diff --git a/go.sum b/go.sum
+index e8746990..4fec28d7 100644
+--- a/go.sum
++++ b/go.sum
+@@ -62,10 +62,10 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
+ github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
+ github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M=
+ github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw=
+-golang.org/x/crypto v0.30.0 h1:RwoQn3GkWiMkzlX562cLB7OxWvjH1L8xutO2WoJcRoY=
+-golang.org/x/crypto v0.30.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
+-golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI=
+-golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs=
++golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
++golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
++golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
++golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
+ golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+ golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
+-- 
+2.43.0
+
Index: yq-4.44.6.tar.gz
===================================================================
Binary file yq-4.44.6.tar.gz (revision 3) added
Index: yq-4.44.3.tar.gz
===================================================================
Binary file yq-4.44.3.tar.gz (revision 39) deleted

OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=40
2025-01-09 12:31:02 +00:00
176d6f1306 Accepting request 1193440 from utilities
OBS-URL: https://build.opensuse.org/request/show/1193440
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=18
2024-08-13 11:23:59 +00:00
Robert Munteanu
3af09b3ca2 - update to 4.44.3:
* Fixed upper-case file extension detection
  * Log printing follow no-colors flag
  * Skip and warn when interpolating strings and theres a
    unclosed bracket
  * Fixed CSV content starting with # issue #2076
  * Bumped dependencies

OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=38
2024-08-12 13:49:19 +00:00
e14fb2811d Accepting request 1181316 from utilities
OBS-URL: https://build.opensuse.org/request/show/1181316
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=17
2024-06-17 17:34:18 +00:00
4027b2ad75 Accepting request 1181274 from home:dirkmueller:Factory
- update to 4.44.2:
  * Handle numbers with underscores #2039
  * Unique now works on maps and arrays #2068
  * Added support for short hand splat with env[] expression
    #2071, as well as many other operators
    (split,select,eval,pick..)
  * Bumped dependencies
- update to 4.44.1:
  * Added min/max operators (#1992) Thanks @mbenson
  * Added pivot oeprator (#1993) Thanks @mbenson
  * Fix: shell-completion (#2006) Thanks @codekow
  * Handle escaped backslashes (#1997) Thanks @mbenson
  * Fix npe when given filename ending with "."
  * Fix: linux (w/ selinux) build (#2004) Thanks @codekow
  * Bumped dependencies
- update to 4.43.1:
  * Added omit operator #1989 thanks @mbenson!
  * Can now multiply strings by numbers #1988  thanks @mbenson!
  * Added tostring #72
  * Added string interpolation #1149
  * Can specify parent(n) levels #1970
  * Fixed CSV line break issue #1974
  * Adding a EvaluateAll function to StringEvaluator #1966
  * yqlib, default to colors off when using yaml library #1964
  * Removed JSON output warning
  * Bumped dependencies
- update to 4.42.1:
  * Can execute yq expression files directly with shebang #1851
  * Added --csv-separator flag #1950
  * Added --properties-separator option - thanks  @learnitall

OBS-URL: https://build.opensuse.org/request/show/1181274
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=36
2024-06-17 12:43:22 +00:00
73a767146b Accepting request 1133823 from utilities
OBS-URL: https://build.opensuse.org/request/show/1133823
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=16
2023-12-18 21:56:37 +00:00
Robert Munteanu
413651926c Accepting request 1133818 from home:dirkmueller:Factory
- update to 4.40.5:
  * Fixing seg fault on bad XML #1888
  * Fixed handling of --- #1890, #1896
- update to 4.40.4:
  * Fixed bug with creating maps with values based off keys

OBS-URL: https://build.opensuse.org/request/show/1133818
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=34
2023-12-18 09:46:07 +00:00
7f199de2b6 Accepting request 1128545 from utilities
OBS-URL: https://build.opensuse.org/request/show/1128545
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=15
2023-11-24 22:35:05 +00:00
Robert Munteanu
5755945f58 Accepting request 1128517 from home:dirkmueller:Factory
- update to 4.40.3:
  * Fixed JSON output issue with empty arrays #1880
- update to 4.40.2:
  * Do not panic when StdIn is closed (#1867) Thanks @aleskandro!
  * Fixed issue when update against self #1869
  * Fixed multi doc anchor bug #1861
  * Fixes doc line separator issue when reading expression file
    #1860
  * Bumped dependencies

OBS-URL: https://build.opensuse.org/request/show/1128517
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=32
2023-11-24 12:19:01 +00:00
33f37fecc3 Accepting request 1116989 from utilities
- trim paths in the binary
- run tests

OBS-URL: https://build.opensuse.org/request/show/1116989
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=14
2023-10-11 21:56:40 +00:00
b2423d0569 - trim paths in the binary
- run tests

OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=30
2023-10-11 12:40:41 +00:00
e218ca2f38 Accepting request 1114399 from utilities
- update to 4.35.2 (bsc#1215808):

OBS-URL: https://build.opensuse.org/request/show/1114399
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=13
2023-10-03 18:15:28 +00:00
a02107f4a4 - update to 4.35.2 (bsc#1215808):
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=28
2023-09-29 14:14:01 +00:00
861eb0a58d Accepting request 1113662 from utilities
OBS-URL: https://build.opensuse.org/request/show/1113662
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=12
2023-09-26 20:02:36 +00:00
Robert Munteanu
6b0b438ecd Accepting request 1113659 from home:dirkmueller:Factory
- update to 4.35.2:
  * Fix various typos #1798
  * Fixed number parsing as float bug in JSON #1756
  * Fixed string, null concatenation consistency #1712
  * Fixed expression parsing issue #1711
  * Bumped dependencies
- update to 4.35.1:
  * Added Lua output support
  * Added BSD checksum format
  * Bumped dependencies

- Add conflicts for Leap 15.4
- Add conflict with python3x-yq packages
- Correct source URL
- Initial package

OBS-URL: https://build.opensuse.org/request/show/1113659
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=26
2023-09-26 12:05:16 +00:00
37f3b5e805 Accepting request 1099299 from utilities
OBS-URL: https://build.opensuse.org/request/show/1099299
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=11
2023-07-18 20:09:07 +00:00
Robert Munteanu
131b906aae Accepting request 1099294 from home:dirkmueller:Factory
- update to 4.34.2:
  * Bumped depedencies
- update to 4.34.1:
  * Added shell output format
  * Fixed nil pointer dereference
  * Bumped dependency versions

OBS-URL: https://build.opensuse.org/request/show/1099294
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=24
2023-07-18 15:21:16 +00:00
67e82d8670 Accepting request 1079557 from utilities
OBS-URL: https://build.opensuse.org/request/show/1079557
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=10
2023-04-15 20:33:12 +00:00
Robert Munteanu
db4fab503e Accepting request 1079495 from home:dirkmueller:Factory
- update to 4.33.3:
  * Fixed bug when splatting empty array #1613
  * Added scalar output for TOML (#1617)
  * Fixed passing of read-only context in pipe (partial fix for
    #1631)
  * Bumped dependency versions

OBS-URL: https://build.opensuse.org/request/show/1079495
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=22
2023-04-15 08:54:16 +00:00
8a4164a3ae Accepting request 1076429 from utilities
OBS-URL: https://build.opensuse.org/request/show/1076429
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=9
2023-03-31 19:16:02 +00:00
Robert Munteanu
5fcfe77c67 Accepting request 1076426 from home:dirkmueller:Factory
- update to 4.33.2:
  * Add ``--nul-output|-0`` flag to separate element with NUL
    character (#1550) Thanks @vaab!
  * Add removable-media interface plug declaration to the snap
    packaging(#1618) Thanks @brlin-tw!
  * Scalar output now handled in csv, tsv and property files
  * Bumped dependency versions

OBS-URL: https://build.opensuse.org/request/show/1076426
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=20
2023-03-31 09:31:38 +00:00
8693876ce8 Accepting request 1075004 from utilities
OBS-URL: https://build.opensuse.org/request/show/1075004
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=8
2023-03-28 15:52:05 +00:00
Robert Munteanu
6db3bd40c9 Accepting request 1074766 from home:dirkmueller:Factory
- update to 4.33.1:
  * Added read-only TOML support! #1364. Thanks @pelletier for
    making your API available in your toml lib :)
  * Added warning when auto detect by file type is outputs JSON

- update to 4.32.2:
  * Fixes parsing terraform tfstate files results in "unknown"
    format
  * Added divide and modulo operators (#1593)
  * Add support for decoding base64 strings without padding
  * Add filter operation (#1588) - thanks @rbren!
  * Detect input format based on file name extension (#1582)
  * Auto output format when input format is automatically
    detected
  * Fixed npe in log #1596
  * Improved binary file size!
  * Bumped dependency versions

OBS-URL: https://build.opensuse.org/request/show/1074766
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=18
2023-03-28 12:10:01 +00:00
c94d0e11bb Accepting request 1068647 from utilities
OBS-URL: https://build.opensuse.org/request/show/1068647
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=7
2023-03-02 22:04:13 +00:00
9ff0038edd Accepting request 1068631 from home:dirkmueller:Factory
- update to 4.31.2:
  * Fixed merged anchor reference problem #1482
  * Fixed xml encoding of ProcInst #1563, improved XML
    comment handling
  * Allow build without json and xml support (#1556) Thanks
  * Bumped dependencies

OBS-URL: https://build.opensuse.org/request/show/1068631
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=16
2023-03-02 09:35:07 +00:00
43483e5be7 Accepting request 1068321 from utilities
OBS-URL: https://build.opensuse.org/request/show/1068321
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=6
2023-03-01 15:14:19 +00:00
Robert Munteanu
c6b9ef1d19 Accepting request 1068315 from home:dirkmueller:Factory
- update to 4.31.1:
  * Added shuffle command #1503
  * Added ability to sort by multiple fields #1541
  * Added @sh encoder #1526
  * Added @uri/@urid encoder/decoder #1529
  * Fixed date comparison with string date #1537
  * Added from_unix/to_unix Operators
  * Bumped dependency versions

OBS-URL: https://build.opensuse.org/request/show/1068315
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=14
2023-02-28 20:53:13 +00:00
9a3da82515 Accepting request 1058658 from utilities
OBS-URL: https://build.opensuse.org/request/show/1058658
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=5
2023-01-16 16:59:44 +00:00
Robert Munteanu
870fbbca39 Accepting request 1058636 from home:dirkmueller:Factory
- update to v4.30.8:
  * Log info message instead of erroring when unable to chown file in linux
    (e.g. snap confinement) #1521
  * Fixed bug in splice operator #1511
  * Fixed value operator bug  #1515
  * Fixed handling of merging null #1501
  * Ownership of file now maintained in linux (thanks @vaguecoder) #1473
  * Bumped dependency versions

OBS-URL: https://build.opensuse.org/request/show/1058636
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=12
2023-01-16 09:55:45 +00:00
65f00ca1c1 Accepting request 1043633 from utilities
OBS-URL: https://build.opensuse.org/request/show/1043633
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=4
2022-12-18 18:11:47 +00:00
Robert Munteanu
3609f29ca5 Accepting request 1043614 from home:dirkmueller:Factory
- Update to version 4.30.6:
  * Bumping version
  * release notes
  * Fixed xml comment in array of scalars #1465
  * Bump github.com/magiconair/properties from 1.8.6 to 1.8.7 (#1476)
  * Bump github.com/goccy/go-yaml from 1.9.6 to 1.9.7 (#1466)
  * Bump golang from 1.19.3 to 1.19.4 (#1465)
  * Include blank new lines in leading header preprocessing #1462
  * Upgraded golang/x/text and golang/x/net to fix trivy scan vulnerabilities (#1461)
  * Bump github.com/goccy/go-json from 0.9.11 to 0.10.0 (#1455)
  * updating release notes

OBS-URL: https://build.opensuse.org/request/show/1043614
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=10
2022-12-18 16:48:14 +00:00
74d6ecc50e Accepting request 1042487 from utilities
OBS-URL: https://build.opensuse.org/request/show/1042487
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=3
2022-12-13 17:55:41 +00:00
Robert Munteanu
a696e78e28 Accepting request 1042485 from home:dirkmueller:Factory
- update to v4.30.5:
  * XML Decoder: Comment parsing tweak
  * XML Decoder: Fixed processing comments in empty XML #1446
  * XML Decoder: Checking for invalid content outside of a root node #1448
  * XML Decoder: Fixed issue where content surrounding tags are lost #1447
  * XML Decoder: Fixed xml decode bug when there is content after a comment
  * Fixed loading yaml with header issue #1445
  * guessTagFromCustomType warning log is now a debug.
  * Special thanks to @Kopfbremse for reporting XML issues!
  * Fixing missing version in brew/snap due to bug in automated versioning
  * Updated release process (automated versioning)
  * Fixed handling of yaml directives (#1424)
  * Fixed parsing of newline character in string expression #1430
  * Fixed length compares to null instead of 0 issue #1427
  * Actually updated the default xml prefix 🤦
  * XML users note: the default attribute prefix has change to +@ to avoid naming conflicts!
  * Can use expressions in slice #1419
  * Fixed unhandled exception when decoding CSV thanks @washanhanzi
  * Added array_to_map operator for #1415
  * Fixed sorting by date #1412
  * Added check to ensure only maps can be encoded to XML #1408
  * Check merge alias is a map #1425
  * Explicity setting unwrap flag works for json output #437, #1409
  * Fixed null pointer exception when parsing CSV with empty field #1404
- update to v4.29.1:
  * Fixed Square brackets removing update #1342
  * Added slice array operator (.[10:15]) #44
  * XML decoder/encoder now parses directives and proc instructions (#1344).
  * Please use the new skip flags documented here to ignore them.
  * XML users note that the default attribute prefix will change to +@ in the 4.30 release to avoid naming conflicts!

OBS-URL: https://build.opensuse.org/request/show/1042485
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=8
2022-12-12 21:15:00 +00:00
0c63e654cf Accepting request 970143 from utilities
OBS-URL: https://build.opensuse.org/request/show/970143
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=2
2022-04-14 15:26:01 +00:00
Robert Munteanu
5c3640a165 Accepting request 970140 from home:robert_munteanu:branches:utilities
Add conflicts for Leap 15.4

OBS-URL: https://build.opensuse.org/request/show/970140
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=6
2022-04-14 11:51:38 +00:00
174aeacca4 Accepting request 952123 from utilities
Add package yq to factory (similar to jq, but for YAML).

IMO the Conflicts tag is unavoidable, hence adding.

OBS-URL: https://build.opensuse.org/request/show/952123
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yq?expand=0&rev=1
2022-02-07 22:37:57 +00:00
Robert Munteanu
a7f3264376 Accepting request 952122 from home:robert_munteanu:branches:utilities
Improve conflicts with python3-yq packages

OBS-URL: https://build.opensuse.org/request/show/952122
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=4
2022-02-07 13:06:44 +00:00
Robert Munteanu
2024cc07a0 Accepting request 951587 from home:robert_munteanu:branches:utilities
Add conflict with python3x-yq packages

OBS-URL: https://build.opensuse.org/request/show/951587
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=3
2022-02-04 15:11:43 +00:00
Robert Munteanu
dd058d0f9a Accepting request 951529 from home:robert_munteanu:branches:utilities
Correct source URL

OBS-URL: https://build.opensuse.org/request/show/951529
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=2
2022-02-04 08:53:30 +00:00
a67dc74a96 Accepting request 950459 from home:robert_munteanu
Submission of yq package (similar to jq, but for YAML).

OBS-URL: https://build.opensuse.org/request/show/950459
OBS-URL: https://build.opensuse.org/package/show/utilities/yq?expand=0&rev=1
2022-02-01 16:21:16 +00:00
4 changed files with 0 additions and 65 deletions

View File

@@ -1,56 +0,0 @@
From 7efae2dad9f3900a5d4e3ef275735657f0a34d2a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 19 Dec 2024 03:23:37 +0000
Subject: [PATCH] Bump golang.org/x/net from 0.32.0 to 0.33.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.32.0 to 0.33.0.
- [Commits](https://github.com/golang/net/compare/v0.32.0...v0.33.0)
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
---
go.mod | 2 +-
go.sum | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/go.mod b/go.mod
index f44bcbbd..56bd2a2c 100644
--- a/go.mod
+++ b/go.mod
@@ -16,7 +16,7 @@ require (
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/yuin/gopher-lua v1.1.1
- golang.org/x/net v0.32.0
+ golang.org/x/net v0.33.0
golang.org/x/text v0.21.0
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473
gopkg.in/yaml.v3 v3.0.1
diff --git a/go.sum b/go.sum
index e8746990..4fec28d7 100644
--- a/go.sum
+++ b/go.sum
@@ -62,10 +62,10 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/yuin/gopher-lua v1.1.1 h1:kYKnWBjvbNP4XLT3+bPEwAXJx262OhaHDWDVOPjL46M=
github.com/yuin/gopher-lua v1.1.1/go.mod h1:GBR0iDaNXjAgGg9zfCvksxSRnQx76gclCIb7kdAd1Pw=
-golang.org/x/crypto v0.30.0 h1:RwoQn3GkWiMkzlX562cLB7OxWvjH1L8xutO2WoJcRoY=
-golang.org/x/crypto v0.30.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
-golang.org/x/net v0.32.0 h1:ZqPmj8Kzc+Y6e0+skZsuACbx+wzMgo5MQsJh9Qd6aYI=
-golang.org/x/net v0.32.0/go.mod h1:CwU0IoeOlnQQWJ6ioyFrfRuomB8GKF6KbYXZVyeXNfs=
+golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
+golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
+golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
+golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
--
2.43.0

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb741c2d41351537aa42d563d0fccf16b3195c352b33e0ef111fd448232da911
size 297469

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ea950f5622480fc0ff3708c52589426a737cd4ec887a52922a74efa1be8f2fbf
size 297938

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c0acef928168e5fdb26cd7e8320eddde822f30cf1942817f3f6b854dd721653f
size 299062