terminal-shop 3.9.2 → 3.9.3

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: 045164efa87078339e485df768aeeb1396b50b065e508c8f55de1f847a6c0b2d
4
- data.tar.gz: 70f4256c27c436a237556e0e5eeb04400cce7fec891e56fe1e1a4173c75dec72
3
+ metadata.gz: ab7a1ea1c8de85523ff44623d41356998dd5bada3747e6efc20dd24dba4075e8
4
+ data.tar.gz: 1388a54611762d55dc85565ceffb0e9449c2463c88025084f14862aa4ef3c2c4
5
5
  SHA512:
6
- metadata.gz: f2ed700093e40e5a1bbcff5065d0a56a79cf8506a22ee7d9e18f702c9c61504440770f41a3d2eca92b7111184177bae0ff963c2685334389409feea0837c078a
7
- data.tar.gz: 26ba3456b464e1ed33f4fe5e07e1404bf97c67fc7833c82b20943d239ba0d1f7db878a5ef81cacf9303bd338f7d3aaa54ec94c92d10aa27a57ab06dfe637b237
6
+ metadata.gz: 9c4c251e363b1e053a7d37393ce44218ae6f40bc876f3e51a7192361fcfaa09ff04b9659e97da304791da91a00e7e77804fb54bd440a17f699e3699d3d63b567
7
+ data.tar.gz: 8a325f17115e06bbe3a3ccf2751e03841a4cb7f310ce1fea7cf6b7f7746e160c4a23927e4b5465799e15b4796cd542d3aa28c4e7801e0f49fe21f3f91ca2d734
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.9.3 (2025-10-16)
4
+
5
+ Full Changelog: [v3.9.2...v3.9.3](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v3.9.2...v3.9.3)
6
+
7
+ ### Bug Fixes
8
+
9
+ * absolutely qualified uris should always override the default ([a277185](https://github.com/terminaldotshop/terminal-sdk-ruby/commit/a2771859a9a3931bed9854d2eea945070ea7fe13))
10
+
3
11
  ## 3.9.2 (2025-10-15)
4
12
 
5
13
  Full Changelog: [v3.9.1...v3.9.2](https://github.com/terminaldotshop/terminal-sdk-ruby/compare/v3.9.1...v3.9.2)
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 "terminal-shop", "~> 3.9.2"
20
+ gem "terminal-shop", "~> 3.9.3"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -346,8 +346,9 @@ module TerminalShop
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 TerminalShop
4
- VERSION = "3.9.2"
4
+ VERSION = "3.9.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terminal-shop
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.9.2
4
+ version: 3.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Terminal
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