pg_eventstore 1.12.0 → 1.13.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/pg_eventstore/cli/commands/base_command.rb +2 -0
- data/lib/pg_eventstore/cli/commands/callback_handlers/start_cmd_handlers.rb +1 -0
- data/lib/pg_eventstore/cli/commands/help_command.rb +1 -0
- data/lib/pg_eventstore/cli/commands/start_subscriptions_command.rb +3 -1
- data/lib/pg_eventstore/cli/commands/stop_subscriptions_command.rb +1 -0
- data/lib/pg_eventstore/cli/exit_codes.rb +1 -0
- data/lib/pg_eventstore/cli/parser_options/base_options.rb +1 -0
- data/lib/pg_eventstore/cli/parser_options/default_options.rb +1 -0
- data/lib/pg_eventstore/cli/parser_options/metadata.rb +1 -0
- data/lib/pg_eventstore/cli/parser_options/subscription_options.rb +1 -0
- data/lib/pg_eventstore/cli/try_to_delete_subscriptions_set.rb +2 -1
- data/lib/pg_eventstore/cli/try_unlock_subscriptions_set.rb +1 -0
- data/lib/pg_eventstore/cli/wait_for_subscriptions_set_shutdown.rb +1 -0
- data/lib/pg_eventstore/connection.rb +8 -3
- data/lib/pg_eventstore/extensions/callback_handlers_extension.rb +1 -0
- data/lib/pg_eventstore/pg_connection.rb +1 -0
- data/lib/pg_eventstore/query_builders/events_filtering.rb +1 -1
- data/lib/pg_eventstore/query_builders/partitions_filtering.rb +1 -1
- data/lib/pg_eventstore/subscriptions/basic_runner.rb +122 -35
- data/lib/pg_eventstore/subscriptions/callback_handlers/commands_handler_handlers.rb +1 -14
- data/lib/pg_eventstore/subscriptions/callback_handlers/events_processor_handlers.rb +4 -3
- data/lib/pg_eventstore/subscriptions/callback_handlers/subscription_feeder_handlers.rb +1 -14
- data/lib/pg_eventstore/subscriptions/callback_handlers/subscription_runner_handlers.rb +1 -19
- data/lib/pg_eventstore/subscriptions/command_handlers/subscription_feeder_commands.rb +1 -0
- data/lib/pg_eventstore/subscriptions/command_handlers/subscription_runners_commands.rb +1 -0
- data/lib/pg_eventstore/subscriptions/commands_handler.rb +5 -8
- data/lib/pg_eventstore/subscriptions/events_processor.rb +7 -2
- data/lib/pg_eventstore/subscriptions/extensions/base_command_extension.rb +1 -0
- data/lib/pg_eventstore/subscriptions/extensions/command_class_lookup_extension.rb +1 -0
- data/lib/pg_eventstore/subscriptions/runner_recovery_strategies/restore_connection.rb +44 -0
- data/lib/pg_eventstore/subscriptions/runner_recovery_strategies/restore_subscription_feeder.rb +27 -0
- data/lib/pg_eventstore/subscriptions/runner_recovery_strategies/restore_subscription_runner.rb +34 -0
- data/lib/pg_eventstore/subscriptions/runner_recovery_strategies.rb +5 -0
- data/lib/pg_eventstore/subscriptions/runner_recovery_strategy.rb +21 -0
- data/lib/pg_eventstore/subscriptions/subscription_feeder.rb +18 -5
- data/lib/pg_eventstore/subscriptions/subscription_runner.rb +1 -13
- data/lib/pg_eventstore/subscriptions/subscriptions_lifecycle.rb +1 -0
- data/lib/pg_eventstore/subscriptions/subscriptions_manager.rb +20 -3
- data/lib/pg_eventstore/subscriptions/subscriptions_set_lifecycle.rb +1 -0
- data/lib/pg_eventstore/version.rb +1 -1
- data/lib/pg_eventstore/web/application.rb +1 -0
- data/lib/pg_eventstore.rb +2 -1
- data/sig/pg_eventstore/connection.rbs +2 -0
- data/sig/pg_eventstore/subscriptions/basic_runner.rbs +26 -10
- data/sig/pg_eventstore/subscriptions/callback_handlers/commands_handler_handlers.rbs +5 -5
- data/sig/pg_eventstore/subscriptions/callback_handlers/subscription_feeder_handlers.rbs +1 -3
- data/sig/pg_eventstore/subscriptions/callback_handlers/subscription_runner_handlers.rbs +0 -4
- data/sig/pg_eventstore/subscriptions/commands_handler.rbs +8 -11
- data/sig/pg_eventstore/subscriptions/events_processor.rbs +5 -17
- data/sig/pg_eventstore/subscriptions/runner_recovery_strategies/restore_connection.rbs +18 -0
- data/sig/pg_eventstore/subscriptions/runner_recovery_strategies/restore_subscription_feeder.rbs +11 -0
- data/sig/pg_eventstore/subscriptions/runner_recovery_strategies/restore_subscription_runner.rbs +17 -0
- data/sig/pg_eventstore/subscriptions/runner_recovery_strategy.rbs +7 -0
- data/sig/pg_eventstore/subscriptions/subscription_feeder.rbs +6 -8
- data/sig/pg_eventstore/subscriptions/subscription_runner.rbs +6 -35
- data/sig/pg_eventstore/subscriptions/subscriptions_manager.rbs +8 -0
- metadata +11 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg_eventstore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Dzyzenko
|
@@ -170,6 +170,11 @@ files:
|
|
170
170
|
- lib/pg_eventstore/subscriptions/queries/subscription_queries.rb
|
171
171
|
- lib/pg_eventstore/subscriptions/queries/subscriptions_set_command_queries.rb
|
172
172
|
- lib/pg_eventstore/subscriptions/queries/subscriptions_set_queries.rb
|
173
|
+
- lib/pg_eventstore/subscriptions/runner_recovery_strategies.rb
|
174
|
+
- lib/pg_eventstore/subscriptions/runner_recovery_strategies/restore_connection.rb
|
175
|
+
- lib/pg_eventstore/subscriptions/runner_recovery_strategies/restore_subscription_feeder.rb
|
176
|
+
- lib/pg_eventstore/subscriptions/runner_recovery_strategies/restore_subscription_runner.rb
|
177
|
+
- lib/pg_eventstore/subscriptions/runner_recovery_strategy.rb
|
173
178
|
- lib/pg_eventstore/subscriptions/runner_state.rb
|
174
179
|
- lib/pg_eventstore/subscriptions/subscription.rb
|
175
180
|
- lib/pg_eventstore/subscriptions/subscription_feeder.rb
|
@@ -328,6 +333,10 @@ files:
|
|
328
333
|
- sig/pg_eventstore/subscriptions/queries/subscription_queries.rbs
|
329
334
|
- sig/pg_eventstore/subscriptions/queries/subscriptions_set_command_queries.rbs
|
330
335
|
- sig/pg_eventstore/subscriptions/queries/subscriptions_set_queries.rbs
|
336
|
+
- sig/pg_eventstore/subscriptions/runner_recovery_strategies/restore_connection.rbs
|
337
|
+
- sig/pg_eventstore/subscriptions/runner_recovery_strategies/restore_subscription_feeder.rbs
|
338
|
+
- sig/pg_eventstore/subscriptions/runner_recovery_strategies/restore_subscription_runner.rbs
|
339
|
+
- sig/pg_eventstore/subscriptions/runner_recovery_strategy.rbs
|
331
340
|
- sig/pg_eventstore/subscriptions/runner_state.rbs
|
332
341
|
- sig/pg_eventstore/subscriptions/subscription.rbs
|
333
342
|
- sig/pg_eventstore/subscriptions/subscription_feeder.rbs
|
@@ -391,7 +400,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
391
400
|
- !ruby/object:Gem::Version
|
392
401
|
version: '0'
|
393
402
|
requirements: []
|
394
|
-
rubygems_version: 3.6.
|
403
|
+
rubygems_version: 3.6.9
|
395
404
|
specification_version: 4
|
396
405
|
summary: EventStore implementation using PostgreSQL
|
397
406
|
test_files: []
|