Skip to content

Commit 125d467

Browse files
authored
Changelog for v3.60.0 (#237)
* Changelog for v3.60.0 * Fix dev version step
1 parent e217d4b commit 125d467

8 files changed

+35
-31
lines changed

.changes/unreleased/Improvements-201.yaml

-6
This file was deleted.

.changes/unreleased/Improvements-210.yaml

-6
This file was deleted.

.changes/unreleased/Improvements-219.yaml

-6
This file was deleted.

.changes/unreleased/Improvements-226.yaml

-6
This file was deleted.

.changes/unreleased/Improvements-235.yaml

-6
This file was deleted.

.changes/v3.60.0.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## v3.60.0 - 2024-03-05
2+
3+
### Improvements
4+
5+
- [sdk] Add environment add and remove commands to automation api [#210](https://github.com/pulumi/pulumi-dotnet/pull/210)
6+
7+
- [sdk] Update Grpc dependency. [#219](https://github.com/pulumi/pulumi-dotnet/pull/219)
8+
9+
- [sdk] Drop support for netcoreapp3.1 [#235](https://github.com/pulumi/pulumi-dotnet/pull/235)
10+
11+
- [sdk/auto] Add new API to install the Pulumi CLI from the Automation API [#226](https://github.com/pulumi/pulumi-dotnet/pull/226)
12+
13+
- [sdk/provider] Initial implementation of a reflection-based PropertyValue deserializer [#201](https://github.com/pulumi/pulumi-dotnet/pull/201)
14+

.github/workflows/pr.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,16 @@ jobs:
156156
uses: miniscruff/changie-action@v2
157157
with:
158158
args: next auto
159+
continue-on-error: true
160+
- name: Get the next patch version
161+
id: patch
162+
uses: miniscruff/changie-action@v2
163+
with:
164+
args: next patch
159165
- name: Stitch version together
160166
id: version
161167
run: |
162-
TAG="${{ steps.latest.outputs.output }}"
168+
TAG="${{ steps.latest.outputs.output || steps.patch.outputs.output }}"
163169
TAG="${TAG#v}" # remove prefix
164170
OID="$(git rev-parse --short HEAD)"
165171
PULUMI_VERSION="$TAG-alpha.$OID"

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
66
and is generated by [Changie](https://github.com/miniscruff/changie).
77

8+
## v3.60.0 - 2024-03-05
9+
10+
### Improvements
11+
12+
- [sdk] Add environment add and remove commands to automation api [#210](https://github.com/pulumi/pulumi-dotnet/pull/210)
13+
14+
- [sdk] Update Grpc dependency. [#219](https://github.com/pulumi/pulumi-dotnet/pull/219)
15+
16+
- [sdk] Drop support for netcoreapp3.1 [#235](https://github.com/pulumi/pulumi-dotnet/pull/235)
17+
18+
- [sdk/auto] Add new API to install the Pulumi CLI from the Automation API [#226](https://github.com/pulumi/pulumi-dotnet/pull/226)
19+
20+
- [sdk/provider] Initial implementation of a reflection-based PropertyValue deserializer [#201](https://github.com/pulumi/pulumi-dotnet/pull/201)
21+
822
## v3.59.0 - 2023-11-15
923

1024
### Improvements

0 commit comments

Comments
 (0)