From 067125ba79f8b7ac49e69cc0dbd44ed05e0d4fef Mon Sep 17 00:00:00 2001 From: "crossplane-renovate[bot]" <166709878+crossplane-renovate[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2026 21:55:00 +0000 Subject: [PATCH 1/2] chore(deps): lock file maintenance --- flake.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 9a2fa9df..d76226c9 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1787101114, - "narHash": "sha256-gwrPcFf/rDjHPaVflbDZ040ZDmBTRj/7+s8ZmE2SaIM=", + "lastModified": 1788807765, + "narHash": "sha256-J9oC0bKnkXUrMegqRTXVkyDFJ0gn2U/Qpoo9HgGMQmA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "b18a4b905f8d028dc4476412e6d6891728695379", + "rev": "93108a538f079596c9a16c72cf03e9322782b6dd", "type": "github" }, "original": { @@ -18,11 +18,11 @@ }, "nixpkgs-unstable": { "locked": { - "lastModified": 1787172299, - "narHash": "sha256-PShzS87awOlE5XWkxUGBd/58/F+AtE2ZMgFffKj4r8s=", + "lastModified": 1788865024, + "narHash": "sha256-3YkAzvtt4LoE11IcBDzPshIF3fJ0aIoILqE7dAg8CLI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "07e1d92cdc0ed416cfa11ff3ca40d17e61cfba7a", + "rev": "422d1ae605d7fcd9896412b37dc065c456c0eefb", "type": "github" }, "original": { From 8b7229b4d2221586f93ca6ede1304bfce031f776 Mon Sep 17 00:00:00 2001 From: Adam Wolfe Gordon Date: Thu, 10 Sep 2026 13:20:23 -0600 Subject: [PATCH 2/2] lint: Exclude the exhaustruct_v5 linter A recent golangci-lint update has a new version of exhaustruct, which we were excluding already. Add the new version to the list of excludes. Signed-off-by: Adam Wolfe Gordon --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index 8105f1d3..477607d9 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -67,6 +67,7 @@ linters: # useful in theory to catch fields that are accidentally omitted. Seems like # it would have many more false positives than useful catches, though. - exhaustruct + - exhaustruct_v5 # Warns about TODO comments. The rationale being they should be issues # instead. We're okay with using TODO to track minor cleanups for next time