From 701258c7cd5178b16d45a324da01ec2ef3320653 Mon Sep 17 00:00:00 2001 From: Jared Baker Date: Thu, 9 Nov 2023 11:17:44 -0500 Subject: [PATCH 1/3] deps: add feature/s3/manager to temporary ignore list --- .github/dependabot.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ffea23c684d..20c3ea92480 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -36,8 +36,14 @@ updates: - dependency-name: "github.com/hashicorp/go-hclog" - dependency-name: "golang.org/x/tools" - dependency-name: "google.golang.org/grpc" - # config has upstream regressions which must be resolved before updates are included + # TEMPORARY - Remove below once upstream is fixed + # Ref: https://github.com/aws/aws-sdk-go-v2/issues/2349 + # + # config has upstream regressions causing valid configurations to break. + # feature/s3/manager is also ignored as the latest versions have a + # dependency on broken config versions. - dependency-name: "github.com/aws/aws-sdk-go-v2/config" + - dependency-name: "github.com/aws/aws-sdk-go-v2/feature/s3/manager" schedule: interval: "daily" open-pull-requests-limit: 30 From d9734a7140f361ab5a7667ee4dd978f12c40a764 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Thu, 9 Nov 2023 11:42:18 -0500 Subject: [PATCH 2/3] Update dependabot.yml Remove trailing whitespace. --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 20c3ea92480..7f248072958 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -38,9 +38,9 @@ updates: - dependency-name: "google.golang.org/grpc" # TEMPORARY - Remove below once upstream is fixed # Ref: https://github.com/aws/aws-sdk-go-v2/issues/2349 - # - # config has upstream regressions causing valid configurations to break. - # feature/s3/manager is also ignored as the latest versions have a + # + # config has upstream regressions causing valid configurations to break. + # feature/s3/manager is also ignored as the latest versions have a # dependency on broken config versions. - dependency-name: "github.com/aws/aws-sdk-go-v2/config" - dependency-name: "github.com/aws/aws-sdk-go-v2/feature/s3/manager" From 8e198ef181fa68325342f422f955a1466e1b66fc Mon Sep 17 00:00:00 2001 From: Jared Baker Date: Thu, 9 Nov 2023 14:42:00 -0500 Subject: [PATCH 3/3] deps: add internal/ini to temporary ignore list --- .github/dependabot.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7f248072958..48f4c91031e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -39,10 +39,11 @@ updates: # TEMPORARY - Remove below once upstream is fixed # Ref: https://github.com/aws/aws-sdk-go-v2/issues/2349 # - # config has upstream regressions causing valid configurations to break. - # feature/s3/manager is also ignored as the latest versions have a - # dependency on broken config versions. + # config and ini have upstream regressions causing valid configurations to break. + # feature/s3/manager is also ignored as the latest versions have a dependency + # on broken config versions. - dependency-name: "github.com/aws/aws-sdk-go-v2/config" + - dependency-name: "github.com/aws/aws-sdk-go-v2/internal/ini" - dependency-name: "github.com/aws/aws-sdk-go-v2/feature/s3/manager" schedule: interval: "daily"