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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 977bc17be602b7d46fac9ecaeef94efa65d5650360749b5ebf5e4911a3e97db8
4
- data.tar.gz: fbf8e464be8d85e3f10e8c951b6aefdb9cccf459854ff88e17038a3795bb3c17
3
+ metadata.gz: c4ef092c72fd38655964df3e01060882dce267369cc5fabb82f0aa77cb58a75a
4
+ data.tar.gz: 5cea63ed4298d413f0bc6ff96168b0a7afc24554bb1884444dda03ee353ea2cd
5
5
  SHA512:
6
- metadata.gz: 8ca0cbc98d29de6fad8c64d42f7db87468ffa70b625332556ab056859886e71f756811e8c2764c4e6bd15776aaa0f58b5d73643ac6f3ed968a9c80e620665425
7
- data.tar.gz: aed94b699d33b51b8e0d7c1e4b9cd1393b3ec91b515c3f8e916ffb351ce855a95d8ace38bf61c5049f2c3a0d545893767dc8364e9851990186212487a2f15d57
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
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module StreamChat
5
- VERSION = '3.23.1'
5
+ VERSION = '3.24.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.23.1
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-17 00:00:00.000000000 Z
11
+ date: 2026-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday