stream-chat-ruby 3.19.1 → 3.20.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 +12 -0
- data/lib/stream-chat/client.rb +9 -0
- 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: e89ecd3155db957b904e2809c181c36cec909742bae06ef17e02932d4713b991
|
4
|
+
data.tar.gz: 545cdf669a3f4cc739951dac5e3cede7abdd91b5691940bcd9765fee8e82a008
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1b8be8b38c7bfdfcd563e6ad018ed960e9f78c63f3de343cd84823c9c0a9428d6cdad11da6c454de1bfd9893e4e52570f0a103cf2aafbbbefb25944a0f357e0
|
7
|
+
data.tar.gz: f482e06931fe46fcb5163b22a5a453347ea3a990038b492e1fe3bc59cedf619c4c414d07794122b4310cabd984b87538912f6def954dbbe1f7a387439d374a98
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,18 @@
|
|
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.20.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.19.0...v3.20.0) (2025-10-06)
|
6
|
+
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
* Added `Delete for me` support on behalf of a user ([#178](https://github.com/GetStream/stream-chat-ruby/issues/178)) ([770a441](https://github.com/GetStream/stream-chat-ruby/commit/770a441ff6243ab6d10fde7daa2b75b4137c4db0))
|
11
|
+
|
12
|
+
|
13
|
+
### Other
|
14
|
+
|
15
|
+
* **release:** 3.19.1 ([#179](https://github.com/GetStream/stream-chat-ruby/issues/179)) ([bae463b](https://github.com/GetStream/stream-chat-ruby/commit/bae463b298ffd047624dfc6a35c14475fd97d475))
|
16
|
+
|
5
17
|
### [3.19.1](https://github.com/GetStream/stream-chat-ruby/compare/v3.19.0...v3.19.1) (2025-09-01)
|
6
18
|
|
7
19
|
|
data/lib/stream-chat/client.rb
CHANGED
@@ -1065,6 +1065,15 @@ module StreamChat
|
|
1065
1065
|
post('reminders/query', data: params)
|
1066
1066
|
end
|
1067
1067
|
|
1068
|
+
# Send the mark delivered event for this user, only works if the `delivery_receipts` setting is enabled
|
1069
|
+
#
|
1070
|
+
# @param [StringKeyHash, nil] data The delivery confirmation data
|
1071
|
+
# @return [StreamChat::StreamResponse] API response
|
1072
|
+
sig { params(data: T.nilable(StringKeyHash), user_id: T.nilable(String)).returns(StreamChat::StreamResponse) }
|
1073
|
+
def mark_delivered(data = nil, user_id: nil)
|
1074
|
+
post('channels/delivered', data: data || {}, params: { user_id: user_id })
|
1075
|
+
end
|
1076
|
+
|
1068
1077
|
private
|
1069
1078
|
|
1070
1079
|
sig { returns(T::Hash[String, String]) }
|
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.20.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-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|