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

Changelog update - v2023.1.0 #34

Merged
merged 1 commit into from
Oct 21, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
git config user.name "GitHub Action"

git checkout -b $BRANCH
git commit -am "Changelog update - $VERSION"
git commit -am "[DOCS] Changelog update - $VERSION"
git push --set-upstream origin $BRANCH

gh label create "$LABEL" \
Expand All @@ -97,7 +97,7 @@ jobs:
|| true

gh pr create \
--title "Changelog update - \`$VERSION\`" \
--title "[DOCS] Changelog update - \`$VERSION\`" \
--body "Current pull request contains patched \`CHANGELOG.md\` file for the \`$VERSION\` version." \
--label "$LABEL" \
--head $BRANCH
33 changes: 32 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,45 @@

## [Unreleased]

## [2023.1.0] - 2023-10-21

Breaking-Changes:

- Update base of plugin
- Dropped support for ides below 2022.3
- Updated gradle, qodana and jdk

Tasks:

- Update links from inf166 to mai-space
- Fix persistent settings https://github.com/mai-space/plugin-phpstorm-typo3-commit-template/issues/29
- Enhance settings layout in ide
- Make regex editable https://github.com/mai-space/plugin-phpstorm-typo3-commit-template/issues/30
- Refactor constants usage
- Fix multiple Issue Numbers in Branch name
- Add info bubble if subject line is over specified characters

## [2022.3.4] - 2023-04-03

Tasks:

- Make Plugin avaible for Version 2021 of PHPStorm

## [2022.3.3] - 2023-04-02

Tasks:

- Add newest Version 2023.1 to targeted versions

## [2022.3.2] - 2023-03-27

Tasks:

- Fix the extractIssueNo for PHPStorm
- Load lib git4idea

## [2022.3.1] - 2023-03-22

Tasks:

- Add null check for branch name util
Expand All @@ -30,19 +52,22 @@ Tasks:
## [1.0.6] - 2023-01-09

### Added

- Fixed Mac Shortcut error on startup
- Fixed show form
- Added settings panel
- Added persistent Settings

### Future Improvements

- Add Gitmoji Support (#18 )
- Add more settings to the reference list (like , seperated lists) (#18 )
- Disable fields of the template from the settings (#18 )

## [1.0.5] - 2023-01-03

### Added

- Add tooltips and placeholders
- Fixed TextArea resizing pushes other content over the panel
- Auto-Add Star for focus into TextArea
Expand All @@ -56,6 +81,7 @@ Tasks:
## [1.0.4] - 2022-12-21

### Added

- Refined regex patterns
- Fixed cancel Prompt results in Message Override
- Add multiple related issues function
Expand All @@ -64,9 +90,11 @@ Tasks:
- Parse Changelogs and replace dash with star

### General

- Fixed missing Link in Readme

### Code enhancements

- Local 'var' is never modified and can be declared as 'val'
- Redundant semicolon
- Unused import directive
Expand All @@ -78,18 +106,21 @@ Tasks:
## [1.0.3] - 2022-12-21

### Added

- Keyboard Shortcuts (untested)
- Reopening Commit Template parses old commit Message into Dialog

## [1.0.1] - 2022-12-20

### Added

- Choose Type of Commit
- Subject Line
- Done tasks, breaking changes, to-do changelog
- Dynamic Flags based on Input

[Unreleased]: https://github.com/mai-space/plugin-phpstorm-typo3-commit-template/compare/v2022.3.4...HEAD
[Unreleased]: https://github.com/mai-space/plugin-phpstorm-typo3-commit-template/compare/v2023.1.0...HEAD
[2023.1.0]: https://github.com/mai-space/plugin-phpstorm-typo3-commit-template/compare/v2022.3.4...v2023.1.0
[2022.3.4]: https://github.com/mai-space/plugin-phpstorm-typo3-commit-template/compare/v2022.3.3...v2022.3.4
[2022.3.3]: https://github.com/mai-space/plugin-phpstorm-typo3-commit-template/compare/v2022.3.2...v2022.3.3
[2022.3.2]: https://github.com/mai-space/plugin-phpstorm-typo3-commit-template/compare/v2022.3.1...v2022.3.2
Expand Down