sendmux-core 1.1.0 → 1.2.0
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 +8 -0
- data/lib/sendmux/core/auth.rb +1 -0
- data/lib/sendmux/core/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: ff4ba7f22a000b14507a25981b13a01a670fb31e668df0557ebe9c2235250e70
|
|
4
|
+
data.tar.gz: 40c0a5588f8dcccdad392eb4a5fd377787515af71de933406ab1da8ea118b9fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1845afef061ef4c6fd27a43a286007a0f628db39439c3d2a7bf0f813873345cac550f2c662a826a7a573c5ca7ffd1c39ac26e5508e8a88440799fe29a3a25e36
|
|
7
|
+
data.tar.gz: 77b6fec300b2fdce52fa4c7f21bd1d5122d01f05db8e5c36cf5f90fbbf3877b43086cfa2ab4dbdd27ad33c6c7bf098c62bc27ada7ed5ee1677865e68b2b1d708
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.0](https://github.com/Sendmux/sendmux-sdk/compare/ruby-core/v1.1.0...ruby-core/v1.2.0) (2026-09-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add connection checks across SDKs, CLI and MCP ([77f449e](https://github.com/Sendmux/sendmux-sdk/commit/77f449e2c8cba49bc8bc84c49c35baa61120866a))
|
|
9
|
+
* **sdk:** add connection checks across clients, CLI and MCP ([3e02c67](https://github.com/Sendmux/sendmux-sdk/commit/3e02c67dcab45e37dad7abbdd4c4e1bd0b1fbbe6))
|
|
10
|
+
|
|
3
11
|
## [1.1.0](https://github.com/Sendmux/sendmux-sdk/compare/ruby-core/v1.0.0...ruby-core/v1.1.0) (2026-07-01)
|
|
4
12
|
|
|
5
13
|
|
data/lib/sendmux/core/auth.rb
CHANGED
|
@@ -54,6 +54,7 @@ module Sendmux
|
|
|
54
54
|
|
|
55
55
|
configuration.scheme = uri.scheme
|
|
56
56
|
configuration.host = uri.host
|
|
57
|
+
configuration.host += ":#{uri.port}" if uri.port && uri.port != uri.default_port
|
|
57
58
|
configuration.base_path = uri.path
|
|
58
59
|
configuration.ignore_operation_servers = true if configuration.respond_to?(:ignore_operation_servers=)
|
|
59
60
|
end
|
data/lib/sendmux/core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sendmux-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sendmux
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-09-08 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: faraday
|