kettle-family 1.2.6 → 1.2.7

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: 87022fba999d5343044afcf1c679be7b53f49648ce71ff7aebfe29044ee6064a
4
- data.tar.gz: 775df5e0ce6843e9013fbe7a4cc17ea2608322aae8139f9116f51a456051a5b8
3
+ metadata.gz: 19b26885149b9d09b09827174cd7da61443ce3be6eb87aebbf31c2d742d169f8
4
+ data.tar.gz: d3f3f4d99d7206c755dd8c96b92849056f85bf25b43e261322ee9d90c2ac6021
5
5
  SHA512:
6
- metadata.gz: 258275ea92c47f043220780188c6967427e700bf66f7e8675700ac39d4ffb4a7da775a809a587babfa839f32778bc81e4b525f2f33f839648cf11be1be1b239c
7
- data.tar.gz: ec9fd4d7a541edd9f82b4bb9e57510563f264b5893734814c27a6eae24f3af4ca05fbd80baa1986de388ab6a4b83daa4bbfafae3117bf748693fe50a2261a2d3
6
+ metadata.gz: 967f83669fc06f840e9aafdfbf3ee93257371e1e5b18097e6d2740247fad82f09c1f64930b1a7558456a41f2f3991172ec6a4cfb6d00c797929172ac72486ca3
7
+ data.tar.gz: 2e65f50bfd16933521b93dfd8b3d84ef3c3faa9cb7e40725c917e83f4e53d833bbc09f2f2b15708c4a93f9a384edb5f24b1bbdf4b05013f4c4d19879382b9ba4
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,20 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [1.2.7] - 2026-07-29
34
+
35
+ - TAG: [v1.2.7][1.2.7t]
36
+ - COVERAGE: 93.98% -- 3650/3884 lines in 27 files
37
+ - BRANCH COVERAGE: 76.43% -- 1394/1824 branches in 27 files
38
+ - 28.01% documented
39
+
40
+ ### Fixed
41
+
42
+ - `kettle-family bup`, `bupb`, and release lockfile handling now treat truthy
43
+ `*_DEV` and `*_LOCAL` environment values as local path dependency mode, so
44
+ family local path envs such as `STRUCTUREDMERGE_DEV=true` are disabled for
45
+ release-style bundle refreshes.
46
+
33
47
  ## [1.2.6] - 2026-07-29
34
48
 
35
49
  - TAG: [v1.2.6][1.2.6t]
@@ -1276,7 +1290,9 @@ Please file a bug if you notice a violation of semantic versioning.
1276
1290
  - Fixed CI load failures on engines without compatible `pty` support by falling back to Open3 for interactive release commands.
1277
1291
  - Fixed Ruby 3.2 version-bump support by loading Prism lazily and wiring the Prism gem only for MRI versions that need it.
1278
1292
 
1279
- [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.6...HEAD
1293
+ [Unreleased]: https://github.com/kettle-dev/kettle-family/compare/v1.2.7...HEAD
1294
+ [1.2.7]: https://github.com/kettle-dev/kettle-family/compare/v1.2.6...v1.2.7
1295
+ [1.2.7t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.7
1280
1296
  [1.2.6]: https://github.com/kettle-dev/kettle-family/compare/v1.2.5...v1.2.6
1281
1297
  [1.2.6t]: https://github.com/kettle-dev/kettle-family/releases/tag/v1.2.6
1282
1298
  [1.2.5]: https://github.com/kettle-dev/kettle-family/compare/v1.2.4...v1.2.5
data/README.md CHANGED
@@ -814,7 +814,7 @@ Thanks for RTFM. ☺️
814
814
  [📌gitmoji]: https://gitmoji.dev
815
815
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
816
816
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
817
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-3.882-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
817
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-3.884-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
818
818
  [🔐security]: https://github.com/kettle-dev/kettle-family/blob/main/SECURITY.md
819
819
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
820
820
  [📄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.6"
8
+ VERSION = "1.2.7"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
@@ -1945,7 +1945,8 @@ module Kettle
1945
1945
  def release_allowed_local_path_roots
1946
1946
  release_local_path_env_sources.filter_map do |key, value|
1947
1947
  next unless key.end_with?("_LOCAL", "_DEV")
1948
- next if value.to_s.empty? || value.to_s.casecmp("false").zero?
1948
+ next unless local_path_env_value?(value)
1949
+ next unless value.to_s.strip.start_with?("/", "./", "../", "~")
1949
1950
 
1950
1951
  value
1951
1952
  end
@@ -2025,6 +2026,7 @@ module Kettle
2025
2026
  def local_path_env_value?(value)
2026
2027
  text = value.to_s.strip
2027
2028
  return false if text.empty? || text.casecmp("false").zero?
2029
+ return true if %w[true yes 1 on enabled].include?(text.downcase)
2028
2030
  return true if text.start_with?("/", "./", "../", "~")
2029
2031
 
2030
2032
  text.include?(File::SEPARATOR)
data.tar.gz.sig CHANGED
Binary file
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.6
4
+ version: 1.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -341,10 +341,10 @@ licenses:
341
341
  - AGPL-3.0-only
342
342
  metadata:
343
343
  homepage_uri: https://kettle-family.galtzo.com
344
- source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.6
345
- changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.6/CHANGELOG.md
344
+ source_code_uri: https://github.com/kettle-dev/kettle-family/tree/v1.2.7
345
+ changelog_uri: https://github.com/kettle-dev/kettle-family/blob/v1.2.7/CHANGELOG.md
346
346
  bug_tracker_uri: https://github.com/kettle-dev/kettle-family/issues
347
- documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.6
347
+ documentation_uri: https://www.rubydoc.info/gems/kettle-family/1.2.7
348
348
  funding_uri: https://github.com/sponsors/pboling
349
349
  wiki_uri: https://github.com/kettle-dev/kettle-family/wiki
350
350
  news_uri: https://www.railsbling.com/tags/kettle-family
metadata.gz.sig CHANGED
Binary file