Skip to content

Commit 40c0251

Browse files
aws-cdk-automationgithub-actions
and
github-actions
authored
chore(deps): upgrade dependencies (#278)
Upgrades project dependencies. See details in [workflow run]. [Workflow Run]: https://github.com/aws/jsii-compiler/actions/runs/6018927279 ------ *Automatically created by projen via the "upgrade-maintenance-v5.1" workflow* Signed-off-by: github-actions <[email protected]> Co-authored-by: github-actions <[email protected]>
1 parent a2987ec commit 40c0251

13 files changed

+392
-176
lines changed

.gitattributes

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/auto-tag-dev-v5.1.yml

+59
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/auto-tag-releases-v5.1.yml

+59
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/upgrade-maintenance-v5.1.yml

+95
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/deps.json

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/files.json

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ import { SUPPORT_POLICY, SupportPolicy } from './projenrc/support';
66
import { UpdateIntegPackage } from './projenrc/update-integ-package';
77
import { UpgradeDependencies } from './projenrc/upgrade-dependencies';
88

9+
// See 'projenrc/support.ts' for TypeScript versions we are tracking. To add a new version:
10+
//
11+
// 1. Fork the current `main` to a maintenance branch:
12+
// `git push origin main:maintenance/v5.2`
13+
// 2. Edit `support.ts`, maintenance EOL date for the current version is 6 months from
14+
// today, make the new version current.
15+
// 3. `npx projen`
16+
// 4. Update the version list in the README.
17+
918
const project = new typescript.TypeScriptProject({
1019
projenrcTs: true,
1120

@@ -194,7 +203,7 @@ project.addDeps(
194203
'semver-intersect',
195204
'sort-json',
196205
'spdx-license-list',
197-
'typescript',
206+
`typescript@~${SUPPORT_POLICY.current}`,
198207
'yargs',
199208
);
200209

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,12 @@ The applicable _Maintenance & Support policy_ can be reviewed in [SUPPORT.md](./
287287

288288
The current status of `jsii` compiler releases is:
289289

290-
| Release | Status | Comment |
291-
| ------- | ----------- | ------------------------------------------------------------------------------------ |
292-
| `1.x` | Current | https://github.com/aws/jsii |
293-
| `5.1.x` | Current | ![](https://img.shields.io/npm/v/jsii/v5.1-latest?label=jsii%40v5.1-latest&logo=npm) |
294-
| `5.0.x` | Maintenance | ![](https://img.shields.io/npm/v/jsii/v5.0-latest?label=jsii%40v5.0-latest&logo=npm) |
290+
| Release | Status | Comment |
291+
| ------- | ----------- | --------------------------------------------------------------------------------------- |
292+
| `1.x` | Current | https://github.com/aws/jsii |
293+
| `5.2.x` | Current | ![npm](https://img.shields.io/npm/v/jsii/v5.2-latest?label=jsii%40v5.2-latest&logo=npm) |
294+
| `5.1.x` | Maintenance | ![npm](https://img.shields.io/npm/v/jsii/v5.1-latest?label=jsii%40v5.1-latest&logo=npm) |
295+
| `5.0.x` | Maintenance | ![npm](https://img.shields.io/npm/v/jsii/v5.0-latest?label=jsii%40v5.0-latest&logo=npm) |
295296

296297
## :balance_scale: License
297298

package.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projenrc/support.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ import { JsonFile, Project } from 'projen';
22
import type { ReleasesDocument } from '../src/support';
33

44
export const SUPPORT_POLICY: ReleasesDocument = {
5-
current: '5.1',
5+
current: '5.2',
66
maintenance: {
77
'5.0': new Date('2024-01-31'),
8+
'5.1': new Date('2024-02-28'),
89
},
910
};
1011

releases.json

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)