From 2f81b1b810816a77a43eb4641691575f78d1f92a Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 27 May 2026 18:07:45 +1000 Subject: [PATCH 1/2] Configure dependabot bundler updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tracks [AINFRA-2437](https://linear.app/a8c/issue/AINFRA-2437). Adds a Dependabot config that opens a daily bundler PR for the gem's Ruby dependencies, with minor and patch bumps grouped under `ruby-minor-and-patch` and the PR limit capped at 5. The repo is the release-toolkit gem itself, so this configures updates for its own development and runtime dependencies — it does not consume RT. --- Generated with the help of Claude Code, https://code.claude.com Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/dependabot.yml | 10 ++++++++++ CHANGELOG.md | 1 + 2 files changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..0bbb5449b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: bundler + directory: "/" + schedule: + interval: daily + groups: + ruby-minor-and-patch: + update-types: [minor, patch] + open-pull-requests-limit: 5 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a69e035d..8bd0cda62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ _None_ ### Internal Changes - `openai_ask`: validate named function tools, default to `gpt-4.1`, use `max_completion_tokens`, and opt out of OpenAI request storage. [#719] +- Configure Dependabot to update Ruby dependencies daily, grouping minor/patch bumps under `ruby-minor-and-patch`. ## 14.6.0 From c45d7909175c0cce9a5c9995acf26aec6b4aff2b Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 27 May 2026 18:11:51 +1000 Subject: [PATCH 2/2] Reference PR number in CHANGELOG --- Generated with the help of Claude Code, https://code.claude.com Co-Authored-By: Claude Opus 4.7 (1M context) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bd0cda62..b0790ab5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ _None_ ### Internal Changes - `openai_ask`: validate named function tools, default to `gpt-4.1`, use `max_completion_tokens`, and opt out of OpenAI request storage. [#719] -- Configure Dependabot to update Ruby dependencies daily, grouping minor/patch bumps under `ruby-minor-and-patch`. +- Configure Dependabot to update Ruby dependencies daily, grouping minor/patch bumps under `ruby-minor-and-patch`. [#724] ## 14.6.0