stream-chat-ruby 3.25.0 → 3.26.1

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: 2235f7488f397e1fe12aec380882477dbec095ab982cccc1fd2e5bd59dc82499
4
- data.tar.gz: f3755f2162a2c1fe210485c09b32d78aa167b152b9af29b44c34ce25f5c109ac
3
+ metadata.gz: f76091a8b305ba916ed2217c639f46deca24f997c148aaac21dd1cdeb7664482
4
+ data.tar.gz: bd4e54bd949250094bb2d3ee3c350312f3faebe927c5521733e9ffd6bb08e90a
5
5
  SHA512:
6
- metadata.gz: 216d4b854c56b4ef619ce3ecaf03ec8a88fb0304b53a60da2868cc38316b40ada6cffe2aafdb41b1580de7b90b83c6f32cff04734eac7e965db789b02a6d2c2b
7
- data.tar.gz: 9d5bbf7426bd8dde38de6ea03515f8a6afe9b07313287717c1bade1156808ccced56524bc97af6ca02afef18b975036950dcf6e6e1e27fc45dac3c9021dbd6fe
6
+ metadata.gz: c4352825a7532841cb8667de383e977c6a8ae9908bd2e44dc8de5f714cb8ea6a186d90e7b820b795ce097f78492838bb453dba1e216a7d8284ff6f7347f0b4d4
7
+ data.tar.gz: f9e18435119dda8be34f8e282004fe9597cee212e34d5a676428d562005c44cdbcee8af19c4c3e2c878268c86beca1120a9173e9fe632341ee46221e6b758d38
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.26.1](https://github.com/GetStream/stream-chat-ruby/compare/v3.25.0...v3.26.1) (2026-04-29)
6
+
7
+
8
+ ### Features
9
+
10
+ * add delete_reactions support for ban user ([#206](https://github.com/GetStream/stream-chat-ruby/issues/206)) ([c876050](https://github.com/GetStream/stream-chat-ruby/commit/c876050936b3f4727002707e94db872c91a6114c))
11
+
12
+
13
+ ### Other
14
+
15
+ * relax jwt dependency to allow v3 ([#208](https://github.com/GetStream/stream-chat-ruby/issues/208)) ([8305806](https://github.com/GetStream/stream-chat-ruby/commit/8305806127859540bbcd936ccda19ac9c13b9897)), closes [#12716](https://github.com/GetStream/stream-chat-ruby/issues/12716)
16
+
5
17
  ## [3.25.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.24.0...v3.25.0) (2026-03-05)
6
18
 
7
19
 
data/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ > **Note:** [`getstream-ruby`](https://github.com/GetStream/getstream-ruby) is the new full-product SDK for Stream, covering Chat, Video, Moderation, and Feeds with long-term support.
2
+ >
3
+ > **`stream-chat-ruby` is now in maintenance mode.** It will continue to receive critical fixes and requested features, so it is safe to keep using. However, we encourage existing users to migrate when convenient and strongly recommend that new projects start with `getstream-ruby`.
4
+ >
5
+ > Check out the [Migration Guide](https://github.com/GetStream/getstream-ruby/blob/570aaf9b73b27fe01a4abbc1f7c6b639595c304e/docs/migration-from-stream-chat-ruby/README.md) for side-by-side examples covering common use cases.
6
+
1
7
  # Official Ruby SDK for [Stream Chat](https://getstream.io/chat/)
2
8
 
3
9
  [![build](https://github.com/GetStream/stream-chat-ruby/workflows/build/badge.svg)](https://github.com/GetStream/stream-chat-ruby/actions) [![Gem Version](https://badge.fury.io/rb/stream-chat-ruby.svg)](http://badge.fury.io/rb/stream-chat-ruby)
@@ -20,7 +20,7 @@ require 'stream-chat/moderation'
20
20
  require 'stream-chat/channel_batch_updater'
21
21
 
22
22
  module StreamChat
23
- DEFAULT_BLOCKLIST = 'profanity_en_2020_v1'
23
+ DEFAULT_BLOCKLIST = 'profanity'
24
24
  SOFT_DELETE = 'soft'
25
25
  HARD_DELETE = 'hard'
26
26
 
@@ -739,7 +739,7 @@ module StreamChat
739
739
  # Returns all blocklists.
740
740
  #
741
741
  # A Block List is a list of words that you can use to moderate chat messages. Stream Chat
742
- # comes with a built-in Block List called profanity_en_2020_v1 which contains over a thousand
742
+ # comes with a built-in Block List called profanity which contains over a thousand
743
743
  # of the most common profane words.
744
744
  # You can manage your own block lists via the Stream dashboard or APIs to a manage
745
745
  # blocklists and configure your channel types to use them.
@@ -751,7 +751,7 @@ module StreamChat
751
751
  # Returns a blocklist.
752
752
  #
753
753
  # A Block List is a list of words that you can use to moderate chat messages. Stream Chat
754
- # comes with a built-in Block List called profanity_en_2020_v1 which contains over a thousand
754
+ # comes with a built-in Block List called profanity which contains over a thousand
755
755
  # of the most common profane words.
756
756
  # You can manage your own block lists via the Stream dashboard or APIs to a manage
757
757
  # blocklists and configure your channel types to use them.
@@ -763,7 +763,7 @@ module StreamChat
763
763
  # Creates a blocklist.
764
764
  #
765
765
  # A Block List is a list of words that you can use to moderate chat messages. Stream Chat
766
- # comes with a built-in Block List called profanity_en_2020_v1 which contains over a thousand
766
+ # comes with a built-in Block List called profanity which contains over a thousand
767
767
  # of the most common profane words.
768
768
  # You can manage your own block lists via the Stream dashboard or APIs to a manage
769
769
  # blocklists and configure your channel types to use them.
@@ -775,7 +775,7 @@ module StreamChat
775
775
  # Updates a blocklist.
776
776
  #
777
777
  # A Block List is a list of words that you can use to moderate chat messages. Stream Chat
778
- # comes with a built-in Block List called profanity_en_2020_v1 which contains over a thousand
778
+ # comes with a built-in Block List called profanity which contains over a thousand
779
779
  # of the most common profane words.
780
780
  # You can manage your own block lists via the Stream dashboard or APIs to a manage
781
781
  # blocklists and configure your channel types to use them.
@@ -787,7 +787,7 @@ module StreamChat
787
787
  # Deletes a blocklist.
788
788
  #
789
789
  # A Block List is a list of words that you can use to moderate chat messages. Stream Chat
790
- # comes with a built-in Block List called profanity_en_2020_v1 which contains over a thousand
790
+ # comes with a built-in Block List called profanity which contains over a thousand
791
791
  # of the most common profane words.
792
792
  # You can manage your own block lists via the Stream dashboard or APIs to a manage
793
793
  # blocklists and configure your channel types to use them.
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module StreamChat
5
- VERSION = '3.25.0'
5
+ VERSION = '3.26.1'
6
6
  end
data/stream-chat.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
14
14
  gem.homepage = 'http://github.com/GetStream/stream-chat-ruby'
15
15
  gem.authors = ['getstream.io']
16
16
  gem.files = Dir.chdir(File.expand_path(__dir__)) do
17
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|sorbet|spec|\.github|scripts|assets)/}) }
17
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|sorbet|spec|\.github|scripts|assets|docs)/}) }
18
18
  end
19
19
  gem.required_ruby_version = '>=3.0.0'
20
20
  gem.metadata = {
@@ -29,7 +29,7 @@ Gem::Specification.new do |gem|
29
29
  gem.add_dependency 'faraday', '~> 2.12'
30
30
  gem.add_dependency 'faraday-multipart', '~> 1.1'
31
31
  gem.add_dependency 'faraday-net_http_persistent', '~> 2.3'
32
- gem.add_dependency 'jwt', '~> 2.10'
32
+ gem.add_dependency 'jwt', '>= 2.10', '< 4'
33
33
  gem.add_dependency 'net-http-persistent', '~> 4.0'
34
34
  gem.add_dependency 'sorbet-runtime', '>= 0.5.11820', '< 1'
35
35
  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.25.0
4
+ version: 3.26.1
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-03-05 00:00:00.000000000 Z
11
+ date: 2026-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -56,16 +56,22 @@ dependencies:
56
56
  name: jwt
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '2.10'
62
+ - - "<"
63
+ - !ruby/object:Gem::Version
64
+ version: '4'
62
65
  type: :runtime
63
66
  prerelease: false
64
67
  version_requirements: !ruby/object:Gem::Requirement
65
68
  requirements:
66
- - - "~>"
69
+ - - ">="
67
70
  - !ruby/object:Gem::Version
68
71
  version: '2.10'
72
+ - - "<"
73
+ - !ruby/object:Gem::Version
74
+ version: '4'
69
75
  - !ruby/object:Gem::Dependency
70
76
  name: net-http-persistent
71
77
  requirement: !ruby/object:Gem::Requirement