fishplate 7.1.3.0 → 8.0.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/.bundler-version +1 -1
- data/.github/dependabot.yml +15 -0
- data/.github/workflows/auto-approve.yml +4 -3
- data/.github/workflows/auto-merge.yml +13 -4
- data/.github/workflows/ci.yml +1 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +57 -61
- data/fishplate.gemspec +5 -5
- data/lib/fishplate/version.rb +1 -1
- metadata +15 -19
- data/.github/workflows/auto-merge-dependencies.yml +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0e311be8c7d1e143546a0e340ffc74126378a89d4f3274e8e41dda20f0071b9
|
4
|
+
data.tar.gz: 5e100099c60862b32242207d2c1b5b30fa80e903d818e4ebef49b952e9e93497
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3c30cf6f175d69940038b46f8d8ede5c222afa2d11b3c5112e8607f7409fa64879553bc70b96c27ada005fd015e5e48c9e609b3b1921b325e8be7fb61b704be
|
7
|
+
data.tar.gz: 3ff7ebfe6ddd1a26350c56ecb0b94658040e09f880bae40d825f229c152c0408f942db3bb3d2afd53b2de2514e69c58eb3735338270940f1fa98e3f3d117c769
|
data/.bundler-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.6.3
|
@@ -1,13 +1,14 @@
|
|
1
1
|
name: Auto approve dependency upgrades and hot-fix PRs
|
2
2
|
on:
|
3
3
|
pull_request_target:
|
4
|
-
types:
|
5
|
-
|
4
|
+
types:
|
5
|
+
- labeled
|
6
|
+
- ready_for_review
|
6
7
|
jobs:
|
7
8
|
auto-approve:
|
8
9
|
runs-on: ubuntu-latest
|
9
10
|
steps:
|
10
11
|
- uses: hmarr/auto-approve-action@v3
|
11
|
-
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' || github.actor == 'renofidev' || contains(github.event.pull_request.labels.*.name, 'HOTFIX-AUTO-APPROVE') || contains(github.event.pull_request.labels.*.name, 'dependencies')
|
12
|
+
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' || github.actor == 'renofidev' || contains(github.event.pull_request.labels.*.name, 'HOTFIX-AUTO-APPROVE') || contains(github.event.pull_request.labels.*.name, 'self-approve') || contains(github.event.pull_request.labels.*.name, 'dependencies')
|
12
13
|
with:
|
13
14
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
@@ -1,22 +1,31 @@
|
|
1
1
|
name: automerge
|
2
2
|
on:
|
3
|
+
pull_request_target:
|
4
|
+
types:
|
5
|
+
- labeled
|
3
6
|
pull_request_review:
|
4
7
|
types:
|
5
8
|
- submitted
|
6
9
|
check_suite:
|
7
10
|
types:
|
8
11
|
- completed
|
9
|
-
label:
|
10
|
-
types:
|
11
|
-
- created
|
12
12
|
status: {}
|
13
13
|
jobs:
|
14
14
|
automerge:
|
15
15
|
runs-on: ubuntu-latest
|
16
16
|
steps:
|
17
17
|
- name: automerge
|
18
|
-
uses: pascalgn/automerge-action@v0.16.
|
18
|
+
uses: pascalgn/automerge-action@v0.16.4
|
19
|
+
env:
|
20
|
+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
21
|
+
MERGE_METHOD: squash
|
22
|
+
MERGE_DELETE_BRANCH: true
|
23
|
+
MERGE_LABELS: "automerge,!automerge blocked"
|
24
|
+
- name: automerge-dependencies
|
25
|
+
uses: pascalgn/automerge-action@v0.16.4
|
19
26
|
env:
|
20
27
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
21
28
|
MERGE_METHOD: squash
|
22
29
|
MERGE_DELETE_BRANCH: true
|
30
|
+
MERGE_LABELS: "dependencies,!automerge blocked"
|
31
|
+
MERGE_REMOVE_LABELS: ""
|
data/.github/workflows/ci.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,111 +1,107 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fishplate (
|
4
|
+
fishplate (8.0.1)
|
5
5
|
a9n (~> 1.0)
|
6
|
-
activemodel (~>
|
7
|
-
activerecord (~>
|
8
|
-
activesupport (~>
|
9
|
-
rake
|
6
|
+
activemodel (~> 8.0)
|
7
|
+
activerecord (~> 8.0)
|
8
|
+
activesupport (~> 8.0)
|
9
|
+
rake
|
10
10
|
tzinfo-data
|
11
11
|
|
12
12
|
GEM
|
13
13
|
remote: https://rubygems.org/
|
14
14
|
specs:
|
15
15
|
a9n (1.5.1)
|
16
|
-
activemodel (
|
17
|
-
activesupport (=
|
18
|
-
activerecord (
|
19
|
-
activemodel (=
|
20
|
-
activesupport (=
|
16
|
+
activemodel (8.0.1)
|
17
|
+
activesupport (= 8.0.1)
|
18
|
+
activerecord (8.0.1)
|
19
|
+
activemodel (= 8.0.1)
|
20
|
+
activesupport (= 8.0.1)
|
21
21
|
timeout (>= 0.4.0)
|
22
|
-
activesupport (
|
22
|
+
activesupport (8.0.1)
|
23
23
|
base64
|
24
|
+
benchmark (>= 0.3)
|
24
25
|
bigdecimal
|
25
|
-
concurrent-ruby (~> 1.0, >= 1.
|
26
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
26
27
|
connection_pool (>= 2.2.5)
|
27
28
|
drb
|
28
29
|
i18n (>= 1.6, < 2)
|
30
|
+
logger (>= 1.4.2)
|
29
31
|
minitest (>= 5.1)
|
30
|
-
|
31
|
-
tzinfo (~> 2.0)
|
32
|
+
securerandom (>= 0.3)
|
33
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
34
|
+
uri (>= 0.13.1)
|
32
35
|
ast (2.4.2)
|
33
36
|
base64 (0.2.0)
|
34
|
-
|
37
|
+
benchmark (0.4.0)
|
38
|
+
bigdecimal (3.1.9)
|
35
39
|
coderay (1.1.3)
|
36
|
-
concurrent-ruby (1.
|
37
|
-
connection_pool (2.
|
40
|
+
concurrent-ruby (1.3.5)
|
41
|
+
connection_pool (2.5.0)
|
38
42
|
diff-lcs (1.5.1)
|
39
|
-
drb (2.2.
|
40
|
-
|
41
|
-
i18n (1.14.1)
|
43
|
+
drb (2.2.1)
|
44
|
+
i18n (1.14.7)
|
42
45
|
concurrent-ruby (~> 1.0)
|
43
|
-
json (2.
|
44
|
-
language_server-protocol (3.17.0.
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
parallel (1.
|
50
|
-
parser (3.3.
|
46
|
+
json (2.9.1)
|
47
|
+
language_server-protocol (3.17.0.4)
|
48
|
+
logger (1.6.5)
|
49
|
+
method_source (1.1.0)
|
50
|
+
mini_portile2 (2.8.8)
|
51
|
+
minitest (5.25.4)
|
52
|
+
parallel (1.26.3)
|
53
|
+
parser (3.3.7.1)
|
51
54
|
ast (~> 2.4.1)
|
52
55
|
racc
|
53
|
-
|
54
|
-
pry (0.14.2)
|
56
|
+
pry (0.15.2)
|
55
57
|
coderay (~> 1.1)
|
56
58
|
method_source (~> 1.0)
|
57
|
-
racc (1.
|
59
|
+
racc (1.8.1)
|
58
60
|
rainbow (3.1.1)
|
59
|
-
rake (13.1
|
60
|
-
regexp_parser (2.
|
61
|
-
rexml (3.2.6)
|
61
|
+
rake (13.2.1)
|
62
|
+
regexp_parser (2.10.0)
|
62
63
|
rspec (3.13.0)
|
63
64
|
rspec-core (~> 3.13.0)
|
64
65
|
rspec-expectations (~> 3.13.0)
|
65
66
|
rspec-mocks (~> 3.13.0)
|
66
|
-
rspec-core (3.13.
|
67
|
+
rspec-core (3.13.2)
|
67
68
|
rspec-support (~> 3.13.0)
|
68
|
-
rspec-expectations (3.13.
|
69
|
+
rspec-expectations (3.13.3)
|
69
70
|
diff-lcs (>= 1.2.0, < 2.0)
|
70
71
|
rspec-support (~> 3.13.0)
|
71
|
-
rspec-mocks (3.13.
|
72
|
+
rspec-mocks (3.13.2)
|
72
73
|
diff-lcs (>= 1.2.0, < 2.0)
|
73
74
|
rspec-support (~> 3.13.0)
|
74
|
-
rspec-support (3.13.
|
75
|
-
rubocop (1.
|
75
|
+
rspec-support (3.13.2)
|
76
|
+
rubocop (1.71.2)
|
76
77
|
json (~> 2.3)
|
77
78
|
language_server-protocol (>= 3.17.0)
|
78
79
|
parallel (~> 1.10)
|
79
80
|
parser (>= 3.3.0.2)
|
80
81
|
rainbow (>= 2.2.2, < 4.0)
|
81
|
-
regexp_parser (>=
|
82
|
-
|
83
|
-
rubocop-ast (>= 1.30.0, < 2.0)
|
82
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
83
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
84
84
|
ruby-progressbar (~> 1.7)
|
85
|
-
unicode-display_width (>= 2.4.0, <
|
86
|
-
rubocop-ast (1.
|
87
|
-
parser (>= 3.3.0
|
88
|
-
prism (>= 0.24.0)
|
89
|
-
rubocop-capybara (2.20.0)
|
90
|
-
rubocop (~> 1.41)
|
91
|
-
rubocop-factory_bot (2.25.1)
|
92
|
-
rubocop (~> 1.41)
|
85
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
86
|
+
rubocop-ast (1.38.0)
|
87
|
+
parser (>= 3.3.1.0)
|
93
88
|
rubocop-rake (0.6.0)
|
94
89
|
rubocop (~> 1.0)
|
95
|
-
rubocop-rspec (
|
96
|
-
rubocop (~> 1.
|
97
|
-
rubocop-capybara (~> 2.17)
|
98
|
-
rubocop-factory_bot (~> 2.22)
|
90
|
+
rubocop-rspec (3.4.0)
|
91
|
+
rubocop (~> 1.61)
|
99
92
|
ruby-progressbar (1.13.0)
|
100
|
-
|
101
|
-
sqlite3 (
|
93
|
+
securerandom (0.4.1)
|
94
|
+
sqlite3 (2.5.0)
|
102
95
|
mini_portile2 (~> 2.8.0)
|
103
|
-
timeout (0.4.
|
96
|
+
timeout (0.4.3)
|
104
97
|
tzinfo (2.0.6)
|
105
98
|
concurrent-ruby (~> 1.0)
|
106
|
-
tzinfo-data (1.
|
99
|
+
tzinfo-data (1.2025.1)
|
107
100
|
tzinfo (>= 1.0.0)
|
108
|
-
unicode-display_width (
|
101
|
+
unicode-display_width (3.1.4)
|
102
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
103
|
+
unicode-emoji (4.0.4)
|
104
|
+
uri (1.0.2)
|
109
105
|
|
110
106
|
PLATFORMS
|
111
107
|
ruby
|
@@ -119,7 +115,7 @@ DEPENDENCIES
|
|
119
115
|
rubocop
|
120
116
|
rubocop-rake
|
121
117
|
rubocop-rspec
|
122
|
-
sqlite3
|
118
|
+
sqlite3 (~> 2.5)
|
123
119
|
|
124
120
|
BUNDLED WITH
|
125
|
-
2.
|
121
|
+
2.6.3
|
data/fishplate.gemspec
CHANGED
@@ -23,12 +23,12 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
24
|
spec.require_paths = ['lib']
|
25
25
|
|
26
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 3.
|
26
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.3.0')
|
27
27
|
|
28
28
|
spec.add_dependency 'a9n', '~> 1.0'
|
29
|
-
spec.add_dependency 'activemodel', '~>
|
30
|
-
spec.add_dependency 'activerecord', '~>
|
31
|
-
spec.add_dependency 'activesupport', '~>
|
32
|
-
spec.add_dependency 'rake'
|
29
|
+
spec.add_dependency 'activemodel', '~> 8.0'
|
30
|
+
spec.add_dependency 'activerecord', '~> 8.0'
|
31
|
+
spec.add_dependency 'activesupport', '~> 8.0'
|
32
|
+
spec.add_dependency 'rake'
|
33
33
|
spec.add_dependency 'tzinfo-data'
|
34
34
|
end
|
data/lib/fishplate/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fishplate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 8.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Krzysztof Knapik
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-05 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: a9n
|
@@ -30,56 +29,56 @@ dependencies:
|
|
30
29
|
requirements:
|
31
30
|
- - "~>"
|
32
31
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
32
|
+
version: '8.0'
|
34
33
|
type: :runtime
|
35
34
|
prerelease: false
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
37
36
|
requirements:
|
38
37
|
- - "~>"
|
39
38
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
39
|
+
version: '8.0'
|
41
40
|
- !ruby/object:Gem::Dependency
|
42
41
|
name: activerecord
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
44
43
|
requirements:
|
45
44
|
- - "~>"
|
46
45
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
46
|
+
version: '8.0'
|
48
47
|
type: :runtime
|
49
48
|
prerelease: false
|
50
49
|
version_requirements: !ruby/object:Gem::Requirement
|
51
50
|
requirements:
|
52
51
|
- - "~>"
|
53
52
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
53
|
+
version: '8.0'
|
55
54
|
- !ruby/object:Gem::Dependency
|
56
55
|
name: activesupport
|
57
56
|
requirement: !ruby/object:Gem::Requirement
|
58
57
|
requirements:
|
59
58
|
- - "~>"
|
60
59
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
60
|
+
version: '8.0'
|
62
61
|
type: :runtime
|
63
62
|
prerelease: false
|
64
63
|
version_requirements: !ruby/object:Gem::Requirement
|
65
64
|
requirements:
|
66
65
|
- - "~>"
|
67
66
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
67
|
+
version: '8.0'
|
69
68
|
- !ruby/object:Gem::Dependency
|
70
69
|
name: rake
|
71
70
|
requirement: !ruby/object:Gem::Requirement
|
72
71
|
requirements:
|
73
|
-
- - "
|
72
|
+
- - ">="
|
74
73
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
74
|
+
version: '0'
|
76
75
|
type: :runtime
|
77
76
|
prerelease: false
|
78
77
|
version_requirements: !ruby/object:Gem::Requirement
|
79
78
|
requirements:
|
80
|
-
- - "
|
79
|
+
- - ">="
|
81
80
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
81
|
+
version: '0'
|
83
82
|
- !ruby/object:Gem::Dependency
|
84
83
|
name: tzinfo-data
|
85
84
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,7 +93,6 @@ dependencies:
|
|
94
93
|
- - ">="
|
95
94
|
- !ruby/object:Gem::Version
|
96
95
|
version: '0'
|
97
|
-
description:
|
98
96
|
email:
|
99
97
|
- knapo@knapo.net
|
100
98
|
executables: []
|
@@ -107,8 +105,8 @@ files:
|
|
107
105
|
- ".github/ISSUE_TEMPLATE/config.yml"
|
108
106
|
- ".github/ISSUE_TEMPLATE/story.md"
|
109
107
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
108
|
+
- ".github/dependabot.yml"
|
110
109
|
- ".github/workflows/auto-approve.yml"
|
111
|
-
- ".github/workflows/auto-merge-dependencies.yml"
|
112
110
|
- ".github/workflows/auto-merge.yml"
|
113
111
|
- ".github/workflows/ci.yml"
|
114
112
|
- ".gitignore"
|
@@ -131,7 +129,6 @@ metadata:
|
|
131
129
|
homepage_uri: https://github.com/RenoFi/fishplate
|
132
130
|
source_code_uri: https://github.com/RenoFi/fishplate
|
133
131
|
rubygems_mfa_required: 'true'
|
134
|
-
post_install_message:
|
135
132
|
rdoc_options: []
|
136
133
|
require_paths:
|
137
134
|
- lib
|
@@ -139,15 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
139
136
|
requirements:
|
140
137
|
- - ">="
|
141
138
|
- !ruby/object:Gem::Version
|
142
|
-
version: 3.
|
139
|
+
version: 3.3.0
|
143
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
144
141
|
requirements:
|
145
142
|
- - ">="
|
146
143
|
- !ruby/object:Gem::Version
|
147
144
|
version: '0'
|
148
145
|
requirements: []
|
149
|
-
rubygems_version: 3.
|
150
|
-
signing_key:
|
146
|
+
rubygems_version: 3.6.3
|
151
147
|
specification_version: 4
|
152
148
|
summary: Fishplate is a library allowing running ActiveRecord without Railties.
|
153
149
|
test_files: []
|
@@ -1,24 +0,0 @@
|
|
1
|
-
name: automerge-dependencies
|
2
|
-
on:
|
3
|
-
pull_request_review:
|
4
|
-
types:
|
5
|
-
- submitted
|
6
|
-
check_suite:
|
7
|
-
types:
|
8
|
-
- completed
|
9
|
-
label:
|
10
|
-
types:
|
11
|
-
- created
|
12
|
-
status: {}
|
13
|
-
jobs:
|
14
|
-
automerge:
|
15
|
-
runs-on: ubuntu-latest
|
16
|
-
steps:
|
17
|
-
- name: automerge-dependencies
|
18
|
-
uses: pascalgn/automerge-action@v0.16.2
|
19
|
-
env:
|
20
|
-
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
21
|
-
MERGE_METHOD: squash
|
22
|
-
MERGE_DELETE_BRANCH: true
|
23
|
-
MERGE_LABELS: "dependencies,!automerge blocked"
|
24
|
-
MERGE_REMOVE_LABELS: ""
|