chore(deps): update terraform github to v6.11.1#256
chore(deps): update terraform github to v6.11.1#256renovate[bot] wants to merge 1 commit intomainfrom
Conversation
PR #256 レビュー - GitHub Terraform Provider 依存関係更新概要このPRはGitHub Terraform Providerを v6.3.0 から v6.9.1 にアップデートするRenovateによる自動更新です。 ✅ コード品質とベストプラクティス良好な点:
🔍 潜在的な問題とバグ重要な注意点:
🔒 セキュリティの懸念事項セキュリティ改善:
推奨事項:
🎯 パフォーマンスの考慮事項
🧪 テストカバレッジ推奨アクション:
📝 推奨事項
まとめこのアップデートは安全で、多くのバグ修正とセキュリティ改善が含まれています。破壊的変更は報告されていないため、リスクは低いと判断されます。 このレビューは Claude Code により生成されました |
1f66f47 to
5af1fc8
Compare
PR #256 レビュー結果このPRは、GitHub Terraformプロバイダーを ✅ 良い点
🔍 確認が必要な項目1. 破壊的変更と非推奨機能プロバイダーのリリースノートによると、以下の非推奨化があります:
2. 新機能の影響確認v6.8.0-v6.10.0で追加された主な機能:
これらの新機能は既存のコードに影響を与えませんが、今後活用できる可能性があります。 3. 重要なバグ修正以下のバグ修正が含まれています:
🧪 テスト推奨事項マージ前に以下のテストを推奨します: # 1. Terraform初期化
cd github/
terraform init -upgrade
cd ../sakuracloud/
terraform init -upgrade
# 2. プラン実行(差分確認)
cd ../github/
terraform plan
cd ../sakuracloud/
terraform plan
# 3. バリデーション
terraform validate
|
5af1fc8 to
d2381c8
Compare
プルリクエストレビュー - PR #256📋 概要このPRは、Renovate BotによるGitHub Terraform Providerのバージョン更新です。バージョン ✅ 変更内容以下の2つの
バージョン制約 🔍 コード品質とベストプラクティス✅ 良い点
🐛 潜在的な問題とリスク
|
d2381c8 to
ff5c950
Compare
ff5c950 to
0dcd791
Compare
0dcd791 to
7ceda3b
Compare
7ceda3b to
9f9dc13
Compare
This PR contains the following updates:
6.3.0→6.11.1Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
integrations/terraform-provider-github (github)
v6.11.1Compare Source
What's Changed
🐛 Bugfixes
team_idofemu_group_mappingby @deiga in #3163Maintenance
github_repository_fileby @deiga in #3175Full Changelog: integrations/terraform-provider-github@v6.11.0...v6.11.1
v6.11.0Compare Source
What's Changed
🚀 New Features
🐛 Bugfixes
github_emu_group_mappingbehaves correctly if mapping changes upstream by @deiga in #3118🛠️ Maintenance
github_repositoryby @deiga in #3086github_repository_fileto use Context-aware provider functions by @deiga in #3107github_organization_rulesetandgithub_repository_rulesetwithpushtarget by @deiga in #2958New Contributors
Full Changelog: integrations/terraform-provider-github@v6.10.2...v6.11.0
v6.10.2Compare Source
What's Changed
🐛 Bugfixes
📝 Documentation
New Contributors
Full Changelog: integrations/terraform-provider-github@v6.10.1...v6.10.2
v6.10.1Compare Source
NOTE: This reverts a breaking change.
What's Changed
🐛 Bugfixes
allowed_merge_methodstoOptionalby @deiga in #3083Full Changelog: integrations/terraform-provider-github@v6.10.0...v6.10.1
v6.10.0Compare Source
What's Changed
🚀 New Features
🐛 Bugfixes
github_emu_group_mappingfor Group with multiple teams by @deiga in #3054allowed_merge_methodsby @deiga in #2976🪦 Deprecations
has_downloadsfield ofgithub_repositoryby @deiga in #3063🛠️ Maintenance
New Contributors
Full Changelog: integrations/terraform-provider-github@v6.9.1...v6.10.0
v6.9.1Compare Source
What's Changed
🐛 Bugfixes
github_organization_roleEnsurerole_idis set after Create by @deiga in #3011📝 Documentation
Docs
merge_queuerepository rule by @usmonster in #2581Maintenance
New Contributors
Full Changelog: integrations/terraform-provider-github@v6.9.0...v6.9.1
v6.9.0Compare Source
What's Changed
🚀 New Features
🐛 Bugfixes
forktoTypeStringand add conditional ForceNew by @diofeher in #2959🪦 Deprecations
🛠️ Maintenance
New Contributors
Full Changelog: integrations/terraform-provider-github@v6.8.0...v6.9.0
v6.8.3Compare Source
Updates how we handle secrets to address provider config and initialization issues (ref: #2903)
Full Changelog: integrations/terraform-provider-github@v6.8.2...v6.8.3
v6.8.2Compare Source
This merge brings the following enhancements from v6.7.5:
Full Changelog: integrations/terraform-provider-github@v6.8.1...v6.8.2
v6.8.1Compare Source
fix: max_file_size was declared as an int but being cast as a float
fix: restricted_file_extensions was panicing due to a Set type mismatch
Full Changelog: integrations/terraform-provider-github@v6.8.0...v6.8.1
v6.8.0Compare Source
What's Changed
🚀 New Features
🐛 Bugfixes
🛠️ Maintenance
📝 Documentation
New Contributors
Full Changelog: integrations/terraform-provider-github@v6.7.0...v6.8.0
v6.7.5Compare Source
[fix]: v6.7.4 causes Internal validation error during TF Init #2855
Full Changelog: integrations/terraform-provider-github@v6.7.4...v6.7.5
v6.7.4Compare Source
v6.7.4
This patch appropriately handles the cases when a Terraform resource has an Update function defined (which was recently added), the Terraform SDK requires that any field that can change must either have
ForceNew: true(meaning changes require resource recreation) or for that field to be a computed-only field.The
destroy_on_driftfield is a provider config setting that controls how drift detection works - it's not a field that maps to the GitHub API. When implementations try to change this field Terraform will execute the plan properly but fail on the apply because the Update function didn't know how to handle the destroy_on_drift change.Lastly reads now handle setting
encrypted_valueandplaintext_valueto nil to trigger an update when the "stored" update dates do not match.Full Changelog: integrations/terraform-provider-github@v6.7.3...v6.7.4
v6.7.3Compare Source
v6.7.3
This patch addresses the issue where the Update function was missed during the cherry pick for
github_actions_secretresource.Tests were also added to avoid regressions in the future.
Full Changelog: integrations/terraform-provider-github@v6.7.2...v6.7.3
v6.7.2Compare Source
v6.7.2
Note: This patch contains the addition of the
destroy_on_driftproperty togithub_actions_secretresource because the exact same issue was present there as well.Bug Fixes
Fixed drift detection bug that caused "Provider produced inconsistent result" errors in github_actions_organization_secret and github_actions_secret resources. The bug occurred when secrets were modified externally - the timestamp wasn't being updated after drift detection, causing infinite loops of false positive drift detection. | #2832
Features
Added destroy_on_drift property to github_actions_secret resource (repository-level secrets), and matches the functionality already available in github_actions_organization_secret. Also includes proper schema migration from v0 to v1 and ensures the property defaults to true for backward compatibility. | #2832
Full Changelog: integrations/terraform-provider-github@v6.7.1...v6.7.2
v6.7.1Compare Source
v6.7.1
Bug Fixes
destroy_on_driftfield to fix regression from v6.7.0 (#2820)This patch release fixes a regression introduced in v6.7.0 where existing
github_actions_organization_secretresources would show invalid state for the newdestroy_on_driftfield.The fix adds a schema migration that automatically sets
destroy_on_drift=truefor existing resources that don't have this field, preventing the need for manual state fixes.Fixes: #2804
Full Changelog: integrations/terraform-provider-github@v6.7.0...v6.7.1
v6.7.0Compare Source
What's Changed
🚀 New Features
github_actions_organization_secret_repositoryresource by @ylascombe in #2760DeployKeyactor type in repository and organization rulesets by @tiulpin in #2748🐛 Bugfixes
🛠️ Maintenance
📝 Documentation
New Contributors
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.