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 +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -0
- data/lib/versacommerce/theme_api_client/fetcher.rb +4 -1
- data/lib/versacommerce/theme_api_client/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: b55076c626acc68c3a8842ef61e738ba44a6abe7e89e2dfcfc3916998dac7c24
|
|
4
|
+
data.tar.gz: 2b8bb0bd1c1920663c6f978024cb933da8ec5d9c9d3b7d584fdb123406969a7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d1640c6dfedcbe81522344c4bf27cff199c17721323bb1a3e59f4c04739b00a01802deb76fd98c090a85e379f8c42968d8acb733f0f8dfb52a2f98dd36e83fd
|
|
7
|
+
data.tar.gz: a0f60e0ec95a0edb1b717717d4830e50dfbb86cda612811a136a8d469f231cb0c6f0f67e1cc358c87403b7c5a2d284b4e84c22c016df9311ad6278bc20613696
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
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
|
-
|
|
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
|
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.
|
|
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.
|
|
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.
|