Skip to content

Commit eeb3333

Browse files
dependabot[bot]yuokadaclaude
authored
Update psych requirement from ~> 3 to ~> 5 (#140)
* Update psych requirement from ~> 3 to ~> 5 Updates the requirements on [psych](https://github.com/ruby/psych) to permit the latest version. - [Release notes](https://github.com/ruby/psych/releases) - [Commits](ruby/psych@v3.0.0...v5.1.2) --- updated-dependencies: - dependency-name: psych dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * fix: expand YAML anchors/aliases in .standard_todo.yml for psych 5 compatibility psych 5 disables YAML alias parsing by default (Psych::AliasesNotEnabled). Standard loads this file with Psych.load_file without aliases: true, so any YAML anchor/alias in the file causes a crash. Expand the &modelgen_common anchor into explicit cop lists for each affected file. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fixup! fix: expand YAML anchors/aliases in .standard_todo.yml for psych 5 compatibility --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yukihiro Okada <yukihiro.okada@treasure-data.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2fde3f2 commit eeb3333

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.standard_todo.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ignore:
2727
- Style/TernaryParentheses
2828
- Style/TrailingCommaInHashLiteral
2929

30-
- 'modelgen/model_versions.rb': &modelgen_common
30+
- 'modelgen/*.rb':
3131
- Style/StringLiterals # TODO: Remove this later
3232
- Layout/DotPosition # TODO: Remove this later
3333
# NOTE: Selecting the below items
@@ -44,9 +44,6 @@ ignore:
4444
- Style/RedundantRegexpCharacterClass
4545
- Style/RedundantRegexpEscape
4646
- Style/StringLiteralsInInterpolation
47-
- 'modelgen/modelgen.rb': *modelgen_common
48-
- 'modelgen/models.rb': *modelgen_common
49-
- 'modelgen/trino_models.rb': *modelgen_common
5047
- 'spec/*.rb':
5148
- Style/StringLiterals # TODO: Remove this later
5249
- Layout/DotPosition # TODO: Remove this later

trino-client.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ Gem::Specification.new do |gem|
3232
gem.add_development_dependency "addressable", "~> 2.9.0"
3333
gem.add_development_dependency "simplecov", "~> 0.22.0"
3434
gem.add_development_dependency "standard", "~> 1.54.0"
35-
gem.add_development_dependency "psych", "~> 3"
35+
gem.add_development_dependency "psych", "~> 5"
3636
end

0 commit comments

Comments
 (0)