versacommerce-theme_api_client 1.0.2 → 1.0.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: 2475dfd16c9b90dd2a5d6d76a5611d39b188131152560698dbf7e215b0cac5e6
4
- data.tar.gz: fe2ece15355542927dc8c3584c465b4a3c474e3a6d7e29abe1076f90ead03276
3
+ metadata.gz: b55076c626acc68c3a8842ef61e738ba44a6abe7e89e2dfcfc3916998dac7c24
4
+ data.tar.gz: 2b8bb0bd1c1920663c6f978024cb933da8ec5d9c9d3b7d584fdb123406969a7c
5
5
  SHA512:
6
- metadata.gz: 95bf32338399a00967aaa6e3454807e3563d5eaecc98761f14c0e80ad400c8c92252af7d8ab819a3215db2323b691898ff60fe7dec20f6678853f9c455e9cbde
7
- data.tar.gz: 372c77b36a475243e133f48c0472b8c2acde9a752feee9f92ca923b641f00f8fa7011085d69434c6231d1896b3ddc2ae301e2715cf32d140886dda3bc441fd58
6
+ metadata.gz: 4d1640c6dfedcbe81522344c4bf27cff199c17721323bb1a3e59f4c04739b00a01802deb76fd98c090a85e379f8c42968d8acb733f0f8dfb52a2f98dd36e83fd
7
+ data.tar.gz: a0f60e0ec95a0edb1b717717d4830e50dfbb86cda612811a136a8d469f231cb0c6f0f67e1cc358c87403b7c5a2d284b4e84c22c016df9311ad6278bc20613696
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.3
1
+ 3.3.6
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.3] - 2025-10-30
9
+
10
+ ### Fixed
11
+ - SSL context configuration now correctly uses HTTP gem 5.x API
12
+ - Fixed `with_ssl_context` implementation to work with HTTP::Options and HTTP::Client
13
+
8
14
  ## [1.0.2] - 2025-10-30
9
15
 
10
16
  ### Added
@@ -91,7 +91,10 @@ module Versacommerce
91
91
  require 'openssl'
92
92
  ssl_context = OpenSSL::SSL::SSLContext.new
93
93
  ssl_context.verify_mode = OpenSSL::SSL::VERIFY_NONE
94
- http_client = http_client.use(ssl_context: ssl_context)
94
+
95
+ # Create new options with SSL context and rebuild HTTP client
96
+ new_options = http_client.default_options.with_ssl_context(ssl_context)
97
+ http_client = HTTP::Client.new(new_options)
95
98
  end
96
99
 
97
100
  http_client
@@ -1,5 +1,5 @@
1
1
  module Versacommerce
2
2
  class ThemeAPIClient
3
- VERSION = Gem::Version.new('1.0.2')
3
+ VERSION = Gem::Version.new('1.0.3')
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: versacommerce-theme_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - VersaCommerce GmbH
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
167
  - !ruby/object:Gem::Version
168
168
  version: '0'
169
169
  requirements: []
170
- rubygems_version: 3.3.26
170
+ rubygems_version: 3.5.22
171
171
  signing_key:
172
172
  specification_version: 4
173
173
  summary: API Client for the VersaCommercer Theme API.