synchronised_migration 3.0.0 → 3.2.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: fdaaef7abd9ca7478b25d2e8ddc330db3aa699eb5a9027d3aac05b9626fc0a1b
4
- data.tar.gz: ec0d069a1bedf336381d3241b9f869b2c41b8e25f4e6138abda5dc0b34bbdddd
3
+ metadata.gz: 9bc009936472aa3b79c0f15eb1724468fbd7339e679a7ff9cd1fea352354f50f
4
+ data.tar.gz: 48af7192f16316442d0d72664ccbb2d2577d7e5ddf8fe1a82788d0dbac1fc7aa
5
5
  SHA512:
6
- metadata.gz: 66a3e6dca6186f13049eae942c13cca91afa9652b6c3dfc69e3e693e5dd8433023f57f98fa3f94502cfb04edafeb323df2f90230b7b8e38f9cd48490b324744a
7
- data.tar.gz: ae260978d7cca055fe2b361514482175c921361a4a00b944ba0bf3fecce24885f104b6bd4d3f19e205814481e7621f502f8398ad3bd85a55931b648288c87247
6
+ metadata.gz: f739a7f1fbb32d455c31267b360e19b6a076601ecfd1b850631d5bf7e6b8ce21c853243d18db8515abbfcef07dedf72e9268e7f2dc05fc51a6820cc2d11b7fe7
7
+ data.tar.gz: ee069b247d98370db68a7914686a6dbec47621df6bd3aee487f31149abb3ba446342627af641f9710ccbc789389b9e1b39ffbf372d49ce72639d3e92a521a23e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Synchronised Migration
2
2
 
3
+ ## 3.2.0
4
+
5
+ - [PLAT-1175] Update to Ruby 3.2
6
+
7
+ ## 3.1.0
8
+
9
+ - [PLAT-183] Ruby 3.1 and publish coverage with github action
10
+
3
11
  ## 3.0.0
4
12
 
5
13
  - [OPS-201] Migrate library to CLI tool
@@ -10,34 +18,34 @@
10
18
 
11
19
  ## 2.1.2
12
20
 
13
- * [TT-7511] Use the correct `ex` option for key value expiry times instead of `ttl`
21
+ - [TT-7511] Use the correct `ex` option for key value expiry times instead of `ttl`
14
22
 
15
23
  ## 2.1.1
16
24
 
17
- * [TT-5896] Early exit from migration inside lock if already completed
25
+ - [TT-5896] Early exit from migration inside lock if already completed
18
26
 
19
27
  ## 2.1.0
20
28
 
21
- * [TT-5827] Add "success key" when REDLOCK_VERSION_SUFFIX is set, preventing repeat runs
22
- * [TT-5830] Add rake and Rakefile for 'rake release'
29
+ - [TT-5827] Add "success key" when REDLOCK_VERSION_SUFFIX is set, preventing repeat runs
30
+ - [TT-5830] Add rake and Rakefile for 'rake release'
23
31
 
24
32
  ## 2.0.0
25
33
 
26
- * [DO-168] Removed requirement for defining RedisConfig, now set on
34
+ - [DO-168] Removed requirement for defining RedisConfig, now set on
27
35
  SynchronisedMigration module
28
36
 
29
37
  ## 1.0.2
30
38
 
31
- * [DO-105] Use the `original` environment instead
39
+ - [DO-105] Use the `original` environment instead
32
40
 
33
41
  ## 1.0.1
34
42
 
35
- * [DO-100] Address the Travis issue
43
+ - [DO-100] Address the Travis issue
36
44
 
37
45
  ## 1.0.0
38
46
 
39
- * [DO-100] Allow nesting bundler exec
47
+ - [DO-100] Allow nesting bundler exec
40
48
 
41
49
  ## 0.1.0
42
50
 
43
- * [DO-70] Use Redis to synchronise migrations across multiple deployments
51
+ - [DO-70] Use Redis to synchronise migrations across multiple deployments
@@ -67,7 +67,6 @@ module SynchronisedMigration
67
67
  def redis
68
68
  @redis ||= begin
69
69
  redis_opts = {url: @config.redis_uri}
70
- redis_opts[:logger] = Logger.new($stdout) if @config.debug?
71
70
 
72
71
  Redis.new(redis_opts)
73
72
  end
@@ -1,3 +1,3 @@
1
1
  module SynchronisedMigration
2
- VERSION = "3.0.0"
2
+ VERSION = "3.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: synchronised_migration
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alvin Yim
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2021-09-28 00:00:00.000000000 Z
12
+ date: 2023-01-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: redlock
@@ -82,19 +82,19 @@ dependencies:
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  - !ruby/object:Gem::Dependency
85
- name: simplecov-rcov
85
+ name: coverage-kit
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - ">="
89
89
  - !ruby/object:Gem::Version
90
- version: '0.2'
90
+ version: '0'
91
91
  type: :development
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - ">="
96
96
  - !ruby/object:Gem::Version
97
- version: '0.2'
97
+ version: '0'
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: rspec
100
100
  requirement: !ruby/object:Gem::Requirement
@@ -178,14 +178,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
178
  requirements:
179
179
  - - ">="
180
180
  - !ruby/object:Gem::Version
181
- version: 2.6.0
181
+ version: '3.0'
182
182
  required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  requirements:
184
184
  - - ">="
185
185
  - !ruby/object:Gem::Version
186
186
  version: '0'
187
187
  requirements: []
188
- rubygems_version: 3.2.22
188
+ rubygems_version: 3.4.1
189
189
  signing_key:
190
190
  specification_version: 4
191
191
  summary: For deploying to multiple instances simultaneously