kettle-dev 3.0.2 → 3.0.3

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: ac5e19991ef314add0cbb6f8c764a0389df6003ea291e5ea08bb76bf32c2786a
4
- data.tar.gz: 894c0f1521ec987771056394037f3aa2108634bea11830c47f630b43b65727e7
3
+ metadata.gz: 3dba036dfe3df165c8b4d39f4d35b12216eda38b12b49838e287eae0ff6ea449
4
+ data.tar.gz: c00bfc5fb9f3694b28144703d5970f44059545273eb55819cb94a19037958a85
5
5
  SHA512:
6
- metadata.gz: 2bbb2b78730584bfdddbf66664679393ec7c282ea8e24130b01019bc4e61c48da2d4be751d354679c0a76f6ac4ed23a28bfcf60efae081468ffa98cfbe66dfb5
7
- data.tar.gz: cc6156801f9ef0b6cd6e39ee614b63729acff1862e83cd4390319a98a6978ef06e148d82c255beb38a0d68a09531e435a4d57c7f315a9e4f4cb1cd929b16edff
6
+ metadata.gz: 2937dedbc88f065839a64b20d740604c621e502b419f0377f2c9c0a4c45f372946ad9ef264cec10c5c273400588701a11364df8ddaabb1afd1b18b1f13dcff58
7
+ data.tar.gz: 8eead4156ed919127019ea6870cd6edcc37a4147aa69e426dbe1499e4c0e6fdc3871c6fa625104a4d0b1ea53dbcf76e6701433eea5acc43505f67cfaacdc9fbf
checksums.yaml.gz.sig CHANGED
@@ -1,3 +1 @@
1
- �<e��� R�.sAC2��ľ�D��n�(j���HsEikWVw�}��e�]"ߢts4��R��<�M���7,}�Z��ݒ1���+���iN
2
- BU�%�2
3
- "%{+J7��O������'�sz��GE�'���!~a�h�۱��[���"A��1�B:X��t�������|��k{
1
+ )�i€���8�d�� :��� M��!�+�+����R��yJ����Mڈ��/��w?.e���Y��Q8`i�.���(b1{��&�T6��BːD���7U5[��媜�SV�ەv���19���K�Y�����^y���PL���L��wB�(E!�p��+��L��O�ȑ�dO��"YCہ �@�N��Y�5dU, ���O�3��Z�_U{����x���G�sG�ݧ��CB���I`��;C9���֌�.�Km���tg0���š�r�%�ҟRRb��wZd���I<U^+/�i���^�/_H8�����
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
+ ## [3.0.3] - 2026-08-10
34
+
35
+ - TAG: [v3.0.3][3.0.3t]
36
+ - COVERAGE: 91.36% -- 5617/6148 lines in 47 files
37
+ - BRANCH COVERAGE: 75.85% -- 2120/2795 branches in 47 files
38
+ - 51.00% documented
39
+
40
+ ### Fixed
41
+
42
+ - Skip volatile Star History chart image URLs during pre-release validation.
43
+
33
44
  ## [3.0.2] - 2026-08-10
34
45
 
35
46
  - TAG: [v3.0.2][3.0.2t]
@@ -3431,7 +3442,9 @@ Please file a bug if you notice a violation of semantic versioning.
3431
3442
  - Selecting will run the selected workflow via `act`
3432
3443
  - This may move to its own gem in the future.
3433
3444
 
3434
- [Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.2...HEAD
3445
+ [Unreleased]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.3...HEAD
3446
+ [3.0.3]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.2...v3.0.3
3447
+ [3.0.3t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v3.0.3
3435
3448
  [3.0.2]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.1...v3.0.2
3436
3449
  [3.0.2t]: https://github.com/kettle-dev/kettle-dev/releases/tag/v3.0.2
3437
3450
  [3.0.1]: https://github.com/kettle-dev/kettle-dev/compare/v3.0.0...v3.0.1
@@ -32,7 +32,8 @@ module Kettle
32
32
  class PreReleaseCLI
33
33
  IMAGE_URL_CACHE_TTL_SECONDS = 7 * 24 * 60 * 60
34
34
  DEFAULT_IMAGE_URL_SKIP_PATTERNS = [
35
- "https://api.star-history.com/svg*"
35
+ "https://api.star-history.com/svg*",
36
+ "https://star-history.dera.page/svg*"
36
37
  ].freeze
37
38
  FAMILY_CONFIG_PATHS = [".kettle-family.yml", ".structuredmerge/kettle-family.yml"].freeze
38
39
 
@@ -5,7 +5,7 @@ module Kettle
5
5
  # Version namespace for this gem.
6
6
  module Version
7
7
  # Current gem version.
8
- VERSION = "3.0.2"
8
+ VERSION = "3.0.3"
9
9
  end
10
10
  # Current gem version exposed at the traditional constant location.
11
11
  VERSION = Version::VERSION # Traditional Constant Location
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kettle-dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -400,10 +400,10 @@ licenses:
400
400
  - AGPL-3.0-only
401
401
  metadata:
402
402
  homepage_uri: https://kettle-dev.galtzo.com
403
- source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v3.0.2
404
- changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v3.0.2/CHANGELOG.md
403
+ source_code_uri: https://github.com/kettle-dev/kettle-dev/tree/v3.0.3
404
+ changelog_uri: https://github.com/kettle-dev/kettle-dev/blob/v3.0.3/CHANGELOG.md
405
405
  bug_tracker_uri: https://github.com/kettle-dev/kettle-dev/issues
406
- documentation_uri: https://www.rubydoc.info/gems/kettle-dev/3.0.2
406
+ documentation_uri: https://www.rubydoc.info/gems/kettle-dev/3.0.3
407
407
  funding_uri: https://github.com/sponsors/pboling
408
408
  wiki_uri: https://github.com/kettle-dev/kettle-dev/wiki
409
409
  news_uri: https://www.railsbling.com/tags/kettle-dev
metadata.gz.sig CHANGED
Binary file