From 43dbcc849de255886be721489231821dc3d86098 Mon Sep 17 00:00:00 2001 From: Justin Van Patten Date: Thu, 10 Oct 2024 08:29:51 -0700 Subject: [PATCH] Changelog for v1.11.1 (#663) ## v1.11.1 - 2024-10-10 ### Bug Fixes - [runtime] Revert go version in go.mod back to 1.21 [#662](https://github.com/pulumi/pulumi-yaml/pull/662) --- .changes/unreleased/Bug Fixes-662.yaml | 6 ------ .changes/v1.10.1.md | 4 ++-- .changes/v1.10.2.md | 2 +- .changes/v1.11.0.md | 8 ++++---- .changes/v1.11.1.md | 6 ++++++ .changie.yaml | 2 +- CHANGELOG.md | 20 +++++++++++++------- 7 files changed, 27 insertions(+), 21 deletions(-) delete mode 100644 .changes/unreleased/Bug Fixes-662.yaml create mode 100644 .changes/v1.11.1.md diff --git a/.changes/unreleased/Bug Fixes-662.yaml b/.changes/unreleased/Bug Fixes-662.yaml deleted file mode 100644 index 8b44e695..00000000 --- a/.changes/unreleased/Bug Fixes-662.yaml +++ /dev/null @@ -1,6 +0,0 @@ -component: runtime -kind: Bug Fixes -body: Revert go version in go.mod back to 1.21 -time: 2024-10-09T15:05:26.676777-07:00 -custom: - PR: "662" diff --git a/.changes/v1.10.1.md b/.changes/v1.10.1.md index fd716c8a..6ddac7d8 100644 --- a/.changes/v1.10.1.md +++ b/.changes/v1.10.1.md @@ -2,7 +2,7 @@ ### Bug Fixes -- [codegen] Add support for the stack, project, and organization builtins [#625](https://github.com/pulumi/pulumi-dotnet/pull/625) +- [codegen] Add support for the stack, project, and organization builtins [#625](https://github.com/pulumi/pulumi-yaml/pull/625) -- [runtime] Fix handling invokes that error out when the response contains secrets [#619](https://github.com/pulumi/pulumi-dotnet/pull/619) +- [runtime] Fix handling invokes that error out when the response contains secrets [#619](https://github.com/pulumi/pulumi-yaml/pull/619) diff --git a/.changes/v1.10.2.md b/.changes/v1.10.2.md index babaf260..f0660a1d 100644 --- a/.changes/v1.10.2.md +++ b/.changes/v1.10.2.md @@ -2,5 +2,5 @@ ### Bug Fixes -- [codegen] Fix GenerateProgram not using the Strict flag [#635](https://github.com/pulumi/pulumi-dotnet/pull/635) +- [codegen] Fix GenerateProgram not using the Strict flag [#635](https://github.com/pulumi/pulumi-yaml/pull/635) diff --git a/.changes/v1.11.0.md b/.changes/v1.11.0.md index f01221d5..ba28c033 100644 --- a/.changes/v1.11.0.md +++ b/.changes/v1.11.0.md @@ -2,13 +2,13 @@ ### Improvements -- [runtime] Update go version for GitHub workflows [#647](https://github.com/pulumi/pulumi-dotnet/pull/647) +- [runtime] Update go version for GitHub workflows [#647](https://github.com/pulumi/pulumi-yaml/pull/647) -- [runtime] Support for parameterized providers [#616](https://github.com/pulumi/pulumi-dotnet/pull/616) +- [runtime] Support for parameterized providers [#616](https://github.com/pulumi/pulumi-yaml/pull/616) ### Bug Fixes -- [runtime] Fix default component detection when declared later in file [#652](https://github.com/pulumi/pulumi-dotnet/pull/652) +- [runtime] Fix default component detection when declared later in file [#652](https://github.com/pulumi/pulumi-yaml/pull/652) -- [runtime] Build statically linked release binary with CGO disabled [#657](https://github.com/pulumi/pulumi-dotnet/pull/657) +- [runtime] Build statically linked release binary with CGO disabled [#657](https://github.com/pulumi/pulumi-yaml/pull/657) diff --git a/.changes/v1.11.1.md b/.changes/v1.11.1.md new file mode 100644 index 00000000..50ff7401 --- /dev/null +++ b/.changes/v1.11.1.md @@ -0,0 +1,6 @@ +## v1.11.1 - 2024-10-10 + +### Bug Fixes + +- [runtime] Revert go version in go.mod back to 1.21 [#662](https://github.com/pulumi/pulumi-yaml/pull/662) + diff --git a/.changie.yaml b/.changie.yaml index 007e18de..dcbbfa17 100644 --- a/.changie.yaml +++ b/.changie.yaml @@ -16,7 +16,7 @@ components: - codegen - runtime - convert -changeFormat: '- [{{.Component}}] {{.Body}} [#{{.Custom.PR}}](https://github.com/pulumi/pulumi-dotnet/pull/{{.Custom.PR}})' +changeFormat: '- [{{.Component}}] {{.Body}} [#{{.Custom.PR}}](https://github.com/pulumi/pulumi-yaml/pull/{{.Custom.PR}})' custom: - key: PR label: GitHub Pull Request diff --git a/CHANGELOG.md b/CHANGELOG.md index ef9028cf..034196a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,19 +5,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## v1.11.1 - 2024-10-10 + +### Bug Fixes + +- [runtime] Revert go version in go.mod back to 1.21 [#662](https://github.com/pulumi/pulumi-yaml/pull/662) + ## v1.11.0 - 2024-10-08 ### Improvements -- [runtime] Update go version for GitHub workflows [#647](https://github.com/pulumi/pulumi-dotnet/pull/647) +- [runtime] Update go version for GitHub workflows [#647](https://github.com/pulumi/pulumi-yaml/pull/647) -- [runtime] Support for parameterized providers [#616](https://github.com/pulumi/pulumi-dotnet/pull/616) +- [runtime] Support for parameterized providers [#616](https://github.com/pulumi/pulumi-yaml/pull/616) ### Bug Fixes -- [runtime] Fix default component detection when declared later in file [#652](https://github.com/pulumi/pulumi-dotnet/pull/652) +- [runtime] Fix default component detection when declared later in file [#652](https://github.com/pulumi/pulumi-yaml/pull/652) -- [runtime] Build statically linked release binary with CGO disabled [#657](https://github.com/pulumi/pulumi-dotnet/pull/657) +- [runtime] Build statically linked release binary with CGO disabled [#657](https://github.com/pulumi/pulumi-yaml/pull/657) ## v1.10.3 - 2024-09-19 @@ -25,15 +31,15 @@ and is generated by [Changie](https://github.com/miniscruff/changie). ### Bug Fixes -- [codegen] Fix GenerateProgram not using the Strict flag [#635](https://github.com/pulumi/pulumi-dotnet/pull/635) +- [codegen] Fix GenerateProgram not using the Strict flag [#635](https://github.com/pulumi/pulumi-yaml/pull/635) ## v1.10.1 - 2024-09-17 ### Bug Fixes -- [codegen] Add support for the stack, project, and organization builtins [#625](https://github.com/pulumi/pulumi-dotnet/pull/625) +- [codegen] Add support for the stack, project, and organization builtins [#625](https://github.com/pulumi/pulumi-yaml/pull/625) -- [runtime] Fix handling invokes that error out when the response contains secrets [#619](https://github.com/pulumi/pulumi-dotnet/pull/619) +- [runtime] Fix handling invokes that error out when the response contains secrets [#619](https://github.com/pulumi/pulumi-yaml/pull/619) ## 1.10.0 (2024-09-04)