From 38bdf96866a514aeb420cd34793a1360f2525c4c Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 9 Jan 2025 15:02:24 +0000 Subject: [PATCH 1/2] chore(deps): upgrade configuration Upgrades project dependencies. See details in [workflow run]. [Workflow Run]: https://github.com/cdk8s-team/cdk8s-projen-common/actions/runs/12692532592 ------ *Automatically created by projen via the "upgrade-configuration-main" workflow* Signed-off-by: github-actions --- .projen/deps.json | 2 +- package.json | 4 ++-- yarn.lock | 16 ++++++++-------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.projen/deps.json b/.projen/deps.json index 15571fa5..61a9e9ff 100644 --- a/.projen/deps.json +++ b/.projen/deps.json @@ -53,7 +53,7 @@ }, { "name": "jest-junit", - "version": "^15", + "version": "^16", "type": "build" }, { diff --git a/package.json b/package.json index 3cb15a4b..8a5d107a 100644 --- a/package.json +++ b/package.json @@ -49,13 +49,13 @@ "eslint-import-resolver-typescript": "^2.7.1", "eslint-plugin-import": "^2.31.0", "jest": "^27", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "^1.106.0", "jsii-docgen": "^10.5.0", "jsii-pacmak": "^1.106.0", "jsii-rosetta": "~5.6.0", - "projen": "^0.91.5", + "projen": "^0.91.6", "ts-jest": "^27", "ts-node": "^10.9.2", "typescript": "^4.9.5" diff --git a/yarn.lock b/yarn.lock index 669e2061..ca9e6918 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3339,10 +3339,10 @@ jest-jasmine2@^27.5.1: pretty-format "^27.5.1" throat "^6.0.1" -jest-junit@^15: - version "15.0.0" - resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-15.0.0.tgz#a47544ab42e9f8fe7ada56306c218e09e52bd690" - integrity sha512-Z5sVX0Ag3HZdMUnD5DFlG+1gciIFSy7yIVPhOdGUi8YJaI9iLvvBb530gtQL2CHmv0JJeiwRZenr0VrSR7frvg== +jest-junit@^16: + version "16.0.0" + resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-16.0.0.tgz#d838e8c561cf9fdd7eb54f63020777eee4136785" + integrity sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ== dependencies: mkdirp "^1.0.4" strip-ansi "^6.0.1" @@ -4425,10 +4425,10 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -projen@^0.91.5: - version "0.91.5" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.91.5.tgz#139f4210b4c1f5d406577ff08a53cca05f70eaa2" - integrity sha512-j4gzywNELz3Adq5YZ6PoyyzZWXat29y7zdCi8pnkUjuuXdDJgx5dHDRM/KPyEJpo8ytx6hY5GOHsOZnea4/cgw== +projen@^0.91.6: + version "0.91.6" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.91.6.tgz#3e04c7e5987df18988096037efe392deda0bf2ad" + integrity sha512-azGxE8BDX7jkS+PovP8s70+wuURVOwtXYUh2z+kXbP11WDq4Gpfo5F/IyRQTI1kPrHR8sQbXkEnLGi2xIroBxA== dependencies: "@iarna/toml" "^2.2.5" case "^1.6.3" From 65ce77396e0718283ee8bb54a4b01cc12b1fe49c Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 9 Jan 2025 15:03:48 +0000 Subject: [PATCH 2/2] chore: self mutation Signed-off-by: github-actions --- API.md | 42 +++++++++++++++ test/projects/__snapshots__/jsii.test.ts.snap | 52 +++++++++---------- test/projects/__snapshots__/node.test.ts.snap | 36 ++++++------- .../__snapshots__/typescript.test.ts.snap | 40 +++++++------- 4 files changed, 106 insertions(+), 64 deletions(-) diff --git a/API.md b/API.md index de766d1b..e40e3fdd 100644 --- a/API.md +++ b/API.md @@ -4616,6 +4616,7 @@ const cdk8sTeamJsiiProjectOptions: Cdk8sTeamJsiiProjectOptions = { ... } | bugsEmail | string | The email address to which issues should be reported. | | bugsUrl | string | The url to your project's issue tracker. | | bundledDeps | string[] | List of dependencies to bundle into this module. | +| bunVersion | string | The version of Bun to use if using Bun as a package manager. | | codeArtifactOptions | projen.javascript.CodeArtifactOptions | Options for npm packages using AWS CodeArtifact. | | deps | string[] | Runtime dependencies of this module. | | description | string | The description is just a string that helps people understand the purpose of the package. | @@ -5292,6 +5293,19 @@ this will be what you `package.json` will eventually include. --- +##### `bunVersion`Optional + +```typescript +public readonly bunVersion: string; +``` + +- *Type:* string +- *Default:* "latest" + +The version of Bun to use if using Bun as a package manager. + +--- + ##### `codeArtifactOptions`Optional ```typescript @@ -7059,6 +7073,7 @@ const cdk8sTeamNodeProjectOptions: Cdk8sTeamNodeProjectOptions = { ... } | bugsEmail | string | The email address to which issues should be reported. | | bugsUrl | string | The url to your project's issue tracker. | | bundledDeps | string[] | List of dependencies to bundle into this module. | +| bunVersion | string | The version of Bun to use if using Bun as a package manager. | | codeArtifactOptions | projen.javascript.CodeArtifactOptions | Options for npm packages using AWS CodeArtifact. | | deps | string[] | Runtime dependencies of this module. | | description | string | The description is just a string that helps people understand the purpose of the package. | @@ -7710,6 +7725,19 @@ this will be what you `package.json` will eventually include. --- +##### `bunVersion`Optional + +```typescript +public readonly bunVersion: string; +``` + +- *Type:* string +- *Default:* "latest" + +The version of Bun to use if using Bun as a package manager. + +--- + ##### `codeArtifactOptions`Optional ```typescript @@ -9144,6 +9172,7 @@ const cdk8sTeamTypeScriptProjectOptions: Cdk8sTeamTypeScriptProjectOptions = { . | bugsEmail | string | The email address to which issues should be reported. | | bugsUrl | string | The url to your project's issue tracker. | | bundledDeps | string[] | List of dependencies to bundle into this module. | +| bunVersion | string | The version of Bun to use if using Bun as a package manager. | | codeArtifactOptions | projen.javascript.CodeArtifactOptions | Options for npm packages using AWS CodeArtifact. | | deps | string[] | Runtime dependencies of this module. | | description | string | The description is just a string that helps people understand the purpose of the package. | @@ -9814,6 +9843,19 @@ this will be what you `package.json` will eventually include. --- +##### `bunVersion`Optional + +```typescript +public readonly bunVersion: string; +``` + +- *Type:* string +- *Default:* "latest" + +The version of Bun to use if using Bun as a package manager. + +--- + ##### `codeArtifactOptions`Optional ```typescript diff --git a/test/projects/__snapshots__/jsii.test.ts.snap b/test/projects/__snapshots__/jsii.test.ts.snap index 384c161f..73dbc834 100644 --- a/test/projects/__snapshots__/jsii.test.ts.snap +++ b/test/projects/__snapshots__/jsii.test.ts.snap @@ -1544,7 +1544,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -2344,7 +2344,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -4115,7 +4115,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -4917,7 +4917,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -6157,7 +6157,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -6846,7 +6846,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -8180,7 +8180,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -8917,7 +8917,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -10116,7 +10116,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -10805,7 +10805,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -12139,7 +12139,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -12876,7 +12876,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -14075,7 +14075,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -14764,7 +14764,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -16095,7 +16095,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -16832,7 +16832,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -18549,7 +18549,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -19349,7 +19349,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -21072,7 +21072,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -21872,7 +21872,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -23593,7 +23593,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -24393,7 +24393,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -26214,7 +26214,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -27016,7 +27016,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", @@ -28739,7 +28739,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "jsii-diff", @@ -29539,7 +29539,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "jsii": "~5.6.0", "jsii-diff": "*", "jsii-docgen": "^10.5.0", diff --git a/test/projects/__snapshots__/node.test.ts.snap b/test/projects/__snapshots__/node.test.ts.snap index 76390012..2ead1aa4 100644 --- a/test/projects/__snapshots__/node.test.ts.snap +++ b/test/projects/__snapshots__/node.test.ts.snap @@ -793,7 +793,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -1401,7 +1401,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "commit-and-tag-version": "^12", "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { @@ -2151,7 +2151,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -2694,7 +2694,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "devDependencies": Object { "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { @@ -3403,7 +3403,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -3946,7 +3946,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "devDependencies": Object { "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { @@ -4655,7 +4655,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -5198,7 +5198,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "devDependencies": Object { "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { @@ -6013,7 +6013,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -6619,7 +6619,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "commit-and-tag-version": "^12", "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { @@ -7440,7 +7440,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -8046,7 +8046,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "commit-and-tag-version": "^12", "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { @@ -8867,7 +8867,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -9473,7 +9473,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "commit-and-tag-version": "^12", "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { @@ -10392,7 +10392,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -11000,7 +11000,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "commit-and-tag-version": "^12", "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { @@ -11821,7 +11821,7 @@ permissions-backup.acl Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -12427,7 +12427,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "commit-and-tag-version": "^12", "constructs": "^10.0.0", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", }, "engines": Object { diff --git a/test/projects/__snapshots__/typescript.test.ts.snap b/test/projects/__snapshots__/typescript.test.ts.snap index 2c4de969..be6ce48c 100644 --- a/test/projects/__snapshots__/typescript.test.ts.snap +++ b/test/projects/__snapshots__/typescript.test.ts.snap @@ -1133,7 +1133,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -1813,7 +1813,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -3162,7 +3162,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -3844,7 +3844,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -5070,7 +5070,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -5687,7 +5687,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -6872,7 +6872,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -7489,7 +7489,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -8671,7 +8671,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -9288,7 +9288,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -10586,7 +10586,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -11266,7 +11266,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -12567,7 +12567,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -13247,7 +13247,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -14545,7 +14545,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -15225,7 +15225,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -16627,7 +16627,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -17309,7 +17309,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*", @@ -18610,7 +18610,7 @@ tsconfig.tsbuildinfo Object { "name": "jest-junit", "type": "build", - "version": "^15", + "version": "^16", }, Object { "name": "projen", @@ -19290,7 +19290,7 @@ echo \\"Configured core.hooksPath to \${hooksdir}\\" "eslint-import-resolver-typescript": "*", "eslint-plugin-import": "*", "jest": "*", - "jest-junit": "^15", + "jest-junit": "^16", "projen": "*", "ts-jest": "*", "typescript": "*",