From baecd64a4db6b249ae96bce671359e332cfc57ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 20:06:16 +0000 Subject: [PATCH 1/8] chore: Update .go-version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .go-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.go-version b/.go-version index f5ae945712e..3dfc2ecf954 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.22.10 +1.22.11 From 9902b9f82fbaef669b0a510ab2991792721351b5 Mon Sep 17 00:00:00 2001 From: Craig MacKenzie Date: Mon, 3 Feb 2025 16:24:18 -0500 Subject: [PATCH 2/8] Add changelog. --- .../1738617834-Upgrade-to-Go-1.22.11..yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml diff --git a/changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml b/changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml new file mode 100644 index 00000000000..7cc696c4b6e --- /dev/null +++ b/changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml @@ -0,0 +1,32 @@ +# Kind can be one of: +# - breaking-change: a change to previously-documented behavior +# - deprecation: functionality that is being removed in a later release +# - bug-fix: fixes a problem in a previous version +# - enhancement: extends functionality but does not break or fix existing behavior +# - feature: new functionality +# - known-issue: problems that we are aware of in a given version +# - security: impacts on the security of a product or a user’s deployment. +# - upgrade: important information for someone upgrading from a prior version +# - other: does not fit into any of the other categories +kind: security + +# Change summary; a 80ish characters long description of the change. +summary: Upgrade to Go 1.22.11. + +# Long description; in case the summary is not enough to describe the change +# this field accommodate a description without length limits. +# NOTE: This field will be rendered only for breaking-change and known-issue kinds at the moment. +#description: + +# Affected component; usually one of "elastic-agent", "fleet-server", "filebeat", "metricbeat", "auditbeat", "all", etc. +component: "elastic-agent" + +# PR URL; optional; the PR number that added the changeset. +# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added. +# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number. +# Please provide it if you are adding a fragment for a different PR. +pr: https://github.com/elastic/elastic-agent/pull/6700 + +# Issue URL; optional; the GitHub issue related to this changeset (either closes or is part of). +# If not present is automatically filled by the tooling with the issue linked to the PR number. +#issue: https://github.com/owner/repo/1234 From 4dfdbd9923fe24de3cdbfd182e3bab7501499911 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 20:05:49 +0000 Subject: [PATCH 3/8] chore: Update version.asciidoc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- version/docs/version.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/docs/version.asciidoc b/version/docs/version.asciidoc index 64268931fc8..c85ec7ac9c8 100644 --- a/version/docs/version.asciidoc +++ b/version/docs/version.asciidoc @@ -3,7 +3,7 @@ // FIXME: once elastic.co docs have been switched over to use `main`, remove // the `doc-site-branch` line below as well as any references to it in the code. :doc-site-branch: master -:go-version: 1.22.11 +:go-version: 1.22.12 :release-state: unreleased :python: 3.7 :docker: 1.12 From 2ecf6a41bad08064837ab09fb650419f0487f077 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 20:05:54 +0000 Subject: [PATCH 4/8] chore: Update go.mod version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index acff3164a15..0e6ab9b11d5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/elastic/elastic-agent -go 1.22.11 +go 1.22.12 require ( github.com/Jeffail/gabs/v2 v2.6.0 From 07d2e4c0f6d5de81d2bc46220dff040a90b4e94a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 20:05:59 +0000 Subject: [PATCH 5/8] chore: Update from dockerfiles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- Dockerfile | 2 +- Dockerfile.skaffold | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 81c7b489b58..d14b635a4dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.22.11 +ARG GO_VERSION=1.22.12 FROM circleci/golang:${GO_VERSION} diff --git a/Dockerfile.skaffold b/Dockerfile.skaffold index 9e86e69530c..240406c9c06 100644 --- a/Dockerfile.skaffold +++ b/Dockerfile.skaffold @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.22.11 +ARG GO_VERSION=1.22.12 ARG crossbuild_image="docker.elastic.co/beats-dev/golang-crossbuild" ARG AGENT_VERSION=8.9.0-SNAPSHOT ARG AGENT_IMAGE="docker.elastic.co/beats/elastic-agent" From 858f2c3b2814dac4bc16013dcea6359792d23fda Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 20:06:04 +0000 Subject: [PATCH 6/8] chore: Update .golangci.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .golangci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index ff783454433..bf7d733c141 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -130,7 +130,7 @@ linters-settings: gosimple: # Select the Go version to target. The default is '1.13'. - go: "1.22.11" + go: "1.22.12" nolintlint: # Enable to ensure that nolint directives are all used. Default is true. @@ -146,17 +146,17 @@ linters-settings: staticcheck: # Select the Go version to target. The default is '1.13'. - go: "1.22.11" + go: "1.22.12" checks: ["all"] stylecheck: # Select the Go version to target. The default is '1.13'. - go: "1.22.11" + go: "1.22.12" checks: ["all"] unused: # Select the Go version to target. The default is '1.13'. - go: "1.22.11" + go: "1.22.12" gosec: excludes: From 2c2c376a901c68f35b4371ed7a975c96764191a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 20:06:09 +0000 Subject: [PATCH 7/8] chore: Update .go-version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .go-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.go-version b/.go-version index 3dfc2ecf954..2560439f071 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.22.11 +1.22.12 From 35ba55de517f125ab3817590cbeba25f57efc168 Mon Sep 17 00:00:00 2001 From: Craig MacKenzie Date: Mon, 10 Feb 2025 13:49:39 -0500 Subject: [PATCH 8/8] Update changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml --- changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml b/changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml index 7cc696c4b6e..526ce6230e6 100644 --- a/changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml +++ b/changelog/fragments/1738617834-Upgrade-to-Go-1.22.11..yaml @@ -11,7 +11,7 @@ kind: security # Change summary; a 80ish characters long description of the change. -summary: Upgrade to Go 1.22.11. +summary: Upgrade to Go 1.22.12. # Long description; in case the summary is not enough to describe the change # this field accommodate a description without length limits.