e-invoice-api 0.9.0 → 0.9.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 +16 -0
- data/README.md +1 -1
- data/lib/e_invoice_api/internal/util.rb +5 -5
- 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: 188c01572097025d6123afdd6f049e891edb600515fe221deac568d1a948eab0
|
|
4
|
+
data.tar.gz: de099daa20ef8a98f80f7d0d3586154a17e14480ccdf3b4b88bf413735fcee10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ab212f80ddd5374aceff27fee41e00e5d9eff32a5492925c9ff86c00db97b645e2d7315cc1e51a9ebfc8ef8a547fb72bad467aa2611537f6787fd4abf80cb14
|
|
7
|
+
data.tar.gz: 631cfb0091eaecd569f38951524adcf4cf82afadbd27e0bb80c6ea986b7e6229c7469649ab15a03f0977e1bea3c0aa6f151f2b4db4e5e5066e01d8604e9acf92
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.2 (2025-10-16)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.9.1...v0.9.2](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.9.1...v0.9.2)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* absolutely qualified uris should always override the default ([cb73257](https://github.com/e-invoice-be/e-invoice-rb/commit/cb732572da1cc6675c2b2cd3a41029223feddf7f))
|
|
10
|
+
|
|
11
|
+
## 0.9.1 (2025-10-15)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.9.0...v0.9.1](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.9.0...v0.9.1)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* should not reuse buffers for `IO.copy_stream` interop ([c7b6adb](https://github.com/e-invoice-be/e-invoice-rb/commit/c7b6adb0ee1e0d71d786215f580c95faa6ef2492))
|
|
18
|
+
|
|
3
19
|
## 0.9.0 (2025-10-09)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.8.0...v0.9.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.8.0...v0.9.0)
|
data/README.md
CHANGED
|
@@ -346,8 +346,9 @@ module EInvoiceAPI
|
|
|
346
346
|
base_path, base_query = lhs.fetch_values(:path, :query)
|
|
347
347
|
slashed = base_path.end_with?("/") ? base_path : "#{base_path}/"
|
|
348
348
|
|
|
349
|
-
|
|
350
|
-
|
|
349
|
+
merged = {**parse_uri(rhs.fetch(:path)), **rhs.except(:path, :query)}
|
|
350
|
+
parsed_path, parsed_query = merged.fetch_values(:path, :query)
|
|
351
|
+
override = URI::Generic.build(**merged.slice(:scheme, :host, :port), path: parsed_path)
|
|
351
352
|
|
|
352
353
|
joined = URI.join(URI::Generic.build(lhs.except(:path, :query)), slashed, override)
|
|
353
354
|
query = deep_merge(
|
|
@@ -473,10 +474,9 @@ module EInvoiceAPI
|
|
|
473
474
|
# @return [Enumerable<String>]
|
|
474
475
|
def writable_enum(&blk)
|
|
475
476
|
Enumerator.new do |y|
|
|
476
|
-
buf = String.new
|
|
477
477
|
y.define_singleton_method(:write) do
|
|
478
|
-
self <<
|
|
479
|
-
|
|
478
|
+
self << _1.dup
|
|
479
|
+
_1.bytesize
|
|
480
480
|
end
|
|
481
481
|
|
|
482
482
|
blk.call(y)
|
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.9.
|
|
4
|
+
version: 0.9.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: 2025-10-
|
|
11
|
+
date: 2025-10-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|