From a2a77e4137b9e39275c8422c08c4f66cdfa605fd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 17:41:15 +0000 Subject: [PATCH 1/3] Initial plan From 5bbc5b60f47f7e9a61e7445fe9a8c9b14a7150d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 17:47:16 +0000 Subject: [PATCH 2/3] Fix malformed ignore configuration in dependabot.yml to allow PATCH version updates Co-authored-by: willtheorangeguy <18339050+willtheorangeguy@users.noreply.github.com> --- .github/dependabot.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 29c459d..051fd48 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,18 +4,18 @@ updates: directory: "/" schedule: interval: "daily" - ignore: - update-types: [ "version-update:semver-patch" ] + ignore: + - update-types: ["version-update:semver-patch"] - package-ecosystem: "pip" directory: "/" schedule: interval: "daily" - ignore: - update-types: [ "version-update:semver-patch" ] + ignore: + - update-types: ["version-update:semver-patch"] - package-ecosystem: "docker" directory: "/" schedule: interval: "daily" - ignore: - update-types: [ "version-update:semver-patch" ] + ignore: + - update-types: ["version-update:semver-patch"] From 73fd8a1f623c38741621b3f16eccfe7397e05a46 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 17:53:00 +0000 Subject: [PATCH 3/3] Add required dependency-name property to dependabot ignore rules Co-authored-by: willtheorangeguy <18339050+willtheorangeguy@users.noreply.github.com> --- .github/dependabot.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 051fd48..e2050c6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,17 +5,20 @@ updates: schedule: interval: "daily" ignore: - - update-types: ["version-update:semver-patch"] + - dependency-name: "*" + update-types: ["version-update:semver-patch"] - package-ecosystem: "pip" directory: "/" schedule: interval: "daily" ignore: - - update-types: ["version-update:semver-patch"] + - dependency-name: "*" + update-types: ["version-update:semver-patch"] - package-ecosystem: "docker" directory: "/" schedule: interval: "daily" ignore: - - update-types: ["version-update:semver-patch"] + - dependency-name: "*" + update-types: ["version-update:semver-patch"]