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

update CI to run 3.2.0 official release #1715

Merged
merged 2 commits into from
Dec 29, 2022
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: [2.2.10, 3.1.3, jruby-9.3.9.0]
ruby-version: [2.2.10, 3.2.0, jruby-9.3.9.0]
steps:
- name: Configure git
run: 'git config --global init.defaultBranch main'
Expand All @@ -56,7 +56,7 @@ jobs:
"2.2.10": {
"rails": "norails,rails41,rails32"
},
"3.1.3": {
"3.2.0": {
"rails": "norails,rails61,rails70"
},
"jruby-9.3.9.0": {
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
fail-fast: false
matrix:
multiverse: [agent, background, background_2, database, frameworks, httpclients, httpclients_2, rails, rest]
ruby-version: [2.2.10, 3.1.3]
ruby-version: [2.2.10, 3.2.0]

steps:
- name: Configure git
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: [2.5.9, 3.1.3]
ruby-version: [2.5.9, 3.2.0]
steps:
- name: Configure git
run: 'git config --global init.defaultBranch main'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: [2.2.10, 2.3.8, 2.4.10, 2.5.9, 2.6.10, 2.7.7, 3.0.5, 3.1.3, 3.2.0-rc1, jruby-9.3.9.0]
ruby-version: [2.2.10, 2.3.8, 2.4.10, 2.5.9, 2.6.10, 2.7.7, 3.0.5, 3.1.3, 3.2.0, jruby-9.3.9.0]

steps:
- name: Configure git
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
"3.1.3": {
"rails": "norails,rails61,rails70,railsedge"
},
"3.2.0-rc1": {
"3.2.0": {
"rails": "norails,rails61,rails70,railsedge"
},
"jruby-9.3.9.0": {
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
fail-fast: false
matrix:
multiverse: [agent, background, background_2, database, frameworks, httpclients, httpclients_2, rails, rest]
ruby-version: [2.2.10, 2.3.8, 2.4.10, 2.5.9, 2.6.10, 2.7.7, 3.0.5, 3.1.3, 3.2.0-rc1]
ruby-version: [2.2.10, 2.3.8, 2.4.10, 2.5.9, 2.6.10, 2.7.7, 3.0.5, 3.1.3, 3.2.0]
steps:
- name: Configure git
run: 'git config --global init.defaultBranch main'
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: [2.5.9, 2.6.10, 2.7.7, 3.0.5, 3.1.3, 3.2.0-rc1]
ruby-version: [2.5.9, 2.6.10, 2.7.7, 3.0.5, 3.1.3, 3.2.0]
steps:
- name: Configure git
run: 'git config --global init.defaultBranch main'
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# New Relic Ruby Agent Release Notes

## Upcoming Release

- **Add Support for Ruby 3.2.0**

Following the 3.2.0 release of Ruby, the New Relic Ruby Agent has confirmed compatibility with and now supports the official release of Ruby 3.2.0. [PR#1715](https://github.com/newrelic/newrelic-ruby-agent/pull/1715)


## v8.14.0

Version 8.14.0 of the agent restores desired Capistrano-based changelog lookup functionality when a deployment is performed, speeds up GUID generation, delivers support for instrumenting Rails custom event notifications, fixes potential compatibility issues with the RedisClient gem, and fixes bugs related to initialization in Rails.
Expand Down