From 5d2b6bb145494c9438c57508ad239c3e96a195d0 Mon Sep 17 00:00:00 2001 From: Tom de Bruijn Date: Fri, 25 Aug 2023 09:27:21 +0200 Subject: [PATCH] Publish package v3.4.11 Update version number and CHANGELOG.md. --- .changesets/add-role-config-option.md | 6 ------ .changesets/bump-agent-d789895.md | 8 -------- .changesets/ruby-2-7-support.md | 6 ------ CHANGELOG.md | 13 +++++++++++++ lib/appsignal/version.rb | 2 +- 5 files changed, 14 insertions(+), 21 deletions(-) delete mode 100644 .changesets/add-role-config-option.md delete mode 100644 .changesets/bump-agent-d789895.md delete mode 100644 .changesets/ruby-2-7-support.md diff --git a/.changesets/add-role-config-option.md b/.changesets/add-role-config-option.md deleted file mode 100644 index dbb6b1137..000000000 --- a/.changesets/add-role-config-option.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "add" ---- - -Add the `host_role` config option. This config option can be set per host to generate some metrics automatically per host and possibly do things like grouping in the future. diff --git a/.changesets/bump-agent-d789895.md b/.changesets/bump-agent-d789895.md deleted file mode 100644 index 8a084454c..000000000 --- a/.changesets/bump-agent-d789895.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -bump: "patch" -type: "change" ---- - -Bump agent to version d789895. - -- Increase short data truncation from 2000 to 10000 characters. diff --git a/.changesets/ruby-2-7-support.md b/.changesets/ruby-2-7-support.md deleted file mode 100644 index 2c68cafae..000000000 --- a/.changesets/ruby-2-7-support.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "add" ---- - -Re-add support for Ruby 2.7. diff --git a/CHANGELOG.md b/CHANGELOG.md index fc64a657b..c1310926f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # AppSignal for Ruby gem Changelog +## 3.4.11 + +### Added + +- [4722292d](https://github.com/appsignal/appsignal-ruby/commit/4722292d022fb7ff7f3403b964b24e82112e93bd) patch - Re-add support for Ruby 2.7. +- [d782f9a6](https://github.com/appsignal/appsignal-ruby/commit/d782f9a6db0bd679f01c543900b39fc15124a25f) patch - Add the `host_role` config option. This config option can be set per host to generate some metrics automatically per host and possibly do things like grouping in the future. + +### Changed + +- [f61f4f68](https://github.com/appsignal/appsignal-ruby/commit/f61f4f68699f022d3d9dbb0fa5dc98881923a001) patch - Bump agent to version d789895. + + - Increase short data truncation from 2000 to 10000 characters. + ## 3.4.10 ### Changed diff --git a/lib/appsignal/version.rb b/lib/appsignal/version.rb index 46d5b29fe..a853819d2 100644 --- a/lib/appsignal/version.rb +++ b/lib/appsignal/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Appsignal - VERSION = "3.4.10" + VERSION = "3.4.11" end