Skip to content

Commit 2117ad5

Browse files
authored
chore(release): 1.127.0 (#5046)
See [CHANGELOG](https://github.com/aws/jsii/blob/bump/1.127.0/CHANGELOG.md)
2 parents 206d44b + 95c9a77 commit 2117ad5

File tree

62 files changed

+3851
-3029
lines changed

Some content is hidden

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

62 files changed

+3851
-3029
lines changed

.github/workflows/main.yml

Lines changed: 136 additions & 138 deletions
Large diffs are not rendered by default.

.github/workflows/yarn-upgrade.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/setup-node@v6
2121
with:
2222
cache: yarn
23-
node-version: 'lts/*'
23+
node-version: "lts/*"
2424

2525
- name: Install Tools
2626
run: |-
@@ -74,7 +74,7 @@ jobs:
7474
# We special-case @xmldom/xmldom because newer versions are not compatible with the code and jsii-rosetta 1.x is soon EOS
7575
run: |-
7676
# Upgrade devDependencies at repository root
77-
ncu --upgrade --target=minor --filter=@types/inquirer,@types/node,@jest/types,jest-config,jest-circus
77+
ncu --upgrade --target=minor --filter=@types/inquirer,@types/node,@jest/types,jest-config,jest-circus,eslint
7878
ncu --upgrade --target=patch --filter=typescript
7979
ncu --upgrade --target=latest --reject=@types/inquirer,@types/node,typescript,@jest/types,jest-config,jest-circus,eslint-plugin-import
8080
@@ -134,14 +134,14 @@ jobs:
134134
uses: peter-evans/create-pull-request@v8
135135
with:
136136
# Git commit details
137-
author: 'AWS CDK Automation <aws-cdk-automation@users.noreply.github.com>'
137+
author: "AWS CDK Automation <aws-cdk-automation@users.noreply.github.com>"
138138
branch: automation/yarn-upgrade
139139
commit-message: |-
140140
chore: npm-check-updates && yarn upgrade
141141
142142
Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date.
143143
# Pull Request details
144-
title: 'chore: npm-check-updates && yarn upgrade'
144+
title: "chore: npm-check-updates && yarn upgrade"
145145
body: |-
146146
Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date.
147147
labels: contribution/core,dependencies,auto-approve

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
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.127.0](https://github.com/aws/jsii/compare/v1.126.0...v1.127.0) (2026-02-25)
6+
7+
8+
### Bug Fixes
9+
10+
* **jsii-pacmak:** remove GOSUMDB=off from Go target ([#5044](https://github.com/aws/jsii/issues/5044)) ([0dbfb03](https://github.com/aws/jsii/commit/0dbfb0362dfb5bdb7385d699baa1588e29d859ef))
11+
* **spec:** bundle validators to inline ajv runtime dependencies ([#5040](https://github.com/aws/jsii/issues/5040)) ([f423bb6](https://github.com/aws/jsii/commit/f423bb60596fc1993b79dbece6c7ce4d0bdd8021))
12+
* **spec:** pre-compile JSON schema validators at build time ([#5039](https://github.com/aws/jsii/issues/5039)) ([43f0ec3](https://github.com/aws/jsii/commit/43f0ec3c3c174eea217815281c7dcbc3eccb203c))
13+
514
## [1.126.0](https://github.com/aws/jsii/compare/v1.125.0...v1.126.0) (2026-01-26)
615

716

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ in your development environment.
4242
- [`setuptools >= 38.6.0`](https://pypi.org/project/setuptools/)
4343
- [`wheel`](https://pypi.org/project/wheel/)
4444
- *Recommended:* [`twine`](https://pypi.org/project/twine/)
45-
- [Go] `1.23` or newer
45+
- [Go] `1.25` or newer
4646

4747
[Node.js]: https://nodejs.org/en/download
4848
[Yarn]: https://yarnpkg.com/en/docs/install

eslint-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ parserOptions:
1414
ecmaVersion: 2020
1515
impliedStrict: true
1616
sourceType: script
17-
project: ./**/tsconfig.json
17+
projectService: true
1818

1919
extends:
2020
- eslint:recommended
@@ -208,7 +208,7 @@ rules:
208208

209209
'no-restricted-properties':
210210
- error
211-
- { property: "substr", message: "Use .slice instead of .substr." }
211+
- { property: 'substr', message: 'Use .slice instead of .substr.' }
212212

213213
'no-return-await':
214214
- error

gh-pages/content/user-guides/lib-author/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ to produce releasable artifacts.
1717
| Language/Platform | SDK Requirement |
1818
| ----------------- | ------------------------- |
1919
| .NET | .NET ≥ 6.0 |
20-
| Go | Go ≥ 1.23 |
20+
| Go | Go ≥ 1.25 |
2121
| Java | JDK ≥ 8 _and_ Maven ≥ 3.6 |
2222
| Python | Python ≥ 3.9 |
2323

gh-pages/content/user-guides/lib-user/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ as follows:
1313
For specific languages, these are the minimum runtime versions that are supported by the `jsii` toolchain:
1414

1515
| Runtime | Version |
16-
|---------|---------|
16+
| ------- | ------- |
1717
| .NET | 6.0 |
1818
| Java | 8 |
19-
| Go | 1.23 |
19+
| Go | 1.25 |
2020
| Python | 3.9 |
2121

2222
[runtime architecture]: ../../overview/runtime-architecture.md

gh-pages/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
mkdocs~=1.6.1
22
mkdocs-awesome-pages-plugin~=2.10.1
3-
mkdocs-material~=9.7.1
3+
mkdocs-material~=9.7.2
44
mkdocs-git-revision-date-plugin~=0.3.2

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.126.0",
15+
"version": "1.127.0",
1616
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
1717
}

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@
1919
"@jest/types": "^29.6.3",
2020
"@types/jest": "^30.0.0",
2121
"@types/node": "^18",
22-
"@typescript-eslint/eslint-plugin": "^8.40.0",
23-
"@typescript-eslint/parser": "^8.40.0",
22+
"@typescript-eslint/eslint-plugin": "^8.56.0",
23+
"@typescript-eslint/parser": "^8.56.0",
2424
"all-contributors-cli": "^6.26.1",
2525
"eslint": "^9.33.0",
2626
"eslint-config-prettier": "^10.1.8",
2727
"eslint-import-resolver-node": "^0.3.9",
2828
"eslint-import-resolver-typescript": "^4.4.4",
2929
"eslint-plugin-import": "2.31.0",
30-
"eslint-plugin-prettier": "^5.5.4",
31-
"jest": "^30.0.5",
32-
"jest-circus": "^30.0.5",
33-
"jest-config": "^30.0.5",
30+
"eslint-plugin-prettier": "^5.5.5",
31+
"jest": "^30.2.0",
32+
"jest-circus": "^30.2.0",
33+
"jest-config": "^30.2.0",
3434
"jest-expect-message": "^1.1.3",
35-
"lerna": "^8.2.3",
36-
"npm-check-updates": "^18.0.2",
37-
"prettier": "^3.6.2",
35+
"lerna": "^9.0.4",
36+
"npm-check-updates": "^19.3.2",
37+
"prettier": "^3.8.1",
3838
"standard-version": "^9.5.0",
3939
"ts-node": "^10.9.2",
4040
"typescript": "5.9.x"

0 commit comments

Comments
 (0)