From b90347860e14f2e3a8acf9b6c62a18b4b1885171 Mon Sep 17 00:00:00 2001 From: AWS CDK Team Date: Fri, 24 Feb 2023 08:51:10 +0000 Subject: [PATCH 1/3] chore(release): 1.76.0 --- CHANGELOG.md | 17 +++++++++++++++++ lerna.json | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d871b5234f..7bc3d359c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ 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. +## [1.76.0](https://github.com/aws/jsii/compare/v1.75.0...v1.76.0) (2023-02-24) + + +### ⚠ BREAKING CHANGES + +* **dotnet:** The runtime library for .NET & generated .NET bindings will no longer support netcoreapp3.1 after this release. Users are advised to upgrade their apps to use net6.0 or net7.0 instead. + +### Features + +* **dotnet:** update TargetFramework to net6.0 ([#3957](https://github.com/aws/jsii/issues/3957)) ([ae335ed](https://github.com/aws/jsii/commit/ae335edc7aef0d918a4bbd32880d4b272a21da7d)), closes [aws/aws-cdk#23926](https://github.com/aws/aws-cdk/issues/23926) [aws/aws-cdk#23921](https://github.com/aws/aws-cdk/issues/23921) +* **go:** add JSII_NODE to override node entrypoint ([#3890](https://github.com/aws/jsii/issues/3890)) ([357562a](https://github.com/aws/jsii/commit/357562a4340a40b3ffb869497b40d552fcfbbcdd)), closes [#3889](https://github.com/aws/jsii/issues/3889) + + +### Bug Fixes + +* JSII_RUNTIME_PACKAGE_CACHE improper case bug ([#3912](https://github.com/aws/jsii/issues/3912)) ([9c27b6e](https://github.com/aws/jsii/commit/9c27b6eb164ec0f86cafa96b7e1cb49517471abc)), closes [#3911](https://github.com/aws/jsii/issues/3911) + ## [1.75.0](https://github.com/aws/jsii/compare/v1.74.0...v1.75.0) (2023-02-14) diff --git a/lerna.json b/lerna.json index 14fe116bbc..e5e8d8191f 100644 --- a/lerna.json +++ b/lerna.json @@ -10,5 +10,5 @@ "rejectCycles": true } }, - "version": "1.75.0" + "version": "1.76.0" } From ec3588a552396f5955976886a33db084758d220e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=A7=91=F0=9F=8F=BB=E2=80=8D=F0=9F=92=BB=20Romain=20M?= =?UTF-8?q?arcadier?= Date: Fri, 24 Feb 2023 10:32:28 +0100 Subject: [PATCH 2/3] chore: fix dotnet pack command to work with .NET 7+ See: https://steven-giesel.com/blogPost/554ba273-9594-4d55-aac2-1366e28954b3 --- tools/jsii-build-tools/bin/package-dotnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/jsii-build-tools/bin/package-dotnet b/tools/jsii-build-tools/bin/package-dotnet index 50f2c18b5d..38bc16ee99 100755 --- a/tools/jsii-build-tools/bin/package-dotnet +++ b/tools/jsii-build-tools/bin/package-dotnet @@ -4,4 +4,4 @@ set -euo pipefail mkdir -p dist/dotnet dotnet build --force -c Release $1 -dotnet pack --include-symbols --include-source --output dist/dotnet -c Release $1 +dotnet pack --include-symbols --include-source --property:PackageOutputPath=dist/dotnet -c Release $1 From ff991fc6674c295fca7338b4ba0bee9fdeb69e25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=A7=91=F0=9F=8F=BB=E2=80=8D=F0=9F=92=BB=20Romain=20M?= =?UTF-8?q?arcadier?= Date: Fri, 24 Feb 2023 14:59:38 +0100 Subject: [PATCH 3/3] chore: fully qualify package path --- tools/jsii-build-tools/bin/package-dotnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/jsii-build-tools/bin/package-dotnet b/tools/jsii-build-tools/bin/package-dotnet index 38bc16ee99..737a785cfa 100755 --- a/tools/jsii-build-tools/bin/package-dotnet +++ b/tools/jsii-build-tools/bin/package-dotnet @@ -4,4 +4,4 @@ set -euo pipefail mkdir -p dist/dotnet dotnet build --force -c Release $1 -dotnet pack --include-symbols --include-source --property:PackageOutputPath=dist/dotnet -c Release $1 +dotnet pack --include-symbols --include-source --property:PackageOutputPath=${PWD}/dist/dotnet -c Release $1