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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5db7a309b5bd19d9f2fadad656bc0d476cd8534f1dfded9dd10b7b590940391a
4
- data.tar.gz: 981f539a03b410d776c71991a197f96509a7bbebc3a70b99ceb6a04792f75d2e
3
+ metadata.gz: e89ecd3155db957b904e2809c181c36cec909742bae06ef17e02932d4713b991
4
+ data.tar.gz: 545cdf669a3f4cc739951dac5e3cede7abdd91b5691940bcd9765fee8e82a008
5
5
  SHA512:
6
- metadata.gz: 7ac9c69e1f2fa0e6fff9bbcc1d47b6f920663629042b9619fe419134987fecfa7651523a844109c4a69002e5eaf9b6112f3ee90a0b3f3236b99f2f2297e96588
7
- data.tar.gz: bcb37ce16bffe36551977e592a739a053738f4d7c6735ee2edaaf63ea7596f0cfedf8178066627fa92dbe7eed11d8feda57d1b5484b36723b347ccd52581abb2
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
 
@@ -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]) }
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module StreamChat
5
- VERSION = '3.19.1'
5
+ VERSION = '3.20.0'
6
6
  end
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.19.1
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-09-01 00:00:00.000000000 Z
11
+ date: 2025-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday