fishplate 7.1.2.1 → 7.1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bundler-version +1 -1
- data/.dependabot/config.yml +9 -13
- data/.github/workflows/auto-approve.yml +1 -1
- data/.github/workflows/auto-merge-dependencies.yml +2 -2
- data/.github/workflows/auto-merge.yml +1 -1
- data/.github/workflows/ci.yml +2 -2
- data/Gemfile.lock +41 -39
- data/fishplate.gemspec +1 -1
- data/lib/fishplate/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0683d8bbd45a9650ccc83a91c7421a6a836ce484a22b974944d9bb73b355980
|
4
|
+
data.tar.gz: c5838ec7391e9766cb0364070bb4f9a98ca1fdfbb4fc8d806df124f968550d8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 461c19704565d8699782c10cd5428bb1ede924079694d2ce5abec9986f646e767cf115cf3aeb79ab172f33a7a070ee02d019b2c5c47487a930fb53f519296136
|
7
|
+
data.tar.gz: a25212c98e9b1c2e1d4db0d1c7592950dba0146f4990cf538a17b9a8a96d16922ffa7ca69bda178f78c22b6cbe31d90c9624c963ff4a2e3a17ec64ef70c166bd
|
data/.bundler-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.5.6
|
data/.dependabot/config.yml
CHANGED
@@ -1,19 +1,15 @@
|
|
1
|
-
version:
|
1
|
+
version: 2
|
2
2
|
|
3
|
-
|
4
|
-
-
|
3
|
+
updates:
|
4
|
+
- package-ecosystem: "bundler"
|
5
5
|
directory: "/"
|
6
|
-
|
7
|
-
|
6
|
+
schedule:
|
7
|
+
interval: "weekly"
|
8
|
+
day: "monday"
|
9
|
+
time: "08:00"
|
10
|
+
timezone: "UTC"
|
11
|
+
commit-message:
|
8
12
|
prefix: "[dependabot]"
|
9
|
-
allowed_updates:
|
10
|
-
- match:
|
11
|
-
dependency_type: "all"
|
12
|
-
update_type: "security"
|
13
|
-
automerged_updates:
|
14
|
-
- match:
|
15
|
-
dependency_type: "all"
|
16
|
-
update_type: "security:patch"
|
17
13
|
labels:
|
18
14
|
- "automerge"
|
19
15
|
- "dependencies"
|
@@ -8,6 +8,6 @@ jobs:
|
|
8
8
|
runs-on: ubuntu-latest
|
9
9
|
steps:
|
10
10
|
- uses: hmarr/auto-approve-action@v3
|
11
|
-
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' || github.actor == 'renofidev' || contains(
|
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
12
|
with:
|
13
13
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
@@ -15,10 +15,10 @@ jobs:
|
|
15
15
|
runs-on: ubuntu-latest
|
16
16
|
steps:
|
17
17
|
- name: automerge-dependencies
|
18
|
-
uses: pascalgn/automerge-action@v0.
|
18
|
+
uses: pascalgn/automerge-action@v0.16.2
|
19
19
|
env:
|
20
20
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
21
21
|
MERGE_METHOD: squash
|
22
22
|
MERGE_DELETE_BRANCH: true
|
23
|
-
MERGE_LABELS: dependencies
|
23
|
+
MERGE_LABELS: "dependencies,!automerge blocked"
|
24
24
|
MERGE_REMOVE_LABELS: ""
|
data/.github/workflows/ci.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fishplate (7.1.
|
4
|
+
fishplate (7.1.3.0)
|
5
5
|
a9n (~> 1.0)
|
6
6
|
activemodel (~> 7.1)
|
7
7
|
activerecord (~> 7.1)
|
@@ -12,14 +12,14 @@ PATH
|
|
12
12
|
GEM
|
13
13
|
remote: https://rubygems.org/
|
14
14
|
specs:
|
15
|
-
a9n (1.5.
|
16
|
-
activemodel (7.1.2)
|
17
|
-
activesupport (= 7.1.2)
|
18
|
-
activerecord (7.1.2)
|
19
|
-
activemodel (= 7.1.2)
|
20
|
-
activesupport (= 7.1.2)
|
15
|
+
a9n (1.5.1)
|
16
|
+
activemodel (7.1.3.2)
|
17
|
+
activesupport (= 7.1.3.2)
|
18
|
+
activerecord (7.1.3.2)
|
19
|
+
activemodel (= 7.1.3.2)
|
20
|
+
activesupport (= 7.1.3.2)
|
21
21
|
timeout (>= 0.4.0)
|
22
|
-
activesupport (7.1.2)
|
22
|
+
activesupport (7.1.3.2)
|
23
23
|
base64
|
24
24
|
bigdecimal
|
25
25
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
@@ -31,77 +31,79 @@ GEM
|
|
31
31
|
tzinfo (~> 2.0)
|
32
32
|
ast (2.4.2)
|
33
33
|
base64 (0.2.0)
|
34
|
-
bigdecimal (3.1.
|
34
|
+
bigdecimal (3.1.6)
|
35
35
|
coderay (1.1.3)
|
36
|
-
concurrent-ruby (1.2.
|
36
|
+
concurrent-ruby (1.2.3)
|
37
37
|
connection_pool (2.4.1)
|
38
|
-
diff-lcs (1.5.
|
38
|
+
diff-lcs (1.5.1)
|
39
39
|
drb (2.2.0)
|
40
40
|
ruby2_keywords
|
41
41
|
i18n (1.14.1)
|
42
42
|
concurrent-ruby (~> 1.0)
|
43
|
-
json (2.
|
43
|
+
json (2.7.1)
|
44
44
|
language_server-protocol (3.17.0.3)
|
45
45
|
method_source (1.0.0)
|
46
46
|
mini_portile2 (2.8.5)
|
47
|
-
minitest (5.
|
47
|
+
minitest (5.22.2)
|
48
48
|
mutex_m (0.2.0)
|
49
|
-
parallel (1.
|
50
|
-
parser (3.
|
49
|
+
parallel (1.24.0)
|
50
|
+
parser (3.3.0.5)
|
51
51
|
ast (~> 2.4.1)
|
52
52
|
racc
|
53
|
+
prism (0.24.0)
|
53
54
|
pry (0.14.2)
|
54
55
|
coderay (~> 1.1)
|
55
56
|
method_source (~> 1.0)
|
56
57
|
racc (1.7.3)
|
57
58
|
rainbow (3.1.1)
|
58
59
|
rake (13.1.0)
|
59
|
-
regexp_parser (2.
|
60
|
+
regexp_parser (2.9.0)
|
60
61
|
rexml (3.2.6)
|
61
|
-
rspec (3.
|
62
|
-
rspec-core (~> 3.
|
63
|
-
rspec-expectations (~> 3.
|
64
|
-
rspec-mocks (~> 3.
|
65
|
-
rspec-core (3.
|
66
|
-
rspec-support (~> 3.
|
67
|
-
rspec-expectations (3.
|
62
|
+
rspec (3.13.0)
|
63
|
+
rspec-core (~> 3.13.0)
|
64
|
+
rspec-expectations (~> 3.13.0)
|
65
|
+
rspec-mocks (~> 3.13.0)
|
66
|
+
rspec-core (3.13.0)
|
67
|
+
rspec-support (~> 3.13.0)
|
68
|
+
rspec-expectations (3.13.0)
|
68
69
|
diff-lcs (>= 1.2.0, < 2.0)
|
69
|
-
rspec-support (~> 3.
|
70
|
-
rspec-mocks (3.
|
70
|
+
rspec-support (~> 3.13.0)
|
71
|
+
rspec-mocks (3.13.0)
|
71
72
|
diff-lcs (>= 1.2.0, < 2.0)
|
72
|
-
rspec-support (~> 3.
|
73
|
-
rspec-support (3.
|
74
|
-
rubocop (1.
|
73
|
+
rspec-support (~> 3.13.0)
|
74
|
+
rspec-support (3.13.1)
|
75
|
+
rubocop (1.61.0)
|
75
76
|
json (~> 2.3)
|
76
77
|
language_server-protocol (>= 3.17.0)
|
77
78
|
parallel (~> 1.10)
|
78
|
-
parser (>= 3.
|
79
|
+
parser (>= 3.3.0.2)
|
79
80
|
rainbow (>= 2.2.2, < 4.0)
|
80
81
|
regexp_parser (>= 1.8, < 3.0)
|
81
82
|
rexml (>= 3.2.5, < 4.0)
|
82
|
-
rubocop-ast (>= 1.
|
83
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
83
84
|
ruby-progressbar (~> 1.7)
|
84
85
|
unicode-display_width (>= 2.4.0, < 3.0)
|
85
|
-
rubocop-ast (1.
|
86
|
-
parser (>= 3.
|
87
|
-
|
86
|
+
rubocop-ast (1.31.0)
|
87
|
+
parser (>= 3.3.0.4)
|
88
|
+
prism (>= 0.24.0)
|
89
|
+
rubocop-capybara (2.20.0)
|
90
|
+
rubocop (~> 1.41)
|
91
|
+
rubocop-factory_bot (2.25.1)
|
88
92
|
rubocop (~> 1.41)
|
89
|
-
rubocop-factory_bot (2.24.0)
|
90
|
-
rubocop (~> 1.33)
|
91
93
|
rubocop-rake (0.6.0)
|
92
94
|
rubocop (~> 1.0)
|
93
|
-
rubocop-rspec (2.
|
95
|
+
rubocop-rspec (2.26.1)
|
94
96
|
rubocop (~> 1.40)
|
95
97
|
rubocop-capybara (~> 2.17)
|
96
98
|
rubocop-factory_bot (~> 2.22)
|
97
99
|
ruby-progressbar (1.13.0)
|
98
100
|
ruby2_keywords (0.0.5)
|
99
|
-
sqlite3 (1.
|
101
|
+
sqlite3 (1.7.2)
|
100
102
|
mini_portile2 (~> 2.8.0)
|
101
103
|
timeout (0.4.1)
|
102
104
|
tzinfo (2.0.6)
|
103
105
|
concurrent-ruby (~> 1.0)
|
104
|
-
tzinfo-data (1.
|
106
|
+
tzinfo-data (1.2024.1)
|
105
107
|
tzinfo (>= 1.0.0)
|
106
108
|
unicode-display_width (2.5.0)
|
107
109
|
|
@@ -120,4 +122,4 @@ DEPENDENCIES
|
|
120
122
|
sqlite3
|
121
123
|
|
122
124
|
BUNDLED WITH
|
123
|
-
2.
|
125
|
+
2.5.6
|
data/fishplate.gemspec
CHANGED
@@ -23,7 +23,7 @@ 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 = '>= 3.1'
|
26
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')
|
27
27
|
|
28
28
|
spec.add_dependency 'a9n', '~> 1.0'
|
29
29
|
spec.add_dependency 'activemodel', '~> 7.1'
|
data/lib/fishplate/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fishplate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.1.
|
4
|
+
version: 7.1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Krzysztof Knapik
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: a9n
|
@@ -139,14 +139,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
139
139
|
requirements:
|
140
140
|
- - ">="
|
141
141
|
- !ruby/object:Gem::Version
|
142
|
-
version:
|
142
|
+
version: 3.1.0
|
143
143
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
144
144
|
requirements:
|
145
145
|
- - ">="
|
146
146
|
- !ruby/object:Gem::Version
|
147
147
|
version: '0'
|
148
148
|
requirements: []
|
149
|
-
rubygems_version: 3.
|
149
|
+
rubygems_version: 3.5.3
|
150
150
|
signing_key:
|
151
151
|
specification_version: 4
|
152
152
|
summary: Fishplate is a library allowing running ActiveRecord without Railties.
|