Skip to content

Commit eaca441

Browse files
authored
chore(release): 1.129.0 (#5097)
See [CHANGELOG](https://github.com/aws/jsii/blob/bump/1.129.0/CHANGELOG.md)
2 parents 749b9a9 + bdd773d commit eaca441

22 files changed

Lines changed: 1062 additions & 775 deletions

File tree

.github/workflows/issue-regression-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Fetch template body
1313
id: check_regression
14-
uses: actions/github-script@v8
14+
uses: actions/github-script@v9
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1717
TEMPLATE_BODY: ${{ github.event.issue.body }}

.github/workflows/yarn-upgrade.yml

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
contents: read
1414
runs-on: ubuntu-latest
1515
steps:
16-
- name: Check Out
16+
- name: Checkout
1717
uses: actions/checkout@v6
1818

1919
- name: Enable Corepack
2020
run: corepack enable
2121

22-
- name: Set up Node
22+
- name: Setup Node
2323
uses: actions/setup-node@v6
2424
with:
2525
cache: yarn
@@ -29,7 +29,7 @@ jobs:
2929
run: |-
3030
npm -g install lerna npm-check-updates@^20
3131
32-
- name: List Mono-Repo Packages
32+
- name: List Monorepo Packages
3333
id: monorepo-packages
3434
# These need to be ignored from the `ncu` runs!
3535
run: |-
@@ -75,31 +75,34 @@ jobs:
7575
# We special-case eslint-plugin-import because 26 is the last version that works for us.
7676
# We special-case glob because newer version don't support Node 18
7777
# We special-case @xmldom/xmldom because newer versions are not compatible with the code and jsii-rosetta 1.x is soon EOS
78+
# --cooldown=3 ignores package versions published in the last 3 days to reduce
79+
# the risk of pulling in newly published, potentially compromised packages.
80+
# This matches `npmMinimalAgeGate` in `.yarnrc.yml`.
7881
run: |-
7982
# Upgrade devDependencies at repository root
80-
ncu --upgrade --target=minor --filter=@types/inquirer,@types/node,@jest/types,jest-config,jest-circus,eslint
81-
ncu --upgrade --target=patch --filter=typescript
82-
ncu --upgrade --target=latest --reject=@types/inquirer,@types/node,typescript,@jest/types,jest-config,jest-circus,eslint,eslint-plugin-import
83+
ncu --upgrade --cooldown=3 --target=minor --filter=@types/inquirer,@types/node,@jest/types,jest-config,jest-circus,eslint
84+
ncu --upgrade --cooldown=3 --target=patch --filter=typescript
85+
ncu --upgrade --cooldown=3 --target=latest --reject=@types/inquirer,@types/node,typescript,@jest/types,jest-config,jest-circus,eslint,eslint-plugin-import
8386
8487
# Upgrade all production dependencies (and other always major-pinned dependencies)
85-
lerna exec --parallel ncu -- --upgrade --target=minor \
88+
lerna exec --parallel ncu -- --upgrade --cooldown=3 --target=minor \
8689
--filter='@types/diff,@types/fs-extra,${{ steps.production-dependencies.outputs.list }}' \
8790
--reject='typescript,@xmldom/xmldom,jsii,jsii-rosetta,${{ steps.monorepo-packages.outputs.list }}'
8891
8992
# Upgrade all minor-pinned dependencies
90-
lerna exec --parallel ncu -- --upgrade --target=patch \
93+
lerna exec --parallel ncu -- --upgrade --cooldown=3 --target=patch \
9194
--filter=typescript,@xmldom/xmldom
9295
9396
# Upgrade all other dependencies (devDependencies) to the latest
94-
lerna exec --parallel ncu -- --upgrade --target=latest \
97+
lerna exec --parallel ncu -- --upgrade --cooldown=3 --target=latest \
9598
--reject='@types/diff,@types/inquirer,@types/node,@types/fs-extra,@types/yargs,@xmldom/xmldom,glob,typescript,${{ steps.production-dependencies.outputs.list }},jsii,jsii-rosetta,${{ steps.monorepo-packages.outputs.list }}'
9699
97100
# This will ensure the current lockfile is up-to-date with the dependency specifications (necessary for "yarn update" to run)
98101
- name: Run "yarn install"
99-
run: yarn install
102+
run: yarn install --no-immutable
100103

101104
- name: Run "yarn up"
102-
run: yarn up '*'
105+
run: yarn up -R '*'
103106

104107
# Next, create and upload the changes as a patch file. This will later be downloaded to create a pull request
105108
# Creating a pull request requires write permissions and it's best to keep write privileges isolated.
@@ -121,7 +124,7 @@ jobs:
121124
pull-requests: write
122125
runs-on: ubuntu-latest
123126
steps:
124-
- name: Check Out
127+
- name: Checkout
125128
uses: actions/checkout@v6
126129

127130
- name: Download patch
@@ -131,7 +134,8 @@ jobs:
131134
path: ${{ runner.temp }}
132135

133136
- name: Apply patch
134-
run: '[ -s ${{ runner.temp }}/upgrade.patch ] && git apply ${{ runner.temp }}/upgrade.patch || echo "Empty patch. Skipping."'
137+
run: "[ -s ${{ runner.temp }}/upgrade.patch ] && git apply ${{ runner.temp
138+
}}/upgrade.patch || echo \"Empty patch. Skipping.\""
135139

136140
- name: Make Pull Request
137141
uses: peter-evans/create-pull-request@v8

.mergify/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,4 @@ priority_rules:
143143
conditions:
144144
- queue-name=default-squash
145145
priority: 2250
146+
allow_checks_interruption: true

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.129.0](https://github.com/aws/jsii/compare/v1.128.0...v1.129.0) (2026-04-30)
6+
7+
8+
### Bug Fixes
9+
10+
* **jsii-pacmak:** conditionally install mypy based on Python version ([#5093](https://github.com/aws/jsii/issues/5093)) ([32090f1](https://github.com/aws/jsii/commit/32090f1bb4152e8b925f9968d286ec6f758731ca)), closes [#5084](https://github.com/aws/jsii/issues/5084)
11+
512
## [1.128.0](https://github.com/aws/jsii/compare/v1.127.0...v1.128.0) (2026-04-09)
613

714

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"rejectCycles": true
1313
}
1414
},
15-
"version": "1.128.0",
15+
"version": "1.129.0",
1616
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
1717
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"all-contributors-cli": "^6.26.1",
2626
"eslint": "^9.39.4",
2727
"eslint-config-prettier": "^10.1.8",
28-
"eslint-import-resolver-node": "^0.3.9",
28+
"eslint-import-resolver-node": "^0.3.10",
2929
"eslint-import-resolver-typescript": "^4.4.4",
3030
"eslint-plugin-import": "2.31.0",
3131
"eslint-plugin-prettier": "^5.5.5",
@@ -34,8 +34,8 @@
3434
"jest-config": "^30.3.0",
3535
"jest-expect-message": "^1.1.3",
3636
"lerna": "^9.0.7",
37-
"npm-check-updates": "^20.0.0",
38-
"prettier": "^3.8.1",
37+
"npm-check-updates": "^22.0.1",
38+
"prettier": "^3.8.3",
3939
"standard-version": "^9.5.0",
4040
"ts-node": "^10.9.2",
4141
"typescript": "5.9.x"

packages/@jsii/go-runtime-test/project/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/aws/jsii/jsii-calc/go/scopejsiicalclib v0.0.0-devpreview
1010
github.com/stretchr/testify v1.11.1
1111
golang.org/x/lint v0.0.0-20241112194109-818c5a804067
12-
golang.org/x/tools v0.43.0
12+
golang.org/x/tools v0.44.0
1313
)
1414

1515
require (
@@ -18,13 +18,13 @@ require (
1818
github.com/davecgh/go-spew v1.1.1 // indirect
1919
github.com/fatih/color v1.19.0 // indirect
2020
github.com/mattn/go-colorable v0.1.14 // indirect
21-
github.com/mattn/go-isatty v0.0.20 // indirect
21+
github.com/mattn/go-isatty v0.0.22 // indirect
2222
github.com/pmezard/go-difflib v1.0.0 // indirect
2323
github.com/yuin/goldmark v1.7.16 // indirect
24-
golang.org/x/mod v0.34.0 // indirect
24+
golang.org/x/mod v0.35.0 // indirect
2525
golang.org/x/sync v0.20.0 // indirect
26-
golang.org/x/sys v0.42.0 // indirect
27-
golang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c // indirect
26+
golang.org/x/sys v0.43.0 // indirect
27+
golang.org/x/telemetry v0.0.0-20260409153401-be6f6cb8b1fa // indirect
2828
golang.org/x/tools/cmd/godoc v0.1.0-deprecated // indirect
2929
golang.org/x/tools/godoc v0.1.0-deprecated // indirect
3030
gopkg.in/yaml.v3 v3.0.1 // indirect

packages/@jsii/go-runtime-test/project/go.sum

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHP
1414
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
1515
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
1616
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
17+
github.com/mattn/go-isatty v0.0.21 h1:xYae+lCNBP7QuW4PUnNG61ffM4hVIfm+zUzDuSzYLGs=
18+
github.com/mattn/go-isatty v0.0.21/go.mod h1:ZXfXG4SQHsB/w3ZeOYbR0PrPwLy+n6xiMrJlRFqopa4=
19+
github.com/mattn/go-isatty v0.0.22 h1:j8l17JJ9i6VGPUFUYoTUKPSgKe/83EYU2zBC7YNKMw4=
20+
github.com/mattn/go-isatty v0.0.22/go.mod h1:ZXfXG4SQHsB/w3ZeOYbR0PrPwLy+n6xiMrJlRFqopa4=
1721
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1822
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1923
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
@@ -29,6 +33,8 @@ golang.org/x/mod v0.33.0 h1:tHFzIWbBifEmbwtGz65eaWyGiGZatSrT9prnU8DbVL8=
2933
golang.org/x/mod v0.33.0/go.mod h1:swjeQEj+6r7fODbD2cqrnje9PnziFuw4bmLbBZFrQ5w=
3034
golang.org/x/mod v0.34.0 h1:xIHgNUUnW6sYkcM5Jleh05DvLOtwc6RitGHbDk4akRI=
3135
golang.org/x/mod v0.34.0/go.mod h1:ykgH52iCZe79kzLLMhyCUzhMci+nQj+0XkbXpNYtVjY=
36+
golang.org/x/mod v0.35.0 h1:Ww1D637e6Pg+Zb2KrWfHQUnH2dQRLBQyAtpr/haaJeM=
37+
golang.org/x/mod v0.35.0/go.mod h1:+GwiRhIInF8wPm+4AoT6L0FA1QWAad3OMdTRx4tFYlU=
3238
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
3339
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
3440
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -43,16 +49,22 @@ golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
4349
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
4450
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
4551
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
52+
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
53+
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
4654
golang.org/x/telemetry v0.0.0-20260213145524-e0ab670178e1 h1:QNaHp8YvpPswfDNxlCmJyeesxbGOgaKf41iT9/QrErY=
4755
golang.org/x/telemetry v0.0.0-20260213145524-e0ab670178e1/go.mod h1:NuITXsA9cTiqnXtVk+/wrBT2Ja4X5hsfGOYRJ6kgYjs=
4856
golang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c h1:6a8FdnNk6bTXBjR4AGKFgUKuo+7GnR3FX5L7CbveeZc=
4957
golang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c/go.mod h1:TpUTTEp9frx7rTdLpC9gFG9kdI7zVLFTFFlqaH2Cncw=
58+
golang.org/x/telemetry v0.0.0-20260409153401-be6f6cb8b1fa h1:efT73AJZfAAUV7SOip6pWGkwJDzIGiKBZGVzHYa+ve4=
59+
golang.org/x/telemetry v0.0.0-20260409153401-be6f6cb8b1fa/go.mod h1:kHjTxDEnAu6/Nl9lDkzjWpR+bmKfxeiRuSDlsMb70gE=
5060
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
5161
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
5262
golang.org/x/tools v0.42.0 h1:uNgphsn75Tdz5Ji2q36v/nsFSfR/9BRFvqhGBaJGd5k=
5363
golang.org/x/tools v0.42.0/go.mod h1:Ma6lCIwGZvHK6XtgbswSoWroEkhugApmsXyrUmBhfr0=
5464
golang.org/x/tools v0.43.0 h1:12BdW9CeB3Z+J/I/wj34VMl8X+fEXBxVR90JeMX5E7s=
5565
golang.org/x/tools v0.43.0/go.mod h1:uHkMso649BX2cZK6+RpuIPXS3ho2hZo4FVwfoy1vIk0=
66+
golang.org/x/tools v0.44.0 h1:UP4ajHPIcuMjT1GqzDWRlalUEoY+uzoZKnhOjbIPD2c=
67+
golang.org/x/tools v0.44.0/go.mod h1:KA0AfVErSdxRZIsOVipbv3rQhVXTnlU6UhKxHd1seDI=
5668
golang.org/x/tools/cmd/godoc v0.1.0-deprecated h1:sEGTwp9aZNTHsdf/2BGaRqE4ZLndRVH17rbQ2OVun9Q=
5769
golang.org/x/tools/cmd/godoc v0.1.0-deprecated/go.mod h1:J6VY4iFch6TIm456U3fnw1EJZaIqcYlhHu6GpHQ9HJk=
5870
golang.org/x/tools/godoc v0.1.0-deprecated h1:o+aZ1BOj6Hsx/GBdJO/s815sqftjSnrZZwyYTHODvtk=

packages/@jsii/go-runtime/jsii-runtime-go/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ go 1.25.0
55
require (
66
github.com/Masterminds/semver/v3 v3.4.0
77
github.com/fatih/color v1.19.0
8-
github.com/mattn/go-isatty v0.0.20
8+
github.com/mattn/go-isatty v0.0.22
99
github.com/stretchr/testify v1.11.1
1010
golang.org/x/lint v0.0.0-20241112194109-818c5a804067
11-
golang.org/x/tools v0.43.0
11+
golang.org/x/tools v0.44.0
1212
golang.org/x/tools/cmd/godoc v0.1.0-deprecated
1313
)
1414

@@ -17,10 +17,10 @@ require (
1717
github.com/mattn/go-colorable v0.1.14 // indirect
1818
github.com/pmezard/go-difflib v1.0.0 // indirect
1919
github.com/yuin/goldmark v1.7.16 // indirect
20-
golang.org/x/mod v0.34.0 // indirect
20+
golang.org/x/mod v0.35.0 // indirect
2121
golang.org/x/sync v0.20.0 // indirect
22-
golang.org/x/sys v0.42.0 // indirect
23-
golang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c // indirect
22+
golang.org/x/sys v0.43.0 // indirect
23+
golang.org/x/telemetry v0.0.0-20260409153401-be6f6cb8b1fa // indirect
2424
golang.org/x/tools/godoc v0.1.0-deprecated // indirect
2525
gopkg.in/yaml.v3 v3.0.1 // indirect
2626
)

packages/@jsii/go-runtime/jsii-runtime-go/go.sum

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
88
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
99
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
1010
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
11-
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
12-
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
11+
github.com/mattn/go-isatty v0.0.22 h1:j8l17JJ9i6VGPUFUYoTUKPSgKe/83EYU2zBC7YNKMw4=
12+
github.com/mattn/go-isatty v0.0.22/go.mod h1:ZXfXG4SQHsB/w3ZeOYbR0PrPwLy+n6xiMrJlRFqopa4=
1313
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1414
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1515
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
@@ -21,24 +21,23 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
2121
golang.org/x/lint v0.0.0-20241112194109-818c5a804067 h1:adDmSQyFTCiv19j015EGKJBoaa7ElV0Q1Wovb/4G7NA=
2222
golang.org/x/lint v0.0.0-20241112194109-818c5a804067/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
2323
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
24-
golang.org/x/mod v0.34.0 h1:xIHgNUUnW6sYkcM5Jleh05DvLOtwc6RitGHbDk4akRI=
25-
golang.org/x/mod v0.34.0/go.mod h1:ykgH52iCZe79kzLLMhyCUzhMci+nQj+0XkbXpNYtVjY=
24+
golang.org/x/mod v0.35.0 h1:Ww1D637e6Pg+Zb2KrWfHQUnH2dQRLBQyAtpr/haaJeM=
25+
golang.org/x/mod v0.35.0/go.mod h1:+GwiRhIInF8wPm+4AoT6L0FA1QWAad3OMdTRx4tFYlU=
2626
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
2727
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
2828
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
2929
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
3030
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
3131
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
3232
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
33-
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
34-
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
35-
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
36-
golang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c h1:6a8FdnNk6bTXBjR4AGKFgUKuo+7GnR3FX5L7CbveeZc=
37-
golang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c/go.mod h1:TpUTTEp9frx7rTdLpC9gFG9kdI7zVLFTFFlqaH2Cncw=
33+
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
34+
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
35+
golang.org/x/telemetry v0.0.0-20260409153401-be6f6cb8b1fa h1:efT73AJZfAAUV7SOip6pWGkwJDzIGiKBZGVzHYa+ve4=
36+
golang.org/x/telemetry v0.0.0-20260409153401-be6f6cb8b1fa/go.mod h1:kHjTxDEnAu6/Nl9lDkzjWpR+bmKfxeiRuSDlsMb70gE=
3837
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
3938
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
40-
golang.org/x/tools v0.43.0 h1:12BdW9CeB3Z+J/I/wj34VMl8X+fEXBxVR90JeMX5E7s=
41-
golang.org/x/tools v0.43.0/go.mod h1:uHkMso649BX2cZK6+RpuIPXS3ho2hZo4FVwfoy1vIk0=
39+
golang.org/x/tools v0.44.0 h1:UP4ajHPIcuMjT1GqzDWRlalUEoY+uzoZKnhOjbIPD2c=
40+
golang.org/x/tools v0.44.0/go.mod h1:KA0AfVErSdxRZIsOVipbv3rQhVXTnlU6UhKxHd1seDI=
4241
golang.org/x/tools/cmd/godoc v0.1.0-deprecated h1:sEGTwp9aZNTHsdf/2BGaRqE4ZLndRVH17rbQ2OVun9Q=
4342
golang.org/x/tools/cmd/godoc v0.1.0-deprecated/go.mod h1:J6VY4iFch6TIm456U3fnw1EJZaIqcYlhHu6GpHQ9HJk=
4443
golang.org/x/tools/godoc v0.1.0-deprecated h1:o+aZ1BOj6Hsx/GBdJO/s815sqftjSnrZZwyYTHODvtk=

0 commit comments

Comments
 (0)