Skip to content

Commit 1ec79e6

Browse files
authored
Merge pull request #2926 from aws-observability/patch41
[release/v0.41.x]bump x/net and crypto dependencies to prepare for release v0.41.2
2 parents be293e1 + d6b60e0 commit 1ec79e6

File tree

86 files changed

+2529
-699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+2529
-699
lines changed

.github/workflows/CI.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ jobs:
193193

194194
# upload the binaries to artifact as well because cache@v3 hasn't support windows
195195
- name: Upload
196-
uses: actions/upload-artifact@v3
196+
uses: actions/upload-artifact@v4
197197
with:
198198
name: binary_artifacts
199199
path: build
@@ -206,7 +206,7 @@ jobs:
206206
- uses: actions/checkout@v4
207207

208208
- name: Download built artifacts
209-
uses: actions/download-artifact@v3
209+
uses: actions/download-artifact@v4
210210
with:
211211
name: binary_artifacts
212212
path: build
@@ -262,7 +262,7 @@ jobs:
262262
}
263263
Write-Output "Valid signature found from the package"
264264
- name: Upload the msi
265-
uses: actions/upload-artifact@v3
265+
uses: actions/upload-artifact@v4
266266
with:
267267
name: msi_artifacts
268268
path: "${{ env.PACKAGING_ROOT }}"
@@ -354,7 +354,7 @@ jobs:
354354
run: |
355355
ARCH=amd64 DEST=$PACKAGING_ROOT/debian/amd64 tools/packaging/debian/create_deb.sh
356356
ARCH=arm64 DEST=$PACKAGING_ROOT/debian/arm64 tools/packaging/debian/create_deb.sh
357-
357+
358358
- uses: aws-actions/configure-aws-credentials@v4
359359
with:
360360
role-to-assume: ${{ secrets.COLLECTOR_PROD_PKG_SIGNER_ROLE_ARN }}
@@ -433,7 +433,7 @@ jobs:
433433

434434
- name: Download built artifacts
435435
if: steps.cached_ssm.outputs.cache-hit != 'true'
436-
uses: actions/download-artifact@v3
436+
uses: actions/download-artifact@v4
437437
with:
438438
name: msi_artifacts
439439
path: "${{ env.PACKAGING_ROOT }}"
@@ -479,7 +479,7 @@ jobs:
479479

480480
- name: Download built artifacts
481481
if: steps.cached_packages.outputs.cache-hit != 'true'
482-
uses: actions/download-artifact@v3
482+
uses: actions/download-artifact@v4
483483
with:
484484
name: msi_artifacts
485485
path: "${{ env.PACKAGING_ROOT }}"
@@ -593,7 +593,7 @@ jobs:
593593
platforms : linux/amd64, linux/arm64
594594
labels: ${{ steps.meta.outputs.labels }}
595595

596-
get-testing-suites:
596+
get-testing-suites:
597597
runs-on: ubuntu-latest
598598
needs: [create-test-ref]
599599
outputs:
@@ -658,7 +658,7 @@ jobs:
658658
aws-region: us-west-2
659659
# 6 hours
660660
role-duration-seconds: 21600
661-
661+
662662
- name: Checkout testing framework
663663
uses: actions/checkout@v4
664664
with:
@@ -695,11 +695,11 @@ jobs:
695695
export TF_VAR_aoc_version=${{ needs.e2etest-preparation.outputs.version }}
696696
cd testing-framework/terraform
697697
make checkCacheHits
698-
698+
699699
# This is here just in case workflow cancel
700700
# We first kill terraform processes to ensure that no state
701701
# file locks are being held from SIGTERMS dispatched in previous
702-
# steps.
702+
# steps.
703703
- name: Destroy resources
704704
if: ${{ cancelled() }}
705705
shell: bash {0}
@@ -801,7 +801,7 @@ jobs:
801801
uses: actions/setup-go@v5
802802
with:
803803
go-version: ${{ env.GO_VERSION }}
804-
804+
805805
- name: Configure AWS Credentials
806806
uses: aws-actions/configure-aws-credentials@v4
807807
with:

.github/workflows/PR-build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323

2424
env:
2525
IMAGE_NAME: aws-otel-collector
26-
PACKAGING_ROOT: build/packages
26+
PACKAGING_ROOT: build/packages
2727
TESTING_FRAMEWORK_REPO: aws-observability/aws-otel-test-framework
2828
GO_VERSION: ~1.22.7
2929

@@ -49,7 +49,7 @@ jobs:
4949
echo "MDS=$(git diff --name-only --diff-filter=ACMRTUXB $(git merge-base origin/${{ github.event.pull_request.base.ref }} ${{ github.event.pull_request.head.sha }}) ${{ github.event.pull_request.head.sha }} | grep .md$ | grep -v vendor/ | xargs)" >> $GITHUB_ENV
5050
5151
- name: Install markdown-link-check
52-
run: npm install -g markdown-link-check
52+
run: npm install -g markdown-link-check@3.12.2
5353
if: ${{ env.MDS }}
5454

5555
- name: Run markdown-link-check
@@ -60,7 +60,7 @@ jobs:
6060
${{ env.MDS }} \
6161
|| { echo "Check that anchor links are lowercase"; exit 1; }
6262
if: ${{ env.MDS }}
63-
63+
6464
create-test-ref:
6565
runs-on: ubuntu-latest
6666
outputs:
@@ -109,7 +109,7 @@ jobs:
109109
if: ${{ needs.changes.outputs.changed == 'true' }}
110110
run: make apply-patches
111111

112-
# Set up building environment, patch the dev repo code on dispatch events.
112+
# Set up building environment, patch the dev repo code on dispatch events.
113113
- name: Set up Go 1.x
114114
if: ${{ needs.changes.outputs.changed == 'true' }}
115115
uses: actions/setup-go@v5
@@ -119,12 +119,12 @@ jobs:
119119
- name: install tools
120120
if: ${{ needs.changes.outputs.changed == 'true' }}
121121
run: make install-tools
122-
122+
123123
- name: Lint
124124
if: ${{ needs.changes.outputs.changed == 'true'}}
125125
run: make golint
126-
127-
# only run unit tests on windows. The unix build job will lint, test, and build.
126+
127+
# only run unit tests on windows. The unix build job will lint, test, and build.
128128
- name: Unit test
129129
if: ${{ needs.changes.outputs.changed == 'true'}}
130130
run: make gotest
@@ -145,7 +145,7 @@ jobs:
145145
if: ${{ needs.changes.outputs.changed == 'true' }}
146146
run: make apply-patches
147147

148-
# Set up building environment, patch the dev repo code on dispatch events.
148+
# Set up building environment, patch the dev repo code on dispatch events.
149149
- name: Set up Go 1.x
150150
if: ${{ needs.changes.outputs.changed == 'true' }}
151151
uses: actions/setup-go@v5
@@ -179,7 +179,7 @@ jobs:
179179
# upload the binaries to artifact as well because cache@v2 hasn't support windows
180180
- name: Upload
181181
if: ${{ needs.changes.outputs.changed == 'true' }}
182-
uses: actions/upload-artifact@v3
182+
uses: actions/upload-artifact@v4
183183
with:
184184
name: binary_artifacts
185185
path: build
@@ -195,7 +195,7 @@ jobs:
195195

196196
- name: Download built artifacts
197197
if: ${{ needs.changes.outputs.changed == 'true' }}
198-
uses: actions/download-artifact@v3
198+
uses: actions/download-artifact@v4
199199
with:
200200
name: binary_artifacts
201201
path: build
@@ -302,11 +302,11 @@ jobs:
302302
run: |
303303
matrix=$(python e2etest/get-testcases.py local_matrix)
304304
echo "matrix=$matrix" >> $GITHUB_OUTPUT
305-
305+
306306
- name: List testing suites
307307
run: |
308308
echo ${{ steps.set-matrix.outputs.matrix }}
309-
309+
310310
run-test-case:
311311
runs-on: ubuntu-latest
312312
needs: [changes, get-test-cases, build, create-test-ref]
@@ -364,7 +364,7 @@ jobs:
364364
registry: public.ecr.aws
365365
env:
366366
AWS_REGION: us-east-1
367-
367+
368368
- name: Run test
369369
if: ${{ needs.changes.outputs.changed == 'true' }}
370370
uses: nick-invision/retry@v2

.github/workflows/perf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
cd testing-framework/terraform/performance && terraform init && terraform apply -auto-approve -lock=false -var="data_rate=${{ matrix.data_rate }}" -var="commit_id=${{ needs.get-testing-version.outputs.commit_id }}" $opts -var="aoc_version=${{ needs.get-testing-version.outputs.testing_version }}" -var="testcase=../testcases/${{ matrix.testcase }}" -var="testing_ami=${{ matrix.testing_ami }}" -var="ssh_key_name=aoc-ssh-key-2022-09-13" -var="sshkey_s3_bucket=aoc-ssh-key" -var="sshkey_s3_private_key=aoc-ssh-key-2022-09-13.txt"
191191
192192
- name: Upload the performance model as an artifact
193-
uses: actions/upload-artifact@v3
193+
uses: actions/upload-artifact@v4
194194
with:
195195
name: "performance-model-${{ matrix.testcase }}-${{ matrix.data_rate }}-${{ matrix.testing_ami }}"
196196
path: testing-framework/terraform/performance/output/performance.json
@@ -216,7 +216,7 @@ jobs:
216216
run: pip install Jinja2
217217

218218
- name: get all artifacts
219-
uses: actions/download-artifact@v3
219+
uses: actions/download-artifact@v4
220220
with:
221221
path: artifacts
222222

.github/workflows/rollback.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
fi
175175
done
176176
- name: Upload versions artifact
177-
uses: actions/upload-artifact@v3
177+
uses: actions/upload-artifact@v4
178178
with:
179179
name: ${{ matrix.type }}-versions
180180
path: ${{ env.SSM_ARTIFACT_ROOT }}
@@ -322,7 +322,7 @@ jobs:
322322
aws-secret-access-key: ${{ secrets.RELEASE_CN_SECRET }}
323323
aws-region: cn-north-1
324324
- name: Download versions artifact
325-
uses: actions/download-artifact@v3
325+
uses: actions/download-artifact@v4
326326
with:
327327
name: ${{ matrix.type }}-versions
328328
path: ${{ env.SSM_ARTIFACT_ROOT }}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.41.1
1+
v0.41.2

docs/releases/v0.41.2.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
## [v0.41.2](https://github.com/aws-observability/aws-otel-collector/tree/v0.41.2) (2025-01-07)
4+
5+
[Full Changelog](https://github.com/aws-observability/aws-otel-collector/compare/v0.41.0...v0.41.2)
6+
7+
**Merged pull requests:**
8+
9+
- \[release/v0.41.x\] Bump golang.org/x/net, crypto dependences v0.33.0 and prepare release v0.41.2[\#2926](https://github.com/aws-observability/aws-otel-collector/pull/2926) ([vasireddy99](https://github.com/vasireddy99))
10+
11+
12+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ require (
7474
go.opentelemetry.io/collector/receiver/otlpreceiver v0.109.0
7575
go.uber.org/multierr v1.11.0
7676
go.uber.org/zap v1.27.0
77-
golang.org/x/sys v0.25.0
77+
golang.org/x/sys v0.28.0
7878
gopkg.in/natefinch/lumberjack.v2 v2.2.1
7979
)
8080

@@ -479,14 +479,14 @@ require (
479479
go.uber.org/atomic v1.11.0 // indirect
480480
go.uber.org/dig v1.18.0 // indirect
481481
go.uber.org/fx v1.22.2 // indirect
482-
golang.org/x/crypto v0.27.0 // indirect
482+
golang.org/x/crypto v0.31.0 // indirect
483483
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
484484
golang.org/x/mod v0.21.0 // indirect
485-
golang.org/x/net v0.29.0 // indirect
485+
golang.org/x/net v0.33.0 // indirect
486486
golang.org/x/oauth2 v0.22.0 // indirect
487-
golang.org/x/sync v0.8.0 // indirect
488-
golang.org/x/term v0.24.0 // indirect
489-
golang.org/x/text v0.18.0 // indirect
487+
golang.org/x/sync v0.10.0 // indirect
488+
golang.org/x/term v0.27.0 // indirect
489+
golang.org/x/text v0.21.0 // indirect
490490
golang.org/x/time v0.6.0 // indirect
491491
golang.org/x/tools v0.25.0 // indirect
492492
gonum.org/v1/gonum v0.15.1 // indirect

go.sum

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1499,8 +1499,8 @@ golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0
14991499
golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58=
15001500
golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU=
15011501
golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8=
1502-
golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A=
1503-
golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70=
1502+
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
1503+
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
15041504
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
15051505
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
15061506
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
@@ -1584,8 +1584,8 @@ golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
15841584
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
15851585
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
15861586
golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
1587-
golang.org/x/net v0.29.0 h1:5ORfpBpCs4HzDYoodCDBbwHzdR5UrLBZ3sOnUJmFoHo=
1588-
golang.org/x/net v0.29.0/go.mod h1:gLkgy8jTGERgjzMic6DS9+SP0ajcu6Xu3Orq/SpETg0=
1587+
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
1588+
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
15891589
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
15901590
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
15911591
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@@ -1607,8 +1607,8 @@ golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJ
16071607
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
16081608
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
16091609
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
1610-
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
1611-
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
1610+
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
1611+
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
16121612
golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
16131613
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
16141614
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
@@ -1684,16 +1684,16 @@ golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
16841684
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
16851685
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
16861686
golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
1687-
golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34=
1688-
golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
1687+
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
1688+
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
16891689
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
16901690
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
16911691
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
16921692
golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo=
16931693
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
16941694
golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY=
1695-
golang.org/x/term v0.24.0 h1:Mh5cbb+Zk2hqqXNO7S1iTjEphVL+jb8ZWaqh/g+JWkM=
1696-
golang.org/x/term v0.24.0/go.mod h1:lOBK/LVxemqiMij05LGJ0tzNr8xlmwBRJ81PX6wVLH8=
1695+
golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q=
1696+
golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM=
16971697
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
16981698
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
16991699
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
@@ -1708,8 +1708,8 @@ golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
17081708
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
17091709
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
17101710
golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
1711-
golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224=
1712-
golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
1711+
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
1712+
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
17131713
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
17141714
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
17151715
golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=

testbed/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -491,15 +491,15 @@ require (
491491
go.uber.org/fx v1.22.2 // indirect
492492
go.uber.org/multierr v1.11.0 // indirect
493493
go.uber.org/zap v1.27.0 // indirect
494-
golang.org/x/crypto v0.27.0 // indirect
494+
golang.org/x/crypto v0.31.0 // indirect
495495
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
496496
golang.org/x/mod v0.21.0 // indirect
497-
golang.org/x/net v0.29.0 // indirect
497+
golang.org/x/net v0.33.0 // indirect
498498
golang.org/x/oauth2 v0.22.0 // indirect
499-
golang.org/x/sync v0.8.0 // indirect
500-
golang.org/x/sys v0.25.0 // indirect
501-
golang.org/x/term v0.24.0 // indirect
502-
golang.org/x/text v0.18.0 // indirect
499+
golang.org/x/sync v0.10.0 // indirect
500+
golang.org/x/sys v0.28.0 // indirect
501+
golang.org/x/term v0.27.0 // indirect
502+
golang.org/x/text v0.21.0 // indirect
503503
golang.org/x/time v0.6.0 // indirect
504504
golang.org/x/tools v0.25.0 // indirect
505505
gonum.org/v1/gonum v0.15.1 // indirect

0 commit comments

Comments
 (0)