stream-chat-ruby 3.10.0 → 3.11.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 +7 -0
- data/lib/stream-chat/client.rb +3 -3
- data/lib/stream-chat/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: f53a0df9142d0043af5c998fbac1367d8c8f60e32612bef0b04e00d20c827b79
|
4
|
+
data.tar.gz: 8759f78fcc5830a3ea38e0260085731aabf01651d7c2705694f0fa3203f3cc5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb0b59f014efafb938d84a46ad8b7d22292872c20a98ae11c123d6bee78e575a162f86222bdece999e2c179693de99ed9594aed7ded6204e2b1ea1abb21bd6db
|
7
|
+
data.tar.gz: c32d18beaad49f5d8d77662a3e10eb4a40374d5da110344e555bf3bab7cfbad2c8b0aa7befa91eb9abdc202779ab6cd19c8b8ad662366a31ccea4a8a2b23e9a5
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
4
4
|
|
5
|
+
## [3.11.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.9.0...v3.11.0) (2025-03-21)
|
6
|
+
|
7
|
+
|
8
|
+
### Other
|
9
|
+
|
10
|
+
* **release:** 3.10.0 ([#151](https://github.com/GetStream/stream-chat-ruby/issues/151)) ([ac11fc1](https://github.com/GetStream/stream-chat-ruby/commit/ac11fc122ec97ffd1b2bce820efe55925e96277f))
|
11
|
+
|
5
12
|
## [3.10.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.9.0...v3.10.0) (2025-02-24)
|
6
13
|
|
7
14
|
## [3.9.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.7.0...v3.9.0) (2025-02-11)
|
data/lib/stream-chat/client.rb
CHANGED
@@ -177,9 +177,9 @@ module StreamChat
|
|
177
177
|
end
|
178
178
|
|
179
179
|
# Returns a message.
|
180
|
-
sig { params(id: String).returns(StreamChat::StreamResponse) }
|
181
|
-
def get_message(id)
|
182
|
-
get("messages/#{id}")
|
180
|
+
sig { params(id: String, options: T.untyped).returns(StreamChat::StreamResponse) }
|
181
|
+
def get_message(id, **options)
|
182
|
+
get("messages/#{id}", params: options)
|
183
183
|
end
|
184
184
|
|
185
185
|
# Searches for messages.
|
data/lib/stream-chat/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stream-chat-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- getstream.io
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|