activemail 1.2.1 → 1.2.2

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: 3ad6c37435b356eecce625c0d03128d400a0684893d9fe74794038bd58d93e6e
4
- data.tar.gz: 2bff13d848732be8df3643cc386c64b72dc0bde713a0b7df6873e97d55a41877
3
+ metadata.gz: 47993a9061efeb2fe36ded1328f98d53eabe7bd22c3b689f962df99b249a5f95
4
+ data.tar.gz: 68a05bc3eb6520e119c94f50dc39ea5b6135444bbf5ff7df0d02f1d00c4f0259
5
5
  SHA512:
6
- metadata.gz: b93e6c7efbeba96471a2989e74abf7308896255fa6338a25adadaaa1bdbde68625c4adb210b13cabf1752cd596d91168d19fe86ff77b4de00cb7e2d144aba4aa
7
- data.tar.gz: 55fafc3be6f04051d719de0735bc3f89a7689357913da9da15242130a7e80fbd54ee65574397bcf509c873a2a1ef21000a951b00dafd8353c3ff2734941001dd
6
+ metadata.gz: 6f498c03cb1bd2f5b1371d8d55429b8eb1e5bf7f96d55a39982e6d7a19d066c45f4d97699f8b3fdc76f8b0825d747a48b35b23cfbe59a2ef66e88c360a60d859
7
+ data.tar.gz: ec69158e556709a4a61a24ed44c51a05d1107270d2a4e60b19ebb43f461d5221f8a1ff8488bb68e2b8093d378b89461edd83d2dc4517a666d6c7fcc07944791b
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project are documented here.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.2] - 2026-07-23
9
+
10
+ ### Changed
11
+
12
+ - Publish to RubyGems via trusted publishing (OIDC) instead of a long-lived API key.
13
+ - Harden the `blank_link_rel=` setter (internal, no behaviour change).
14
+
8
15
  ## [1.2.1] - 2026-07-01
9
16
 
10
17
  ### Changed
@@ -198,7 +198,7 @@ module ActiveMail
198
198
  raise TypeError, "blank_link_rel must be a String or nil, got #{value.inspect} (#{value.class})" unless value.nil? || value.is_a?(String)
199
199
 
200
200
  normalized = value&.strip
201
- @blank_link_rel = normalized&.empty? ? nil : normalized
201
+ @blank_link_rel = normalized && normalized.empty? ? nil : normalized
202
202
  end
203
203
 
204
204
  sig { params(value: T.untyped).returns(ActiveMail::ComponentMap) }
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module ActiveMail
5
- VERSION = '1.2.1'
5
+ VERSION = '1.2.2'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activemail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Advitam