diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b1ffec24d..76f78dcb3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.33.0] - 2022-04-29 +### Added +- Add cli support for repositories, users and groups ([#1987](https://github.com/scm-manager/scm-manager/pull/1987), [#1993](https://github.com/scm-manager/scm-manager/pull/1993)) + +### Fixed +- Table in code view breaks at certain screensizes ([#1995](https://github.com/scm-manager/scm-manager/pull/1995)) +- Freezing browser if large files with syntax highlighting were displayed ([#2010](https://github.com/scm-manager/scm-manager/pull/2010)) +- Multiline highlighting with line numbers ([#2010](https://github.com/scm-manager/scm-manager/pull/2010)) +- White space next to button group in code action bar missing at screen size 769px ([#2006](https://github.com/scm-manager/scm-manager/pull/2006)) +- Wrong label displayed above the action column in mobile mode for keys ([#1990](https://github.com/scm-manager/scm-manager/pull/1990)) +- Do not process index types which no longer exist ([#1985](https://github.com/scm-manager/scm-manager/pull/1985)) +- Incorrect log warning "could not set executable flag" +- Correct styling of syntax highlighter .section elements ([#1984](https://github.com/scm-manager/scm-manager/pull/1984)) +- Improve organization of variables in scss ([#1976](https://github.com/scm-manager/scm-manager/pull/1976)) +- Small tweaks in darkmode ([#1976](https://github.com/scm-manager/scm-manager/pull/1976)) +- Escape parenthesis for entity names to fix routing ([#1998](https://github.com/scm-manager/scm-manager/pull/1998)) +- Unnecessary re-render of markdown view ([#1999](https://github.com/scm-manager/scm-manager/pull/1999)) +- Handling of illegal lfs pointers ([#1994](https://github.com/scm-manager/scm-manager/pull/1994)) +- Open file handle prevent deleting a repository on Windows ([#2008](https://github.com/scm-manager/scm-manager/pull/2008)) +- Make focused buttons clearly visible ([#2009](https://github.com/scm-manager/scm-manager/pull/2009)) +- Label on focused button in high-contrast mode has enough contrast ([#2009](https://github.com/scm-manager/scm-manager/pull/2009)) + +### Changed +- Skip syntax highlighting on very large files ([#2010](https://github.com/scm-manager/scm-manager/pull/2010)) +- Omit default port in protocol urls ([#2014](https://github.com/scm-manager/scm-manager/pull/2014)) + ## [2.32.2] - 2022-03-23 ### Fixed - Some plugin bundles are executed multiple times ([#1980](https://github.com/scm-manager/scm-manager/pull/1980)) @@ -994,3 +1020,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [2.32.0]: https://scm-manager.org/download/2.32.0 [2.32.1]: https://scm-manager.org/download/2.32.1 [2.32.2]: https://scm-manager.org/download/2.32.2 +[2.33.0]: https://scm-manager.org/download/2.33.0 diff --git a/gradle/changelog/cli.yaml b/gradle/changelog/cli.yaml deleted file mode 100644 index 8766950241..0000000000 --- a/gradle/changelog/cli.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: added - description: Add cli support for repositories, users and groups ([#1987](https://github.com/scm-manager/scm-manager/pull/1987), [#1993](https://github.com/scm-manager/scm-manager/pull/1993)) diff --git a/gradle/changelog/code_action_bar_at_769px.yaml b/gradle/changelog/code_action_bar_at_769px.yaml deleted file mode 100644 index a3c359b127..0000000000 --- a/gradle/changelog/code_action_bar_at_769px.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: White space next to button group in code action bar missing at screen size 769px ([#2006](https://github.com/scm-manager/scm-manager/pull/2006)) diff --git a/gradle/changelog/darkmode_simplification.yaml b/gradle/changelog/darkmode_simplification.yaml deleted file mode 100644 index ef19a3a933..0000000000 --- a/gradle/changelog/darkmode_simplification.yaml +++ /dev/null @@ -1,4 +0,0 @@ -- type: fixed - description: Improve organization of variables in scss ([#1976](https://github.com/scm-manager/scm-manager/pull/1976)) -- type: fixed - description: Small tweaks in darkmode ([#1976](https://github.com/scm-manager/scm-manager/pull/1976)) diff --git a/gradle/changelog/fix_breaking_code_table.yaml b/gradle/changelog/fix_breaking_code_table.yaml deleted file mode 100644 index 4f0459e4b7..0000000000 --- a/gradle/changelog/fix_breaking_code_table.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Table in code view breaks at certain screensizes ([#1995](https://github.com/scm-manager/scm-manager/pull/1995)) diff --git a/gradle/changelog/fix_executable_warning.yaml b/gradle/changelog/fix_executable_warning.yaml deleted file mode 100644 index cd577325d8..0000000000 --- a/gradle/changelog/fix_executable_warning.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Incorrect log warning "could not set executable flag" diff --git a/gradle/changelog/fix_open_file_handles.yaml b/gradle/changelog/fix_open_file_handles.yaml deleted file mode 100644 index 8e13b093db..0000000000 --- a/gradle/changelog/fix_open_file_handles.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Open file handle prevent deleting a repository on Windows ([#2008](https://github.com/scm-manager/scm-manager/pull/2008)) diff --git a/gradle/changelog/highlighter_styling.yaml b/gradle/changelog/highlighter_styling.yaml deleted file mode 100644 index ab4b8df77a..0000000000 --- a/gradle/changelog/highlighter_styling.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Correct styling of syntax highlighter .section elements ([#1984](https://github.com/scm-manager/scm-manager/pull/1984)) diff --git a/gradle/changelog/index_type_npe.yaml b/gradle/changelog/index_type_npe.yaml deleted file mode 100644 index cf2b2fbbed..0000000000 --- a/gradle/changelog/index_type_npe.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Do not process index types which no longer exist ([#1985](https://github.com/scm-manager/scm-manager/pull/1985)) diff --git a/gradle/changelog/lfs_exception.yaml b/gradle/changelog/lfs_exception.yaml deleted file mode 100644 index 3d97d4314b..0000000000 --- a/gradle/changelog/lfs_exception.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Handling of illegal lfs pointers ([#1994](https://github.com/scm-manager/scm-manager/pull/1994)) diff --git a/gradle/changelog/markdown_rerender.yaml b/gradle/changelog/markdown_rerender.yaml deleted file mode 100644 index b1d3b20042..0000000000 --- a/gradle/changelog/markdown_rerender.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Unnecessary re-render of markdown view ([#1999](https://github.com/scm-manager/scm-manager/pull/1999)) diff --git a/gradle/changelog/mobile_public_key_table_head.yaml b/gradle/changelog/mobile_public_key_table_head.yaml deleted file mode 100644 index 8fa0f3d9ab..0000000000 --- a/gradle/changelog/mobile_public_key_table_head.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Wrong label displayed above the action column in mobile mode for keys ([#1990](https://github.com/scm-manager/scm-manager/pull/1990)) diff --git a/gradle/changelog/new_syntax_highlighting.yaml b/gradle/changelog/new_syntax_highlighting.yaml deleted file mode 100644 index 20ae629fff..0000000000 --- a/gradle/changelog/new_syntax_highlighting.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- type: fixed - description: Freezing browser if large files with syntax highlighting were displayed ([#2010](https://github.com/scm-manager/scm-manager/pull/2010)) -- type: fixed - description: Multiline highlighting with line numbers ([#2010](https://github.com/scm-manager/scm-manager/pull/2010)) -- type: changed - description: Skip syntax highlighting on very large files ([#2010](https://github.com/scm-manager/scm-manager/pull/2010)) diff --git a/gradle/changelog/omit_default_port.yaml b/gradle/changelog/omit_default_port.yaml deleted file mode 100644 index b1536d53bf..0000000000 --- a/gradle/changelog/omit_default_port.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: changed - description: Omit default port in protocol urls ([#2014](https://github.com/scm-manager/scm-manager/pull/2014)) diff --git a/gradle/changelog/url_escaping_for_parenthesis.yaml b/gradle/changelog/url_escaping_for_parenthesis.yaml deleted file mode 100644 index 8f18c89988..0000000000 --- a/gradle/changelog/url_escaping_for_parenthesis.yaml +++ /dev/null @@ -1,2 +0,0 @@ -- type: fixed - description: Escape parenthesis for entity names to fix routing ([#1998](https://github.com/scm-manager/scm-manager/pull/1998)) diff --git a/gradle/changelog/visibe_focused_button.yaml b/gradle/changelog/visibe_focused_button.yaml deleted file mode 100644 index 49502f408c..0000000000 --- a/gradle/changelog/visibe_focused_button.yaml +++ /dev/null @@ -1,4 +0,0 @@ -- type: fixed - description: Make focused buttons clearly visible ([#2009](https://github.com/scm-manager/scm-manager/pull/2009)) -- type: fixed - description: Label on focused button in high-contrast mode has enough contrast ([#2009](https://github.com/scm-manager/scm-manager/pull/2009))