stream-chat-ruby 3.23.1 → 3.24.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/channel_batch_updater.rb +0 -30
- 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: c4ef092c72fd38655964df3e01060882dce267369cc5fabb82f0aa77cb58a75a
|
|
4
|
+
data.tar.gz: 5cea63ed4298d413f0bc6ff96168b0a7afc24554bb1884444dda03ee353ea2cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e0e5e53dd62876ac3d292744a4f2e7d73fa08c7ca7e0182252ce668c006aa54d57de9580e0f0ee558cd6851716c0b605d159370fccbbb7ec8c517b075afdbc5
|
|
7
|
+
data.tar.gz: c1a1200464aa02ffba1ace3d76a98f624823814067fa1838ed5d67f0980e13fbe59e87d71ce091d82c94d109b419e644ee5730567b2ae3b31902e02941c98321
|
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.24.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.23.1...v3.24.0) (2026-02-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* remove filterTags from channel batch update API ([#198](https://github.com/GetStream/stream-chat-ruby/issues/198)) ([f8aa0f0](https://github.com/GetStream/stream-chat-ruby/commit/f8aa0f02579cdff4c6610cf5c4021f574065a1d6))
|
|
11
|
+
|
|
5
12
|
### [3.23.1](https://github.com/GetStream/stream-chat-ruby/compare/v3.23.0...v3.23.1) (2026-02-17)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -180,35 +180,5 @@ module StreamChat
|
|
|
180
180
|
}
|
|
181
181
|
)
|
|
182
182
|
end
|
|
183
|
-
|
|
184
|
-
# addFilterTags - Add filter tags to channels matching the filter
|
|
185
|
-
# @param filter [StringKeyHash] Filter to select channels
|
|
186
|
-
# @param tags [T::Array[String]] Tags to add
|
|
187
|
-
# @return [StreamChat::StreamResponse] The server response
|
|
188
|
-
sig { params(filter: StringKeyHash, tags: T::Array[String]).returns(StreamChat::StreamResponse) }
|
|
189
|
-
def add_filter_tags(filter, tags)
|
|
190
|
-
@client.update_channels_batch(
|
|
191
|
-
{
|
|
192
|
-
operation: 'addFilterTags',
|
|
193
|
-
filter: filter,
|
|
194
|
-
filter_tags_update: tags
|
|
195
|
-
}
|
|
196
|
-
)
|
|
197
|
-
end
|
|
198
|
-
|
|
199
|
-
# removeFilterTags - Remove filter tags from channels matching the filter
|
|
200
|
-
# @param filter [StringKeyHash] Filter to select channels
|
|
201
|
-
# @param tags [T::Array[String]] Tags to remove
|
|
202
|
-
# @return [StreamChat::StreamResponse] The server response
|
|
203
|
-
sig { params(filter: StringKeyHash, tags: T::Array[String]).returns(StreamChat::StreamResponse) }
|
|
204
|
-
def remove_filter_tags(filter, tags)
|
|
205
|
-
@client.update_channels_batch(
|
|
206
|
-
{
|
|
207
|
-
operation: 'removeFilterTags',
|
|
208
|
-
filter: filter,
|
|
209
|
-
filter_tags_update: tags
|
|
210
|
-
}
|
|
211
|
-
)
|
|
212
|
-
end
|
|
213
183
|
end
|
|
214
184
|
end
|
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.24.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: 2026-02-
|
|
11
|
+
date: 2026-02-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|