Skip to content

Commit

Permalink
build(changelog): ease down on the changelog updates, remove 'unrelea…
Browse files Browse the repository at this point in the history
…sed' part (mainsail-crew#669)
  • Loading branch information
pataar authored Feb 21, 2022
1 parent 4f96e16 commit 90eabb6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 65 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/update_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ on:
push:
tags:
- '*'
# Update the changelog everyday
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '1 0 * * *'

# Update the changelog by invoking this workflow manually
workflow_dispatch:
Expand All @@ -31,17 +27,10 @@ jobs:
id: git-cliff
with:
config: cliff.toml
args: v0.0.4..${{ steps.latest_tag.outputs.TAG_NAME }} --strip header
args: v0.0.4..${{ steps.latest_tag.outputs.TAG_NAME }}
env:
OUTPUT: CHANGELOG.md

- name: Generate the unreleased changelog
uses: orhun/git-cliff-action@v1
id: git-cliff-unreleased
with:
config: cliff.toml
args: --unreleased --prepend CHANGELOG.md --strip footer

- name: show CHANGELOG
run: |
cat CHANGELOG.md
Expand Down
52 changes: 0 additions & 52 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,6 @@
# Changelog
All notable changes to Mainsail will be documented in this file.

## [unreleased]
### Bug Fixes

- **env**: Parse environment variable as string (#632) | [d3172fa](d3172fa3537c6c2087bcfcc319dd164420b0e6e1)
- Video and download link in timelapse video dialog (#611) | [5f0c4ba](5f0c4baacad69ef0a0f43a7b6a04839bded24fb0)
- Console error regarding touch directive (#633) | [fc86125](fc86125ebd9cc32622ea324905a3fb906013efba)
- Import bugfixes from release v2.1.2 (#639) | [7890d1e](7890d1e004f99b70ea9d2aa52152876fe6aad6f3)

### Documentation

- Split up quicktips (#584) | [4f9581f](4f9581f3a0481430e32b080a92a4512c4b74c8ec)
- Cleanup assets folder (#601) | [c6432d5](c6432d5b3c5667ee8c12ca4ea595682f64fe4b0e)
- Update credits (#602) | [02d5f6b](02d5f6b8c31c09fef08ffb109468cecb55e8208e)

### Features

- **pwa**: Add PWA support for https based instances (#654) | [db9b19e](db9b19ef0fabbb49ac7118c1353b0d74773b20f2)
- Add custom number input component (#638) | [fa20b19](fa20b19a5b0f58b8b826482e1384361f16379a44)
- Multiselect in history jobs (#509) | [455a3aa](455a3aa19489cfbcbdf740077e3274153d6448c4)
- Display only existing/useable bed_mesh profiles (#660) | [82f756c](82f756c6ae6243591d84ec3c1f85973ed7133b05)
- Add localization options to NumberInput.vue (#661) | [a0d4c66](a0d4c66d6c8b7ce09afca5db0a819e74cfec8904)
- Add profile name field to calibrate bed_mesh dialog (#664) | [f974372](f974372cbebde56733947b20d155b6d93413ed63)
- Rework heightmap page (#667) | [96b212e](96b212e8dc86f58fef6edd02ff10fe7fe36da573)

### Localization

- **da**: Update da.json (#596) | [a15cb3c](a15cb3cbeb02d9122b0fd50331c1559faddb4ba3)
- **pl**: Bugfix 29/01/2022 (#598) | [e9157f1](e9157f14c6b1b467ecee770ae4f8e2f9bcbcfc4f)
- **pl**: Update 03.02.2022 (#606) | [30abb68](30abb687a349123ab14156b2a102752be4aa17f9)

### Performance

- Load codemirror into a chunk for faster LCP (#641) | [6563b7c](6563b7ce4782b8c8cfd287d223634bfba46aefbf)
- Replace echart library and load it modular (#645) | [fe92b97](fe92b97940a4508705aebf179ffb4e2453150558)

### Refactor

- Migrate `longpress.js` to `longpress.ts` (#619) | [c589a49](c589a495a6ef55bfbb1a498a052ac9d2f56a2acf)
- Replace 'vue-headful' with 'vue-meta' (#620) | [0cf8ba0](0cf8ba05be1a3e43201b94914ab150efe4562a8c)
- Make sure that port '80' and '443' are correctly passed through (#631) | [fd22cc2](fd22cc297d0df7c3a5c82fc5a510b1cb682f88fd)
- Move rename button in heightmap (#665) | [d30ad58](d30ad5858ad89d0de0e3a2640ad7dbacb76fe9a4)

### Styling

- Add prettier as default formatter (#614) | [04b6992](04b6992f3c202634948ee7c6afa9cd2c517f7af9)
- Use prettier on other file formats as well (#648) | [615ee73](615ee73801588fdda28494e490a7525719a3d835)
- Improve prettier integration (#662) | [72e0ca8](72e0ca8e837697b8947a7358dbc5eaa58477df5b)

### Testing

- Add cypress for e2e testing (#655) | [cc1615a](cc1615acd4b841887b8220e2647a69cdb559c6b2)

## [2.1.2](https://github.com/mainsail-crew/mainsail/releases/tag/v2.1.2) - 2022-02-14
### Release

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"start": "vite preview",
"test": "npm run build && cypress run",
"test:ui": "cypress open",
"changelog": "git cliff v0.0.4..$(git describe --tags $(git rev-list --tags --max-count=1)) --strip header --output CHANGELOG.md && git cliff --unreleased --prepend CHANGELOG.md --strip footer"
"changelog": "git cliff v0.0.4..$(git describe --tags $(git rev-list --tags --max-count=1)) --output CHANGELOG.md"
},
"dependencies": {
"@codemirror/basic-setup": "^0.19.0",
Expand Down

0 comments on commit 90eabb6

Please sign in to comment.