oddb2xml 3.0.12 → 3.0.13

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: e12453c6fd722397734fdaa3097a4d30b80d801099158f62278b137abf26f326
4
- data.tar.gz: 7c6f3a7f2f7b2bfb4e59bfbb49ccee75cfe0a9b82448e4d8804a4dd951740e2b
3
+ metadata.gz: a7683d46d314f40d96aee89b278969119fd9fe0b7736512e5e291eb127f57ab1
4
+ data.tar.gz: a4246838014fcc77f8a2560db7bf223ac5da3469171eed8873aaf82b81c20877
5
5
  SHA512:
6
- metadata.gz: 88ecd436bfc9aa028b9e696ebc4525d018c0563732071c8047535916ee2560f1e3dadf63fd60aaee8d201a205fba1fd81866b598ff96fd3e6558d221dd35d907
7
- data.tar.gz: c64e06d03256092805e6215536d0b1da6527db831b7e157dc6e6e65535933287444293c30bf7bdd6d31b607f589ac1563e1a186fcce3b8be9e5afb5f8c07f9ad
6
+ metadata.gz: a9eca4b589da6ffba2995a8f781a05f84529c376f234d9810bbfa3ff48d3c7bfa6126a1829c7560af676d085a6ff12bcf5556468cacaa63f64f70d794998541d
7
+ data.tar.gz: 36c76b18c0282ce169cfd152e0ff00bec9a2a670e7eb53c15a3c7e5a6014370e0884b0e8d64263847bd8a4219e5041aa6f8d257df354c42f2916d66fd9a59470
data/Gemfile CHANGED
@@ -7,6 +7,6 @@ group :debugger do
7
7
  gem "pry-doc"
8
8
  end
9
9
 
10
- gem "nokogiri", ">= 1.19.1"
10
+ gem "nokogiri", ">= 1.19.3"
11
11
  gem "rack", ">= 3.1.20"
12
12
  gem "mutex_m"
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- oddb2xml (3.0.12)
4
+ oddb2xml (3.0.13)
5
5
  csv
6
6
  htmlentities
7
7
  httpi
8
8
  mechanize (>= 2.8.5)
9
9
  minitar
10
10
  multi_json
11
- nokogiri (>= 1.19.1)
11
+ nokogiri (>= 1.19.3)
12
12
  optimist
13
13
  ox
14
14
  parslet
@@ -89,10 +89,10 @@ GEM
89
89
  net-http-persistent (4.0.8)
90
90
  connection_pool (>= 2.2.4, < 4)
91
91
  nkf (0.2.0)
92
- nokogiri (1.19.2)
92
+ nokogiri (1.19.3)
93
93
  mini_portile2 (~> 2.8.2)
94
94
  racc (~> 1.4)
95
- nokogiri (1.19.2-arm64-darwin)
95
+ nokogiri (1.19.3-arm64-darwin)
96
96
  racc (~> 1.4)
97
97
  nori (2.7.1)
98
98
  bigdecimal
@@ -220,7 +220,7 @@ DEPENDENCIES
220
220
  bundler
221
221
  flexmock
222
222
  mutex_m
223
- nokogiri (>= 1.19.1)
223
+ nokogiri (>= 1.19.3)
224
224
  oddb2xml!
225
225
  pry-byebug
226
226
  pry-doc
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ === 3.0.13 / 02.06.2026
2
+ * Security: bump the nokogiri floor to >= 1.19.3. Fixes two GitHub/Dependabot advisories against nokogiri < 1.19.3: a high-severity ReDoS (regular expression backtracking) in the CSS selector tokenizer, and a medium-severity memory leak in the XSLT transform.
3
+
1
4
  === 3.0.12 / 02.06.2026
2
5
  * Artikelstamm: fix FHIR limitations collapsing into a single empty <LIMITATION>. FHIR has no native BAG limitation code (LIMCD), so every limitation was emitted with an empty LIMNAMEBAG. The Artikelstamm groups its <LIMITATIONS> section by code, so all of them collapsed into one entry with an empty name, losing every other limitation text. The CUD id (the limitationIndication reference that already identifies each text) is now used as the limitation code / LIMNAMEBAG, so each distinct limitation is emitted and referenced correctly.
3
6
  * check_artikelstamm: fix crash "no implicit conversion of Symbol into Integer" in SemanticCheck. Ox (:hash_no_attrs) collapses a section containing exactly one child element (e.g. a single <LIMITATION>) into a Hash instead of an Array, and an empty section into nil; get_items now normalises every section to an Array so the checks no longer crash on one-element or empty PRODUCTS/LIMITATIONS/ITEMS.
data/README.md CHANGED
@@ -51,7 +51,7 @@ HIN (http://hin.ch) creates daily the actual file. They can be downloaded from `
51
51
  see `--help`.
52
52
 
53
53
  ```
54
- /opt/src/oddb2xml/bin/oddb2xml version 3.0.12
54
+ /opt/src/oddb2xml/bin/oddb2xml version 3.0.13
55
55
  Usage:
56
56
  oddb2xml [option]
57
57
  produced files are found under data
@@ -1,3 +1,3 @@
1
1
  module Oddb2xml
2
- VERSION = "3.0.12"
2
+ VERSION = "3.0.13"
3
3
  end
data/oddb2xml.gemspec CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.add_dependency "rubyzip", '~> 3.0.1'
24
24
  spec.add_dependency "minitar" # , '~> 0.5.2'
25
25
  spec.add_dependency "mechanize", ">= 2.8.5"
26
- spec.add_dependency "nokogiri", ">= 1.19.1"
26
+ spec.add_dependency "nokogiri", ">= 1.19.3"
27
27
  spec.add_dependency "savon" , '~> 2.12.0'
28
28
  spec.add_dependency "spreadsheet" # , '~> 1.0.0'
29
29
  spec.add_dependency "rubyXL", "~> 3.4.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oddb2xml
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.12
4
+ version: 3.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasuhiro Asaka, Zeno R.R. Davatz, Niklaus Giger
@@ -57,14 +57,14 @@ dependencies:
57
57
  requirements:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: 1.19.1
60
+ version: 1.19.3
61
61
  type: :runtime
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - ">="
66
66
  - !ruby/object:Gem::Version
67
- version: 1.19.1
67
+ version: 1.19.3
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: savon
70
70
  requirement: !ruby/object:Gem::Requirement