message_bus 4.3.8 → 4.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 +4 -4
- data/.github/workflows/ci.yml +38 -24
- data/.rubocop.yml +6 -2
- data/CHANGELOG +14 -2
- data/README.md +1 -1
- data/Rakefile +2 -4
- data/lib/message_bus/backends/base.rb +0 -1
- data/lib/message_bus/backends/postgres.rb +1 -1
- data/lib/message_bus/backends/redis.rb +13 -35
- data/lib/message_bus/rack/middleware.rb +5 -1
- data/lib/message_bus/version.rb +1 -1
- data/lib/message_bus.rb +5 -4
- data/message_bus.gemspec +4 -2
- data/package-lock.json +386 -186
- data/spec/integration/http_client_spec.rb +0 -6
- data/spec/lib/message_bus/multi_process_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +7 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 357d1643581a819f8b51412902cf1e3c666d87f8971b1e56ae2d1d822a60c984
|
4
|
+
data.tar.gz: 86fe067d70065dab59e4a8a739fd040d858af8b4e7658a4e4bcb36c79d41514a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef5368939b9c41b4a9faf41ac10f621a07d26d15760d6a5ab5dcc3eb6cc9f845923fc1400761fe2911fcb85f9eab8016778c20127228112618f67c0ccb77c238
|
7
|
+
data.tar.gz: f2cfded03670efd4d8f3098002a4709781b4f59e98c6f19102f462f5965aa51cfd6a11b4dcacd4b82470305cd85d04a6ce623029e2c0dde2ad7cbad1ca8b3fc8
|
data/.github/workflows/ci.yml
CHANGED
@@ -7,9 +7,36 @@ on:
|
|
7
7
|
pull_request:
|
8
8
|
|
9
9
|
jobs:
|
10
|
-
|
10
|
+
lint:
|
11
11
|
runs-on: ubuntu-latest
|
12
|
-
|
12
|
+
timeout-minutes: 5
|
13
|
+
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@v4
|
16
|
+
|
17
|
+
- uses: ruby/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: "3.3"
|
20
|
+
bundler-cache: true
|
21
|
+
|
22
|
+
- name: Set up Node.js
|
23
|
+
uses: actions/setup-node@v4
|
24
|
+
with:
|
25
|
+
node-version: 20
|
26
|
+
cache: npm
|
27
|
+
|
28
|
+
- name: Setup npm
|
29
|
+
run: npm install
|
30
|
+
|
31
|
+
- name: Rubocop
|
32
|
+
run: bundle exec rubocop
|
33
|
+
|
34
|
+
- name: ESLint
|
35
|
+
run: npx eslint .
|
36
|
+
|
37
|
+
test:
|
38
|
+
runs-on: ubuntu-latest
|
39
|
+
name: Ruby ${{ matrix.ruby }} (${{ matrix.redis }})
|
13
40
|
timeout-minutes: 10
|
14
41
|
|
15
42
|
env:
|
@@ -20,12 +47,12 @@ jobs:
|
|
20
47
|
strategy:
|
21
48
|
fail-fast: false
|
22
49
|
matrix:
|
23
|
-
ruby: [
|
24
|
-
redis: [5, 6]
|
50
|
+
ruby: ["3.2", "3.3", "3.4"]
|
51
|
+
redis: ["redis:5", "redis:6", "valkey/valkey"]
|
25
52
|
|
26
53
|
services:
|
27
54
|
postgres:
|
28
|
-
image: postgres:
|
55
|
+
image: postgres:16
|
29
56
|
env:
|
30
57
|
POSTGRES_DB: message_bus_test
|
31
58
|
POSTGRES_PASSWORD: postgres
|
@@ -33,7 +60,7 @@ jobs:
|
|
33
60
|
- 5432:5432
|
34
61
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
35
62
|
redis:
|
36
|
-
image: ${{
|
63
|
+
image: ${{ matrix.redis }}
|
37
64
|
ports:
|
38
65
|
- 6379:6379
|
39
66
|
options: >-
|
@@ -43,41 +70,28 @@ jobs:
|
|
43
70
|
--health-retries 5
|
44
71
|
|
45
72
|
steps:
|
46
|
-
- uses: actions/checkout@
|
73
|
+
- uses: actions/checkout@v4
|
47
74
|
|
48
75
|
- uses: ruby/setup-ruby@v1
|
49
76
|
with:
|
50
77
|
ruby-version: ${{ matrix.ruby }}
|
51
78
|
bundler-cache: true
|
52
79
|
|
53
|
-
- name: Set up Node.js
|
54
|
-
uses: actions/setup-node@v3
|
55
|
-
with:
|
56
|
-
node-version: 18
|
57
|
-
cache: npm
|
58
|
-
|
59
|
-
- name: Setup npm
|
60
|
-
run: npm install
|
61
|
-
|
62
80
|
- name: Tests
|
63
81
|
env:
|
64
82
|
TESTOPTS: --verbose
|
65
83
|
run: bundle exec rake
|
66
|
-
timeout-minutes: 3
|
67
|
-
|
68
|
-
- name: Linting
|
69
|
-
run: npx eslint .
|
70
84
|
|
71
85
|
publish:
|
72
86
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
73
|
-
needs:
|
87
|
+
needs: [lint, test]
|
74
88
|
runs-on: ubuntu-latest
|
75
89
|
|
76
90
|
steps:
|
77
|
-
- uses: actions/checkout@
|
91
|
+
- uses: actions/checkout@v4
|
78
92
|
|
79
93
|
- name: Release gem
|
80
|
-
uses: discourse/publish-rubygems-action@
|
94
|
+
uses: discourse/publish-rubygems-action@v3
|
81
95
|
id: publish-gem
|
82
96
|
env:
|
83
97
|
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
|
@@ -95,7 +109,7 @@ jobs:
|
|
95
109
|
git commit -m 'bump'
|
96
110
|
|
97
111
|
- name: Publish package
|
98
|
-
uses: JS-DevTools/npm-publish@
|
112
|
+
uses: JS-DevTools/npm-publish@v3
|
99
113
|
if: steps.publish-gem.outputs.new_version == 'true'
|
100
114
|
with:
|
101
115
|
token: ${{ secrets.NPM_TOKEN }}
|
data/.rubocop.yml
CHANGED
@@ -1,11 +1,15 @@
|
|
1
1
|
inherit_gem:
|
2
|
-
rubocop-discourse: .
|
2
|
+
rubocop-discourse: stree-compat.yml
|
3
3
|
inherit_mode:
|
4
4
|
merge:
|
5
5
|
- Exclude
|
6
|
+
|
6
7
|
AllCops:
|
7
8
|
Exclude:
|
8
|
-
-
|
9
|
+
- "examples/**/*"
|
10
|
+
|
11
|
+
Discourse/Plugins:
|
12
|
+
Enabled: false
|
9
13
|
|
10
14
|
RSpec:
|
11
15
|
Enabled: false
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
14-03-2025
|
2
|
+
|
3
|
+
- Version 4.4.0
|
4
|
+
|
5
|
+
- Add compatibility with the redis gem version 5+.
|
6
|
+
|
7
|
+
18-02-2025
|
8
|
+
|
9
|
+
- Version 4.3.9
|
10
|
+
|
11
|
+
- Prevent deprecation warning when using Rails 7.1
|
12
|
+
|
1
13
|
14-09-2023
|
2
14
|
|
3
15
|
- Version 4.3.8
|
@@ -42,13 +54,13 @@
|
|
42
54
|
|
43
55
|
06-01-2023
|
44
56
|
|
45
|
-
- Version 4.
|
57
|
+
- Version 4.3.1
|
46
58
|
|
47
59
|
- FIX: Ensure non-long-polling requests are always spaced out
|
48
60
|
|
49
61
|
04-11-2022
|
50
62
|
|
51
|
-
- Version 4.
|
63
|
+
- Version 4.3.0
|
52
64
|
|
53
65
|
- FIX: Add redis gem version 5 support
|
54
66
|
- FEATURE: Allow disabling subscriptions without disabling publication
|
data/README.md
CHANGED
@@ -12,7 +12,7 @@ Read the generated docs: <https://www.rubydoc.info/gems/message_bus>
|
|
12
12
|
|
13
13
|
## Ruby version support
|
14
14
|
|
15
|
-
MessageBus only support officially supported versions of Ruby; as of [
|
15
|
+
MessageBus only support officially supported versions of Ruby; as of [2025-03-14](https://www.ruby-lang.org/en/downloads/branches/) this means we only support Ruby version 3.2 and up.
|
16
16
|
|
17
17
|
## Can you handle concurrent requests?
|
18
18
|
|
data/Rakefile
CHANGED
@@ -4,12 +4,10 @@ require 'rake/testtask'
|
|
4
4
|
require 'bundler'
|
5
5
|
require 'bundler/gem_tasks'
|
6
6
|
require 'bundler/setup'
|
7
|
-
require 'rubocop/rake_task'
|
8
7
|
require 'yard'
|
9
8
|
|
10
9
|
Bundler.require(:default, :test)
|
11
10
|
|
12
|
-
RuboCop::RakeTask.new
|
13
11
|
YARD::Rake::YardocTask.new
|
14
12
|
|
15
13
|
BACKENDS = Dir["lib/message_bus/backends/*.rb"].map { |file| file.match(%r{backends/(?<backend>.*).rb})[:backend] } - ["base"]
|
@@ -99,5 +97,5 @@ task :performance do
|
|
99
97
|
end
|
100
98
|
end
|
101
99
|
|
102
|
-
desc "Run all tests
|
103
|
-
task default: [:spec, :
|
100
|
+
desc "Run all tests and confirm the documentation compiles without error"
|
101
|
+
task default: [:spec, :test_doc]
|
@@ -48,7 +48,6 @@ module MessageBus
|
|
48
48
|
#
|
49
49
|
# @abstract
|
50
50
|
class Base
|
51
|
-
# rubocop:disable Lint/UnusedMethodArgument
|
52
51
|
|
53
52
|
# Raised to indicate that the concrete backend implementation does not implement part of the API
|
54
53
|
ConcreteClassMustImplementError = Class.new(StandardError)
|
@@ -40,16 +40,18 @@ module MessageBus
|
|
40
40
|
end
|
41
41
|
end
|
42
42
|
|
43
|
-
# @param [Hash]
|
44
|
-
# @option
|
45
|
-
# @option
|
46
|
-
# @option
|
43
|
+
# @param [Hash] config
|
44
|
+
# @option config [Hash] :redis_config options for the redis connection (see https://github.com/redis/redis-rb)
|
45
|
+
# @option config [Logger] :logger a logger to which logs will be output
|
46
|
+
# @option config [Boolean] :enable_redis_logger (false) whether or not to enable logging by the underlying Redis library
|
47
|
+
# @option config [Integer] :clear_every (1) the interval of publications between which the backlog will not be cleared
|
47
48
|
# @param [Integer] max_backlog_size the largest permitted size (number of messages) for per-channel backlogs; beyond this capacity, old messages will be dropped.
|
48
|
-
def initialize(
|
49
|
-
@
|
50
|
-
@
|
51
|
-
@
|
52
|
-
@
|
49
|
+
def initialize(config = {}, max_backlog_size = 1000)
|
50
|
+
@config = config.dup
|
51
|
+
@redis_config = config[:redis_config].dup || {}
|
52
|
+
@clear_every = config[:clear_every] || 1
|
53
|
+
@logger = @config[:logger]
|
54
|
+
@config[:logger] = nil unless @config[:enable_redis_logger]
|
53
55
|
@max_backlog_size = max_backlog_size
|
54
56
|
@max_global_backlog_size = 2000
|
55
57
|
@max_in_memory_publish_backlog = 1000
|
@@ -300,7 +302,7 @@ LUA
|
|
300
302
|
if m == UNSUB_MESSAGE
|
301
303
|
@subscribed = false
|
302
304
|
global_redis.unsubscribe
|
303
|
-
return
|
305
|
+
return # rubocop:disable Lint/NonLocalExitFromIterator
|
304
306
|
end
|
305
307
|
m = MessageBus::Message.decode m
|
306
308
|
|
@@ -331,31 +333,7 @@ LUA
|
|
331
333
|
private
|
332
334
|
|
333
335
|
def new_redis_connection
|
334
|
-
|
335
|
-
@redis_config.filter do |k, v|
|
336
|
-
# This is not ideal, required for Redis gem version 5
|
337
|
-
# redis-client no longer accepts arbitrary params
|
338
|
-
# anything unknown will error out.
|
339
|
-
# https://github.com/redis-rb/redis-client/blob/4c8e05acfb3477c1651138a4924616e79e6116f2/lib/redis_client/config.rb#L21-L39
|
340
|
-
#
|
341
|
-
#
|
342
|
-
# We should be doing the opposite and allowlisting params
|
343
|
-
# or splitting the object up. Starting with the smallest change that is backwards compatible
|
344
|
-
!%i[
|
345
|
-
backend
|
346
|
-
logger
|
347
|
-
long_polling_enabled
|
348
|
-
long_polling_interval
|
349
|
-
backend_options
|
350
|
-
base_route
|
351
|
-
client_message_filters
|
352
|
-
site_id_lookup
|
353
|
-
group_ids_lookup
|
354
|
-
user_id_lookup
|
355
|
-
transport_codec
|
356
|
-
].include?(k)
|
357
|
-
end
|
358
|
-
::Redis.new(config)
|
336
|
+
::Redis.new(@redis_config)
|
359
337
|
end
|
360
338
|
|
361
339
|
# redis connection used for publishing messages
|
@@ -200,7 +200,11 @@ class MessageBus::Rack::Middleware
|
|
200
200
|
# this means connections are not returned until rack.async is
|
201
201
|
# closed
|
202
202
|
if defined? ActiveRecord::Base.connection_handler
|
203
|
-
|
203
|
+
if Gem::Version.new(Rails.version) >= "7.1"
|
204
|
+
ActiveRecord::Base.connection_handler.clear_active_connections!(:all)
|
205
|
+
else
|
206
|
+
ActiveRecord::Base.connection_handler.clear_active_connections!
|
207
|
+
end
|
204
208
|
elsif defined? ActiveRecord::Base.clear_active_connections!
|
205
209
|
ActiveRecord::Base.clear_active_connections!
|
206
210
|
end
|
data/lib/message_bus/version.rb
CHANGED
data/lib/message_bus.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "monitor"
|
4
|
-
require "set"
|
5
4
|
|
6
5
|
require_relative "message_bus/version"
|
7
6
|
require_relative "message_bus/message"
|
@@ -185,10 +184,12 @@ module MessageBus::Implementation
|
|
185
184
|
# @param [Hash<Symbol => Object>] config values to merge into existing config
|
186
185
|
# @return [void]
|
187
186
|
def redis_config=(config)
|
188
|
-
configure(
|
187
|
+
configure(backend: :redis, redis_config: config)
|
189
188
|
end
|
190
189
|
|
191
|
-
|
190
|
+
def redis_config
|
191
|
+
@config[:redis_config] || {}
|
192
|
+
end
|
192
193
|
|
193
194
|
# @yield [env] a routine to determine the site ID for a subscriber
|
194
195
|
# @yieldparam [optional, Rack::Request::Env] env the subscriber request environment
|
@@ -772,7 +773,7 @@ module MessageBus::Implementation
|
|
772
773
|
globals, locals, local_globals, global_globals = nil
|
773
774
|
|
774
775
|
@mutex.synchronize do
|
775
|
-
return if @destroyed
|
776
|
+
return if @destroyed # rubocop:disable Lint/NonLocalExitFromIterator
|
776
777
|
next unless @subscriptions
|
777
778
|
|
778
779
|
globals = @subscriptions[nil]
|
data/message_bus.gemspec
CHANGED
@@ -35,6 +35,8 @@ Gem::Specification.new do |gem|
|
|
35
35
|
gem.add_development_dependency 'byebug'
|
36
36
|
gem.add_development_dependency 'oj'
|
37
37
|
gem.add_development_dependency 'yard'
|
38
|
-
|
39
|
-
|
38
|
+
|
39
|
+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.7.0')
|
40
|
+
gem.add_development_dependency 'rubocop-discourse', '3.8.1'
|
41
|
+
end
|
40
42
|
end
|