Skip to content

Commit

Permalink
bump dependencies (o19s#1021)
Browse files Browse the repository at this point in the history
Updated Package.json javascript, Ruby gems, Bundler, and Ruby version.
  • Loading branch information
epugh committed Jun 1, 2024
1 parent 7e8dd7b commit 9366365
Show file tree
Hide file tree
Showing 8 changed files with 421 additions and 335 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: cimg/ruby:3.3.0-browsers
- image: cimg/ruby:3.3.2-browsers
environment: # environment variables for primary container
BUNDLE_JOBS: 3
BUNDLE_RETRY: 3
Expand All @@ -29,7 +29,7 @@ jobs:

- run:
name: Specify bundler!
command: gem install bundler:2.4.9
command: gem install bundler:2.5.11

- run:
name: Which bundler?
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.3.2
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.0-bullseye
FROM ruby:3.3.2-bullseye

LABEL maintainer="[email protected]"

Expand All @@ -12,7 +12,7 @@ RUN apt-get update -qq \
COPY Gemfile* /srv/app/
WORKDIR /srv/app
RUN gem install foreman
RUN gem install bundler:2.4.9
RUN gem install bundler:2.5.11
RUN bundle install

# Dependency for generating the ERD: 'graphviz'
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WORKDIR /srv/app
COPY package.json yarn.lock ./
RUN yarn install --production=true

FROM ruby:3.3.0-bullseye
FROM ruby:3.3.2-bullseye

LABEL maintainer="[email protected]"

Expand All @@ -30,7 +30,7 @@ RUN apt-get update -qq \
WORKDIR /srv/app
COPY Gemfile Gemfile.lock ./
RUN gem install foreman
RUN gem install bundler:2.4.9
RUN gem install bundler:2.5.11

# Clean up Bundle
RUN bundle config set without 'development test'
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source 'https://rubygems.org'

ruby '3.3.0'
ruby '3.3.2'

gem 'activerecord-import', '>= 1.0.7'
gem 'active_storage_db'
Expand Down Expand Up @@ -44,9 +44,9 @@ gem 'rails-healthcheck', '~> 1.4'
gem 'rails-html-sanitizer'
gem 'rack-cors', '~> 2.0'
gem 'rapidjson'
gem 'redis', '~> 5.1.0'
gem 'redis'
gem 'responders'
gem 'rubyzip'
gem 'rubyzip', '~> 2.3.0' # 3.0 will be breaking
gem 'sassc-rails', '~> 2.1'
gem 'sidekiq'
gem 'sidekiq-limit_fetch', '~> 4.4'
Expand Down
Loading

0 comments on commit 9366365

Please sign in to comment.