e-invoice-api 0.26.0 → 0.26.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 +4 -4
- data/CHANGELOG.md +28 -0
- data/README.md +1 -1
- data/lib/e_invoice_api/internal/util.rb +2 -3
- data/lib/e_invoice_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c7d290f34c964dc16393d7ccac540f560a4dd5833a4ad6b2cbdb2caeb8d75fa3
|
|
4
|
+
data.tar.gz: d766d2717329f1b7228f30e893f528eb8ea505fff0ebace0f5c7be1bf6a519a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2504a9927b38296e4a98ac694930b46ec8a61a57c941d768618e0abc8902bb247ef8b854b948fd91c8cee0d6dcd16db7cbd5944788c15b87395a0207b3b5341
|
|
7
|
+
data.tar.gz: 76a7607632b3beeef4953ad4fd942d2bf7559df5fad5ef6952294cfb36e7da45e3744cbf32d8648f2f17825baa89440d0d3f26a0ad9dca70b526606e7564ae89
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.26.2 (2026-04-01)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.26.1...v0.26.2](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.26.1...v0.26.2)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* variable name typo ([bffa1d2](https://github.com/e-invoice-be/e-invoice-rb/commit/bffa1d200bdcf96cab9fe76c302d519bdfbaa103))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* **ci:** support opting out of skipping builds on metadata-only commits ([1e7dc7f](https://github.com/e-invoice-be/e-invoice-rb/commit/1e7dc7fab78fb7aa5e3b878514a51de56487c54d))
|
|
15
|
+
|
|
16
|
+
## 0.26.1 (2026-03-27)
|
|
17
|
+
|
|
18
|
+
Full Changelog: [v0.26.0...v0.26.1](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.26.0...v0.26.1)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **internal:** correct multipart form field name encoding ([4bed606](https://github.com/e-invoice-be/e-invoice-rb/commit/4bed6066b55c0a5fbf4ab0b7e2d4474b9582f6db))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Chores
|
|
26
|
+
|
|
27
|
+
* **ci:** skip lint on metadata-only changes ([48d14ce](https://github.com/e-invoice-be/e-invoice-rb/commit/48d14ce95a45fc34315479de40bbfe83962fb8d3))
|
|
28
|
+
* **internal:** tweak CI branches ([8687e8d](https://github.com/e-invoice-be/e-invoice-rb/commit/8687e8d5e308562c7adef99a0331d1d3206bab0b))
|
|
29
|
+
* **internal:** update gitignore ([342e355](https://github.com/e-invoice-be/e-invoice-rb/commit/342e355df5e8608456ddc7d1c6ab3b94a11b7cc1))
|
|
30
|
+
|
|
3
31
|
## 0.26.0 (2026-03-09)
|
|
4
32
|
|
|
5
33
|
Full Changelog: [v0.25.0...v0.26.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.25.0...v0.26.0)
|
data/README.md
CHANGED
|
@@ -157,7 +157,7 @@ module EInvoiceAPI
|
|
|
157
157
|
in Hash | nil => coerced
|
|
158
158
|
coerced
|
|
159
159
|
else
|
|
160
|
-
message = "Expected a #{Hash} or #{EInvoiceAPI::Internal::Type::BaseModel}, got #{
|
|
160
|
+
message = "Expected a #{Hash} or #{EInvoiceAPI::Internal::Type::BaseModel}, got #{input.inspect}"
|
|
161
161
|
raise ArgumentError.new(message)
|
|
162
162
|
end
|
|
163
163
|
end
|
|
@@ -571,8 +571,7 @@ module EInvoiceAPI
|
|
|
571
571
|
y << "Content-Disposition: form-data"
|
|
572
572
|
|
|
573
573
|
unless key.nil?
|
|
574
|
-
|
|
575
|
-
y << "; name=\"#{name}\""
|
|
574
|
+
y << "; name=\"#{key}\""
|
|
576
575
|
end
|
|
577
576
|
|
|
578
577
|
case val
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: e-invoice-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.26.
|
|
4
|
+
version: 0.26.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- e-invoice
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-04-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|