Skip to content

Commit 3673bf5

Browse files
authored
Upgrade Go to latest minor releases (#2256)
Summary: Upgrade Go to latest minor releases Relevant Issues: N/A Type of change: /kind dependencies Test Plan: Build should pass --------- Signed-off-by: Dom Del Nano <[email protected]>
1 parent 98f94b3 commit 3673bf5

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pl_go_overrides()
3333

3434
go_download_sdk(
3535
name = "go_sdk",
36-
version = "1.24.4",
36+
version = "1.24.6",
3737
)
3838

3939
go_rules_dependencies()
@@ -212,7 +212,7 @@ gazelle_dependencies(go_sdk = "go_sdk")
212212

213213
go_download_sdk(
214214
name = "go_sdk_1_23",
215-
version = "1.23.10",
215+
version = "1.23.12",
216216
)
217217

218218
# The go_sdk_boringcrypto SDK is used for testing boringcrypto specific functionality (TLS tracing).
@@ -225,7 +225,7 @@ go_download_sdk(
225225
go_download_sdk(
226226
name = "go_sdk_boringcrypto",
227227
experiments = ["boringcrypto"],
228-
version = "1.23.9",
228+
version = "1.23.11",
229229
)
230230

231231
pip_parse(

bazel/pl_build_system.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
2323
load("@rules_python//python:defs.bzl", "py_test")
2424
load("//bazel:toolchain_transitions.bzl", "qemu_interactive_runner")
2525

26-
pl_boringcrypto_go_sdk = ["1.23.9"]
26+
pl_boringcrypto_go_sdk = ["1.23.11"]
2727
pl_go_test_versions = ["1.18", "1.19", "1.20", "1.21", "1.22"]
2828
pl_supported_go_sdk_versions = ["1.23", "1.24"]
2929

docker.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
DOCKER_IMAGE_TAG=202507242250
2-
LINTER_IMAGE_DIGEST=911f172364626f44efb61345517b5e7bb8c8ee8f065fcf3ba0a790ab1a88cdcb
3-
DEV_IMAGE_DIGEST=08fc759c2b45078214be313335b8c3c23200aea54b9609e8c42fe367762e6c7c
4-
DEV_IMAGE_WITH_EXTRAS_DIGEST=0ecefa696cfad238c432c2e213600263d00dda4ca4a427796f8fc16eb3d9bfc0
1+
DOCKER_IMAGE_TAG=202508081946
2+
LINTER_IMAGE_DIGEST=85a928e7607ef9c0c78f7aa421b04e328d5085bb1698bcf7eec1dcb6d609e3c8
3+
DEV_IMAGE_DIGEST=4a116347d80d330e978d57552a9a49258fd615912cd8f94398a2281bb7e362eb
4+
DEV_IMAGE_WITH_EXTRAS_DIGEST=5b60b6fa4a98265da41a8ec4ec363bf946fd1b5d7b977d46bd6c6d941e183816

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module px.dev/pixie
22

3-
go 1.24.4
3+
go 1.24.6
44

55
require (
66
cloud.google.com/go v0.81.0

src/stirling/obj_tools/go_syms_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ TEST(ReadGoBuildInfoTest, BuildinfoEndianAgnostic) {
5858
ASSERT_OK_AND_ASSIGN(std::unique_ptr<ElfReader> elf_reader, ElfReader::Create(kPath));
5959
ASSERT_OK_AND_ASSIGN(auto pair, ReadGoBuildInfo(elf_reader.get()));
6060
auto version = pair.first;
61-
EXPECT_THAT(version, StrEq("1.24.4"));
61+
EXPECT_THAT(version, StrEq("1.24.6"));
6262
}
6363

6464
TEST(ReadGoBuildInfoTest, BuildinfoLittleEndian) {

src/stirling/source_connectors/dynamic_tracer/dynamic_tracing/dwarvifier_test.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1820,28 +1820,28 @@ probes {
18201820
scalar_var {
18211821
name: "main__IntStruct_sym_addr1"
18221822
type: UINT64
1823-
constant: "5103904"
1823+
constant: "5104096"
18241824
}
18251825
}
18261826
vars {
18271827
scalar_var {
18281828
name: "runtime__errorString_sym_addr2"
18291829
type: UINT64
1830-
constant: "5104192"
1830+
constant: "5104384"
18311831
}
18321832
}
18331833
vars {
18341834
scalar_var {
18351835
name: "runtime__plainError_sym_addr3"
18361836
type: UINT64
1837-
constant: "5104224"
1837+
constant: "5104416"
18381838
}
18391839
}
18401840
vars {
18411841
scalar_var {
18421842
name: "internal___poll__errNetClosing_sym_addr4"
18431843
type: UINT64
1844-
constant: "5104256"
1844+
constant: "5104448"
18451845
}
18461846
}
18471847
vars {

tools/chef/cookbooks/px_dev/attributes/linux.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
'648b599397548e4bb92429eec6391374c2cbb0edb835e3b3f03d4281c011f401'
3434

3535
default['golang']['download_path'] =
36-
'https://go.dev/dl/go1.24.4.linux-amd64.tar.gz'
36+
'https://go.dev/dl/go1.24.6.linux-amd64.tar.gz'
3737
default['golang']['sha256'] =
38-
'77e5da33bb72aeaef1ba4418b6fe511bc4d041873cbf82e5aa6318740df98717'
38+
'bbca37cc395c974ffa4893ee35819ad23ebb27426df87af92e93a9ec66ef8712'
3939

4040
default['golangci-lint']['download_path'] =
4141
'https://github.com/golangci/golangci-lint/releases/download/v2.0.2/golangci-lint-2.0.2-linux-amd64.tar.gz'

tools/chef/cookbooks/px_dev/attributes/mac_os_x.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
'8d3709d957c7115610e764621569728be102d213fee15bc1d1aa9d465eb2c258'
3535

3636
default['golang']['download_path'] =
37-
'https://go.dev/dl/go1.24.4.darwin-amd64.tar.gz'
37+
'https://go.dev/dl/go1.24.6.darwin-amd64.tar.gz'
3838
default['golang']['sha256'] =
39-
'69bef555e114b4a2252452b6e7049afc31fbdf2d39790b669165e89525cd3f5c'
39+
'4a8d7a32052f223e71faab424a69430455b27b3fff5f4e651f9d97c3e51a8746'
4040

4141
default['golangci-lint']['download_path'] =
4242
'https://github.com/golangci/golangci-lint/releases/download/v2.0.2/golangci-lint-2.0.2-darwin-amd64.tar.gz'

0 commit comments

Comments
 (0)