Skip to content

Commit 3877c35

Browse files
author
sanyaraj2424
committed
authorization-bypass:update go.mod
1 parent 80565fb commit 3877c35

7 files changed

Lines changed: 157 additions & 101 deletions

File tree

.github/workflows/go-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
go-version: ${{ needs.get-go-version.outputs.go-version }}
5252
- uses: golangci/golangci-lint-action@82d40c283aeb1f2b6595839195e95c2d6a49081b # v5.0.0
5353
with:
54-
version: v1.60.1
54+
version: v1.64.8
5555
only-new-issues: true
5656
check-fmt:
5757
needs:

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1.23.0
1+
1.24.12
22

.web-docs/components/builder/iso/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -964,9 +964,13 @@ used to do things such as set RAM, CPUs, etc.
964964
useful if, for example, packer hangs on a connection after a reboot.
965965
Example: `5m`. Disabled by default.
966966

967-
- `ssh_remote_tunnels` ([]string) -
967+
- `ssh_remote_tunnels` ([]string) - Remote tunnels forward a port from your local machine to the instance.
968+
Format: ["REMOTE_PORT:LOCAL_HOST:LOCAL_PORT"]
969+
Example: "9090:localhost:80" forwards localhost:9090 on your machine to port 80 on the instance.
968970

969-
- `ssh_local_tunnels` ([]string) -
971+
- `ssh_local_tunnels` ([]string) - Local tunnels forward a port from the instance to your local machine.
972+
Format: ["LOCAL_PORT:REMOTE_HOST:REMOTE_PORT"]
973+
Example: "8080:localhost:3000" allows the instance to access your local machine’s port 3000 via localhost:8080.
970974

971975
<!-- End of code generated from the comments of the SSH struct in communicator/config.go; -->
972976

.web-docs/components/builder/ovf/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -725,9 +725,13 @@ boot time.
725725
useful if, for example, packer hangs on a connection after a reboot.
726726
Example: `5m`. Disabled by default.
727727

728-
- `ssh_remote_tunnels` ([]string) -
728+
- `ssh_remote_tunnels` ([]string) - Remote tunnels forward a port from your local machine to the instance.
729+
Format: ["REMOTE_PORT:LOCAL_HOST:LOCAL_PORT"]
730+
Example: "9090:localhost:80" forwards localhost:9090 on your machine to port 80 on the instance.
729731

730-
- `ssh_local_tunnels` ([]string) -
732+
- `ssh_local_tunnels` ([]string) - Local tunnels forward a port from the instance to your local machine.
733+
Format: ["LOCAL_PORT:REMOTE_HOST:REMOTE_PORT"]
734+
Example: "8080:localhost:3000" allows the instance to access your local machine’s port 3000 via localhost:8080.
731735

732736
<!-- End of code generated from the comments of the SSH struct in communicator/config.go; -->
733737

.web-docs/components/builder/vm/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,9 +742,13 @@ boot time.
742742
useful if, for example, packer hangs on a connection after a reboot.
743743
Example: `5m`. Disabled by default.
744744

745-
- `ssh_remote_tunnels` ([]string) -
745+
- `ssh_remote_tunnels` ([]string) - Remote tunnels forward a port from your local machine to the instance.
746+
Format: ["REMOTE_PORT:LOCAL_HOST:LOCAL_PORT"]
747+
Example: "9090:localhost:80" forwards localhost:9090 on your machine to port 80 on the instance.
746748

747-
- `ssh_local_tunnels` ([]string) -
749+
- `ssh_local_tunnels` ([]string) - Local tunnels forward a port from the instance to your local machine.
750+
Format: ["LOCAL_PORT:REMOTE_HOST:REMOTE_PORT"]
751+
Example: "8080:localhost:3000" allows the instance to access your local machine’s port 3000 via localhost:8080.
748752

749753
<!-- End of code generated from the comments of the SSH struct in communicator/config.go; -->
750754

go.mod

Lines changed: 37 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
module github.com/hashicorp/packer-plugin-virtualbox
22

3-
go 1.23.0
4-
5-
toolchain go1.23.7
3+
go 1.24.12
64

75
require (
86
github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
97
github.com/hashicorp/go-version v1.6.0
108
github.com/hashicorp/hcl/v2 v2.19.1
119
github.com/hashicorp/packer-plugin-sdk v0.6.4
12-
github.com/stretchr/testify v1.10.0
10+
github.com/stretchr/testify v1.11.1
1311
github.com/zclconf/go-cty v1.13.3
14-
golang.org/x/mod v0.24.0
12+
golang.org/x/mod v0.30.0
1513
)
1614

1715
require (
18-
cloud.google.com/go v0.110.8 // indirect
19-
cloud.google.com/go/compute/metadata v0.3.0 // indirect
20-
cloud.google.com/go/iam v1.1.3 // indirect
21-
cloud.google.com/go/storage v1.35.1 // indirect
16+
cloud.google.com/go v0.112.2 // indirect
17+
cloud.google.com/go/auth v0.16.0 // indirect
18+
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
19+
cloud.google.com/go/compute/metadata v0.9.0 // indirect
20+
cloud.google.com/go/iam v1.1.6 // indirect
21+
cloud.google.com/go/storage v1.39.1 // indirect
2222
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
2323
github.com/ChrisTrenkamp/goxpath v0.0.0-20210404020558-97928f7e12b6 // indirect
2424
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -31,19 +31,21 @@ require (
3131
github.com/bodgit/ntlmssp v0.0.0-20240506230425-31973bb52d9b // indirect
3232
github.com/bodgit/windows v1.0.1 // indirect
3333
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
34+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3435
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3536
github.com/dylanmei/iso8601 v0.1.0 // indirect
3637
github.com/fatih/color v1.16.0 // indirect
37-
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
38-
github.com/go-logr/logr v1.4.1 // indirect
38+
github.com/felixge/httpsnoop v1.0.4 // indirect
39+
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
40+
github.com/go-logr/logr v1.4.3 // indirect
41+
github.com/go-logr/stdr v1.2.2 // indirect
3942
github.com/gofrs/flock v0.8.1 // indirect
4043
github.com/gofrs/uuid v4.4.0+incompatible // indirect
4144
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
42-
github.com/golang/protobuf v1.5.3 // indirect
43-
github.com/google/s2a-go v0.1.7 // indirect
44-
github.com/google/uuid v1.4.0 // indirect
45-
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
46-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
45+
github.com/google/s2a-go v0.1.9 // indirect
46+
github.com/google/uuid v1.6.0 // indirect
47+
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
48+
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
4749
github.com/hashicorp/consul/api v1.25.1 // indirect
4850
github.com/hashicorp/errwrap v1.1.0 // indirect
4951
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
@@ -97,23 +99,28 @@ require (
9799
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
98100
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
99101
go.opencensus.io v0.24.0 // indirect
100-
golang.org/x/crypto v0.36.0 // indirect
102+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
103+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
104+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
105+
go.opentelemetry.io/otel v1.39.0 // indirect
106+
go.opentelemetry.io/otel/metric v1.39.0 // indirect
107+
go.opentelemetry.io/otel/trace v1.39.0 // indirect
108+
golang.org/x/crypto v0.46.0 // indirect
101109
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
102110
golang.org/x/mobile v0.0.0-20210901025245-1fde1d6c3ca1 // indirect
103-
golang.org/x/net v0.38.0 // indirect
104-
golang.org/x/oauth2 v0.27.0 // indirect
105-
golang.org/x/sync v0.12.0 // indirect
106-
golang.org/x/sys v0.31.0 // indirect
107-
golang.org/x/term v0.30.0 // indirect
108-
golang.org/x/text v0.23.0 // indirect
111+
golang.org/x/net v0.48.0 // indirect
112+
golang.org/x/oauth2 v0.34.0 // indirect
113+
golang.org/x/sync v0.19.0 // indirect
114+
golang.org/x/sys v0.39.0 // indirect
115+
golang.org/x/term v0.38.0 // indirect
116+
golang.org/x/text v0.32.0 // indirect
109117
golang.org/x/time v0.11.0 // indirect
110-
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
111-
google.golang.org/api v0.150.0 // indirect
112-
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect
113-
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
114-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
115-
google.golang.org/grpc v1.59.0 // indirect
116-
google.golang.org/protobuf v1.33.0 // indirect
118+
google.golang.org/api v0.230.0 // indirect
119+
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
120+
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
121+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
122+
google.golang.org/grpc v1.79.3 // indirect
123+
google.golang.org/protobuf v1.36.10 // indirect
117124
gopkg.in/yaml.v2 v2.3.0 // indirect
118125
gopkg.in/yaml.v3 v3.0.1 // indirect
119126
)

0 commit comments

Comments
 (0)