From a5c159c08cb04e7c1719cb2273592905092e8074 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 10 Sep 2026 00:08:06 +0000 Subject: [PATCH 1/2] chore: bump development Ruby to 4.0.6 Keep .ruby-version and the devcontainer image on the latest stable patch of the CI 4.0 series. required_ruby_version is unchanged. --- .devcontainer/devcontainer.json | 2 +- .ruby-version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c3f10e1..0821d61 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "microcms-ruby-sdk", - "image": "ghcr.io/rails/devcontainer/images/ruby:4.0.5", + "image": "ghcr.io/rails/devcontainer/images/ruby:4.0.6", "postCreateCommand": "bin/setup", "customizations": { "vscode": { diff --git a/.ruby-version b/.ruby-version index 7636e75..d13e837 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -4.0.5 +4.0.6 From 31852f6250110ffcfbd06bcc80326a067dcf593b Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 10 Sep 2026 00:08:06 +0000 Subject: [PATCH 2/2] chore: update rake to 13.4 and rubocop constraint to 1.90 Raise development gem floors to the current stable minors. rspec already tracks 3.13. Gemfile.lock remains gitignored. --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 5ed89d6..5f9b237 100644 --- a/Gemfile +++ b/Gemfile @@ -5,8 +5,8 @@ source 'https://rubygems.org' # Specify your gem's dependencies in microcms.gemspec gemspec -gem 'rake', '~> 12.0' +gem 'rake', '~> 13.4' -gem 'rubocop', '~> 1.81', require: false +gem 'rubocop', '~> 1.90', require: false gem 'rspec', '~> 3.13', require: false