Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actionmailer, activesupport, actionview, actionpack, activejob, activemodel, activerecord, railties and rails #2065

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ jobs:
# Save artifacts
- store_artifacts:
path: /tmp/circleci-artifacts
- store_artifacts:
path: coverage
- store_artifacts:
path: license_finder_report.html
- store_artifacts:
Expand Down
18 changes: 9 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ ruby File.read('.ruby-version').strip
# Loading only what we use reduces memory use & attack surface.
# gem 'actioncable' # Not used. Client/server comm channel.
# gem 'activestorage' # Not used. Attaches cloud files to ActiveRecord.
gem 'actionmailer', '~> 7.0.7' # Rails. Send email.
gem 'actionpack', '~> 7.0.7' # Rails. MVC framework.
gem 'actionview', '~> 7.0.7' # Rails. View.
gem 'activejob', '~> 7.0.7' # Rails. Async jobs.
gem 'activemodel', '~> 7.0.7' # Rails. Model basics.
gem 'activerecord', '~> 7.0.7' # Rails. ORM and query system.
gem 'actionmailer', '~> 7.1.1' # Rails. Send email.
gem 'actionpack', '~> 7.1.1' # Rails. MVC framework.
gem 'actionview', '~> 7.1.1' # Rails. View.
gem 'activejob', '~> 7.1.1' # Rails. Async jobs.
gem 'activemodel', '~> 7.1.1' # Rails. Model basics.
gem 'activerecord', '~> 7.1.1' # Rails. ORM and query system.
# gem 'activestorage' # Not used. Attaches cloud files to ActiveRecord.
gem 'activesupport', '~> 7.0.7' # Rails. Underlying library.
gem 'activesupport', '~> 7.1.1' # Rails. Underlying library.
# gem 'activetext' # Not used. Text editor that fails to support markdown.
gem 'attr_encrypted', '~> 4'
gem 'bcrypt', '~> 3.1.18' # Security - for salted hashed interacted passwords
Expand Down Expand Up @@ -93,7 +93,7 @@ gem 'rack-headers_filter', '~> 0.0.1' # Filter out "dangerous" headers
# but instead load only what we use (to reduce memory use and attack surface).
# We load sprockets-rails, but its version number isn't kept in sync.
# Note: Update the gem versions of action* and railties in sync.
gem 'railties', '~> 7.0.7' # Rails. Rails core, loads rest of Rails
gem 'railties', '~> 7.1.1' # Rails. Rails core, loads rest of Rails
gem 'rails-i18n', '~> 7.0.7' # Localizations for Rails built-ins
gem 'redcarpet', '~> 3.5' # Process markdown in form textareas (justifications)
gem 'sass-rails', '~> 5.1', require: false # For .scss files (CSS extension)
Expand Down Expand Up @@ -151,7 +151,7 @@ group :development do
# We bring in full rails in development in case we need it for debugging;
# this also keeps some gems happy that don't realize that loading
# only *parts* of Rails is fine:
gem 'rails', '~> 7.0.7' # Rails (our web framework)
gem 'rails', '~> 7.1.1' # Rails (our web framework)
# To update the translation gem, see the process docs in doc/testing.md
gem 'translation', '1.37' # translation.io - translation service
gem 'web-console' # In-browser debugger; use <% console %> or console
Expand Down
Loading