Skip to content

Commit 4da927d

Browse files
fix: update projen to 0.87.4 (#447)
Signed-off-by: team-tf-cdk <[email protected]> Co-authored-by: team-tf-cdk <[email protected]>
1 parent d07a44e commit 4da927d

File tree

12 files changed

+1137
-571
lines changed

12 files changed

+1137
-571
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/build.yml

Lines changed: 20 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/release.yml

Lines changed: 13 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/upgrade-main.yml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/deps.json

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/tasks.json

Lines changed: 8 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const project = new cdk.JsiiProject({
3939
pullRequestTemplate: false,
4040
jsiiVersion: "~5.3.0",
4141
typescriptVersion: "~5.3.0", // should always be the same major/minor as JSII
42-
peerDeps: ["projen@^0.85.0", "constructs@^10.3.0"],
42+
peerDeps: ["projen@^0.87.4", "constructs@^10.3.0"],
4343
deps: ["change-case", "fs-extra"],
4444
bundledDeps: ["change-case", "fs-extra"],
4545
defaultReleaseBranch: "main",

API.md

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,10 +358,10 @@ export class CdktfProviderProject extends cdk.JsiiProject {
358358
const oldExistingTagRun: string = checkExistingTagStep.run;
359359
prettyAssertEqual(
360360
oldExistingTagRun.split("\n")[0],
361-
"TAG=$(cat dist/dist/releasetag.txt)",
361+
"TAG=$(cat dist/releasetag.txt)",
362362
"release step changed, please check if the workaround still works!"
363363
);
364-
checkExistingTagStep.run = `if [ ! -f dist/dist/releasetag.txt ]; then (echo "exists=true" >> $GITHUB_OUTPUT) && exit 0; fi\n${oldExistingTagRun}`;
364+
checkExistingTagStep.run = `if [ ! -f dist/releasetag.txt ]; then (echo "exists=true" >> $GITHUB_OUTPUT) && exit 0; fi\n${oldExistingTagRun}`;
365365

366366
if (!isDeprecated) {
367367
const { upgrade, pr } = (this.upgradeWorkflow as any).workflows[0].jobs;
@@ -372,7 +372,7 @@ export class CdktfProviderProject extends cdk.JsiiProject {
372372
// Fix maven issue (https://github.com/cdklabs/publib/pull/777)
373373
github.GitHub.of(this)?.tryFindWorkflow("release")?.file?.patch(
374374
JsonPatch.add(
375-
"/jobs/release_maven/steps/8/env/MAVEN_OPTS",
375+
"/jobs/release_maven/steps/10/env/MAVEN_OPTS",
376376
// See https://stackoverflow.com/questions/70153962/nexus-staging-maven-plugin-maven-deploy-failed-an-api-incompatibility-was-enco
377377
"--add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED"
378378
)

0 commit comments

Comments
 (0)