stream-chat-ruby 3.3.0 → 3.4.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: 73e40b4cf714cd04476c91ac638895cab0327dc618fb54031a83aaadc8b3279a
4
- data.tar.gz: b5c98b143f98798cb2cd9db4e5a3c2c8c4cc7aaf9e35aa55a392c371d06fc970
3
+ metadata.gz: c3120569255394b3306b2748c2883707f7c98bff14353f6b0dd8ff7b9bfdcc1d
4
+ data.tar.gz: 9a715e02897a4ab371a78f8fb31e9669023dd84ae01bd7d5c67a77fa698ccfeb
5
5
  SHA512:
6
- metadata.gz: 74e06fd1205667b6c0a6f2d745f197aac2639ca5d932dee52bea8f2a4e371d9fc7d4ed8c2663010b47a1b1af0d7dd644f3bdf16b26f0048ed2fad6d8a5c18859
7
- data.tar.gz: a91d9ec87dfb82fb7a393212a08641bd4b8164ccd38ef0259fbcb27d4824dc3a4b0330b973b6d46315ab77cf17c357dd48961cf37ac3ccf1748310e3fb6bfb8f
6
+ metadata.gz: 10ff4a6917a0081a33eb92a55d05142f9b97dab0e297a171f4f52122bcd907fcd9a5999673b7b61cedf7fbcf861ee467bb226cf6b0cbe3bc626a3fc35d651f52
7
+ data.tar.gz: e2dd165c34ec9a570b8e5b8b9e4f36e1922c37909680b104441e9c7816602e96d06cf0376e1507b94d34dd5c10a82daebb4f2837e5e7a5f5a9f31321559d4d86
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.4.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.3.0...v3.4.0) (2023-07-19)
6
+
7
+
8
+ ### Features
9
+
10
+ * commit message endpoint ([#129](https://github.com/GetStream/stream-chat-ruby/issues/129)) ([09eabb3](https://github.com/GetStream/stream-chat-ruby/commit/09eabb33f4bcfa6f8881dc545060bc5bdd51374e))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * sorbet type for mark_read function signature ([#130](https://github.com/GetStream/stream-chat-ruby/issues/130)) ([7ea0f51](https://github.com/GetStream/stream-chat-ruby/commit/7ea0f517592c1819e223a65eedb53caa85a92817))
16
+
5
17
  ## [3.3.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.2.0...v3.3.0) (2022-11-17)
6
18
 
7
19
 
data/CONTRIBUTING.md CHANGED
@@ -14,7 +14,23 @@ $ bundle install --path vendor/bundle
14
14
  ### Run tests
15
15
 
16
16
  ```shell
17
- $ STREAM_KEY=my_api_key STREAM_SECRET=my_api_secret bundle exec rake spec
17
+ $ STREAM_KEY=my_api_key STREAM_SECRET=my_api_secret bundle exec rspec spec
18
+ ```
19
+
20
+ ### Run specific test
21
+
22
+ Add :focus tag on target test:
23
+
24
+ ```rb
25
+ it 'can mark messages as read', :focus do
26
+ # test something
27
+ end
28
+ ```
29
+
30
+ And then run as following:
31
+
32
+ ```shell
33
+ $ STREAM_KEY=myapi_key STREAM_SECRET=my_secret STREAM_CHAT_URL=http://127.0.0.1:3030 bundle exec rspec spec --tag focus
18
34
  ```
19
35
 
20
36
  ### Linters and type check
data/Gemfile CHANGED
@@ -8,13 +8,15 @@ group :dev do
8
8
  gem 'method_source', '~> 1.0'
9
9
  gem 'pry', '~> 0.14'
10
10
  gem 'pry-doc', '~> 1.3'
11
+ gem 'rake', '~> 13.0'
12
+ gem 'rspec', '~> 3.12'
11
13
  gem 'rubocop', '~> 1.38', require: false
12
14
  gem 'rubocop-ast', '~> 1.23', require: false
15
+ gem 'simplecov', '~> 0.21.2'
16
+ gem 'simplecov-console', '~> 0.9.1'
13
17
  gem 'sorbet', '~> 0.5.10539'
14
18
  end
15
19
 
16
20
  group :test do
17
21
  gem 'rack', '~> 2.2.4'
18
- gem 'simplecov', '~> 0.21.2'
19
- gem 'simplecov-console', '~> 0.9.1'
20
22
  end
data/SECURITY.md ADDED
@@ -0,0 +1,16 @@
1
+ # Reporting a Vulnerability
2
+ At Stream we are committed to the security of our Software. We appreciate your efforts in disclosing vulnerabilities responsibly and we will make every effort to acknowledge your contributions.
3
+
4
+ Report security vulnerabilities at the following email address:
5
+ ```
6
+ [security@getstream.io](mailto:security@getstream.io)
7
+ ```
8
+ Alternatively it is also possible to open a new issue in the affected repository, tagging it with the `security` tag.
9
+
10
+ A team member will acknowledge the vulnerability and will follow-up with more detailed information. A representative of the security team will be in touch if more information is needed.
11
+
12
+ # Information to include in a report
13
+ While we appreciate any information that you are willing to provide, please make sure to include the following:
14
+ * Which repository is affected
15
+ * Which branch, if relevant
16
+ * Be as descriptive as possible, the team will replicate the vulnerability before working on a fix.
@@ -219,7 +219,7 @@ module StreamChat
219
219
  end
220
220
 
221
221
  # Sends the mark read event for this user, only works if the `read_events` setting is enabled.
222
- sig { params(user_id: String, options: StringKeyHash).returns(StreamChat::StreamResponse) }
222
+ sig { params(user_id: String, options: T.untyped).returns(StreamChat::StreamResponse) }
223
223
  def mark_read(user_id, **options)
224
224
  payload = add_user_id(options, user_id)
225
225
  @client.post("#{url}/read", data: payload)
@@ -361,6 +361,12 @@ module StreamChat
361
361
  update_message_partial(message_id, updates, user_id: user_id)
362
362
  end
363
363
 
364
+ # commits a message.
365
+ sig { params(message_id: String).returns(StreamChat::StreamResponse) }
366
+ def commit_message(message_id)
367
+ post("messages/#{message_id}/commit")
368
+ end
369
+
364
370
  # Updates a message. Fully overwrites a message.
365
371
  # For partial update, use `update_message_partial` method.
366
372
  sig { params(message: StringKeyHash).returns(StreamChat::StreamResponse) }
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module StreamChat
5
- VERSION = '3.3.0'
5
+ VERSION = '3.4.0'
6
6
  end
data/stream-chat.gemspec CHANGED
@@ -32,8 +32,4 @@ Gem::Specification.new do |gem|
32
32
  gem.add_dependency 'jwt', '~> 2.3'
33
33
  gem.add_dependency 'net-http-persistent', '~> 4.0'
34
34
  gem.add_dependency 'sorbet-runtime', '~> 0.5.10539'
35
- gem.add_development_dependency 'rake', '~> 13.0'
36
- gem.add_development_dependency 'rspec', '~> 3.12'
37
- gem.add_development_dependency 'simplecov', '~> 0.21.2'
38
- gem.add_development_dependency 'simplecov-console', '~> 0.9.1'
39
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.3.0
4
+ version: 3.4.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: 2022-11-17 00:00:00.000000000 Z
11
+ date: 2023-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -94,62 +94,6 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 0.5.10539
97
- - !ruby/object:Gem::Dependency
98
- name: rake
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: '13.0'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
110
- version: '13.0'
111
- - !ruby/object:Gem::Dependency
112
- name: rspec
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - "~>"
116
- - !ruby/object:Gem::Version
117
- version: '3.12'
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - "~>"
123
- - !ruby/object:Gem::Version
124
- version: '3.12'
125
- - !ruby/object:Gem::Dependency
126
- name: simplecov
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: 0.21.2
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - "~>"
137
- - !ruby/object:Gem::Version
138
- version: 0.21.2
139
- - !ruby/object:Gem::Dependency
140
- name: simplecov-console
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - "~>"
144
- - !ruby/object:Gem::Version
145
- version: 0.9.1
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - "~>"
151
- - !ruby/object:Gem::Version
152
- version: 0.9.1
153
97
  description: Ruby client for Stream Chat.
154
98
  email: support@getstream.io
155
99
  executables: []
@@ -166,6 +110,7 @@ files:
166
110
  - PULL_REQUEST_TEMPLATE.md
167
111
  - README.md
168
112
  - Rakefile
113
+ - SECURITY.md
169
114
  - lib/stream-chat.rb
170
115
  - lib/stream-chat/channel.rb
171
116
  - lib/stream-chat/client.rb
@@ -200,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
200
145
  - !ruby/object:Gem::Version
201
146
  version: '0'
202
147
  requirements: []
203
- rubygems_version: 3.1.2
148
+ rubygems_version: 3.3.5
204
149
  signing_key:
205
150
  specification_version: 4
206
151
  summary: The low level client for serverside calls for Stream Chat.