kettle-family 1.2.19 → 1.2.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41b6caf412a8ed5f431a76b60e5d603efc3043743613e261f84298e0cacc7205
4
- data.tar.gz: d2820c302c5224108468c883f1441f3a7ef943e5b15f41ce1f4bac6c8a83c949
3
+ metadata.gz: 971f2fe5b4d5a64435ee332ba8d083f494f8ba8b5a6f1a31a81885e504b3a585
4
+ data.tar.gz: 9ea743325bbf23369827a7220361a765db24a9c2a6d1b893b7233135946d253f
5
5
  SHA512:
6
- metadata.gz: 0642d481f359daccd1901ee24c537ebb65986ad2bbfd8999a39ae3bb9fd41fa4cbe8575d52b3ff607475ae1c9701b54d5a1adddd3d260051c4bb65f3c5b6b903
7
- data.tar.gz: 15621ee82a8a69b9936bb90bc4707b53846f8a9773de831c05749323401c2325c1ebcf648fb72f99c37e793975e4f035af4888feec27adc538fd6b0ac24e8cbb
6
+ metadata.gz: 2efbf5d7424ae7f3d758a73d3d5e9390a55e6fe09f5207eec73b932024cf700910e89001f5f116daa2aa567daa61aacdc5e66b9849ccbb87420e545de72c0d6d
7
+ data.tar.gz: dbaf11ae29801f3f0f4f784dd06117e0b6e5cc361494e6c0633197ea754af21505e399f6b8cc47bcf4521d34765e6672d76822d09f9d83aa49d8ec27fd2ab7f1
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,17 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [1.2.20] - 2026-07-31
34
+
35
+ - TAG: [v1.2.20][1.2.20t]
36
+ - COVERAGE: 94.15% -- 4281/4547 lines in 28 files
37
+ - BRANCH COVERAGE: 76.79% -- 1684/2193 branches in 28 files
38
+ - 28.88% documented
39
+
40
+ ### Fixed
41
+
42
+ - Legacy Bundler recovery preserves shell operators in configured compound lockfile commands while removing an unsupported `--add-checksums` flag.
43
+
33
44
  ## [1.2.19] - 2026-07-31
34
45
 
35
46
  - TAG: [v1.2.19][1.2.19t]
@@ -1568,7 +1579,9 @@ Please file a bug if you notice a violation of semantic versioning.
1568
1579
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
1569
1580
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
1570
1581
 
1571
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.19...HEAD
1582
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.20...HEAD
1583
+ [1.2.20]: https://github.com/kettle-dev/kettle-family/compare/v1.2.19...v1.2.20
1584
+ [1.2.20t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.20
1572
1585
  [1.2.19]: https://github.com/kettle-dev/kettle-family/compare/v1.2.18...v1.2.19
1573
1586
  [1.2.19t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.19
1574
1587
  [1.2.18]: https://github.com/kettle-dev/kettle-family/compare/v1.2.17...v1.2.18
data/README.md CHANGED
@@ -819,7 +819,7 @@ Thanks for RTFM. ☺️
819
819
  [📌gitmoji]: https://gitmoji.dev
820
820
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
821
821
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
822
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-4.549-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
822
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-4.547-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
823
823
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
824
824
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
825
825
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -5,7 +5,7 @@ module Kettle
5
5
  # Version namespace for this gem.
6
6
  module Version
7
7
  # Current gem version.
8
- VERSION = "1.2.19"
8
+ VERSION = "1.2.20"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
@@ -2592,11 +2592,12 @@ module Kettle
2592
2592
  end
2593
2593
 
2594
2594
  def remove_command_arg(command_text, arg)
2595
- argv = command_text.is_a?(Array) ? command_text.map(&:to_s) : Shellwords.split(command_text.to_s)
2596
- argv.delete(arg)
2597
- command_text.is_a?(Array) ? argv : Shellwords.join(argv)
2598
- rescue ArgumentError
2599
- command_text
2595
+ return command_text.map(&:to_s).reject { |token| token == arg } if command_text.is_a?(Array)
2596
+
2597
+ # CommandRunner executes String commands through `sh -lc`; Shellwords
2598
+ # cannot round-trip shell operators such as `&&` without turning them
2599
+ # into literal arguments. Remove this known standalone option in place.
2600
+ command_text.to_s.gsub(/(?<!\S)#{Regexp.escape(arg)}(?=\s|\z)/, "").gsub(/[ \t]{2,}/, " ").strip
2600
2601
  end
2601
2602
 
2602
2603
  def normalize_command_includes_arg?(command_text, arg)
data.tar.gz.sig CHANGED
@@ -1,2 +1 @@
1
- E�Nj�g�<�������b����t��1�����o/��M�:��2IQ#8���Ta��հ*ɋ"�إ�MX4{I�r٬�]�ֽ�oJ+8v��zDO���B
2
- 0!v�m�f��ۄ��o.�.����u�W�ď�ۚʠx�-!6"|��
1
+ �j`-�ۂ����`��.��?J��؂�A59�����2x��8ޘ>ܾ�Oq3Y V+���X�xi�oI"}2vlUh�q��]�vh[�y(�OMz����N���"i��Y|'����6 ���xdw;几�-�=�*
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-family
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.19
4
+ version: 1.2.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -342,10 +342,10 @@ licenses:
342
342
  - AGPL-3.0-only
343
343
  metadata:
344
344
  homepage_uri: https://kettle-family.galtzo.com
345
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.19
346
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.19/CHANGELOG.md
345
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.20
346
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.20/CHANGELOG.md
347
347
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
348
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.19
348
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.20
349
349
  funding_uri: https://github.com/sponsors/pboling
350
350
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
351
351
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file