Skip to content
Open
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
5 changes: 2 additions & 3 deletions .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ jobs:
tests:
strategy:
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [2.7, '3.0', 3.1, 3.2]
ruby: ['3.3', '3.4', '4.0']
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -47,7 +46,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: '3.4'
bundler-cache: true
- name: Prepare credentials
env:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test_only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ jobs:
tests:
strategy:
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [2.7, '3.0', 3.1, 3.2]
ruby: ['3.3', '3.4', '4.0']
runs-on: ubuntu-latest

steps:
Expand All @@ -31,7 +30,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
ruby-version: '3.4'
bundler-cache: true
- name: Set up Node
uses: actions/setup-node@v2
Expand Down
15 changes: 13 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inherit_from:
inherit_gem:
prettier: rubocop.yml

require:
plugins:
- rubocop-faker
- rubocop-performance
- rubocop-sorbet
Expand All @@ -14,7 +14,7 @@ AllCops:
DisplayStyleGuide: true
DisplayCopNames: true
SuggestExtensions: false
TargetRubyVersion: 2.6
TargetRubyVersion: 3.3
Exclude:
- 'bin/*'
- 'vendor/**/*'
Expand All @@ -34,3 +34,14 @@ Style:

Gemspec/RequiredRubyVersion:
Enabled: false

# `delete` and `revive` mirror Shotgrid's REST verbs; they are imperative
# actions that happen to return `true` on success, not predicates.
Naming/PredicateMethod:
Exclude:
- 'lib/shotgrid_api_ruby/entities.rb'

# Sorbet `sig` cannot reference an anonymous `&` block parameter, so the
# explicit `&block` form is required wherever a method has a Sorbet signature.
Naming/BlockForwarding:
EnforcedStyle: explicit
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.3.11
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0.8] - 2026-05-10

### Added

- Explicit dependency on `ostruct` (no longer in default gems on Ruby 4.0+)

### Changed

- Bumped minimum Ruby to 3.3 and updated the CI matrix to non-EOL versions (3.3, 3.4, 4.0)
- Upgraded Sorbet/Tapioca stack (sorbet-static now ships arm64-darwin-25 binaries)
- Bumped RuboCop and migrated `require:` extensions to the new `plugins:` syntax; `TargetRubyVersion` raised to 3.3
- Refreshed gem RBIs against the updated dependencies

### Fixed

- Gemspec metadata: `homepage_uri`, `source_code_uri` and `changelog_uri` were silently overwritten by a subsequent `spec.metadata = {…}` assignment; consolidated into a single hash literal so all entries are published

## [0.2.0.6] - 2023-01-29

### Added
Expand Down
Loading
Loading