Skip to content

Commit

Permalink
Merge pull request #334 from pulibrary/ruby3-4-1
Browse files Browse the repository at this point in the history
Ruby 3.4.1
  • Loading branch information
christinach authored Jan 30, 2025
2 parents c856bd8 + 58dab09 commit bc783ae
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 25 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
executors:
allsearch-executor:
docker:
- image: cimg/ruby:3.3.0-browsers
- image: cimg/ruby:3.4.1-browsers
environment:
RAILS_ENV: test
ALLSEARCH_HOST: localhost
Expand Down Expand Up @@ -38,13 +38,13 @@ commands:
jobs:
build:
docker:
- image: cimg/ruby:3.3
- image: cimg/ruby:3.4
steps:
- checkout
- ruby/install-deps
checking:
docker:
- image: cimg/ruby:3.3
- image: cimg/ruby:3.4
steps:
- checkout
- ruby/install-deps
Expand All @@ -53,7 +53,7 @@ jobs:
label: Inspecting with Rubocop
reek:
docker:
- image: cimg/ruby:3.3
- image: cimg/ruby:3.4
steps:
- checkout
- ruby/install-deps
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
command: vacuum lint -d swagger/**/*.yaml
bearer:
docker:
- image: cimg/ruby:3.2
- image: cimg/ruby:3.4
environment:
# Set to default branch of your repo
DEFAULT_BRANCH: main
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.3.0
ruby-3.4.1
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.3.0
ruby 3.4.1
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ gem 'activemodel'
gem 'activerecord'
gem 'activesupport'
gem 'bootsnap', require: false
gem 'ddtrace', require: 'ddtrace/auto_instrument'
gem 'csv'
gem 'datadog', '~> 2.0', require: 'datadog/auto_instrument'
gem 'dogstatsd-ruby'
gem 'flipper-active_record'
gem 'health-monitor-rails', '12.4.0'
Expand Down
30 changes: 14 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ GEM
ast (2.4.2)
base64 (0.2.0)
bcrypt_pbkdf (1.1.1)
bcrypt_pbkdf (1.1.1-arm64-darwin)
bcrypt_pbkdf (1.1.1-x86_64-darwin)
benchmark (0.4.0)
bigdecimal (3.1.9)
bootsnap (1.18.4)
Expand Down Expand Up @@ -73,16 +71,14 @@ GEM
bigdecimal
rexml
crass (1.0.6)
datadog-ci (0.8.3)
csv (3.3.2)
datadog (2.9.0)
datadog-ruby_core_source (~> 3.3, >= 3.3.7)
libdatadog (~> 14.3.1.1.0)
libddwaf (~> 1.18.0.0.0)
msgpack
datadog-ruby_core_source (3.4.0)
date (3.4.1)
ddtrace (1.23.3)
datadog-ci (~> 0.8.1)
debase-ruby_core_source (= 3.3.1)
libdatadog (~> 7.0.0.1.0)
libddwaf (~> 1.14.0.0.0)
msgpack
debase-ruby_core_source (3.3.1)
diff-lcs (1.5.1)
dogstatsd-ruby (5.6.4)
drb (2.2.1)
Expand Down Expand Up @@ -141,13 +137,13 @@ GEM
addressable (~> 2.8)
bigdecimal (~> 3.1)
language_server-protocol (3.17.0.3)
libdatadog (7.0.0.1.0)
libdatadog (7.0.0.1.0-x86_64-linux)
libddwaf (1.14.0.0.0-arm64-darwin)
libdatadog (14.3.1.1.0)
libdatadog (14.3.1.1.0-x86_64-linux)
libddwaf (1.18.0.0.0-arm64-darwin)
ffi (~> 1.0)
libddwaf (1.14.0.0.0-x86_64-darwin)
libddwaf (1.18.0.0.0-x86_64-darwin)
ffi (~> 1.0)
libddwaf (1.14.0.0.0-x86_64-linux)
libddwaf (1.18.0.0.0-x86_64-linux)
ffi (~> 1.0)
logger (1.6.4)
lograge (0.14.0)
Expand Down Expand Up @@ -321,6 +317,7 @@ GEM
PLATFORMS
arm64-darwin-22
arm64-darwin-23
arm64-darwin-24
x86_64-darwin-22
x86_64-darwin-23
x86_64-linux
Expand All @@ -338,7 +335,8 @@ DEPENDENCIES
capistrano-bundler
capistrano-passenger
capistrano-rails
ddtrace
csv
datadog (~> 2.0)
dogstatsd-ruby
ed25519
flipper-active_record
Expand Down
1 change: 0 additions & 1 deletion config/initializers/datadog.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

require 'datadog/statsd'
require 'ddtrace'

Datadog.configure do |c|
c.env = Rails.env
Expand Down

0 comments on commit bc783ae

Please sign in to comment.