From a211e8169e9e269b884d8d1d272b5e2846e09658 Mon Sep 17 00:00:00 2001 From: shine Date: Tue, 2 May 2023 12:45:18 +0530 Subject: [PATCH 1/2] change module version constraint from pessimistic operator to greater than operator. integrations/github has bumped the major version of the provider bringing in additional features. To make this module more accessible and interoperable with other resources in the new version of the provider, we would have to support all upward versions until an incompatibility is identified. At which point, we could consider updating the code to fix the incompatibilty or add a lesser than operator if the incompatibilty cannot be resolved within the scope of the code in the repository. --- versions.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.tf b/versions.tf index 9f3af79..93022f1 100644 --- a/versions.tf +++ b/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { github = { source = "integrations/github" - version = "~> 4.0" + version = ">= 4.0" } } } From 49b7009781af3c965899539dc1d2f1326f233a33 Mon Sep 17 00:00:00 2001 From: shine <4771718+shinenelson@users.noreply.github.com> Date: Sun, 21 May 2023 00:06:38 +0530 Subject: [PATCH 2/2] update documentation for module --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 22970a5..119b4dd 100644 --- a/README.md +++ b/README.md @@ -90,13 +90,13 @@ here](https://github.com/tbobm/terraform-github-environments/blob/master/.github | Name | Version | |------|---------| -| [github](#requirement\_github) | ~> 4.0 | +| [github](#requirement\_github) | >= 4.0 | ## Providers | Name | Version | |------|---------| -| [github](#provider\_github) | ~> 4.0 | +| [github](#provider\_github) | >= 4.0 | ## Modules