From 55be7397beb116c2afdf9e8b892bbae7ab637ded Mon Sep 17 00:00:00 2001 From: Jimmi Dyson Date: Thu, 7 Nov 2024 10:00:29 +0000 Subject: [PATCH] feat: Build with go 1.23.2 and upgrade all tools --- .github/workflows/checks.yml | 12 +- .pre-commit-config.yaml | 36 +- api/go.mod | 2 +- .../caren.nutanix.com_awsclusterconfigs.yaml | 2 +- ...aren.nutanix.com_awsworkernodeconfigs.yaml | 2 +- ...aren.nutanix.com_dockerclusterconfigs.yaml | 2 +- .../caren.nutanix.com_dockernodeconfigs.yaml | 2 +- ...ren.nutanix.com_genericclusterconfigs.yaml | 2 +- ...ren.nutanix.com_nutanixclusterconfigs.yaml | 2 +- .../caren.nutanix.com_nutanixnodeconfigs.yaml | 2 +- common/go.mod | 2 +- devbox.json | 6 +- devbox.lock | 888 ++++++++++-------- go.mod | 2 +- hack/flakes/flake.lock | 6 +- hack/flakes/flake.nix | 36 +- make/kind.mk | 9 +- 17 files changed, 539 insertions(+), 474 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index e3db1ebcc..c08326d94 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -66,9 +66,9 @@ jobs: config: - {"provider": "Nutanix", "kubernetesVersion": "v1.29.6", "osImage": "nkp-rocky-9.4-release-1.29.6-20240816215147"} - {"provider": "Nutanix", "kubernetesVersion": "v1.30.5", "osImage": "nkp-rocky-9.4-release-1.30.5-20240930171619"} - - {"provider": "Docker", "kubernetesVersion": "v1.29.8"} - - {"provider": "Docker", "kubernetesVersion": "v1.30.5"} - - {"provider": "Docker", "kubernetesVersion": "v1.31.0"} + - {"provider": "Docker", "kubernetesVersion": "v1.29.9"} + - {"provider": "Docker", "kubernetesVersion": "v1.30.6"} + - {"provider": "Docker", "kubernetesVersion": "v1.31.2"} # Uncomment below once we have the ability to run e2e tests on other providers from GHA. # - {"provider": "AWS", "kubernetesVersion": "v1.29.6"} fail-fast: false @@ -95,9 +95,9 @@ jobs: strategy: matrix: config: - - {"provider": "Docker", "kubernetesVersion": "v1.29.8"} - - {"provider": "Docker", "kubernetesVersion": "v1.30.5"} - - {"provider": "Docker", "kubernetesVersion": "v1.31.0"} + - {"provider": "Docker", "kubernetesVersion": "v1.29.9"} + - {"provider": "Docker", "kubernetesVersion": "v1.30.6"} + - {"provider": "Docker", "kubernetesVersion": "v1.31.2"} # Uncomment below once we have the ability to run e2e tests on other providers from GHA. # - {"provider": "Nutanix", "kubernetesVersion": "v1.29.6"} # - {"provider": "AWS", "kubernetesVersion": "v1.29.6"} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8a233f758..1b87a67e7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -77,36 +77,36 @@ repos: rev: v4.6.0 hooks: - id: trailing-whitespace - stages: [commit] + stages: [pre-commit] - id: check-yaml args: ["-m", "--unsafe"] - stages: [commit] + stages: [pre-commit] exclude: ^charts/.+/(templates|addons)/.+\.ya?ml$ - id: mixed-line-ending args: ["-f", "lf"] exclude: \.bat$ - stages: [commit] + stages: [pre-commit] - id: no-commit-to-branch - stages: [commit] + stages: [pre-commit] - id: check-added-large-files - stages: [commit] + stages: [pre-commit] exclude: ^pkg/handlers/cni/calico/manifests/tigera-operator-configmap.yaml$ - id: check-case-conflict - stages: [commit] + stages: [pre-commit] - id: check-merge-conflict - stages: [commit] + stages: [pre-commit] - id: check-executables-have-shebangs - stages: [commit] + stages: [pre-commit] - id: check-symlinks - stages: [commit] + stages: [pre-commit] - id: end-of-file-fixer - stages: [commit] + stages: [pre-commit] exclude: ^charts/cluster-api-runtime-extensions-nutanix/README.md$ - repo: https://github.com/rhysd/actionlint rev: v1.7.1 hooks: - id: actionlint-system - stages: [commit] + stages: [pre-commit] - repo: https://github.com/jorisroovers/gitlint rev: v0.19.1 hooks: @@ -117,28 +117,28 @@ repos: rev: 3.0.0 hooks: - id: shfmt - stages: [commit] + stages: [pre-commit] args: ["-s", "-i", "2"] - id: script-must-have-extension - stages: [commit] + stages: [pre-commit] - repo: https://github.com/shellcheck-py/shellcheck-py rev: v0.10.0.1 hooks: - id: shellcheck - stages: [commit] + stages: [pre-commit] args: ["-e", "SC2211", "-x"] - repo: https://github.com/igorshubovych/markdownlint-cli rev: v0.41.0 hooks: - id: markdownlint - stages: [commit] + stages: [pre-commit] exclude: ^(CHANGELOG.md|charts/.+/README.md|.github/pull_request_template.md)$ - repo: https://github.com/Lucas-C/pre-commit-hooks rev: v1.5.5 hooks: - id: insert-license name: License headers - Go - stages: [commit] + stages: [pre-commit] files: "(.*\\.go|go.mod)$" exclude: ^(api/external/|internal/test) args: @@ -149,7 +149,7 @@ repos: - --allow-past-years - id: insert-license name: License headers - YAML and Makefiles - stages: [commit] + stages: [pre-commit] files: (^Makefile|\.(ya?ml|mk))$ exclude: ^(internal/test|pkg/handlers/.+/embedded|examples|charts/cluster-api-runtime-extensions-nutanix/(defaultclusterclasses|addons))/.+\.ya?ml|docs/static/helm/index\.yaml|charts/cluster-api-runtime-extensions-nutanix/templates/helm-config.yaml$ args: @@ -158,7 +158,7 @@ repos: - --allow-past-years - id: insert-license name: License headers - Markdown - stages: [commit] + stages: [pre-commit] files: \.md$ exclude: ^(CHANGELOG.md$|docs/|.github/pull_request_template.md$) args: diff --git a/api/go.mod b/api/go.mod index 1db5bb54e..3a9999b36 100644 --- a/api/go.mod +++ b/api/go.mod @@ -5,7 +5,7 @@ module github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/ap go 1.22.0 -toolchain go1.23.1 +toolchain go1.23.2 replace github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/common => ../common diff --git a/api/v1alpha1/crds/caren.nutanix.com_awsclusterconfigs.yaml b/api/v1alpha1/crds/caren.nutanix.com_awsclusterconfigs.yaml index 09a8c8473..85cee6f4c 100644 --- a/api/v1alpha1/crds/caren.nutanix.com_awsclusterconfigs.yaml +++ b/api/v1alpha1/crds/caren.nutanix.com_awsclusterconfigs.yaml @@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: (devel) + controller-gen.kubebuilder.io/version: v0.16.4 name: awsclusterconfigs.caren.nutanix.com spec: group: caren.nutanix.com diff --git a/api/v1alpha1/crds/caren.nutanix.com_awsworkernodeconfigs.yaml b/api/v1alpha1/crds/caren.nutanix.com_awsworkernodeconfigs.yaml index cb05f6593..4c429642a 100644 --- a/api/v1alpha1/crds/caren.nutanix.com_awsworkernodeconfigs.yaml +++ b/api/v1alpha1/crds/caren.nutanix.com_awsworkernodeconfigs.yaml @@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: (devel) + controller-gen.kubebuilder.io/version: v0.16.4 name: awsworkernodeconfigs.caren.nutanix.com spec: group: caren.nutanix.com diff --git a/api/v1alpha1/crds/caren.nutanix.com_dockerclusterconfigs.yaml b/api/v1alpha1/crds/caren.nutanix.com_dockerclusterconfigs.yaml index b352732a3..23dd86ed4 100644 --- a/api/v1alpha1/crds/caren.nutanix.com_dockerclusterconfigs.yaml +++ b/api/v1alpha1/crds/caren.nutanix.com_dockerclusterconfigs.yaml @@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: (devel) + controller-gen.kubebuilder.io/version: v0.16.4 name: dockerclusterconfigs.caren.nutanix.com spec: group: caren.nutanix.com diff --git a/api/v1alpha1/crds/caren.nutanix.com_dockernodeconfigs.yaml b/api/v1alpha1/crds/caren.nutanix.com_dockernodeconfigs.yaml index 04141c4ed..c8e185167 100644 --- a/api/v1alpha1/crds/caren.nutanix.com_dockernodeconfigs.yaml +++ b/api/v1alpha1/crds/caren.nutanix.com_dockernodeconfigs.yaml @@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: (devel) + controller-gen.kubebuilder.io/version: v0.16.4 name: dockernodeconfigs.caren.nutanix.com spec: group: caren.nutanix.com diff --git a/api/v1alpha1/crds/caren.nutanix.com_genericclusterconfigs.yaml b/api/v1alpha1/crds/caren.nutanix.com_genericclusterconfigs.yaml index 883bea1c8..2b5b0464d 100644 --- a/api/v1alpha1/crds/caren.nutanix.com_genericclusterconfigs.yaml +++ b/api/v1alpha1/crds/caren.nutanix.com_genericclusterconfigs.yaml @@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: (devel) + controller-gen.kubebuilder.io/version: v0.16.4 name: genericclusterconfigs.caren.nutanix.com spec: group: caren.nutanix.com diff --git a/api/v1alpha1/crds/caren.nutanix.com_nutanixclusterconfigs.yaml b/api/v1alpha1/crds/caren.nutanix.com_nutanixclusterconfigs.yaml index 6f0a5ebe1..bd3cd2fcd 100644 --- a/api/v1alpha1/crds/caren.nutanix.com_nutanixclusterconfigs.yaml +++ b/api/v1alpha1/crds/caren.nutanix.com_nutanixclusterconfigs.yaml @@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: (devel) + controller-gen.kubebuilder.io/version: v0.16.4 name: nutanixclusterconfigs.caren.nutanix.com spec: group: caren.nutanix.com diff --git a/api/v1alpha1/crds/caren.nutanix.com_nutanixnodeconfigs.yaml b/api/v1alpha1/crds/caren.nutanix.com_nutanixnodeconfigs.yaml index 25ed585bf..5ddaa5f52 100644 --- a/api/v1alpha1/crds/caren.nutanix.com_nutanixnodeconfigs.yaml +++ b/api/v1alpha1/crds/caren.nutanix.com_nutanixnodeconfigs.yaml @@ -5,7 +5,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: (devel) + controller-gen.kubebuilder.io/version: v0.16.4 name: nutanixnodeconfigs.caren.nutanix.com spec: group: caren.nutanix.com diff --git a/common/go.mod b/common/go.mod index ea4f5cf31..ecb7beff5 100644 --- a/common/go.mod +++ b/common/go.mod @@ -5,7 +5,7 @@ module github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/co go 1.22.0 -toolchain go1.23.1 +toolchain go1.23.2 replace github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/api => ../api diff --git a/devbox.json b/devbox.json index a17fcf95d..64241ee26 100644 --- a/devbox.json +++ b/devbox.json @@ -25,20 +25,20 @@ "ko@latest", "kubebuilder@latest", "kubectl@latest", + "kubernetes-controller-tools@latest", "kustomize@latest", "pre-commit@latest", "rsync@latest", + "setup-envtest@latest", "shfmt@latest", "yamale@latest", "yamllint@latest", "yq-go@latest", "path:./hack/flakes#clusterctl-aws", - "path:./hack/flakes#controller-gen", "path:./hack/flakes#goprintconst", "path:./hack/flakes#govulncheck", "path:./hack/flakes#helm-with-plugins", - "path:./hack/flakes#release-please", - "path:./hack/flakes#setup-envtest" + "path:./hack/flakes#release-please" ], "shell": { "scripts": { diff --git a/devbox.lock b/devbox.lock index 8045c2628..51a79952c 100644 --- a/devbox.lock +++ b/devbox.lock @@ -2,56 +2,56 @@ "lockfile_version": "1", "packages": { "actionlint@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#actionlint", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#actionlint", "source": "devbox-search", - "version": "1.7.1", + "version": "1.7.3", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/lhv2a93jjckg1h3ix8x7vryvhvw878v6-actionlint-1.7.1", + "path": "/nix/store/rw7v977ipky8r3ydhl2g0rp6hd5qbs9k-actionlint-1.7.3", "default": true } ], - "store_path": "/nix/store/lhv2a93jjckg1h3ix8x7vryvhvw878v6-actionlint-1.7.1" + "store_path": "/nix/store/rw7v977ipky8r3ydhl2g0rp6hd5qbs9k-actionlint-1.7.3" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/4w9w3lb0q5k8az0l2z3897imiflmbdmg-actionlint-1.7.1", + "path": "/nix/store/panhq42cnq6240mkllnrqshcwa0ii3rl-actionlint-1.7.3", "default": true } ], - "store_path": "/nix/store/4w9w3lb0q5k8az0l2z3897imiflmbdmg-actionlint-1.7.1" + "store_path": "/nix/store/panhq42cnq6240mkllnrqshcwa0ii3rl-actionlint-1.7.3" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/pn5lm8v33as5nz64c5ywiapj7a23058r-actionlint-1.7.1", + "path": "/nix/store/rjq12m13p89ljnkb7zmi6p57cz5davdx-actionlint-1.7.3", "default": true } ], - "store_path": "/nix/store/pn5lm8v33as5nz64c5ywiapj7a23058r-actionlint-1.7.1" + "store_path": "/nix/store/rjq12m13p89ljnkb7zmi6p57cz5davdx-actionlint-1.7.3" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/syvxybli9kzpbsg6i7ak86hq7klg1ak5-actionlint-1.7.1", + "path": "/nix/store/3fxnhvjl93djzmwa8d36gqd9v2s45s29-actionlint-1.7.3", "default": true } ], - "store_path": "/nix/store/syvxybli9kzpbsg6i7ak86hq7klg1ak5-actionlint-1.7.1" + "store_path": "/nix/store/3fxnhvjl93djzmwa8d36gqd9v2s45s29-actionlint-1.7.3" } } }, "chart-testing@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#chart-testing", + "last_modified": "2024-10-26T22:05:23Z", + "resolved": "github:NixOS/nixpkgs/86e78d3d2084ff87688da662cf78c2af085d8e73#chart-testing", "source": "devbox-search", "version": "3.11.0", "systems": { @@ -59,95 +59,95 @@ "outputs": [ { "name": "out", - "path": "/nix/store/ja4s81lncjsqml114zbn5ba72642pgxl-chart-testing-3.11.0", + "path": "/nix/store/wm3k7qxsr59zadpcvgzm93144c69m8qb-chart-testing-3.11.0", "default": true } ], - "store_path": "/nix/store/ja4s81lncjsqml114zbn5ba72642pgxl-chart-testing-3.11.0" + "store_path": "/nix/store/wm3k7qxsr59zadpcvgzm93144c69m8qb-chart-testing-3.11.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/pw2lpq9af1by47lixqbsdg6r91fg16ga-chart-testing-3.11.0", + "path": "/nix/store/wmygsjnc8v0v4bs54k0nwwr0idy5z0ah-chart-testing-3.11.0", "default": true } ], - "store_path": "/nix/store/pw2lpq9af1by47lixqbsdg6r91fg16ga-chart-testing-3.11.0" + "store_path": "/nix/store/wmygsjnc8v0v4bs54k0nwwr0idy5z0ah-chart-testing-3.11.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/x5knnl5hvm5dsv7spm09q2nq95mfrlgq-chart-testing-3.11.0", + "path": "/nix/store/16w19l8i6kdvkqk7s5lybch26fvjmc5y-chart-testing-3.11.0", "default": true } ], - "store_path": "/nix/store/x5knnl5hvm5dsv7spm09q2nq95mfrlgq-chart-testing-3.11.0" + "store_path": "/nix/store/16w19l8i6kdvkqk7s5lybch26fvjmc5y-chart-testing-3.11.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/f3s4hfqny8ng4xnp6qx6b2d07mm0lb2d-chart-testing-3.11.0", + "path": "/nix/store/r2zhvd810vvdsjxl3h7rhmcdri8wifhn-chart-testing-3.11.0", "default": true } ], - "store_path": "/nix/store/f3s4hfqny8ng4xnp6qx6b2d07mm0lb2d-chart-testing-3.11.0" + "store_path": "/nix/store/r2zhvd810vvdsjxl3h7rhmcdri8wifhn-chart-testing-3.11.0" } } }, "clusterctl@latest": { - "last_modified": "2024-09-18T09:48:47Z", - "resolved": "github:NixOS/nixpkgs/294eb5975def0caa718fca92dc5a9d656ae392a9#clusterctl", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#clusterctl", "source": "devbox-search", - "version": "1.8.3", + "version": "1.8.4", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/pjs8kpi24h47r6g3zcbi1xz3q65lg16w-clusterctl-1.8.3", + "path": "/nix/store/3cnz2kvzszi2y5gk9z8qazmw8710dgfw-clusterctl-1.8.4", "default": true } ], - "store_path": "/nix/store/pjs8kpi24h47r6g3zcbi1xz3q65lg16w-clusterctl-1.8.3" + "store_path": "/nix/store/3cnz2kvzszi2y5gk9z8qazmw8710dgfw-clusterctl-1.8.4" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/48chmjxqsgvmdlrrqc7yhwjspczn3ki5-clusterctl-1.8.3", + "path": "/nix/store/gffx8akpcbpmlhfb94lygdyx0kiiqkw0-clusterctl-1.8.4", "default": true } ], - "store_path": "/nix/store/48chmjxqsgvmdlrrqc7yhwjspczn3ki5-clusterctl-1.8.3" + "store_path": "/nix/store/gffx8akpcbpmlhfb94lygdyx0kiiqkw0-clusterctl-1.8.4" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/aw42fmqy01zyclfjxaq9z8zxczhjb81y-clusterctl-1.8.3", + "path": "/nix/store/5bja29j5zbfyr2rsi5sh7rb3zfsvj10k-clusterctl-1.8.4", "default": true } ], - "store_path": "/nix/store/aw42fmqy01zyclfjxaq9z8zxczhjb81y-clusterctl-1.8.3" + "store_path": "/nix/store/5bja29j5zbfyr2rsi5sh7rb3zfsvj10k-clusterctl-1.8.4" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/40lnzl14f07haacy5b8yws43r9sa3cm8-clusterctl-1.8.3", + "path": "/nix/store/kbdx9rczj5ir9h16g8c7skq18951aajf-clusterctl-1.8.4", "default": true } ], - "store_path": "/nix/store/40lnzl14f07haacy5b8yws43r9sa3cm8-clusterctl-1.8.3" + "store_path": "/nix/store/kbdx9rczj5ir9h16g8c7skq18951aajf-clusterctl-1.8.4" } } }, "coreutils@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#coreutils", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#coreutils", "source": "devbox-search", "version": "9.5", "systems": { @@ -155,71 +155,71 @@ "outputs": [ { "name": "out", - "path": "/nix/store/1l41471x6rlf7l544s1bxkqqgpprd28m-coreutils-9.5", + "path": "/nix/store/b7j95xd7yccclshfln10k843q2qf20yg-coreutils-9.5", "default": true }, { "name": "info", - "path": "/nix/store/ps81dqzr6fxafmxih1834v545dh4apjm-coreutils-9.5-info" + "path": "/nix/store/8rnzj25fishm1d6z4y8b5lb86s45bkm1-coreutils-9.5-info" } ], - "store_path": "/nix/store/1l41471x6rlf7l544s1bxkqqgpprd28m-coreutils-9.5" + "store_path": "/nix/store/b7j95xd7yccclshfln10k843q2qf20yg-coreutils-9.5" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/ssqdazslv2wjpybnk0pjwnpq0dfpa6q2-coreutils-9.5", + "path": "/nix/store/cqnb5spmpzvc32h16568s028frzvz8hs-coreutils-9.5", "default": true }, { "name": "debug", - "path": "/nix/store/g66h1ajc1wx18milg2290yylbivq2jhd-coreutils-9.5-debug" + "path": "/nix/store/05xfc02h42y6xs1giwgnvmkwp8x136hl-coreutils-9.5-debug" }, { "name": "info", - "path": "/nix/store/y311wv5dlqakkq6hr3yl6zmiiprxb3v5-coreutils-9.5-info" + "path": "/nix/store/gv411q70m9qx6754zvzpaw7vfnk37wrn-coreutils-9.5-info" } ], - "store_path": "/nix/store/ssqdazslv2wjpybnk0pjwnpq0dfpa6q2-coreutils-9.5" + "store_path": "/nix/store/cqnb5spmpzvc32h16568s028frzvz8hs-coreutils-9.5" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/mw0amk6q5v2401y3s8zg7hxa2v0ia6vw-coreutils-9.5", + "path": "/nix/store/k8pmb9qpypmip7ph667abbs6rllfd1f1-coreutils-9.5", "default": true }, { "name": "info", - "path": "/nix/store/jgslj3bb2rs55xaaxarqwsg7bppfxg8p-coreutils-9.5-info" + "path": "/nix/store/x900szhk9vk50swrlj41wbpm1bzmpbj5-coreutils-9.5-info" } ], - "store_path": "/nix/store/mw0amk6q5v2401y3s8zg7hxa2v0ia6vw-coreutils-9.5" + "store_path": "/nix/store/k8pmb9qpypmip7ph667abbs6rllfd1f1-coreutils-9.5" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/0kg70swgpg45ipcz3pr2siidq9fn6d77-coreutils-9.5", + "path": "/nix/store/ph44jcx3ddmlwh394mh1wb7f1qigxqb1-coreutils-9.5", "default": true }, { "name": "debug", - "path": "/nix/store/73i7cdbz2w862wx1gfxxvyrw95rmmwl3-coreutils-9.5-debug" + "path": "/nix/store/faxmahlbgdg3mz3mbgnmnn6sf5hsvcb8-coreutils-9.5-debug" }, { "name": "info", - "path": "/nix/store/p1mj9zdizsa605xsy3jjx4db4ya1wnix-coreutils-9.5-info" + "path": "/nix/store/kb44yznfd4w4asrr6rsc3x4zm99nz426-coreutils-9.5-info" } ], - "store_path": "/nix/store/0kg70swgpg45ipcz3pr2siidq9fn6d77-coreutils-9.5" + "store_path": "/nix/store/ph44jcx3ddmlwh394mh1wb7f1qigxqb1-coreutils-9.5" } } }, "crane@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#crane", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#crane", "source": "devbox-search", "version": "0.20.2", "systems": { @@ -227,83 +227,83 @@ "outputs": [ { "name": "crane", - "path": "/nix/store/lqsgfk3b7y4rd8yr9q039a0xa8wmvbk0-go-containerregistry-0.20.2-crane", + "path": "/nix/store/qycjbncha71hfzasv582dlwjcwnzsgqj-go-containerregistry-0.20.2-crane", "default": true }, { "name": "out", - "path": "/nix/store/410jj0dcyrpz4wb1ss8hykfa0yizs7iw-go-containerregistry-0.20.2", + "path": "/nix/store/1a2bys3yy3z3yjr73i8jm4azi6xk9jwk-go-containerregistry-0.20.2", "default": true }, { "name": "gcrane", - "path": "/nix/store/ampln4ywb66l2lhp53sqwv8lhmasxbkp-go-containerregistry-0.20.2-gcrane" + "path": "/nix/store/fkigdd53wzw0a32746cks7bkcc2cisn0-go-containerregistry-0.20.2-gcrane" } ], - "store_path": "/nix/store/lqsgfk3b7y4rd8yr9q039a0xa8wmvbk0-go-containerregistry-0.20.2-crane" + "store_path": "/nix/store/qycjbncha71hfzasv582dlwjcwnzsgqj-go-containerregistry-0.20.2-crane" }, "aarch64-linux": { "outputs": [ { "name": "crane", - "path": "/nix/store/gmy0yjnm63pgrp1xrxhn7dhhpxi2jy97-go-containerregistry-0.20.2-crane", + "path": "/nix/store/vy3z068kzhgb2kyxnj395jswap179zpr-go-containerregistry-0.20.2-crane", "default": true }, { "name": "out", - "path": "/nix/store/w4brrjw9akjmvyj5wwkj4qyszc4ssdyz-go-containerregistry-0.20.2", + "path": "/nix/store/99hrcq06y6jnl1bnnkn020n7za2k4skp-go-containerregistry-0.20.2", "default": true }, { "name": "gcrane", - "path": "/nix/store/zr8bjdqybkb2i2cf7a331nzcjscmd7y4-go-containerregistry-0.20.2-gcrane" + "path": "/nix/store/dld7qgb4m2spag1hilrikpc5jljy55zq-go-containerregistry-0.20.2-gcrane" } ], - "store_path": "/nix/store/gmy0yjnm63pgrp1xrxhn7dhhpxi2jy97-go-containerregistry-0.20.2-crane" + "store_path": "/nix/store/vy3z068kzhgb2kyxnj395jswap179zpr-go-containerregistry-0.20.2-crane" }, "x86_64-darwin": { "outputs": [ { "name": "crane", - "path": "/nix/store/kv82vvbd9ga74b8ji28kwrqgx3a9lalw-go-containerregistry-0.20.2-crane", + "path": "/nix/store/7c8la4l420ly0q68ykpkhp80wydbmr6n-go-containerregistry-0.20.2-crane", "default": true }, { "name": "out", - "path": "/nix/store/dgv3pfawxiwsy6sfx8q09mzwnzlr2ws6-go-containerregistry-0.20.2", + "path": "/nix/store/wqvzx8jajmwly1gff3vd9xbz722np11f-go-containerregistry-0.20.2", "default": true }, { "name": "gcrane", - "path": "/nix/store/bscmq7fd5adfl3rj690c5dbm36n78rar-go-containerregistry-0.20.2-gcrane" + "path": "/nix/store/w54705mh6gnb1bhzm48pwf23c9125zdn-go-containerregistry-0.20.2-gcrane" } ], - "store_path": "/nix/store/kv82vvbd9ga74b8ji28kwrqgx3a9lalw-go-containerregistry-0.20.2-crane" + "store_path": "/nix/store/7c8la4l420ly0q68ykpkhp80wydbmr6n-go-containerregistry-0.20.2-crane" }, "x86_64-linux": { "outputs": [ { "name": "crane", - "path": "/nix/store/4i04gvm5iz6fnkyz9f03m67fpy0jvfw1-go-containerregistry-0.20.2-crane", + "path": "/nix/store/x68g62jxnm6myka2zjyrhgg72gfc6ffg-go-containerregistry-0.20.2-crane", "default": true }, { "name": "out", - "path": "/nix/store/gpc8ji9wglng0wzyh3xa5hqf8y5qc75d-go-containerregistry-0.20.2", + "path": "/nix/store/b2dmz5dzbyb4f9xyavxf3wg1sgf40yn8-go-containerregistry-0.20.2", "default": true }, { "name": "gcrane", - "path": "/nix/store/wj5jhm9a2jvbihrlvd6sfw10fvp1m7wp-go-containerregistry-0.20.2-gcrane" + "path": "/nix/store/qbs0dc31mwal35qn6ajqa98v6pvm3znz-go-containerregistry-0.20.2-gcrane" } ], - "store_path": "/nix/store/4i04gvm5iz6fnkyz9f03m67fpy0jvfw1-go-containerregistry-0.20.2-crane" + "store_path": "/nix/store/x68g62jxnm6myka2zjyrhgg72gfc6ffg-go-containerregistry-0.20.2-crane" } } }, "envsubst@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#envsubst", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#envsubst", "source": "devbox-search", "version": "1.4.2", "systems": { @@ -311,47 +311,47 @@ "outputs": [ { "name": "out", - "path": "/nix/store/wwpqj6p5kkz7a8ivxpb4qgkq32vjbbi8-envsubst-1.4.2", + "path": "/nix/store/1w2h0lp3fvb6rmprndzqs49izld7wjiw-envsubst-1.4.2", "default": true } ], - "store_path": "/nix/store/wwpqj6p5kkz7a8ivxpb4qgkq32vjbbi8-envsubst-1.4.2" + "store_path": "/nix/store/1w2h0lp3fvb6rmprndzqs49izld7wjiw-envsubst-1.4.2" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/8h69368kx3jmlza31r8pcnxc58cqklcp-envsubst-1.4.2", + "path": "/nix/store/j8dp3dd8r7azd1m53f8yyp8687ybkvan-envsubst-1.4.2", "default": true } ], - "store_path": "/nix/store/8h69368kx3jmlza31r8pcnxc58cqklcp-envsubst-1.4.2" + "store_path": "/nix/store/j8dp3dd8r7azd1m53f8yyp8687ybkvan-envsubst-1.4.2" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/pll5kcsj1c87f2fgjvh73jn3jv4sqk8v-envsubst-1.4.2", + "path": "/nix/store/12gdjm5xxflv5jh64v8snha2hcyrzqvx-envsubst-1.4.2", "default": true } ], - "store_path": "/nix/store/pll5kcsj1c87f2fgjvh73jn3jv4sqk8v-envsubst-1.4.2" + "store_path": "/nix/store/12gdjm5xxflv5jh64v8snha2hcyrzqvx-envsubst-1.4.2" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/0vnhf886n6pj0r6x7y8c1flzch1gs20f-envsubst-1.4.2", + "path": "/nix/store/yhvsahz2wn7mglzmvwvqb6c58x38a5ip-envsubst-1.4.2", "default": true } ], - "store_path": "/nix/store/0vnhf886n6pj0r6x7y8c1flzch1gs20f-envsubst-1.4.2" + "store_path": "/nix/store/yhvsahz2wn7mglzmvwvqb6c58x38a5ip-envsubst-1.4.2" } } }, "findutils@latest": { - "last_modified": "2024-09-15T10:42:20Z", - "resolved": "github:NixOS/nixpkgs/76d7694a3f681b0b750c01783df5d2177ef39fe7#findutils", + "last_modified": "2024-10-29T02:50:45Z", + "resolved": "github:NixOS/nixpkgs/30c9efeef01e2ad4880bff6a01a61dd99536b3c9#findutils", "source": "devbox-search", "version": "4.10.0", "systems": { @@ -359,127 +359,127 @@ "outputs": [ { "name": "out", - "path": "/nix/store/6iir6ljd4yan81glr5wh3zc9x5l0fwdj-findutils-4.10.0", + "path": "/nix/store/q8pjl22r3x66x6dlk8w36a7axjlyl3rn-findutils-4.10.0", "default": true }, { "name": "info", - "path": "/nix/store/y3fq17g1miqps7rnz2kh6rsh2h9zr4ki-findutils-4.10.0-info" + "path": "/nix/store/mwspzwy16apzz8qibmxahmfch3ac8hdj-findutils-4.10.0-info" }, { "name": "locate", - "path": "/nix/store/dw321hzc8m73pk2dj820ib1wimrx4hg3-findutils-4.10.0-locate" + "path": "/nix/store/nia06z502n9hgdph8w7qivc4c8m4c20l-findutils-4.10.0-locate" } ], - "store_path": "/nix/store/6iir6ljd4yan81glr5wh3zc9x5l0fwdj-findutils-4.10.0" + "store_path": "/nix/store/q8pjl22r3x66x6dlk8w36a7axjlyl3rn-findutils-4.10.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/ybyw35n7g5zh89xhav28jgz6hwr2rdg4-findutils-4.10.0", + "path": "/nix/store/mx757zkaiyr6d4qcl902i6qd6wgmksk2-findutils-4.10.0", "default": true }, { - "name": "info", - "path": "/nix/store/ifzrz4a9ig982r4jnjy6ndxjw5k1jyin-findutils-4.10.0-info" + "name": "locate", + "path": "/nix/store/hx0sl3dk0rqkvnzi5sg79hmfa0j5k5rz-findutils-4.10.0-locate" }, { - "name": "locate", - "path": "/nix/store/pkadxjpxqgfd4i7ywkbblkvlzclbx0a1-findutils-4.10.0-locate" + "name": "info", + "path": "/nix/store/rhg50chrc924jw971idff6pjzipz8jjc-findutils-4.10.0-info" } ], - "store_path": "/nix/store/ybyw35n7g5zh89xhav28jgz6hwr2rdg4-findutils-4.10.0" + "store_path": "/nix/store/mx757zkaiyr6d4qcl902i6qd6wgmksk2-findutils-4.10.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/3r9blyhlzfdi6r7jgik5qd0ffyc77y8l-findutils-4.10.0", + "path": "/nix/store/zkvwgk334yhdvw4rhmh9k07h4g7vavi6-findutils-4.10.0", "default": true }, { "name": "info", - "path": "/nix/store/4kmhzqgaz0r7yfszwl49msdzjgvixczh-findutils-4.10.0-info" + "path": "/nix/store/lkvydzxj3rx7m7gz5qpf11r15nn07i6v-findutils-4.10.0-info" }, { "name": "locate", - "path": "/nix/store/qf7pfq17dcsfmksqf9hj8inwvvqr3nvm-findutils-4.10.0-locate" + "path": "/nix/store/442y6saxh22rfnibvffv8vhmq0l66z9x-findutils-4.10.0-locate" } ], - "store_path": "/nix/store/3r9blyhlzfdi6r7jgik5qd0ffyc77y8l-findutils-4.10.0" + "store_path": "/nix/store/zkvwgk334yhdvw4rhmh9k07h4g7vavi6-findutils-4.10.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/fnq94lw19pnwdl9p8zhfrad4jmlgxlbr-findutils-4.10.0", + "path": "/nix/store/yb8icljkwhk5lla4nci3myndq2m4ywly-findutils-4.10.0", "default": true }, { "name": "info", - "path": "/nix/store/mybrl421fknl4mym10j83haj81025jg1-findutils-4.10.0-info" + "path": "/nix/store/gf6zm4xr553rikwsl3p3vbmw08b8n8zs-findutils-4.10.0-info" }, { "name": "locate", - "path": "/nix/store/crhjxb5g4qkniyn6m4g5qr7b418sf1rm-findutils-4.10.0-locate" + "path": "/nix/store/bbbvb23jgs2pm53awi776pn8ql3v9wwm-findutils-4.10.0-locate" } ], - "store_path": "/nix/store/fnq94lw19pnwdl9p8zhfrad4jmlgxlbr-findutils-4.10.0" + "store_path": "/nix/store/yb8icljkwhk5lla4nci3myndq2m4ywly-findutils-4.10.0" } } }, "gh@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#gh", + "last_modified": "2024-10-26T14:05:56Z", + "resolved": "github:NixOS/nixpkgs/4e0eec54db79d4d0909f45a88037210ff8eaffee#gh", "source": "devbox-search", - "version": "2.56.0", + "version": "2.60.0", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/ll7vikgbj7c45nb4p670sik2zcbmj06l-gh-2.56.0", + "path": "/nix/store/vsq3imi17dnhbhlzi55z5s88js07snma-gh-2.60.0", "default": true } ], - "store_path": "/nix/store/ll7vikgbj7c45nb4p670sik2zcbmj06l-gh-2.56.0" + "store_path": "/nix/store/vsq3imi17dnhbhlzi55z5s88js07snma-gh-2.60.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/l73yj1r97zz02af5k002gwrkqf84n3jb-gh-2.56.0", + "path": "/nix/store/gpvr4g9qan7bqfpph0sw5xjc9irz72lq-gh-2.60.0", "default": true } ], - "store_path": "/nix/store/l73yj1r97zz02af5k002gwrkqf84n3jb-gh-2.56.0" + "store_path": "/nix/store/gpvr4g9qan7bqfpph0sw5xjc9irz72lq-gh-2.60.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/k3qn4z6kgyy0n84ja3xkxy4sss83ns3v-gh-2.56.0", + "path": "/nix/store/7kjlw30k4qkfdnn7619f03jgqasfw2r1-gh-2.60.0", "default": true } ], - "store_path": "/nix/store/k3qn4z6kgyy0n84ja3xkxy4sss83ns3v-gh-2.56.0" + "store_path": "/nix/store/7kjlw30k4qkfdnn7619f03jgqasfw2r1-gh-2.60.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/kfivygps4wslcxrbq7v1jh7mm8478i89-gh-2.56.0", + "path": "/nix/store/snq6mmhzzqf7qgmwry82933nmpwbnk7j-gh-2.60.0", "default": true } ], - "store_path": "/nix/store/kfivygps4wslcxrbq7v1jh7mm8478i89-gh-2.56.0" + "store_path": "/nix/store/snq6mmhzzqf7qgmwry82933nmpwbnk7j-gh-2.60.0" } } }, "ginkgo@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#ginkgo", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#ginkgo", "source": "devbox-search", "version": "2.20.2", "systems": { @@ -487,119 +487,119 @@ "outputs": [ { "name": "out", - "path": "/nix/store/nid0ha9rpkvbcp77q6vr5zy351n8yn9m-ginkgo-2.20.2", + "path": "/nix/store/sdp5jk0cag02zir9g46mixfglkkb4pin-ginkgo-2.20.2", "default": true } ], - "store_path": "/nix/store/nid0ha9rpkvbcp77q6vr5zy351n8yn9m-ginkgo-2.20.2" + "store_path": "/nix/store/sdp5jk0cag02zir9g46mixfglkkb4pin-ginkgo-2.20.2" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/ak1481f4za57iaxr4kljslwyxnskfc93-ginkgo-2.20.2", + "path": "/nix/store/a12y3dv4xb4h22y6jz2vxnkjmgw7kyy3-ginkgo-2.20.2", "default": true } ], - "store_path": "/nix/store/ak1481f4za57iaxr4kljslwyxnskfc93-ginkgo-2.20.2" + "store_path": "/nix/store/a12y3dv4xb4h22y6jz2vxnkjmgw7kyy3-ginkgo-2.20.2" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/1k9ykqp9a0q6jrbg4zm5jygasl5jcdcy-ginkgo-2.20.2", + "path": "/nix/store/7lfxp4m6y9wdpjzdnbl57nqzdj128l0p-ginkgo-2.20.2", "default": true } ], - "store_path": "/nix/store/1k9ykqp9a0q6jrbg4zm5jygasl5jcdcy-ginkgo-2.20.2" + "store_path": "/nix/store/7lfxp4m6y9wdpjzdnbl57nqzdj128l0p-ginkgo-2.20.2" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/2waqj0vva63gjq24agj96qbf5gb3kicp-ginkgo-2.20.2", + "path": "/nix/store/5635w7bfw46kwr7w4vfq3i9nnckiphk3-ginkgo-2.20.2", "default": true } ], - "store_path": "/nix/store/2waqj0vva63gjq24agj96qbf5gb3kicp-ginkgo-2.20.2" + "store_path": "/nix/store/5635w7bfw46kwr7w4vfq3i9nnckiphk3-ginkgo-2.20.2" } } }, "git@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#git", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#git", "source": "devbox-search", - "version": "2.46.0", + "version": "2.46.1", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/msgwpjsr2607nmlm4f0klc60m7vyp2ls-git-2.46.0", + "path": "/nix/store/fzsjyd9wxiymv5j38f1igk99660hi4vl-git-2.46.1", "default": true }, { "name": "doc", - "path": "/nix/store/ycx57sa7dfrs9z1gq0sk1ai29ib9hvhl-git-2.46.0-doc" + "path": "/nix/store/9i3j85b675c29xwmyg7bvaxs2jbqn4gx-git-2.46.1-doc" } ], - "store_path": "/nix/store/msgwpjsr2607nmlm4f0klc60m7vyp2ls-git-2.46.0" + "store_path": "/nix/store/fzsjyd9wxiymv5j38f1igk99660hi4vl-git-2.46.1" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/lgr3n0573wi478bj456zggh541wjrbiw-git-2.46.0", + "path": "/nix/store/qmdn10127g14bb1v5h5qpckcm6n9m8ms-git-2.46.1", "default": true }, { "name": "debug", - "path": "/nix/store/v6r2pdpiwn62yhjp489gjkqhz6yn8zl5-git-2.46.0-debug" + "path": "/nix/store/qgm6gdx0ic216alm4kl7lyyd5k74gn1p-git-2.46.1-debug" }, { "name": "doc", - "path": "/nix/store/5aiq8j373y5k9dh1p98zlic3n5f5ycnq-git-2.46.0-doc" + "path": "/nix/store/ngyj5imnlagsj5avqgc3f65iz9pffqjm-git-2.46.1-doc" } ], - "store_path": "/nix/store/lgr3n0573wi478bj456zggh541wjrbiw-git-2.46.0" + "store_path": "/nix/store/qmdn10127g14bb1v5h5qpckcm6n9m8ms-git-2.46.1" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/lfb5ngmzsmnbqw41wm11i7hjnrkii7ic-git-2.46.0", + "path": "/nix/store/n4s67bnpyvxqj51fhj57gxn7f8n1v6wk-git-2.46.1", "default": true }, { "name": "doc", - "path": "/nix/store/kcgzncw4plawrs6fw524dprbscqdl78n-git-2.46.0-doc" + "path": "/nix/store/vhiqrx6ka20krpi255vk99iac98zr3sb-git-2.46.1-doc" } ], - "store_path": "/nix/store/lfb5ngmzsmnbqw41wm11i7hjnrkii7ic-git-2.46.0" + "store_path": "/nix/store/n4s67bnpyvxqj51fhj57gxn7f8n1v6wk-git-2.46.1" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/0l63mqr7qx1asjxfz86j4zbs4758gn98-git-2.46.0", + "path": "/nix/store/zmmhkn7ndfskwk2mfqn9nzmv9y699lms-git-2.46.1", "default": true }, { "name": "debug", - "path": "/nix/store/x1g0dhpqg1fi4dz20lp2i2h759bdkark-git-2.46.0-debug" + "path": "/nix/store/n5i11ch2x778v95wnbg56mlc9rc8xsjn-git-2.46.1-debug" }, { "name": "doc", - "path": "/nix/store/5r0irlcap11p8wqbdiy9fz1y3pk1mn4n-git-2.46.0-doc" + "path": "/nix/store/9xdnzfl42isjgsn1mnxyjdmspakf8ayi-git-2.46.1-doc" } ], - "store_path": "/nix/store/0l63mqr7qx1asjxfz86j4zbs4758gn98-git-2.46.0" + "store_path": "/nix/store/zmmhkn7ndfskwk2mfqn9nzmv9y699lms-git-2.46.1" } } }, "gnumake@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#gnumake", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#gnumake", "source": "devbox-search", "version": "4.4.1", "systems": { @@ -607,91 +607,91 @@ "outputs": [ { "name": "out", - "path": "/nix/store/6mcdimq65bpmk4ccsbwk8zqqv0w57xki-gnumake-4.4.1", + "path": "/nix/store/xqd18p6bfh63xgy6r27ryj43m05sygfd-gnumake-4.4.1", "default": true }, { "name": "man", - "path": "/nix/store/slxjfzk0mi14ffhiry1kx635yi3hrdsg-gnumake-4.4.1-man", + "path": "/nix/store/rh9jd0cb2nffh6f98pi1cdi2iixca7i7-gnumake-4.4.1-man", "default": true }, { "name": "info", - "path": "/nix/store/j755wklynl70bsffsmc72rqm0fg4y4dh-gnumake-4.4.1-info" + "path": "/nix/store/zh15911aagmnppcm5f1pv3jaqp1lcn88-gnumake-4.4.1-info" } ], - "store_path": "/nix/store/6mcdimq65bpmk4ccsbwk8zqqv0w57xki-gnumake-4.4.1" + "store_path": "/nix/store/xqd18p6bfh63xgy6r27ryj43m05sygfd-gnumake-4.4.1" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/b9hsc0cxnjpgr0ni8zjfa8yfx9k9icyf-gnumake-4.4.1", + "path": "/nix/store/7vavvidkcwpkcv7vl2k695w1sj3d0v6d-gnumake-4.4.1", "default": true }, { "name": "man", - "path": "/nix/store/yy4yzw27p2iw8vqhhqjw5dg2whl95dx0-gnumake-4.4.1-man", + "path": "/nix/store/xg73m3ymam05ing6fiz336lv88x5iilb-gnumake-4.4.1-man", "default": true }, { - "name": "info", - "path": "/nix/store/qzd3k2d7f2gwz8cmvz3ddmxsvh6ax65b-gnumake-4.4.1-info" + "name": "debug", + "path": "/nix/store/kpa131lv51q4sy4156szlbnjkjbbl6wa-gnumake-4.4.1-debug" }, { - "name": "debug", - "path": "/nix/store/srjsvl0v6q5rr29ihsm8qad1mjdh5qv4-gnumake-4.4.1-debug" + "name": "info", + "path": "/nix/store/gsxac0p40xmzdhj64y7587p7z1r0l5my-gnumake-4.4.1-info" } ], - "store_path": "/nix/store/b9hsc0cxnjpgr0ni8zjfa8yfx9k9icyf-gnumake-4.4.1" + "store_path": "/nix/store/7vavvidkcwpkcv7vl2k695w1sj3d0v6d-gnumake-4.4.1" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/jzc62mfpsqx2k1ncmqs5awd7c1511hf3-gnumake-4.4.1", + "path": "/nix/store/1f90m5f11kfyyg198qblv1x7blycfvfd-gnumake-4.4.1", "default": true }, { "name": "man", - "path": "/nix/store/g3pmxslr6wpyw5pzarjc5rz8imh0wkx0-gnumake-4.4.1-man", + "path": "/nix/store/rd7fdldb5rax7qfz9bm2xci86qkg41n4-gnumake-4.4.1-man", "default": true }, { "name": "info", - "path": "/nix/store/5c2p60izk67sjlf86c1sp7pzpjh3qw8i-gnumake-4.4.1-info" + "path": "/nix/store/v3wv3dyvqfyjjnibpd51hll279wgq7xr-gnumake-4.4.1-info" } ], - "store_path": "/nix/store/jzc62mfpsqx2k1ncmqs5awd7c1511hf3-gnumake-4.4.1" + "store_path": "/nix/store/1f90m5f11kfyyg198qblv1x7blycfvfd-gnumake-4.4.1" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/09vbil20hj3gn9lb3djvbglyki9jr3i6-gnumake-4.4.1", + "path": "/nix/store/w44ahngg3y69rpq62f4agzl747y872as-gnumake-4.4.1", "default": true }, { "name": "man", - "path": "/nix/store/swbhqvfjkrk0xqqnbhax93psq8n1gynr-gnumake-4.4.1-man", + "path": "/nix/store/pqfxsx89dr0pywim8cc18cgm67cld692-gnumake-4.4.1-man", "default": true }, { - "name": "debug", - "path": "/nix/store/idisl8srk1khjm4jhmikqwiacy5gzb2p-gnumake-4.4.1-debug" + "name": "info", + "path": "/nix/store/00gsp1x5r22pkl8zszl7fgfknmshrqs9-gnumake-4.4.1-info" }, { - "name": "info", - "path": "/nix/store/y1fmi86h3mr58s3yxjm65c3nnf5l5p9r-gnumake-4.4.1-info" + "name": "debug", + "path": "/nix/store/651fp76vcmw4kzrmpinszwkk6jn8d4y3-gnumake-4.4.1-debug" } ], - "store_path": "/nix/store/09vbil20hj3gn9lb3djvbglyki9jr3i6-gnumake-4.4.1" + "store_path": "/nix/store/w44ahngg3y69rpq62f4agzl747y872as-gnumake-4.4.1" } } }, "gnused@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#gnused", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#gnused", "source": "devbox-search", "version": "4.9", "systems": { @@ -699,105 +699,105 @@ "outputs": [ { "name": "out", - "path": "/nix/store/671pvppgcdzgdxkbhggb5z1zs3dx096y-gnused-4.9", + "path": "/nix/store/8yjj9w5ay33pb741sr2mcfszmsvzbqaz-gnused-4.9", "default": true }, { "name": "info", - "path": "/nix/store/dhcmhyjs9zr3lcag9qafvlks4jcbpidh-gnused-4.9-info" + "path": "/nix/store/wb0n2yrk54hj125j5q9dk89wigdxjhcv-gnused-4.9-info" } ], - "store_path": "/nix/store/671pvppgcdzgdxkbhggb5z1zs3dx096y-gnused-4.9" + "store_path": "/nix/store/8yjj9w5ay33pb741sr2mcfszmsvzbqaz-gnused-4.9" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/5ri0v39300yv8b17ywn1vab716cwj2wx-gnused-4.9", + "path": "/nix/store/i3f50210jpp4wmzkpds6l7zbp81ds4xf-gnused-4.9", "default": true }, { "name": "info", - "path": "/nix/store/2vdwa2l8bpz0s053cli0jvs5bv7gvm5h-gnused-4.9-info" + "path": "/nix/store/ssxslyng9vws5xnd6g21pjyk9bihxzkr-gnused-4.9-info" } ], - "store_path": "/nix/store/5ri0v39300yv8b17ywn1vab716cwj2wx-gnused-4.9" + "store_path": "/nix/store/i3f50210jpp4wmzkpds6l7zbp81ds4xf-gnused-4.9" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/ggi9564sg3b8nigjnhsn8qg64kq4j9pq-gnused-4.9", + "path": "/nix/store/hj87q7liarm4d5cb8mw5p7f58qq69lhc-gnused-4.9", "default": true }, { "name": "info", - "path": "/nix/store/4gsvmcr6d0jmg7r6kfp7x285gbf3k949-gnused-4.9-info" + "path": "/nix/store/yw3r521w36dhvw54252n86p8yib43p1v-gnused-4.9-info" } ], - "store_path": "/nix/store/ggi9564sg3b8nigjnhsn8qg64kq4j9pq-gnused-4.9" + "store_path": "/nix/store/hj87q7liarm4d5cb8mw5p7f58qq69lhc-gnused-4.9" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/gjlh1zvckhz0qv795lnzgw2zciklbzj2-gnused-4.9", + "path": "/nix/store/yd9vbyhbxx62j0cyhd6v0iacz11nxpvc-gnused-4.9", "default": true }, { "name": "info", - "path": "/nix/store/11rx42rgzwsvi2s7kc17xkyfxxhxmgya-gnused-4.9-info" + "path": "/nix/store/0dgkyi00x4rm32cd02kdalnsvm23k27z-gnused-4.9-info" } ], - "store_path": "/nix/store/gjlh1zvckhz0qv795lnzgw2zciklbzj2-gnused-4.9" + "store_path": "/nix/store/yd9vbyhbxx62j0cyhd6v0iacz11nxpvc-gnused-4.9" } } }, "go@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#go_1_23", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#go", "source": "devbox-search", - "version": "1.23.1", + "version": "1.23.2", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/nvaay1c4banbccyvv6ba1gzyqpypjmfq-go-1.23.1", + "path": "/nix/store/35jikx2wg5r0qj47sic0p99bqnmwi6cn-go-1.23.2", "default": true } ], - "store_path": "/nix/store/nvaay1c4banbccyvv6ba1gzyqpypjmfq-go-1.23.1" + "store_path": "/nix/store/35jikx2wg5r0qj47sic0p99bqnmwi6cn-go-1.23.2" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/9ylsay11jb3p6yarkmlz0fin76cdypwa-go-1.23.1", + "path": "/nix/store/6bx6d90kpy537yab22wja70ibpp4gkww-go-1.23.2", "default": true } ], - "store_path": "/nix/store/9ylsay11jb3p6yarkmlz0fin76cdypwa-go-1.23.1" + "store_path": "/nix/store/6bx6d90kpy537yab22wja70ibpp4gkww-go-1.23.2" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/zkg5xhyx2rs03dq0qp14nqlx9ff1y5c5-go-1.23.1", + "path": "/nix/store/yi89mimkmw48qhzrll1aaibxbvllpsjv-go-1.23.2", "default": true } ], - "store_path": "/nix/store/zkg5xhyx2rs03dq0qp14nqlx9ff1y5c5-go-1.23.1" + "store_path": "/nix/store/yi89mimkmw48qhzrll1aaibxbvllpsjv-go-1.23.2" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/mi0ybwsm6pmxzv9hsm6bcbqaq1pkf8wh-go-1.23.1", + "path": "/nix/store/klw1ipjsqx1np7pkk833x7sad7f3ivv9-go-1.23.2", "default": true } ], - "store_path": "/nix/store/mi0ybwsm6pmxzv9hsm6bcbqaq1pkf8wh-go-1.23.1" + "store_path": "/nix/store/klw1ipjsqx1np7pkk833x7sad7f3ivv9-go-1.23.2" } } }, @@ -821,37 +821,37 @@ "outputs": [ { "name": "out", - "path": "/nix/store/w3817xwn2f8ficw18sbs368hvw0rhc7p-gojq-0.12.16", + "path": "/nix/store/yi1xq6p5w9d3979vh3m58yl99f7h2bk5-gojq-0.12.16", "default": true } ], - "store_path": "/nix/store/w3817xwn2f8ficw18sbs368hvw0rhc7p-gojq-0.12.16" + "store_path": "/nix/store/yi1xq6p5w9d3979vh3m58yl99f7h2bk5-gojq-0.12.16" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/lrx5q470iamwawj70z8byw7da568g9ff-gojq-0.12.16", + "path": "/nix/store/0gpg4h4h1gb7da79vpr2aya5w82iqng2-gojq-0.12.16", "default": true } ], - "store_path": "/nix/store/lrx5q470iamwawj70z8byw7da568g9ff-gojq-0.12.16" + "store_path": "/nix/store/0gpg4h4h1gb7da79vpr2aya5w82iqng2-gojq-0.12.16" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/5mc6v4wc945xh8sg3pyzjzgn2wiqf7vh-gojq-0.12.16", + "path": "/nix/store/grr1h1hbj3qj722i4i3a93zk4qi9422r-gojq-0.12.16", "default": true } ], - "store_path": "/nix/store/5mc6v4wc945xh8sg3pyzjzgn2wiqf7vh-gojq-0.12.16" + "store_path": "/nix/store/grr1h1hbj3qj722i4i3a93zk4qi9422r-gojq-0.12.16" } } }, "golangci-lint@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#golangci-lint", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#golangci-lint", "source": "devbox-search", "version": "1.61.0", "systems": { @@ -859,47 +859,47 @@ "outputs": [ { "name": "out", - "path": "/nix/store/mycyzj74j3hb0z3cn93zl27vn636nzvp-golangci-lint-1.61.0", + "path": "/nix/store/8fx25j98hqdblwzf7wbx8dijjc4smjrs-golangci-lint-1.61.0", "default": true } ], - "store_path": "/nix/store/mycyzj74j3hb0z3cn93zl27vn636nzvp-golangci-lint-1.61.0" + "store_path": "/nix/store/8fx25j98hqdblwzf7wbx8dijjc4smjrs-golangci-lint-1.61.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/615pmvpwdk4a8zvysig394qyxryycvv5-golangci-lint-1.61.0", + "path": "/nix/store/pqv50bg81jx4h5qavk48pgw4kvvyjnmk-golangci-lint-1.61.0", "default": true } ], - "store_path": "/nix/store/615pmvpwdk4a8zvysig394qyxryycvv5-golangci-lint-1.61.0" + "store_path": "/nix/store/pqv50bg81jx4h5qavk48pgw4kvvyjnmk-golangci-lint-1.61.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/1ka14pll6a8kmvp4m3j493kaks8kf7hk-golangci-lint-1.61.0", + "path": "/nix/store/7p5pn20a06xgm1816xdz6ik6bjr5klip-golangci-lint-1.61.0", "default": true } ], - "store_path": "/nix/store/1ka14pll6a8kmvp4m3j493kaks8kf7hk-golangci-lint-1.61.0" + "store_path": "/nix/store/7p5pn20a06xgm1816xdz6ik6bjr5klip-golangci-lint-1.61.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/l9q9gr0500smf0wiqyv3q804ld8xdj21-golangci-lint-1.61.0", + "path": "/nix/store/62cj9b5izk9z682r7vcjwx3gqdgrdqfm-golangci-lint-1.61.0", "default": true } ], - "store_path": "/nix/store/l9q9gr0500smf0wiqyv3q804ld8xdj21-golangci-lint-1.61.0" + "store_path": "/nix/store/62cj9b5izk9z682r7vcjwx3gqdgrdqfm-golangci-lint-1.61.0" } } }, "golines@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#golines", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#golines", "source": "devbox-search", "version": "0.12.2", "systems": { @@ -907,47 +907,47 @@ "outputs": [ { "name": "out", - "path": "/nix/store/08p0z14flgpkx0dbqirc7hw20fcksr4c-golines-0.12.2", + "path": "/nix/store/i1jczl1m2wxsxf2k4rbg2z60j2qbx9s1-golines-0.12.2", "default": true } ], - "store_path": "/nix/store/08p0z14flgpkx0dbqirc7hw20fcksr4c-golines-0.12.2" + "store_path": "/nix/store/i1jczl1m2wxsxf2k4rbg2z60j2qbx9s1-golines-0.12.2" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/7jwpafpz5bp7rgg8bhli10bzh8a61vz5-golines-0.12.2", + "path": "/nix/store/lhmyn09i3sa0s1n20a712175khw1jawz-golines-0.12.2", "default": true } ], - "store_path": "/nix/store/7jwpafpz5bp7rgg8bhli10bzh8a61vz5-golines-0.12.2" + "store_path": "/nix/store/lhmyn09i3sa0s1n20a712175khw1jawz-golines-0.12.2" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/679vrl9dh5cr6d19734a4i9x1qw22k43-golines-0.12.2", + "path": "/nix/store/6a8224hchxmjp6kz3v41abxkkgnnq625-golines-0.12.2", "default": true } ], - "store_path": "/nix/store/679vrl9dh5cr6d19734a4i9x1qw22k43-golines-0.12.2" + "store_path": "/nix/store/6a8224hchxmjp6kz3v41abxkkgnnq625-golines-0.12.2" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/k7k5b3s2i9xlmnzp6hp9hq2i3762lnz7-golines-0.12.2", + "path": "/nix/store/cq83bls3cfcifg5l3bjvzl1c8psc8a8z-golines-0.12.2", "default": true } ], - "store_path": "/nix/store/k7k5b3s2i9xlmnzp6hp9hq2i3762lnz7-golines-0.12.2" + "store_path": "/nix/store/cq83bls3cfcifg5l3bjvzl1c8psc8a8z-golines-0.12.2" } } }, "gomplate@latest": { - "last_modified": "2024-09-16T10:17:16Z", - "resolved": "github:NixOS/nixpkgs/20f9370d5f588fb8c72e844c54511cab054b5f40#gomplate", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#gomplate", "source": "devbox-search", "version": "4.1.0", "systems": { @@ -955,143 +955,143 @@ "outputs": [ { "name": "out", - "path": "/nix/store/c35rj7mklvzpv3mzwifcqvzmf2v5vb0n-gomplate-4.1.0", + "path": "/nix/store/ngc1lp92aqc9hzd4dz1i77y3hfb8qv82-gomplate-4.1.0", "default": true } ], - "store_path": "/nix/store/c35rj7mklvzpv3mzwifcqvzmf2v5vb0n-gomplate-4.1.0" + "store_path": "/nix/store/ngc1lp92aqc9hzd4dz1i77y3hfb8qv82-gomplate-4.1.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/b2v8jf91sab7cg0qq6kx3idbvlg79npc-gomplate-4.1.0", + "path": "/nix/store/y04rqz2gn1sqjxx8bk7332ahz4xfv9xy-gomplate-4.1.0", "default": true } ], - "store_path": "/nix/store/b2v8jf91sab7cg0qq6kx3idbvlg79npc-gomplate-4.1.0" + "store_path": "/nix/store/y04rqz2gn1sqjxx8bk7332ahz4xfv9xy-gomplate-4.1.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/yaxl3597pw13hm0683hljjq1ycmxa5zc-gomplate-4.1.0", + "path": "/nix/store/hib6jn5yb1dvh0h57vg4xhagfyqq5wj0-gomplate-4.1.0", "default": true } ], - "store_path": "/nix/store/yaxl3597pw13hm0683hljjq1ycmxa5zc-gomplate-4.1.0" + "store_path": "/nix/store/hib6jn5yb1dvh0h57vg4xhagfyqq5wj0-gomplate-4.1.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/6411b3jpnmlqn9dq2hnj12psspjr7izc-gomplate-4.1.0", + "path": "/nix/store/vg6l3n5fmig5dhlvpc7hwa5vskvcjlzb-gomplate-4.1.0", "default": true } ], - "store_path": "/nix/store/6411b3jpnmlqn9dq2hnj12psspjr7izc-gomplate-4.1.0" + "store_path": "/nix/store/vg6l3n5fmig5dhlvpc7hwa5vskvcjlzb-gomplate-4.1.0" } } }, "goreleaser@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#goreleaser", + "last_modified": "2024-10-27T16:09:49Z", + "resolved": "github:NixOS/nixpkgs/0fcb98acb6633445764dafe180e6833eb0f95208#goreleaser", "source": "devbox-search", - "version": "2.2.0", + "version": "2.3.2", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/sv5ypdcg8xyrvmk3l5n4svzp1ss154x3-goreleaser-2.2.0", + "path": "/nix/store/krh45dirqhjvxs1b747f9g5smvakk2dc-goreleaser-2.3.2", "default": true } ], - "store_path": "/nix/store/sv5ypdcg8xyrvmk3l5n4svzp1ss154x3-goreleaser-2.2.0" + "store_path": "/nix/store/krh45dirqhjvxs1b747f9g5smvakk2dc-goreleaser-2.3.2" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/4h8ydsrpwgn7nmdds9ymnxhmpzqdbvhh-goreleaser-2.2.0", + "path": "/nix/store/rpg6k4iy5rifcswyfsi1a6j526440gfb-goreleaser-2.3.2", "default": true } ], - "store_path": "/nix/store/4h8ydsrpwgn7nmdds9ymnxhmpzqdbvhh-goreleaser-2.2.0" + "store_path": "/nix/store/rpg6k4iy5rifcswyfsi1a6j526440gfb-goreleaser-2.3.2" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/yrg6dyfw6a7bv0hqiaqyab4hj09f3nq0-goreleaser-2.2.0", + "path": "/nix/store/ggjq23k8jg1z67k0xazymqb5m7ij2vqa-goreleaser-2.3.2", "default": true } ], - "store_path": "/nix/store/yrg6dyfw6a7bv0hqiaqyab4hj09f3nq0-goreleaser-2.2.0" + "store_path": "/nix/store/ggjq23k8jg1z67k0xazymqb5m7ij2vqa-goreleaser-2.3.2" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/2hnp7y9275fjffnw8mih4l6r8a86b707-goreleaser-2.2.0", + "path": "/nix/store/fsc9cjzb4k1ly1i29xsl3sizvazcqnrl-goreleaser-2.3.2", "default": true } ], - "store_path": "/nix/store/2hnp7y9275fjffnw8mih4l6r8a86b707-goreleaser-2.2.0" + "store_path": "/nix/store/fsc9cjzb4k1ly1i29xsl3sizvazcqnrl-goreleaser-2.3.2" } } }, "gotestsum@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#gotestsum", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#gotestsum", "source": "devbox-search", - "version": "1.11.0", + "version": "1.12.0-unstable-2024-09-17", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/gkq6wldjndpcgg3vx4la6dpp0sgmqm4y-gotestsum-1.11.0", + "path": "/nix/store/maxxbllyfdqd0nnxaq8kzy9k7wzx1m0x-gotestsum-1.12.0-unstable-2024-09-17", "default": true } ], - "store_path": "/nix/store/gkq6wldjndpcgg3vx4la6dpp0sgmqm4y-gotestsum-1.11.0" + "store_path": "/nix/store/maxxbllyfdqd0nnxaq8kzy9k7wzx1m0x-gotestsum-1.12.0-unstable-2024-09-17" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/dqj7agwyi9h11hd3775dnn66lzi5w8x2-gotestsum-1.11.0", + "path": "/nix/store/wbfc9pxg0yxg1cbqrn5jlqargdamw94d-gotestsum-1.12.0-unstable-2024-09-17", "default": true } ], - "store_path": "/nix/store/dqj7agwyi9h11hd3775dnn66lzi5w8x2-gotestsum-1.11.0" + "store_path": "/nix/store/wbfc9pxg0yxg1cbqrn5jlqargdamw94d-gotestsum-1.12.0-unstable-2024-09-17" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/f5dph9gaf4d1xni7ysdvr76i86b8p85l-gotestsum-1.11.0", + "path": "/nix/store/agxialib14rsk6v0fzf612in2qsw55v8-gotestsum-1.12.0-unstable-2024-09-17", "default": true } ], - "store_path": "/nix/store/f5dph9gaf4d1xni7ysdvr76i86b8p85l-gotestsum-1.11.0" + "store_path": "/nix/store/agxialib14rsk6v0fzf612in2qsw55v8-gotestsum-1.12.0-unstable-2024-09-17" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/d6wki0gr4y5b3442x496hqbnxbyd16px-gotestsum-1.11.0", + "path": "/nix/store/hfaw5ry636vw608cxw6wl3r96dpvj31q-gotestsum-1.12.0-unstable-2024-09-17", "default": true } ], - "store_path": "/nix/store/d6wki0gr4y5b3442x496hqbnxbyd16px-gotestsum-1.11.0" + "store_path": "/nix/store/hfaw5ry636vw608cxw6wl3r96dpvj31q-gotestsum-1.12.0-unstable-2024-09-17" } } }, "helm-docs@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#helm-docs", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#helm-docs", "source": "devbox-search", "version": "1.14.2", "systems": { @@ -1099,95 +1099,95 @@ "outputs": [ { "name": "out", - "path": "/nix/store/h8afnrnlrb4zb9ng6p7d81rnslz0yi9s-helm-docs-1.14.2", + "path": "/nix/store/llvlsfh5d6sqf5q709g8ph7cpb4yvgl7-helm-docs-1.14.2", "default": true } ], - "store_path": "/nix/store/h8afnrnlrb4zb9ng6p7d81rnslz0yi9s-helm-docs-1.14.2" + "store_path": "/nix/store/llvlsfh5d6sqf5q709g8ph7cpb4yvgl7-helm-docs-1.14.2" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/vxijrpsfnx6k04ky29x1rffdd73bqc3p-helm-docs-1.14.2", + "path": "/nix/store/xaah5kcm0m9p436p2i3y2azl2ic5nv86-helm-docs-1.14.2", "default": true } ], - "store_path": "/nix/store/vxijrpsfnx6k04ky29x1rffdd73bqc3p-helm-docs-1.14.2" + "store_path": "/nix/store/xaah5kcm0m9p436p2i3y2azl2ic5nv86-helm-docs-1.14.2" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/p7wjrl8sk982a0mcyy2pd83df12qwpdi-helm-docs-1.14.2", + "path": "/nix/store/3avk5q6rnrp4p0s2csj70nj55gr00hs4-helm-docs-1.14.2", "default": true } ], - "store_path": "/nix/store/p7wjrl8sk982a0mcyy2pd83df12qwpdi-helm-docs-1.14.2" + "store_path": "/nix/store/3avk5q6rnrp4p0s2csj70nj55gr00hs4-helm-docs-1.14.2" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/gwqxr1hl21ah19pp2gv4y7acm9vj9svd-helm-docs-1.14.2", + "path": "/nix/store/ml2sdsmv1j84n4qgbj376b58lw7k53kg-helm-docs-1.14.2", "default": true } ], - "store_path": "/nix/store/gwqxr1hl21ah19pp2gv4y7acm9vj9svd-helm-docs-1.14.2" + "store_path": "/nix/store/ml2sdsmv1j84n4qgbj376b58lw7k53kg-helm-docs-1.14.2" } } }, "hugo@latest": { - "last_modified": "2024-10-03T23:40:58Z", - "resolved": "github:NixOS/nixpkgs/73bed75dbd3de6d4fca3f81ce25a0cc7766afff6#hugo", + "last_modified": "2024-10-29T02:50:45Z", + "resolved": "github:NixOS/nixpkgs/30c9efeef01e2ad4880bff6a01a61dd99536b3c9#hugo", "source": "devbox-search", - "version": "0.135.0", + "version": "0.136.4", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/563vhml3g2l9jpq14b21rfvxwnv0rxk9-hugo-0.135.0", + "path": "/nix/store/pwyp8m8bygdzf5aijhhmvnzh42sw8d2h-hugo-0.136.4", "default": true } ], - "store_path": "/nix/store/563vhml3g2l9jpq14b21rfvxwnv0rxk9-hugo-0.135.0" + "store_path": "/nix/store/pwyp8m8bygdzf5aijhhmvnzh42sw8d2h-hugo-0.136.4" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/0vhqbf7q1y0w4zbg3rdsx7d9x3hh078s-hugo-0.135.0", + "path": "/nix/store/7fp841ppvig82452z9zr4j1kc8a2daad-hugo-0.136.4", "default": true } ], - "store_path": "/nix/store/0vhqbf7q1y0w4zbg3rdsx7d9x3hh078s-hugo-0.135.0" + "store_path": "/nix/store/7fp841ppvig82452z9zr4j1kc8a2daad-hugo-0.136.4" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/56hxfz94dcvdbzapna7szp8akkclndzq-hugo-0.135.0", + "path": "/nix/store/0m5v4a4vxh2w96wahrhwjc5q29yigm9z-hugo-0.136.4", "default": true } ], - "store_path": "/nix/store/56hxfz94dcvdbzapna7szp8akkclndzq-hugo-0.135.0" + "store_path": "/nix/store/0m5v4a4vxh2w96wahrhwjc5q29yigm9z-hugo-0.136.4" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/q8zh20ai6brdq415yq4r0hq9gyrvg9x7-hugo-0.135.0", + "path": "/nix/store/kbgzlyl8a9pzf3504ql61nrjg85f7lzc-hugo-0.136.4", "default": true } ], - "store_path": "/nix/store/q8zh20ai6brdq415yq4r0hq9gyrvg9x7-hugo-0.135.0" + "store_path": "/nix/store/kbgzlyl8a9pzf3504ql61nrjg85f7lzc-hugo-0.136.4" } } }, "kind@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#kind", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#kind", "source": "devbox-search", "version": "0.24.0", "systems": { @@ -1195,47 +1195,47 @@ "outputs": [ { "name": "out", - "path": "/nix/store/dh1xf5b09vn8j87kryr88yd47gq9ni8z-kind-0.24.0", + "path": "/nix/store/gh5i0rfg4ddan0z2jn768isa7ppkrw3k-kind-0.24.0", "default": true } ], - "store_path": "/nix/store/dh1xf5b09vn8j87kryr88yd47gq9ni8z-kind-0.24.0" + "store_path": "/nix/store/gh5i0rfg4ddan0z2jn768isa7ppkrw3k-kind-0.24.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/bjjxkmdvan9agc6sv44rdhxjz9hv1igx-kind-0.24.0", + "path": "/nix/store/i1f1n1vkwq4frksgkjb1q4fk4dnw2r0s-kind-0.24.0", "default": true } ], - "store_path": "/nix/store/bjjxkmdvan9agc6sv44rdhxjz9hv1igx-kind-0.24.0" + "store_path": "/nix/store/i1f1n1vkwq4frksgkjb1q4fk4dnw2r0s-kind-0.24.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/nx6pfraywj21i01biaczny73p33dlzjr-kind-0.24.0", + "path": "/nix/store/0a31m1clp16smjapp0jqg8xlqpqfy9nm-kind-0.24.0", "default": true } ], - "store_path": "/nix/store/nx6pfraywj21i01biaczny73p33dlzjr-kind-0.24.0" + "store_path": "/nix/store/0a31m1clp16smjapp0jqg8xlqpqfy9nm-kind-0.24.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/l19d666hq7hh64r9l9wpy2lwj0bxfm1a-kind-0.24.0", + "path": "/nix/store/f9bjjdk9ydihp12n7wq72hhgiyk8pvln-kind-0.24.0", "default": true } ], - "store_path": "/nix/store/l19d666hq7hh64r9l9wpy2lwj0bxfm1a-kind-0.24.0" + "store_path": "/nix/store/f9bjjdk9ydihp12n7wq72hhgiyk8pvln-kind-0.24.0" } } }, "ko@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#ko", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#ko", "source": "devbox-search", "version": "0.15.4", "systems": { @@ -1243,47 +1243,47 @@ "outputs": [ { "name": "out", - "path": "/nix/store/cz1wlmdf1c04j0wc10fi6id7d3g7pa5w-ko-0.15.4", + "path": "/nix/store/a115rv0r9sh21qksb2s6im57gpldwk0w-ko-0.15.4", "default": true } ], - "store_path": "/nix/store/cz1wlmdf1c04j0wc10fi6id7d3g7pa5w-ko-0.15.4" + "store_path": "/nix/store/a115rv0r9sh21qksb2s6im57gpldwk0w-ko-0.15.4" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/0csyy71avbjbrjwk04an0fr0iwq3n4xc-ko-0.15.4", + "path": "/nix/store/ydnsanna4inbiyrmizrw51r6i224skzr-ko-0.15.4", "default": true } ], - "store_path": "/nix/store/0csyy71avbjbrjwk04an0fr0iwq3n4xc-ko-0.15.4" + "store_path": "/nix/store/ydnsanna4inbiyrmizrw51r6i224skzr-ko-0.15.4" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/mvlja8c6mcqfhhb59jdl5kyg4lkckz98-ko-0.15.4", + "path": "/nix/store/0gf7l9pfhczzc8yf7m9cszbg9583nywh-ko-0.15.4", "default": true } ], - "store_path": "/nix/store/mvlja8c6mcqfhhb59jdl5kyg4lkckz98-ko-0.15.4" + "store_path": "/nix/store/0gf7l9pfhczzc8yf7m9cszbg9583nywh-ko-0.15.4" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/33jsb1yw71in0lrjk150yhn9b0myawg3-ko-0.15.4", + "path": "/nix/store/jvrcrahz03qax3dqjqbq8bab74p25j7i-ko-0.15.4", "default": true } ], - "store_path": "/nix/store/33jsb1yw71in0lrjk150yhn9b0myawg3-ko-0.15.4" + "store_path": "/nix/store/jvrcrahz03qax3dqjqbq8bab74p25j7i-ko-0.15.4" } } }, "kubebuilder@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#kubebuilder", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#kubebuilder", "source": "devbox-search", "version": "4.2.0", "systems": { @@ -1291,243 +1291,291 @@ "outputs": [ { "name": "out", - "path": "/nix/store/vlyi1i8dap496409swww9zbkss1zbgr2-kubebuilder-4.2.0", + "path": "/nix/store/0di273ha5772xcqy2virq8h2bpfjqazv-kubebuilder-4.2.0", "default": true } ], - "store_path": "/nix/store/vlyi1i8dap496409swww9zbkss1zbgr2-kubebuilder-4.2.0" + "store_path": "/nix/store/0di273ha5772xcqy2virq8h2bpfjqazv-kubebuilder-4.2.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/lmv0n1aip0in150zphd1w7qvivh5dhhn-kubebuilder-4.2.0", + "path": "/nix/store/0x99jwbh1ssvhygmwy6f3vfnywd0mjcq-kubebuilder-4.2.0", "default": true } ], - "store_path": "/nix/store/lmv0n1aip0in150zphd1w7qvivh5dhhn-kubebuilder-4.2.0" + "store_path": "/nix/store/0x99jwbh1ssvhygmwy6f3vfnywd0mjcq-kubebuilder-4.2.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/nbv1qb8gq2zxa6r0zzb7hy6xmv48a0hx-kubebuilder-4.2.0", + "path": "/nix/store/1wf2wgmhpb24a9v1bsfq529d49vafhqi-kubebuilder-4.2.0", "default": true } ], - "store_path": "/nix/store/nbv1qb8gq2zxa6r0zzb7hy6xmv48a0hx-kubebuilder-4.2.0" + "store_path": "/nix/store/1wf2wgmhpb24a9v1bsfq529d49vafhqi-kubebuilder-4.2.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/k1h0xwmmm9prp7mivk22nnk98xq62486-kubebuilder-4.2.0", + "path": "/nix/store/b58vzhznmg6lj2qj37c1xnq0mivb491q-kubebuilder-4.2.0", "default": true } ], - "store_path": "/nix/store/k1h0xwmmm9prp7mivk22nnk98xq62486-kubebuilder-4.2.0" + "store_path": "/nix/store/b58vzhznmg6lj2qj37c1xnq0mivb491q-kubebuilder-4.2.0" } } }, "kubectl@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#kubectl", + "last_modified": "2024-10-26T22:05:23Z", + "resolved": "github:NixOS/nixpkgs/86e78d3d2084ff87688da662cf78c2af085d8e73#kubectl", "source": "devbox-search", - "version": "1.31.0", + "version": "1.31.2", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/a3sbf306xajs0af6pcz34pw4pi9mkmj5-kubectl-1.31.0", + "path": "/nix/store/dsq277bpycnyii3pzg50jqsg31w1d3lm-kubectl-1.31.2", "default": true }, { "name": "man", - "path": "/nix/store/ap867akfi9x10mzsbna51rxfh5wx5av2-kubectl-1.31.0-man", + "path": "/nix/store/gjkm52fl078whjcirr2nq8xdx2gfnns0-kubectl-1.31.2-man", "default": true }, { "name": "convert", - "path": "/nix/store/n3g8pl6v8qf08d6z6pjllrb89ysr1zsc-kubectl-1.31.0-convert" + "path": "/nix/store/zgixian7hifmilhhj8m3cfgq6ri8xqm2-kubectl-1.31.2-convert" } ], - "store_path": "/nix/store/a3sbf306xajs0af6pcz34pw4pi9mkmj5-kubectl-1.31.0" + "store_path": "/nix/store/dsq277bpycnyii3pzg50jqsg31w1d3lm-kubectl-1.31.2" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/qg9r3qqnjjxqmaq9qqbyh9x12k1vvqhv-kubectl-1.31.0", + "path": "/nix/store/pg4daf68jj4dhb8i3nakl4aly1izg94z-kubectl-1.31.2", "default": true }, { "name": "man", - "path": "/nix/store/j132aazwv8nylcr4ciddmyhfwy48al5w-kubectl-1.31.0-man", + "path": "/nix/store/vzlacfg6bx5rjlhkfhmdj7j6a9w94p82-kubectl-1.31.2-man", "default": true }, { "name": "convert", - "path": "/nix/store/rc505l8rn9sd9g75hkxv1vq8zhr37j4x-kubectl-1.31.0-convert" + "path": "/nix/store/xlpp7d5596rd9aqmm0mkd84iykdb7glv-kubectl-1.31.2-convert" } ], - "store_path": "/nix/store/qg9r3qqnjjxqmaq9qqbyh9x12k1vvqhv-kubectl-1.31.0" + "store_path": "/nix/store/pg4daf68jj4dhb8i3nakl4aly1izg94z-kubectl-1.31.2" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/c5q71r4zbx9jjrdg1bky82q3ak87dsmn-kubectl-1.31.0", + "path": "/nix/store/y8i5r3j2ch103ibp84sgqxwaqhyxd7cz-kubectl-1.31.2", "default": true }, { "name": "man", - "path": "/nix/store/fqnpf91mg1w1z7glgx42wxgw8k2j4ym0-kubectl-1.31.0-man", + "path": "/nix/store/xvccq7rqyiz63sg9r10zkw73mqqq5jb0-kubectl-1.31.2-man", "default": true }, { "name": "convert", - "path": "/nix/store/arnjlmd1zxdnp76qgk343ybqkjs3d4fb-kubectl-1.31.0-convert" + "path": "/nix/store/3i612hm0105rs73w554zgggc9hclclbh-kubectl-1.31.2-convert" } ], - "store_path": "/nix/store/c5q71r4zbx9jjrdg1bky82q3ak87dsmn-kubectl-1.31.0" + "store_path": "/nix/store/y8i5r3j2ch103ibp84sgqxwaqhyxd7cz-kubectl-1.31.2" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/2xi1vzmqlbsqg9k3n1m204n56als7lyn-kubectl-1.31.0", + "path": "/nix/store/7wjb8cxb0frfrnvsjkjq0cfr5rfsmhxb-kubectl-1.31.2", "default": true }, { "name": "man", - "path": "/nix/store/75y8hkbk46qksfhqbkv5ass7xx3x1xsh-kubectl-1.31.0-man", + "path": "/nix/store/hwn6v52kd7z3slq9f24wxkv0cp1kcacy-kubectl-1.31.2-man", "default": true }, { "name": "convert", - "path": "/nix/store/h9v1hlig44y827ms1cszwld3agdbh47k-kubectl-1.31.0-convert" + "path": "/nix/store/hxv0ckf8rd875g42byyjc135q5gd6az4-kubectl-1.31.2-convert" } ], - "store_path": "/nix/store/2xi1vzmqlbsqg9k3n1m204n56als7lyn-kubectl-1.31.0" + "store_path": "/nix/store/7wjb8cxb0frfrnvsjkjq0cfr5rfsmhxb-kubectl-1.31.2" + } + } + }, + "kubernetes-controller-tools@latest": { + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#kubernetes-controller-tools", + "source": "devbox-search", + "version": "0.16.4", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/amxl7nw7ihqi4d5q3pq325ifwff4i5kr-controller-tools-0.16.4", + "default": true + } + ], + "store_path": "/nix/store/amxl7nw7ihqi4d5q3pq325ifwff4i5kr-controller-tools-0.16.4" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/cq1a87vmph94r4qya4l56bg47pzc21kr-controller-tools-0.16.4", + "default": true + } + ], + "store_path": "/nix/store/cq1a87vmph94r4qya4l56bg47pzc21kr-controller-tools-0.16.4" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/zcs66gmkvz2als5gyypbv76c96n70n59-controller-tools-0.16.4", + "default": true + } + ], + "store_path": "/nix/store/zcs66gmkvz2als5gyypbv76c96n70n59-controller-tools-0.16.4" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/scbangqhifb3ncswbzbshp0pjc5a671s-controller-tools-0.16.4", + "default": true + } + ], + "store_path": "/nix/store/scbangqhifb3ncswbzbshp0pjc5a671s-controller-tools-0.16.4" } } }, "kustomize@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#kustomize", + "last_modified": "2024-10-17T04:50:07Z", + "resolved": "github:NixOS/nixpkgs/1bde3e8e37a72989d4d455adde764d45f45dc11c#kustomize", "source": "devbox-search", - "version": "5.4.3", + "version": "5.5.0", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/cj6162hcll6jw4lp0cvlh78jlwb42kvc-kustomize-5.4.3", + "path": "/nix/store/q3ii4n7p6n78bc28c87b8392rrbhmf7p-kustomize-5.5.0", "default": true } ], - "store_path": "/nix/store/cj6162hcll6jw4lp0cvlh78jlwb42kvc-kustomize-5.4.3" + "store_path": "/nix/store/q3ii4n7p6n78bc28c87b8392rrbhmf7p-kustomize-5.5.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/bfz8np8k8l4xn6qq4qacwcqgmnx57vy7-kustomize-5.4.3", + "path": "/nix/store/kmgac3ra8d87xm6yfry4wm3n81srhvw1-kustomize-5.5.0", "default": true } ], - "store_path": "/nix/store/bfz8np8k8l4xn6qq4qacwcqgmnx57vy7-kustomize-5.4.3" + "store_path": "/nix/store/kmgac3ra8d87xm6yfry4wm3n81srhvw1-kustomize-5.5.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/fklmq6hmq8fq5ggxk59yrqhqrjkpb5nn-kustomize-5.4.3", + "path": "/nix/store/56icb6vp8s4scq3fk9dx8l76vrg70l70-kustomize-5.5.0", "default": true } ], - "store_path": "/nix/store/fklmq6hmq8fq5ggxk59yrqhqrjkpb5nn-kustomize-5.4.3" + "store_path": "/nix/store/56icb6vp8s4scq3fk9dx8l76vrg70l70-kustomize-5.5.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/1xp4g0r29lkd2c8f3qmhw3flv873z20q-kustomize-5.4.3", + "path": "/nix/store/7xnnkvr10l95hd617mgcbag56frrxma4-kustomize-5.5.0", "default": true } ], - "store_path": "/nix/store/1xp4g0r29lkd2c8f3qmhw3flv873z20q-kustomize-5.4.3" + "store_path": "/nix/store/7xnnkvr10l95hd617mgcbag56frrxma4-kustomize-5.5.0" } } }, "pre-commit@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#pre-commit", + "last_modified": "2024-10-23T22:21:09Z", + "resolved": "github:NixOS/nixpkgs/6301495959cf1737c6ebcd153833e4c4596f56e2#pre-commit", "source": "devbox-search", - "version": "3.7.1", + "version": "4.0.1", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/rc7a3m278dvszzb5vbsdhaa3a9jfbpj3-pre-commit-3.7.1", + "path": "/nix/store/xnxr8a5wgzl1iqqyzx1fvlkd80ax3y7g-pre-commit-4.0.1", "default": true }, { "name": "dist", - "path": "/nix/store/pg7ik51gbhxls1h331f258jr9d9ad971-pre-commit-3.7.1-dist" + "path": "/nix/store/fjxy7489pv2zcfcr1db5r9vy186xvi17-pre-commit-4.0.1-dist" } ], - "store_path": "/nix/store/rc7a3m278dvszzb5vbsdhaa3a9jfbpj3-pre-commit-3.7.1" + "store_path": "/nix/store/xnxr8a5wgzl1iqqyzx1fvlkd80ax3y7g-pre-commit-4.0.1" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/ibhhz3rpnzpvq7q8g7dyvgmy0mz1qpxg-pre-commit-3.7.1", + "path": "/nix/store/w7gwhwaz6ijg0rsisn5q9jqqh6kfrzmd-pre-commit-4.0.1", "default": true }, { "name": "dist", - "path": "/nix/store/7ljv9l15k3r27svhwf2h23xi2a6bizhj-pre-commit-3.7.1-dist" + "path": "/nix/store/7bv6iqpy3c8q614ss0r5bfk2qn7955jc-pre-commit-4.0.1-dist" } ], - "store_path": "/nix/store/ibhhz3rpnzpvq7q8g7dyvgmy0mz1qpxg-pre-commit-3.7.1" + "store_path": "/nix/store/w7gwhwaz6ijg0rsisn5q9jqqh6kfrzmd-pre-commit-4.0.1" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/fkblsil3k46swjag8lz1maijzmvnxmfk-pre-commit-3.7.1", + "path": "/nix/store/9j6smdlyvw92asjdsa2bkx2dmd56x6v0-pre-commit-4.0.1", "default": true }, { "name": "dist", - "path": "/nix/store/g4n4np8nkvr9dnnsfg2h1blaqaipy64q-pre-commit-3.7.1-dist" + "path": "/nix/store/6rn193qlyag10g8m7hjd3b8lm0sijffp-pre-commit-4.0.1-dist" } ], - "store_path": "/nix/store/fkblsil3k46swjag8lz1maijzmvnxmfk-pre-commit-3.7.1" + "store_path": "/nix/store/9j6smdlyvw92asjdsa2bkx2dmd56x6v0-pre-commit-4.0.1" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/l49d5zihkp48l6pvhk6953x1rb721mx3-pre-commit-3.7.1", + "path": "/nix/store/62l1alph77x3d051zivy530mpdvkzi7c-pre-commit-4.0.1", "default": true }, { "name": "dist", - "path": "/nix/store/awlcncgn92xlx5fkawgdq6vdxzw26vfh-pre-commit-3.7.1-dist" + "path": "/nix/store/dxd5cifrhg553fkchg1qgcb4blqxg4iy-pre-commit-4.0.1-dist" } ], - "store_path": "/nix/store/l49d5zihkp48l6pvhk6953x1rb721mx3-pre-commit-3.7.1" + "store_path": "/nix/store/62l1alph77x3d051zivy530mpdvkzi7c-pre-commit-4.0.1" } } }, "rsync@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#rsync", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#rsync", "source": "devbox-search", "version": "3.3.0", "systems": { @@ -1535,95 +1583,143 @@ "outputs": [ { "name": "out", - "path": "/nix/store/nayhcjy81hacq0zx5cq6kvv0ny66ylkl-rsync-3.3.0", + "path": "/nix/store/dbvsk5qizdkj71zfq63hm6sxa3b1djms-rsync-3.3.0", "default": true } ], - "store_path": "/nix/store/nayhcjy81hacq0zx5cq6kvv0ny66ylkl-rsync-3.3.0" + "store_path": "/nix/store/dbvsk5qizdkj71zfq63hm6sxa3b1djms-rsync-3.3.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/pvcf55z7zsxq9pcrca9i51nbv0jmsy9w-rsync-3.3.0", + "path": "/nix/store/iar58icb4j1vfs1rpyl7v7qnias9awa2-rsync-3.3.0", "default": true } ], - "store_path": "/nix/store/pvcf55z7zsxq9pcrca9i51nbv0jmsy9w-rsync-3.3.0" + "store_path": "/nix/store/iar58icb4j1vfs1rpyl7v7qnias9awa2-rsync-3.3.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/2zpkq1gkbyz1h9pngq4l6snqfj81ra9s-rsync-3.3.0", + "path": "/nix/store/mbzv0gvl1vj9mbnk1ixs180bq5s51g1f-rsync-3.3.0", "default": true } ], - "store_path": "/nix/store/2zpkq1gkbyz1h9pngq4l6snqfj81ra9s-rsync-3.3.0" + "store_path": "/nix/store/mbzv0gvl1vj9mbnk1ixs180bq5s51g1f-rsync-3.3.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/y1ba7s3v10jb1lxrf1zki19mcn6fkwbr-rsync-3.3.0", + "path": "/nix/store/v2rsppryxbv9z63fgg6kcim4mbr7ihrd-rsync-3.3.0", "default": true } ], - "store_path": "/nix/store/y1ba7s3v10jb1lxrf1zki19mcn6fkwbr-rsync-3.3.0" + "store_path": "/nix/store/v2rsppryxbv9z63fgg6kcim4mbr7ihrd-rsync-3.3.0" + } + } + }, + "setup-envtest@latest": { + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#setup-envtest", + "source": "devbox-search", + "version": "0.19.0", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/36nh924avir86z98hqscs01pg2w838x0-setup-envtest-0.19.0", + "default": true + } + ], + "store_path": "/nix/store/36nh924avir86z98hqscs01pg2w838x0-setup-envtest-0.19.0" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/fqxkzbkarqj0j4ddl12cm4l6cw865fvg-setup-envtest-0.19.0", + "default": true + } + ], + "store_path": "/nix/store/fqxkzbkarqj0j4ddl12cm4l6cw865fvg-setup-envtest-0.19.0" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/11aicjps7s1izqdwq004650kc6mhi4zj-setup-envtest-0.19.0", + "default": true + } + ], + "store_path": "/nix/store/11aicjps7s1izqdwq004650kc6mhi4zj-setup-envtest-0.19.0" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/ydxvmgs51xdpgbi62p4sw8ww6xjyqzhw-setup-envtest-0.19.0", + "default": true + } + ], + "store_path": "/nix/store/ydxvmgs51xdpgbi62p4sw8ww6xjyqzhw-setup-envtest-0.19.0" } } }, "shfmt@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#shfmt", + "last_modified": "2024-10-21T08:58:42Z", + "resolved": "github:NixOS/nixpkgs/56c7c4a3f5fdbef5bf81c7d9c28fbb45dc626611#shfmt", "source": "devbox-search", - "version": "3.9.0", + "version": "3.10.0", "systems": { "aarch64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/1r6nhq0flx19kdvpmnvzgjxwcs0yzfw2-shfmt-3.9.0", + "path": "/nix/store/dbrvc5n5005wz77fq8slxcgzl10nl2v4-shfmt-3.10.0", "default": true } ], - "store_path": "/nix/store/1r6nhq0flx19kdvpmnvzgjxwcs0yzfw2-shfmt-3.9.0" + "store_path": "/nix/store/dbrvc5n5005wz77fq8slxcgzl10nl2v4-shfmt-3.10.0" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/sf0azn8z0jh9vsg7y6z0n060315qdqv8-shfmt-3.9.0", + "path": "/nix/store/vw43g4jiy21hd6vvjk8bf5amww5yp2kl-shfmt-3.10.0", "default": true } ], - "store_path": "/nix/store/sf0azn8z0jh9vsg7y6z0n060315qdqv8-shfmt-3.9.0" + "store_path": "/nix/store/vw43g4jiy21hd6vvjk8bf5amww5yp2kl-shfmt-3.10.0" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/hilj99wvybz2vxh2hz4q1s10dsb5mmzg-shfmt-3.9.0", + "path": "/nix/store/a6gfcfnr0sr2av3gyma30wsm2hk7mx4q-shfmt-3.10.0", "default": true } ], - "store_path": "/nix/store/hilj99wvybz2vxh2hz4q1s10dsb5mmzg-shfmt-3.9.0" + "store_path": "/nix/store/a6gfcfnr0sr2av3gyma30wsm2hk7mx4q-shfmt-3.10.0" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/a2gjm6j03cznwkc7cqpbajr32syxg36w-shfmt-3.9.0", + "path": "/nix/store/b12kmzbam8ydg5lf3gafzywrkr2ghykn-shfmt-3.10.0", "default": true } ], - "store_path": "/nix/store/a2gjm6j03cznwkc7cqpbajr32syxg36w-shfmt-3.9.0" + "store_path": "/nix/store/b12kmzbam8ydg5lf3gafzywrkr2ghykn-shfmt-3.10.0" } } }, "yamale@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#yamale", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#yamale", "source": "devbox-search", "version": "5.2.1", "systems": { @@ -1631,63 +1727,63 @@ "outputs": [ { "name": "out", - "path": "/nix/store/gyp2srgd8ivm9bvpjn7zdpz46xj2fl6q-python3.12-yamale-5.2.1", + "path": "/nix/store/ggkzaravss80xxwjzckizikfk4lvgxzq-python3.12-yamale-5.2.1", "default": true }, { "name": "dist", - "path": "/nix/store/3s95zj8m3nvivbnnk4pkqwyramgppk63-python3.12-yamale-5.2.1-dist" + "path": "/nix/store/29arwz8sjd1s27jh4y01wyxncbpm3ilh-python3.12-yamale-5.2.1-dist" } ], - "store_path": "/nix/store/gyp2srgd8ivm9bvpjn7zdpz46xj2fl6q-python3.12-yamale-5.2.1" + "store_path": "/nix/store/ggkzaravss80xxwjzckizikfk4lvgxzq-python3.12-yamale-5.2.1" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/2isnvmflslwbh605lyivqlgl4r7xbq8n-python3.12-yamale-5.2.1", + "path": "/nix/store/ypbqscyfab7ad4ngc3vr3fnmbsz0gybs-python3.12-yamale-5.2.1", "default": true }, { "name": "dist", - "path": "/nix/store/mrh40d4q18w3b7jcyrf0niz0ixdpd4jj-python3.12-yamale-5.2.1-dist" + "path": "/nix/store/sqcy3jx7c2r6yp3lyfp5bi879hw55sjb-python3.12-yamale-5.2.1-dist" } ], - "store_path": "/nix/store/2isnvmflslwbh605lyivqlgl4r7xbq8n-python3.12-yamale-5.2.1" + "store_path": "/nix/store/ypbqscyfab7ad4ngc3vr3fnmbsz0gybs-python3.12-yamale-5.2.1" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/k5dn4r0mc1mhswa7f3xijbrp113xa99n-python3.12-yamale-5.2.1", + "path": "/nix/store/c661765z8a87wyv9k3ms7pivk42qq9ji-python3.12-yamale-5.2.1", "default": true }, { "name": "dist", - "path": "/nix/store/ni4dqvdkj800sqzfa2canfx81y68wnzw-python3.12-yamale-5.2.1-dist" + "path": "/nix/store/d4hg11wl08g93jk4ry6k0cps4yd59kn3-python3.12-yamale-5.2.1-dist" } ], - "store_path": "/nix/store/k5dn4r0mc1mhswa7f3xijbrp113xa99n-python3.12-yamale-5.2.1" + "store_path": "/nix/store/c661765z8a87wyv9k3ms7pivk42qq9ji-python3.12-yamale-5.2.1" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/sy3arscz7kaggci8ip6swyqnlszpk26w-python3.12-yamale-5.2.1", + "path": "/nix/store/c61rjn9vpcj3v165rc9z6d1l4pda4bfx-python3.12-yamale-5.2.1", "default": true }, { "name": "dist", - "path": "/nix/store/iyjsh4z5m0ig9yf8mgmnf3fkppgvz60g-python3.12-yamale-5.2.1-dist" + "path": "/nix/store/5x7j61w7m7ivqmk7rlsm6axwlj78c7b0-python3.12-yamale-5.2.1-dist" } ], - "store_path": "/nix/store/sy3arscz7kaggci8ip6swyqnlszpk26w-python3.12-yamale-5.2.1" + "store_path": "/nix/store/c61rjn9vpcj3v165rc9z6d1l4pda4bfx-python3.12-yamale-5.2.1" } } }, "yamllint@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#yamllint", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#yamllint", "source": "devbox-search", "version": "1.35.1", "systems": { @@ -1695,63 +1791,63 @@ "outputs": [ { "name": "out", - "path": "/nix/store/b18ccrrn1c52wgk6yg5aa4nvzsdawqdq-python3.12-yamllint-1.35.1", + "path": "/nix/store/xirbp72qqmvr3bcagh5haha5s7a99m0k-python3.12-yamllint-1.35.1", "default": true }, { "name": "dist", - "path": "/nix/store/z26z4rdp3qgl2fls9f6awxd73fsa5dna-python3.12-yamllint-1.35.1-dist" + "path": "/nix/store/6k3h509hwsrv5w6qcrskjydxfy0y1mdj-python3.12-yamllint-1.35.1-dist" } ], - "store_path": "/nix/store/b18ccrrn1c52wgk6yg5aa4nvzsdawqdq-python3.12-yamllint-1.35.1" + "store_path": "/nix/store/xirbp72qqmvr3bcagh5haha5s7a99m0k-python3.12-yamllint-1.35.1" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/3ap1pyiv8nj7gwdhc72m0yns5dsw8g66-python3.12-yamllint-1.35.1", + "path": "/nix/store/dq896v1yc0jm7c560cfyg3lcdiv5gnvf-python3.12-yamllint-1.35.1", "default": true }, { "name": "dist", - "path": "/nix/store/xg7ql71hjpijgx35jrk0z59s4qs4p7z3-python3.12-yamllint-1.35.1-dist" + "path": "/nix/store/6hh3gx8xcrksbczvk1n105lk2c9s7aq6-python3.12-yamllint-1.35.1-dist" } ], - "store_path": "/nix/store/3ap1pyiv8nj7gwdhc72m0yns5dsw8g66-python3.12-yamllint-1.35.1" + "store_path": "/nix/store/dq896v1yc0jm7c560cfyg3lcdiv5gnvf-python3.12-yamllint-1.35.1" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/jjk9z2w607kghf4ygvq574ywqbsyj4rw-python3.12-yamllint-1.35.1", + "path": "/nix/store/3vnklgsmqslbx4bpsfymsjpqiwmcy6qb-python3.12-yamllint-1.35.1", "default": true }, { "name": "dist", - "path": "/nix/store/djyrw4m64xqlas1hardi947rljyli0mj-python3.12-yamllint-1.35.1-dist" + "path": "/nix/store/5ns6js95dkdl2ljjixvvdpy047cjvj4m-python3.12-yamllint-1.35.1-dist" } ], - "store_path": "/nix/store/jjk9z2w607kghf4ygvq574ywqbsyj4rw-python3.12-yamllint-1.35.1" + "store_path": "/nix/store/3vnklgsmqslbx4bpsfymsjpqiwmcy6qb-python3.12-yamllint-1.35.1" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/3wbkzqqkk5rxsndav1j7gagixj7j1nlv-python3.12-yamllint-1.35.1", + "path": "/nix/store/9d36gya918jakxl7a7xsf55qnjgnx3nd-python3.12-yamllint-1.35.1", "default": true }, { "name": "dist", - "path": "/nix/store/qkr8fc1sgdf3l4v8g3lg962yvs4759na-python3.12-yamllint-1.35.1-dist" + "path": "/nix/store/d8wah9g42d88crrq1bmpnaa2cq4nhqcz-python3.12-yamllint-1.35.1-dist" } ], - "store_path": "/nix/store/3wbkzqqkk5rxsndav1j7gagixj7j1nlv-python3.12-yamllint-1.35.1" + "store_path": "/nix/store/9d36gya918jakxl7a7xsf55qnjgnx3nd-python3.12-yamllint-1.35.1" } } }, "yq-go@latest": { - "last_modified": "2024-09-10T15:01:03Z", - "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#yq-go", + "last_modified": "2024-10-13T23:44:06Z", + "resolved": "github:NixOS/nixpkgs/d4f247e89f6e10120f911e2e2d2254a050d0f732#yq-go", "source": "devbox-search", "version": "4.44.3", "systems": { @@ -1759,41 +1855,41 @@ "outputs": [ { "name": "out", - "path": "/nix/store/l4yd5ml8bq3k7kgx09v11q735ifafc2z-yq-go-4.44.3", + "path": "/nix/store/8m0sshzsqkqvdfdgnz0nxps5i2yplwj5-yq-go-4.44.3", "default": true } ], - "store_path": "/nix/store/l4yd5ml8bq3k7kgx09v11q735ifafc2z-yq-go-4.44.3" + "store_path": "/nix/store/8m0sshzsqkqvdfdgnz0nxps5i2yplwj5-yq-go-4.44.3" }, "aarch64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/v560a3n62j1vxmcajhmjm0m3g706gj1r-yq-go-4.44.3", + "path": "/nix/store/ikmqzfgl2fhx9ghc18g3gw2kqavrxavv-yq-go-4.44.3", "default": true } ], - "store_path": "/nix/store/v560a3n62j1vxmcajhmjm0m3g706gj1r-yq-go-4.44.3" + "store_path": "/nix/store/ikmqzfgl2fhx9ghc18g3gw2kqavrxavv-yq-go-4.44.3" }, "x86_64-darwin": { "outputs": [ { "name": "out", - "path": "/nix/store/51y79dql9azy10mr82dbvp30y29lp3pn-yq-go-4.44.3", + "path": "/nix/store/s7khn02dh6pv138am1fxd227ng096md3-yq-go-4.44.3", "default": true } ], - "store_path": "/nix/store/51y79dql9azy10mr82dbvp30y29lp3pn-yq-go-4.44.3" + "store_path": "/nix/store/s7khn02dh6pv138am1fxd227ng096md3-yq-go-4.44.3" }, "x86_64-linux": { "outputs": [ { "name": "out", - "path": "/nix/store/3c1gvwg7nkvwvidnvng8fj31pprkhhva-yq-go-4.44.3", + "path": "/nix/store/ab2g0x1vcxcjpmc15ig71r6574isgcrk-yq-go-4.44.3", "default": true } ], - "store_path": "/nix/store/3c1gvwg7nkvwvidnvng8fj31pprkhhva-yq-go-4.44.3" + "store_path": "/nix/store/ab2g0x1vcxcjpmc15ig71r6574isgcrk-yq-go-4.44.3" } } } diff --git a/go.mod b/go.mod index aad6bb29a..90e380820 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ module github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix go 1.23 -toolchain go1.23.1 +toolchain go1.23.2 replace ( github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/api => ./api diff --git a/hack/flakes/flake.lock b/hack/flakes/flake.lock index fcf8cc6ec..b19f9bb2d 100644 --- a/hack/flakes/flake.lock +++ b/hack/flakes/flake.lock @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1726481836, - "narHash": "sha256-MWTBH4dd5zIz2iatDb8IkqSjIeFum9jAqkFxgHLdzO4=", + "lastModified": 1730831018, + "narHash": "sha256-2S0HwIFRxYp+afuoFORcZA9TjryAf512GmE0MTfEOPU=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "20f9370d5f588fb8c72e844c54511cab054b5f40", + "rev": "8c4dc69b9732f6bbe826b5fbb32184987520ff26", "type": "github" }, "original": { diff --git a/hack/flakes/flake.nix b/hack/flakes/flake.nix index c1b3aaea0..0b1c820a0 100644 --- a/hack/flakes/flake.nix +++ b/hack/flakes/flake.nix @@ -12,21 +12,6 @@ packages = rec { govulncheck = pkgs.govulncheck.override { buildGoModule = buildGo123Module; }; - setup-envtest = buildGo123Module rec { - name = "setup-envtest"; - version = "0.18.5"; - src = fetchFromGitHub { - owner = "kubernetes-sigs"; - repo = "controller-runtime"; - rev = "v${version}"; - hash = "sha256-WGq5juv+QET0PHXW8uj9fV8D3NTSey3RqwvLxJDU014="; - } + "/tools/setup-envtest"; - doCheck = false; - subPackages = [ "." ]; - vendorHash = "sha256-tFWXROKZ+5rrHdiY3dFHAo5g5TKYfc8HgLSouD7bI+s="; - ldflags = [ "-s" "-w" ]; - }; - goprintconst = buildGo123Module rec { name = "goprintconst"; version = "0.0.1-dev"; @@ -44,16 +29,16 @@ clusterctl-aws = buildGo123Module rec { name = "clusterctl-aws"; - version = "2.6.1"; + version = "2.7.1"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = "cluster-api-provider-aws"; rev = "v${version}"; - hash = "sha256-y3tN/OciKNcqvcROmSKPcehW/4+dBWmGESZYjmYbkBo="; + hash = "sha256-l2ZCylr47vRYw/HyYaeKfSvH1Kt9YQPwLoHLU2h+AE4="; }; doCheck = false; subPackages = [ "cmd/clusterawsadm" ]; - vendorHash = "sha256-WRKViPMlJVV3uS+TK6Rd4EoEQ5ttdXDoOqoYiuga1WE="; + vendorHash = "sha256-iAheoh9VMSdTVvJzhXZBFpGDoDsGO8OV/sYjDEsf8qw="; ldflags = let modPrefix = "sigs.k8s.io/cluster-api-provider-aws/v2"; v = "${modPrefix}/version"; c = "${modPrefix}/cmd/clusterawsadm/cmd/version"; in [ @@ -86,21 +71,6 @@ dontNpmBuild = true; }; - controller-gen = buildGo123Module rec { - name = "controller-gen"; - version = "0.16.0"; - src = fetchFromGitHub { - owner = "kubernetes-sigs"; - repo = "controller-tools"; - rev = "v${version}"; - hash = "sha256-0JSzk57XkvlP46SdC50zOtcx+XecGmFfkB+8XyGx6Ps="; - }; - doCheck = false; - subPackages = [ "./cmd/controller-gen" ]; - vendorHash = "sha256-3p9K08WMqDRHHa9116//3lFeaMtRaipD4LyisaKWV7I="; - ldflags = [ "-s" "-w" ]; - }; - helm-schema = buildGo123Module rec { pname = "helm-schema"; version = "1.5.2"; diff --git a/make/kind.mk b/make/kind.mk index 870892a64..e37c18cc8 100644 --- a/make/kind.mk +++ b/make/kind.mk @@ -7,11 +7,10 @@ KIND_CLUSTER_NAME ?= $(GITHUB_REPOSITORY)-dev KIND_KUBECONFIG ?= $(KIND_DIR)/$(KIND_CLUSTER_NAME)/kubeconfig KINDEST_NODE_IMAGE ?= ghcr.io/mesosphere/kind-node -KINDEST_NODE_VERSION_v1.27 ?= v1.27.16 -KINDEST_NODE_VERSION_v1.28 ?= v1.28.13 -KINDEST_NODE_VERSION_v1.29 ?= v1.29.8 -KINDEST_NODE_VERSION_v1.30 ?= v1.30.5 -KINDEST_NODE_VERSION_v1.31 ?= v1.31.0 +KINDEST_NODE_VERSION_v1.28 ?= v1.28.15 +KINDEST_NODE_VERSION_v1.29 ?= v1.29.9 +KINDEST_NODE_VERSION_v1.30 ?= v1.30.6 +KINDEST_NODE_VERSION_v1.31 ?= v1.31.2 # Allow easy override of Kubernetes version to use via `make KIND_KUBERNETES_VERSION=v1.23` to use in CI KIND_KUBERNETES_VERSION ?= v1.31 ifndef KINDEST_NODE_VERSION_$(KIND_KUBERNETES_VERSION)