diff --git a/.changesets/reduce-dependency-on-yaml-during-installation.md b/.changesets/reduce-dependency-on-yaml-during-installation.md deleted file mode 100644 index 7654afdeb..000000000 --- a/.changesets/reduce-dependency-on-yaml-during-installation.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "change" ---- - -Reduce our dependency on YAML during installation. Instead of a YAML file with details about the extension download location, use a pure Ruby file. This is a partial fix for the installation issue involving psych version 5. diff --git a/.changesets/skip--gemrc-config-during-installation-if-it-raises-an-error-loading-it.md b/.changesets/skip--gemrc-config-during-installation-if-it-raises-an-error-loading-it.md deleted file mode 100644 index b1435bdb4..000000000 --- a/.changesets/skip--gemrc-config-during-installation-if-it-raises-an-error-loading-it.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "fix" ---- - -Skip the `.gemrc` config during installation if it raises an error loading it. This can be caused when the psych gem version 5 is installed on Ruby < 3.2. Use the `HTTP_PROXY` environment variable instead to configure the HTTP proxy that should be used during installation. diff --git a/CHANGELOG.md b/CHANGELOG.md index bff27b22f..5ade6e89b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # AppSignal for Ruby gem Changelog +## 3.3.2 + +### Changed + +- [d1b960f0](https://github.com/appsignal/appsignal-ruby/commit/d1b960f0350b55962621d740e6a92922b334ab49) patch - Reduce our dependency on YAML during installation. Instead of a YAML file with details about the extension download location, use a pure Ruby file. This is a partial fix for the installation issue involving psych version 5. + +### Fixed + +- [e1e598ae](https://github.com/appsignal/appsignal-ruby/commit/e1e598ae51512a51486446e5751e504d4fc90ef0) patch - Skip the `.gemrc` config during installation if it raises an error loading it. This can be caused when the psych gem version 5 is installed on Ruby < 3.2. Use the `HTTP_PROXY` environment variable instead to configure the HTTP proxy that should be used during installation. + ## 3.3.1 ### Added diff --git a/lib/appsignal/version.rb b/lib/appsignal/version.rb index 6abad43e8..6d83260f6 100644 --- a/lib/appsignal/version.rb +++ b/lib/appsignal/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Appsignal - VERSION = "3.3.1".freeze + VERSION = "3.3.2".freeze end