Skip to content

Commit 380556b

Browse files
authored
Merge branch 'main' into bump_ruby_3.4
2 parents 880bc3a + 7601cfe commit 380556b

File tree

9 files changed

+246
-233
lines changed

9 files changed

+246
-233
lines changed
File renamed without changes.

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: yarn run lint-css
6060

6161
- name: Run ERBLint
62-
run: bundle exec erblint .
62+
run: bundle exec erb_lint .
6363

6464
- name: Run Tests
6565
env:

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ New entries in this file should aim to provide a meaningful amount of informatio
99

1010
## [Unreleased]
1111

12-
### Changes
12+
### Changed
13+
* skip brakeman Remove brakeman's ruby EOL check
1314
* bump Ruby 3.4 [ualbertalib/library_applications_development#163](https://github.com/ualbertalib/library_applications_development/issues/163)
1415

1516
### Chores
1617
* Bump bundler in Gemfile.lock to match production and build environments
18+
* Bump erb_lint from 0.7.0 to 0.9.0 [PR#3689](https://github.com/ualbertalib/jupiter/pull/3689)
1719

1820
## 2.10.2 - 2025-01-15
1921

Gemfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ruby '>= 3.1.4', '< 3.5'
55

66
# Core Rails stuff
77
gem 'image_processing' # for ActiveStorage Variants
8-
gem 'puma', '~> 6.4'
8+
gem 'puma', '~> 6.6'
99
gem 'rails', '~> 7.1.3'
1010

1111
# Assets
@@ -24,14 +24,14 @@ gem 'simple_form'
2424
gem 'acts_as_rdfable', github: 'ualbertalib/acts_as_rdfable', tag: 'v0.5.0'
2525
gem 'rdf', '~> 3.3.2'
2626
gem 'rdf-n3', '~> 3.3.0'
27-
gem 'rdf-vocab', '~> 3.3.1' # this gem changed predicate names without warning, be cautious and test with migrations
27+
gem 'rdf-vocab', '~> 3.3.2' # this gem changed predicate names without warning, be cautious and test with migrations
2828

2929
# Database stuff
3030
gem 'connection_pool'
3131
gem 'pg', '~> 1.5.9'
3232
gem 'redis', '~> 4.8'
3333
gem 'rsolr'
34-
gem 'strong_migrations', '~> 2.1.0'
34+
gem 'strong_migrations', '~> 2.2.0'
3535

3636
# Authentication
3737
gem 'bcrypt', '>= 3.1.13'
@@ -44,7 +44,7 @@ gem 'pundit', '2.4.0'
4444

4545
# Background tasks
4646
gem 'sidekiq', '~> 7.3'
47-
gem 'sidekiq-cron', '~> 2.0'
47+
gem 'sidekiq-cron', '~> 2.1'
4848
gem 'sidekiq-unique-jobs', '~> 8.0'
4949

5050
# Misc Utilities
@@ -54,15 +54,15 @@ gem 'csv', '~> 3.3', '>= 3.3.2' # CSV parsing
5454
gem 'datacite-client', github: 'ualbertalib/datacite-client', tag: 'v0.1.0', require: 'datacite'
5555
gem 'differ' # Used to diff two strings
5656
gem 'draper'
57-
gem 'edtf', '~> 3.1' # parsing Extended Date/Time Format
57+
gem 'edtf', '~> 3.2' # parsing Extended Date/Time Format
5858
gem 'flipper', '~> 1.3.2' # Feature flags for Ruby
5959
gem 'flipper-active_record', '~> 1.3.2' # Store feature flags in ActiveRecord
6060
gem 'flipper-ui', '~> 1.3.2' # UI for feature flags
6161
gem 'jbuilder' # generate JSON objects
6262
gem 'kaminari' # Pagination
6363
gem 'ostruct', '~> 0.6.1' # similar to hash
6464
gem 'paper_trail', '~> 15.2.0' # Track object changes
65-
gem 'ransack', '4.2.1' # ActiveRecord search/filter
65+
gem 'ransack', '4.3.0' # ActiveRecord search/filter
6666
gem 'redcarpet', '~> 3.6', require: ['redcarpet', 'redcarpet/render_strip'] # Markdown to (X)HTML parser
6767
gem 'uuidtools'
6868
gem 'voight_kampff', '~> 2.0', require: 'voight_kampff/rails' # bot detection
@@ -96,7 +96,7 @@ group :development, :test do
9696
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
9797
gem 'debug', platforms: [:mri, :mingw, :x64_mingw]
9898

99-
gem 'rubocop', '~> 1.68.0', require: false
99+
gem 'rubocop', '~> 1.71.2', require: false
100100
gem 'rubocop-minitest', require: false
101101
gem 'rubocop-performance', require: false
102102
gem 'rubocop-rails', require: false

0 commit comments

Comments
 (0)