Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.41.4 #4161

Merged
merged 2 commits into from
Feb 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tag: v0.41.3
tag: v0.41.4

releaseNoteGenerator:
showCommitter: false
Expand Down
26 changes: 26 additions & 0 deletions docs/content/en/blog/releases/v0.41.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: "Release v0.41.4"
linkTitle: "Release v0.41.4"
date: 2023-02-07
description: >
Release v0.41.4
---

## Changes since v0.41.3

### New Features
* Templating commit message used by Event watcher ([#4120](https://github.com/pipe-cd/pipecd/pull/4120))
* Add environment variable expire web session ([#4127](https://github.com/pipe-cd/pipecd/pull/4127))

### Notable Changes
* Make all changes that not be listed in ignores but placed under appDir considered as touched commit ([#4157](https://github.com/pipe-cd/pipecd/pull/4157))

### Internal Changes
* tool: Replace set-output with GITHUB_OUTPUT ([#4155](https://github.com/pipe-cd/pipecd/pull/4155))
* Add pipecd builtin tags to ECS resources ([#4140](https://github.com/pipe-cd/pipecd/pull/4140))
* Add upgrade a release method for helm ([#4143](https://github.com/pipe-cd/pipecd/pull/4143))
* Add kubectl version to stage log ([#4137](https://github.com/pipe-cd/pipecd/pull/4137))
* Fix pod config for envoy upstreaming termination error ([#4134](https://github.com/pipe-cd/pipecd/pull/4134))
* Change build tag every time when make run/pipecd ([#4130](https://github.com/pipe-cd/pipecd/pull/4130))
* Fix parseCommitMsg's comment ([#4135](https://github.com/pipe-cd/pipecd/pull/4135))
* Fix docs wrong params name ([#4132](https://github.com/pipe-cd/pipecd/pull/4132))
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ Must be one of the following objects:
|-|-|-|-|
| name | string | The unique name of the configuration. | Yes |
| provider | string | The SSO service provider. Can be one of the following values<br>`GITHUB`, `GOOGLE`... | Yes |
| sessionTtl | int | The time to live of session for SSO login. Unit is `hour`. Default is 7 * 24 hours. | No |
| github | [SSOConfigGitHub](#ssoconfiggithub) | GitHub sso configuration. | No |
| google | [SSOConfigGoogle](#ssoconfiggoogle) | Google sso configuration. | No |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ Must be one of the following objects:
|-|-|-|-|
| name | string | The unique name of the configuration. | Yes |
| provider | string | The SSO service provider. Can be one of the following values<br>`GITHUB`, `GOOGLE`... | Yes |
| sessionTtl | int | The time to live of session for SSO login. Unit is `hour`. Default is 7 * 24 hours. | No |
| github | [SSOConfigGitHub](#ssoconfiggithub) | GitHub sso configuration. | No |
| google | [SSOConfigGoogle](#ssoconfiggoogle) | Google sso configuration. | No |

Expand Down