Skip to content

Commit d5d44e9

Browse files
authored
chore(release): 1.122.0 (#5009)
See [CHANGELOG](https://github.com/aws/jsii/blob/bump/1.122.0/CHANGELOG.md)
2 parents d7af9b9 + 4982bef commit d5d44e9

File tree

11 files changed

+319
-1573
lines changed

11 files changed

+319
-1573
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
ref: gh-pages
6060
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
6161
- name: Download Artifact
62-
uses: actions/download-artifact@v6
62+
uses: actions/download-artifact@v7
6363
with:
6464
name: doc-site
6565
path: ${{ runner.temp }}/site

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install python3-venv
5252
run: sudo apt install -y python3-venv
5353
- name: Cache
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
path: |-
5757
~/.m2/repository
@@ -133,7 +133,7 @@ jobs:
133133
- name: Install python3-venv
134134
run: sudo apt install -y python3-venv
135135
- name: Cache
136-
uses: actions/cache@v4
136+
uses: actions/cache@v5
137137
with:
138138
path: |-
139139
~/.m2/repository
@@ -324,7 +324,7 @@ jobs:
324324
steps:
325325
# Check out the code
326326
- name: Download Artifact
327-
uses: actions/download-artifact@v6
327+
uses: actions/download-artifact@v7
328328
with:
329329
name: built-tree
330330
- name: Extract Artifact
@@ -367,7 +367,7 @@ jobs:
367367
yarn config set cache-folder D:\a\_temp\yarn
368368
echo "TEMP=D:\a\_temp" >> $env:GITHUB_ENV
369369
- name: Cache
370-
uses: actions/cache@v4
370+
uses: actions/cache@v5
371371
with:
372372
path: |-
373373
~/.m2/repository
@@ -424,7 +424,7 @@ jobs:
424424
steps:
425425
# Check out the code
426426
- name: Download Artifact
427-
uses: actions/download-artifact@v6
427+
uses: actions/download-artifact@v7
428428
with:
429429
name: release-package
430430
path: ${{ runner.temp }}/release-package

.github/workflows/yarn-upgrade.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
uses: actions/checkout@v6
123123

124124
- name: Download patch
125-
uses: actions/download-artifact@v6
125+
uses: actions/download-artifact@v7
126126
with:
127127
name: upgrade.patch
128128
path: ${{ runner.temp }}
@@ -131,7 +131,7 @@ jobs:
131131
run: '[ -s ${{ runner.temp }}/upgrade.patch ] && git apply ${{ runner.temp }}/upgrade.patch || echo "Empty patch. Skipping."'
132132

133133
- name: Make Pull Request
134-
uses: peter-evans/create-pull-request@v7
134+
uses: peter-evans/create-pull-request@v8
135135
with:
136136
# Git commit details
137137
author: 'AWS CDK Automation <[email protected]>'

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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.122.0](https://github.com/aws/jsii/compare/v1.121.0...v1.122.0) (2025-12-22)
6+
7+
8+
### Bug Fixes
9+
10+
* **pacmak:** dependency ranges make Maven download too many files ([#5006](https://github.com/aws/jsii/issues/5006)) ([2198295](https://github.com/aws/jsii/commit/2198295d6c45250894ecb9f1eb9e96f4b8256b6f))
11+
* **pacmak:** generates too many methods for Java ([#5007](https://github.com/aws/jsii/issues/5007)) ([018396e](https://github.com/aws/jsii/commit/018396e4cec2a2cc916e5ca2bb6a8fa9fa9be7e8))
12+
513
## [1.121.0](https://github.com/aws/jsii/compare/v1.120.0...v1.121.0) (2025-12-09)
614

715

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.0
3+
mkdocs-material~=9.7.1
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.121.0",
15+
"version": "1.122.0",
1616
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
1717
}

packages/@jsii/python-runtime/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
black~=25.11
2-
mypy==1.19.0
2+
mypy==1.19.1
33
pip~=25.3
44
pytest~=8.4
55
pytest-mypy~=1.0

0 commit comments

Comments
 (0)