Skip to content

Commit c588762

Browse files
authored
Merge pull request #202 from DavyJonesLocker/chore/drop-eol
Drop EOL dependencies
2 parents ae90eda + 3e10b06 commit c588762

File tree

12 files changed

+17
-19
lines changed

12 files changed

+17
-19
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
ruby-version: ['3.1', '3.2', '3.3', '3.4', '4.0']
18+
ruby-version: ['3.2', '3.3', '3.4', '4.0']
1919
gemfile: [ csv_22.0 ]
2020
channel: ['stable']
2121

2222
include:
2323
- ruby-version: 'head'
2424
gemfile: csv_22.0
2525
channel: 'experimental'
26-
- ruby-version: '3.1'
27-
gemfile: csv_edge
28-
channel: 'experimental'
2926
- ruby-version: '3.2'
3027
gemfile: csv_edge
3128
channel: 'experimental'

.rubocop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ plugins:
66
- rubocop-rake
77

88
AllCops:
9-
TargetRailsVersion: 6.1
10-
TargetRubyVersion: 3.1
9+
TargetRailsVersion: 7.2
10+
TargetRubyVersion: 3.2
1111
NewCops: enable
1212
DisplayStyleGuide: true
1313
ExtraDetails: true

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
## 17.0.0 / unreleased
44

55
* [FEATURE] Drop Internet Explorer and other older browsers support
6-
* [ENHANCEMENT] Test against Ruby 3.3 and 3.4
7-
* [ENHANCEMENT] Update QUnit to 2.24.3
6+
* [FEATURE] Drop CSV < 22 compatibility
7+
* [ENHANCEMENT] Test against Ruby 3.3, 3.4, and 4.0
8+
* [ENHANCEMENT] Update QUnit to 2.25.0
89

910
## 16.0.0 / 2023-09-02
1011

client_side_validations-simple_form.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Gem::Specification.new do |spec|
2525
spec.require_paths = ['lib']
2626

2727
spec.platform = Gem::Platform::RUBY
28-
spec.required_ruby_version = '>= 3.1'
28+
spec.required_ruby_version = '>= 3.2'
2929

30-
spec.add_dependency 'client_side_validations', '>= 22.0', '< 24'
31-
spec.add_dependency 'simple_form', '~> 5.2'
30+
spec.add_dependency 'client_side_validations', '>= 22.0'
31+
spec.add_dependency 'simple_form', '>= 5.4'
3232
end

dist/simple-form.bootstrap4.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/simple-form.bootstrap4.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/simple-form.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/simple-form.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"eslint-plugin-compat": "^6.0.2",
3333
"neostandard": "^0.12.2",
3434
"puppeteer-core": "^24.34.0",
35-
"rollup": "^4.54.0",
35+
"rollup": "^4.55.1",
3636
"rollup-plugin-copy": "^3.5.0"
3737
},
3838
"peerDependencies": {

test/javascript/server.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def call(env)
3434
use AssetPath, urls: ['/vendor/assets/javascripts'], root: rails_validations_path.full_gem_path
3535

3636
DEFAULT_JQUERY_VERSION = '3.7.1.slim'
37-
QUNIT_VERSION = '2.24.3'
37+
QUNIT_VERSION = '2.25.0'
3838

3939
helpers do
4040
def jquery_version

0 commit comments

Comments
 (0)