e-invoice-api 0.9.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bbf3a27710cd345a0c0c13d486baecae18cdcbc2c174a03ebdb2c4b80bea41b2
4
- data.tar.gz: 43514f9dad9b42c2f82c952b405220b3546f0521b4697b5f891001af258fc16d
3
+ metadata.gz: 188c01572097025d6123afdd6f049e891edb600515fe221deac568d1a948eab0
4
+ data.tar.gz: de099daa20ef8a98f80f7d0d3586154a17e14480ccdf3b4b88bf413735fcee10
5
5
  SHA512:
6
- metadata.gz: d216d3e01878b30baa57f250e2710dcfae3c305cf6a39c3166877b48aead7efea0c1eef70651843887817ce75613e1c4a5a4d30549fade5c7b8a338be15a68b1
7
- data.tar.gz: ef616a0029858f98ecbc0217f3b3d0933d8e81a9a313b9cba1dcb55af968c47b02d4cdfddd7a2d7ad934dc953cb16b6a4d872fa7e27838a45813ef278800e644
6
+ metadata.gz: 6ab212f80ddd5374aceff27fee41e00e5d9eff32a5492925c9ff86c00db97b645e2d7315cc1e51a9ebfc8ef8a547fb72bad467aa2611537f6787fd4abf80cb14
7
+ data.tar.gz: 631cfb0091eaecd569f38951524adcf4cf82afadbd27e0bb80c6ea986b7e6229c7469649ab15a03f0977e1bea3c0aa6f151f2b4db4e5e5066e01d8604e9acf92
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 0.9.1 (2025-10-15)
4
12
 
5
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)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "e-invoice-api", "~> 0.9.1"
20
+ gem "e-invoice-api", "~> 0.9.2"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -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
- parsed_path, parsed_query = parse_uri(rhs.fetch(:path)).fetch_values(:path, :query)
350
- override = URI::Generic.build(**rhs.slice(:scheme, :host, :port), path: parsed_path)
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(
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EInvoiceAPI
4
- VERSION = "0.9.1"
4
+ VERSION = "0.9.2"
5
5
  end
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.1
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-15 00:00:00.000000000 Z
11
+ date: 2025-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool