-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from phillc/master
Move release notes to github releases
- Loading branch information
Showing
7 changed files
with
101 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
- name: added-feature | ||
description: for new features in the changelog. | ||
color: a2eeef | ||
- name: changed | ||
description: for changes in existing functionality in the changelog. | ||
color: a2eeef | ||
- name: deprecated | ||
description: for soon-to-be removed features in the changelog. | ||
color: e4e669 | ||
- name: removed | ||
description: for now removed features in the changelog. | ||
color: e4e669 | ||
- name: bugfix | ||
description: for any bug fixes in the changelog. | ||
color: d73a4a | ||
- name: security | ||
description: for vulnerabilities in the changelog. | ||
color: dd4739 | ||
- name: bug | ||
description: Something isn't working in this issue. | ||
color: d73a4a | ||
- name: enhancement | ||
description: New feature request in this issue. | ||
color: a2eeef |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name-template: 'v$NEXT_PATCH_VERSION' | ||
tag-template: 'v$NEXT_PATCH_VERSION' | ||
categories: | ||
- title: '🚀 Added' | ||
label: 'added-feature' | ||
- title: '🧰 Changed' | ||
label: 'changed' | ||
- title: "⚠️ Deprecated" | ||
label: "deprecated" | ||
- title: "⚠️ Removed" | ||
label: "removed" | ||
- title: '🐛 Bug Fixes' | ||
label: 'bugfix' | ||
- title: "⚠️ Security" | ||
label: "security" | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
no-changes-template: "- No changes" | ||
template: | | ||
## Changes | ||
$CHANGES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Publish Docker Release | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Build | ||
run: make build-linux | ||
- name: Publish latest to Registry | ||
uses: elgohr/Publish-Docker-Github-Action@master | ||
with: | ||
name: linode/linode-blockstorage-csi-driver | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
tags: "latest,${{ github.event.release.tag_name }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Sync labels | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- .github/labels.yml | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: micnncim/action-label-syncer@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
manifest: .github/labels.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: release-drafter/release-drafter@v5 | ||
with: | ||
config-name: release-drafter.yml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1 @@ | ||
# Release History | ||
|
||
## [v0.1.3](https://github.com/linode/linode-blockstorage-csi-driver/compare/v0.1.0..v0.1.3) | ||
|
||
### Features | ||
|
||
* Support arbitrary root CAs | ||
|
||
## Enhancements | ||
|
||
* Update linodego to 0.10.0 (prepare to support 8+ volumes per VM) | ||
|
||
## v0.1.0 - March 2nd 2019 | ||
|
||
* per the CSI spec, fulfill volume requests with required\_size under 10GB by extending them to 10GB (the Linode minimum), unless that is over the limit size | ||
* added a storage class of `linode-block-storage-retain`, with a default reclaim policy of `Retain` (to avoid deletion of the Block Storage Volume data) | ||
|
||
## v0.0.3 - Dec 5th 2018 | ||
|
||
* Fixed mangling of hyphens in k8s stored volume keys (from prefixes, which affected mount) | ||
|
||
## v0.0.2 - Dec 4th 2018 | ||
|
||
* CSI 1.0.0 Rewrite, now requiring Kubernetes 1.13+ | ||
* Added `--bs-prefix` driver argument for prefixing created volume labels | ||
|
||
## v0.0.1 - Aug 14th 2018 | ||
|
||
* Work-In-Progress | ||
Release notes for this project are kept here: https://github.com/linode/linode-blockstorage-csi-driver/releases |