heartml 1.0.0.beta11 → 1.0.0.beta12

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: 22baf05df8518c46483c4c689f724feb5ac2b1a446555f4d12f3bec534c26fb8
4
- data.tar.gz: fcbc7708f8deaf2760bb5b021c51f3a7baeea5102e4a30c592f6692acac0bee8
3
+ metadata.gz: 8636b5bf59b3faa6b18cbc6848a794cecb3e9935cd209e8a85e619ebdeda5f79
4
+ data.tar.gz: beb6d956c8df7357c26c45aca81bd87222c8e476c42fb0b4907636c88a7785e1
5
5
  SHA512:
6
- metadata.gz: ff66eff6ecb6e79f64223b6d7e18c6e635164e2e41740412e4481ac15119a996b465fc4b01fe5254c3d4aa652bba9780cfbcf17a38f941ca1da46d61aaf8ce50
7
- data.tar.gz: 014a0f91536a95e1eb15cc1080e5896210e5e5dc334a967aee97e7106e316f9017a3ac468781348d0f938c695e16919ecac975a9051aa36389768c365a68c1a9
6
+ metadata.gz: 168d6809c47bc848bbed8d523fcbaf910df5ee0e5bbe04020ae91ed3b0c10bba005af4c0e556dcb05b14bb9877553757eea0d00da8fa0c5dd4033b24b52c45f1
7
+ data.tar.gz: 20285cb72493c1ce3f2fadbb95cd9f78cfb1ef11130602830974a420034457523cb9821a9e540ddfb2fa193ec054af5945b473f7c4d6cec947b28034d5b172b4
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.0.0.beta12] - 2024-03-10
6
+
7
+ - Bugfix: shouldn't swallow `host-*` attributes for Ruby initializers
8
+
5
9
  ## [1.0.0.beta11] - 2024-03-10
6
10
 
7
11
  - Fix behavior of boolean values (`true/false` on aria attributes, `""`/missing otherwise)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- heartml (1.0.0.beta11)
4
+ heartml (1.0.0.beta12)
5
5
  concurrent-ruby (~> 1.2)
6
6
  nokolexbor (>= 0.4.2)
7
7
 
@@ -45,7 +45,7 @@ module Heartml
45
45
  attrs.delete(k)
46
46
  end
47
47
  attrs.merge!(new_attrs)
48
- attrs.reject! { |k| k.start_with?("server-") || k.start_with?("iso-") || k.start_with?("host-") }
48
+ attrs.reject! { |k| k.start_with?("server-") || k.start_with?("iso-") }
49
49
  attrs.transform_keys! { _1.tr("-", "_").to_sym }
50
50
 
51
51
  obj = component.new(**attrs)
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Heartml
4
4
  # @return [String]
5
- VERSION = "1.0.0.beta11"
5
+ VERSION = "1.0.0.beta12"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heartml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta11
4
+ version: 1.0.0.beta12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared White
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-10 00:00:00.000000000 Z
11
+ date: 2024-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby