slonik_migration 1.2.2 → 1.3.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: 26fdea03acecd19a4a65b85ec09f1032d5383847bac55f72b0a7fa59628d4c02
4
- data.tar.gz: '0887d4a94d21fce2894c56893c7ce43c09153bdeaab79bfab76e223e3e70fe95'
3
+ metadata.gz: 12b9063d103812df67a202c92469e7f73ae669d14ba45d518e8db2eff0508ffc
4
+ data.tar.gz: d67c922417b5039182aefbae955db7a8ca61dceb443ab79ece6e57ecc040efee
5
5
  SHA512:
6
- metadata.gz: a828d34199f0cbd8c7819b4e4ca2fc5173629cf0bffab37808a7e330576569ecb8d98154019a4f9cbba86309d33fbe12b00caf4fd4f09e82639dc34301ea587f
7
- data.tar.gz: d41ead7e47a0994872066db2728687e04d5ac0a03e76317cfd7d048f8c425ea8a7850a9389587431a47c0e4f18d71fa1578da9adba523ef46a163af626791f1b
6
+ metadata.gz: 585cecacf3a4eb90558bc5ab9cde54ba43624f664919d85d6ee72b04716d7e8160cbc97c556abae02fd1b15c0b93395243a93086d4ec4a2889bfc5ac27f59313
7
+ data.tar.gz: e12a313f57e191db593b6c8dce0610e62eda255ae8676c19bde207f962a83ce6576c40ce650c5c19e590cbe367fb0654945d8b3314578cfc4080fe0f02d1166f
@@ -17,59 +17,19 @@ jobs:
17
17
  strategy:
18
18
  fail-fast: false
19
19
  matrix:
20
- ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3]
21
- gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70', 'rails71', 'rails72']
20
+ ruby: ['3.0', 3.1, 3.2, 3.3, 3.4, '4.0']
21
+ gemfile: ['rails70', 'rails71', 'rails72', 'rails80', 'rails81']
22
22
  exclude:
23
- - ruby: 2.4
24
- gemfile: rails60
25
- - ruby: 2.4
26
- gemfile: rails61
27
- - ruby: 2.4
28
- gemfile: rails70
29
- - ruby: 2.4
30
- gemfile: rails71
31
- - ruby: 2.4
32
- gemfile: rails72
33
- - ruby: 2.5
34
- gemfile: rails70
35
- - ruby: 2.5
36
- gemfile: rails71
37
- - ruby: 2.5
38
- gemfile: rails72
39
- - ruby: 2.6
40
- gemfile: rails70
41
- - ruby: 2.6
42
- gemfile: rails71
43
- - ruby: 2.6
44
- gemfile: rails72
45
- - ruby: 2.7
46
- gemfile: rails72
47
23
  - ruby: 3.0
48
- gemfile: rails50
49
- - ruby: 3.0
50
- gemfile: rails51
24
+ gemfile: rails72
51
25
  - ruby: 3.0
52
- gemfile: rails52
26
+ gemfile: rails80
53
27
  - ruby: 3.0
54
- gemfile: rails72
55
- - ruby: 3.1
56
- gemfile: rails50
28
+ gemfile: rails81
57
29
  - ruby: 3.1
58
- gemfile: rails51
30
+ gemfile: rails80
59
31
  - ruby: 3.1
60
- gemfile: rails52
61
- - ruby: 3.2
62
- gemfile: rails50
63
- - ruby: 3.2
64
- gemfile: rails51
65
- - ruby: 3.2
66
- gemfile: rails52
67
- - ruby: 3.3
68
- gemfile: rails50
69
- - ruby: 3.3
70
- gemfile: rails51
71
- - ruby: 3.3
72
- gemfile: rails52
32
+ gemfile: rails81
73
33
 
74
34
  name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
75
35
 
data/.gitignore CHANGED
File without changes
data/.rspec CHANGED
File without changes
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.3.0
4
+
5
+ * Drop support for ruby <= 2.7, rails <= 6.1.
6
+
3
7
  ## 1.2.2
4
8
 
5
9
  * Remove `ostruct` from dependencies.
data/Gemfile CHANGED
@@ -2,5 +2,5 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem "rails", ">= 5.0"
5
+ gem "rails", ">= 7.0"
6
6
  gem "pg"
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
@@ -4,8 +4,8 @@ A rails migration gem for slony using `slonik_execute_script` command.
4
4
 
5
5
  ## Dependencies
6
6
 
7
- * ruby 2.4+
8
- * activerecord 5.0+
7
+ * ruby 3.0+
8
+ * activerecord 7.0+
9
9
  * slony 2.2+
10
10
 
11
11
  ## Installation
data/Rakefile CHANGED
File without changes
@@ -3,4 +3,13 @@ source 'https://rubygems.org'
3
3
  gem "rails", "~> 7.0.1"
4
4
  gem "pg"
5
5
 
6
+ gem "concurrent-ruby", "<= 1.3.4"
7
+
8
+ if RUBY_VERSION >= "3.4"
9
+ gem "bigdecimal"
10
+ gem "base64"
11
+ gem "drb"
12
+ gem "mutex_m"
13
+ end
14
+
6
15
  gemspec path: "../"
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem "rails", "~> 6.1.0"
3
+ gem "rails", "~> 8.0.0"
4
4
  gem "pg"
5
5
 
6
6
  gemspec path: "../"
@@ -1,8 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem "rails", "~> 6.0.0"
3
+ gem "rails", "~> 8.1.0"
4
4
  gem "pg"
5
5
 
6
- gem "psych", "~> 3.3.0"
7
-
8
6
  gemspec path: "../"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SlonikMigration
4
- VERSION = '1.2.2'
4
+ VERSION = '1.3.0'
5
5
  end
File without changes
File without changes
@@ -17,7 +17,9 @@ Gem::Specification.new do |spec|
17
17
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
18
  spec.require_paths = ["lib"]
19
19
 
20
- spec.add_dependency "activerecord", ">= 5.0"
20
+ spec.required_ruby_version = ">= 3.0"
21
+
22
+ spec.add_dependency "activerecord", ">= 7.0"
21
23
 
22
24
  spec.add_development_dependency "rspec"
23
25
  spec.add_development_dependency "rspec-rails"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slonik_migration
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshikazu Kaneta
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-10-17 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activerecord
@@ -16,14 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '5.0'
18
+ version: '7.0'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: '5.0'
25
+ version: '7.0'
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: rspec
29
28
  requirement: !ruby/object:Gem::Requirement
@@ -81,14 +80,11 @@ files:
81
80
  - LICENSE
82
81
  - README.md
83
82
  - Rakefile
84
- - gemfiles/rails50.gemfile
85
- - gemfiles/rails51.gemfile
86
- - gemfiles/rails52.gemfile
87
- - gemfiles/rails60.gemfile
88
- - gemfiles/rails61.gemfile
89
83
  - gemfiles/rails70.gemfile
90
84
  - gemfiles/rails71.gemfile
91
85
  - gemfiles/rails72.gemfile
86
+ - gemfiles/rails80.gemfile
87
+ - gemfiles/rails81.gemfile
92
88
  - lib/generators/slonik_migration/config_generator.rb
93
89
  - lib/generators/slonik_migration/templates/slonik.yml
94
90
  - lib/slonik_migration.rb
@@ -102,7 +98,6 @@ files:
102
98
  homepage: https://github.com/kanety/slonik_migration
103
99
  licenses: []
104
100
  metadata: {}
105
- post_install_message:
106
101
  rdoc_options: []
107
102
  require_paths:
108
103
  - lib
@@ -110,15 +105,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
110
105
  requirements:
111
106
  - - ">="
112
107
  - !ruby/object:Gem::Version
113
- version: '0'
108
+ version: '3.0'
114
109
  required_rubygems_version: !ruby/object:Gem::Requirement
115
110
  requirements:
116
111
  - - ">="
117
112
  - !ruby/object:Gem::Version
118
113
  version: '0'
119
114
  requirements: []
120
- rubygems_version: 3.5.11
121
- signing_key:
115
+ rubygems_version: 3.6.9
122
116
  specification_version: 4
123
117
  summary: A rails migration gem for slony
124
118
  test_files: []
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "rails", "~> 5.0.0"
4
- gem "pg", "~> 0.18"
5
-
6
- gem "loofah", "~> 2.19.1"
7
-
8
- gemspec path: "../"
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "rails", "~> 5.1.0"
4
- gem "pg", "~> 0.18"
5
-
6
- gem "loofah", "~> 2.19.1"
7
-
8
- gemspec path: "../"
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "rails", "~> 5.2.0"
4
- gem "pg"
5
-
6
- gem "loofah", "~> 2.19.1"
7
-
8
- gemspec path: "../"