From c020bd59e3bf45698c0eeb73bd9a34ed620553c0 Mon Sep 17 00:00:00 2001 From: Giteabot Date: Tue, 2 May 2023 16:58:11 -0400 Subject: [PATCH 1/4] Enable whitespace rendering on selection in Monaco (#24444) (#24485) Backport #24444 by @silverwind Remove the [renderWhitespace](https://microsoft.github.io/monaco-editor/docs.html#interfaces/editor.IEditorOptions.html#renderWhitespace) override, so the default value of `selection` takes over and makes whitespace visible on selection. Screenshot 2023-04-30 at 19 09 41 Co-authored-by: silverwind --- web_src/js/features/codeeditor.js | 1 - 1 file changed, 1 deletion(-) diff --git a/web_src/js/features/codeeditor.js b/web_src/js/features/codeeditor.js index 23a26ba2b0d80..c6d55908f3a21 100644 --- a/web_src/js/features/codeeditor.js +++ b/web_src/js/features/codeeditor.js @@ -13,7 +13,6 @@ const baseOptions = { overviewRulerLanes: 0, renderLineHighlight: 'all', renderLineHighlightOnlyWhenFocus: true, - renderWhitespace: 'none', rulers: false, scrollbar: {horizontalScrollbarSize: 6, verticalScrollbarSize: 6}, scrollBeyondLastLine: false, From 2f1ff2d2101e1395c797e78e2bc913a8a61ea5d2 Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Tue, 2 May 2023 22:37:24 -0400 Subject: [PATCH 2/4] Add changelog for 1.19.3 --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9d1bab896cb3..d5c34fcab9826 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ This changelog goes through all the changes that have been made in each release without substantial changes to our git log; to see the highlights of what has been added to each release, please refer to the [blog](https://blog.gitea.io). +## [1.19.3](https://github.com/go-gitea/gitea/releases/tag/1.19.3) - 2023-05-02 + +* SECURITY + * Use golang 1.20.4 to fix CVE-2023-24539, CVE-2023-24540, and CVE-2023-29400 +* ENHANCEMENTS + * Enable whitespace rendering on selection in Monaco (#24444) (#24485) + * Improve milestone filter on issues page (#22423) (#24440) +* BUGFIXES + * Fix user-cards format (#24428) (#24431) + * Fix incorrect CurrentUser check for docker rootless (#24435) + * Getting the tag list does not require being signed in (#24413) (#24416) + ## [1.19.2](https://github.com/go-gitea/gitea/releases/tag/1.19.2) - 2023-04-26 * SECURITY From 2f14ed7fe2f81512d10c495c6db9d32f6451e421 Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Wed, 3 May 2023 10:25:49 -0400 Subject: [PATCH 3/4] Update CHANGELOG.md Co-authored-by: Yarden Shoham --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5c34fcab9826..5691a01671583 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.io). * Enable whitespace rendering on selection in Monaco (#24444) (#24485) * Improve milestone filter on issues page (#22423) (#24440) * BUGFIXES + * Fix api error message if fork exists (#24487) (#24493) * Fix user-cards format (#24428) (#24431) * Fix incorrect CurrentUser check for docker rootless (#24435) * Getting the tag list does not require being signed in (#24413) (#24416) From 27df314e71e8ed438e54f3c5929c8622d7ae6bdd Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Wed, 3 May 2023 10:25:54 -0400 Subject: [PATCH 4/4] Update CHANGELOG.md Co-authored-by: Yarden Shoham --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5691a01671583..e4e5c9368a122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ This changelog goes through all the changes that have been made in each release without substantial changes to our git log; to see the highlights of what has been added to each release, please refer to the [blog](https://blog.gitea.io). -## [1.19.3](https://github.com/go-gitea/gitea/releases/tag/1.19.3) - 2023-05-02 +## [1.19.3](https://github.com/go-gitea/gitea/releases/tag/1.19.3) - 2023-05-03 * SECURITY * Use golang 1.20.4 to fix CVE-2023-24539, CVE-2023-24540, and CVE-2023-29400