Skip to content

Commit 5b200f9

Browse files
committed
Merge remote-tracking branch 'gitea/release/v1.22' into release/v1.22
2 parents 69324fb + 494017e commit 5b200f9

File tree

216 files changed

+3339
-1312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+3339
-1312
lines changed

.github/ISSUE_TEMPLATE/bug-report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
value: |
1212
1. Please speak English, this is the language all maintainers can speak and write.
1313
2. Please ask questions or configuration/deploy problems on our Discord
14-
server (https://discord.gg/gitea) or forum (https://discourse.gitea.io).
14+
server (https://discord.gg/gitea) or forum (https://forum.gitea.com).
1515
3. Make sure you are using the latest release and
1616
take a moment to check that your issue hasn't been reported before.
1717
4. Make sure it's not mentioned in the FAQ (https://docs.gitea.com/help/faq)

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ contact_links:
77
url: https://discord.gg/Gitea
88
about: Please ask questions and discuss configuration or deployment problems here.
99
- name: Discourse Forum
10-
url: https://discourse.gitea.io
10+
url: https://forum.gitea.com
1111
about: Questions and configuration or deployment problems can also be discussed on our forum.
1212
- name: Frequently Asked Questions
1313
url: https://docs.gitea.com/help/faq

.github/ISSUE_TEMPLATE/feature-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
value: |
88
1. Please speak English, this is the language all maintainers can speak and write.
99
2. Please ask questions or configuration/deploy problems on our Discord
10-
server (https://discord.gg/gitea) or forum (https://discourse.gitea.io).
10+
server (https://discord.gg/gitea) or forum (https://forum.gitea.com).
1111
3. Please take a moment to check that your feature hasn't already been suggested.
1212
- type: textarea
1313
id: description

.github/ISSUE_TEMPLATE/ui.bug-report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
value: |
1212
1. Please speak English, this is the language all maintainers can speak and write.
1313
2. Please ask questions or configuration/deploy problems on our Discord
14-
server (https://discord.gg/gitea) or forum (https://discourse.gitea.io).
14+
server (https://discord.gg/gitea) or forum (https://forum.gitea.com).
1515
3. Please take a moment to check that your issue doesn't already exist.
1616
4. Make sure it's not mentioned in the FAQ (https://docs.gitea.com/help/faq)
1717
5. Please give all relevant information below for bug reports, because

.github/workflows/pull-db-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,9 @@ jobs:
194194
test-mssql:
195195
if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.actions == 'true'
196196
needs: files-changed
197-
runs-on: ubuntu-latest
197+
# specifying the version of ubuntu in use as mssql fails on newer kernels
198+
# pending resolution from vendor
199+
runs-on: ubuntu-20.04
198200
services:
199201
mssql:
200202
image: mcr.microsoft.com/mssql/server:2017-latest

CHANGELOG.md

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,103 @@ This changelog goes through the changes that have been made in each release
44
without substantial changes to our git log; to see the highlights of what has
55
been added to each release, please refer to the [blog](https://blog.gitea.com).
66

7+
## [1.22.3](https://github.com/go-gitea/gitea/releases/tag/1.22.3) - 2024-10-08
8+
9+
* SECURITY
10+
* Fix bug when a token is given public only (#32204) (#32218)
11+
* PERFORMANCE
12+
* Increase `cacheContextLifetime` to reduce false reports (#32011) (#32023)
13+
* Don't join repository when loading action table data (#32127) (#32143)
14+
* BUGFIXES
15+
* Fix javascript error when an anonymous user visits migration page (#32144) (#32179)
16+
* Don't init signing keys if oauth2 provider is disabled (#32177)
17+
* Fix wrong status of `Set up Job` when first step is skipped (#32120) (#32125)
18+
* Fix bug when deleting a migrated branch (#32075) (#32123)
19+
* Truncate commit message during Discord webhook push events (#31970) (#32121)
20+
* Allow to set branch protection in an empty repository (#32095) (#32119)
21+
* Fix panic when cloning with wrong ssh format. (#32076) (#32118)
22+
* Fix rename branch permission bug (#32066) (#32108)
23+
* Fix: database not update release when using `git push --tags --force` (#32040) (#32074)
24+
* Add missing comment reply handling (#32050) (#32065)
25+
* Do not escape relative path in RPM primary index (#32038) (#32054)
26+
* Fix `/repos/{owner}/{repo}/pulls/{index}/files` endpoint not populating `previous_filename` (#32017) (#32028)
27+
* Support allowed hosts for migrations to work with proxy (#32025) (#32026)
28+
* Fix the logic of finding the latest pull review commit ID (#32139) (#32165)
29+
* Fix bug in getting merged pull request by commit (#32079) (#32117)
30+
* Fix wrong last modify time (#32102) (#32104)
31+
* Fix incorrect `/tokens` api (#32085) (#32092)
32+
* Handle invalid target when creating releases using API (#31841) (#32043)
33+
* Check if the `due_date` is nil when editing issues (#32035) (#32042)
34+
* Fix container parallel upload bugs (#32022)
35+
* Fixed race condition when deleting documents by repoId in ElasticSearch (#32185) (#32188)
36+
* Refactor CSRF protector (#32057) (#32069)
37+
* Fix Bug in Issue/pulls list (#32081) (#32115)
38+
* Include collaboration repositories on dashboard source/forks/mirrors list (#31946) (#32122)
39+
* Add null check for responseData.invalidTopics (#32212) (#32217)
40+
* TESTING
41+
* Fix mssql ci with a new mssql version on ci (#32094)
42+
* MISC
43+
* Upgrade some dependencies include minio-go (#32166)
44+
* Add bin to Composer Metadata (#32099) (#32106)
45+
* Lazy load avatar images (#32051) (#32063)
46+
* Upgrade cache to v0.2.1 (#32003) (#32009)
47+
48+
## [1.22.2](https://github.com/go-gitea/gitea/releases/tag/1.22.2) - 2024-08-28
49+
50+
* Security
51+
* Replace v-html with v-text in search inputbox (#31966) (#31973)
52+
* Fix nuget/conan/container packages upload bugs (#31967) (#31982)
53+
* PERFORMANCE
54+
* Refactor the usage of batch catfile (#31754) (#31889)
55+
* BUGFIXES
56+
* Fix overflowing content in action run log (#31842) (#31853)
57+
* Scroll images in project issues separately from the remaining issue (#31683) (#31823)
58+
* Add `:focus-visible` style to buttons (#31799) (#31819)
59+
* Fix the display of project type for deleted projects (#31732) (#31734)
60+
* Fix API owner ID should be zero when created repo secret (#31715) (#31811)
61+
* Set owner id to zero when GetRegistrationToken for repo (#31725) (#31729)
62+
* Fix API endpoint for registration-token (#31722) (#31728)
63+
* Add permission check when creating PR (#31033) (#31720)
64+
* Don't return 500 if mirror url contains special chars (#31859) (#31895)
65+
* Fix agit automerge (#31207) (#31881)
66+
* Add CfTurnstileSitekey context data to all captcha templates (#31874) (#31876)
67+
* Avoid returning without written ctx when posting PR (#31843) (#31848)
68+
* Fix raw wiki links (#31825) (#31845)
69+
* Fix panic of ssh public key page after deletion of auth source (#31829) (#31836)
70+
* Fixes for unreachable project issues when transfer repository from organization (#31770) (#31828)
71+
* Show lock owner instead of repo owner on LFS setting page (#31788) (#31817)
72+
* Fix `IsObjectExist` with gogit (#31790) (#31806)
73+
* Fix protected branch files detection on pre_receive hook (#31778) (#31796)
74+
* Add `TAGS` to `TEST_TAGS` and fix bugs found with gogit (#31791) (#31795)
75+
* Rename head branch of pull requests when renaming a branch (#31759) (#31774)
76+
* Fix wiki revision pagination (#31760) (#31772)
77+
* Bump vue-bar-graph (#31705) (#31753)
78+
* Distinguish LFS object errors to ignore missing objects during migration (#31702) (#31745)
79+
* Make GetRepositoryByName more safer (#31712) (#31718)
80+
* Fix a branch divergence cache bug (#31659) (#31661)
81+
* Allow org team names of length 255 in create team form (#31564) (#31603)
82+
* Use old behavior for telegram webhook (#31588)
83+
* Bug fix for translation in ru (#31892)
84+
* Fix actions notify bug (#31866) (#31875)
85+
* Fix the component of access token list not mounted (#31824) (#31868)
86+
* Add missing repository type filter parameters to pager (#31832) (#31837)
87+
* Fix dates displaying in a wrong manner when we're close to the end of… (#31750)
88+
* Fix "Filter by commit" Dropdown (#31695) (#31696)
89+
* Properly filter issue list given no assignees filter (#31522) (#31685)
90+
* Prevent update pull refs manually and will not affect other refs update (#31931)(#31955)
91+
* Fix sort order for organization home and user profile page (#31921) (#31922)
92+
* Fix search team (#31923) (#31942)
93+
* Fix 500 error when state params is set when editing issue/PR by API (#31880) (#31952)
94+
* Fix index too many file names bug (#31903) (#31953)
95+
* Add lock for parallel maven upload (#31851) (#31954)
96+
* MISC
97+
* Remove "dsa-1024" testcases from Test_SSHParsePublicKey and Test_calcFingerprint (#31905) (#31914)
98+
* Upgrade bleve to 2.4.2 (#31894)
99+
* Remove unneccessary uses of `word-break: break-all` (#31637) (#31652)
100+
* Return an empty string when a repo has no avatar in the repo API (#31187) (#31567)
101+
* Upgrade micromatch to 4.0.8 (#31944)
102+
* Update webpack to 5.94.0 (#31941)
103+
7104
## [1.22.1](https://github.com/go-gitea/gitea/releases/tag/1.22.1) - 2024-07-04
8105

9106
* SECURITY

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ TAGS ?=
136136
TAGS_SPLIT := $(subst $(COMMA), ,$(TAGS))
137137
TAGS_EVIDENCE := $(MAKE_EVIDENCE_DIR)/tags
138138

139-
TEST_TAGS ?= sqlite sqlite_unlock_notify
139+
TEST_TAGS ?= $(TAGS_SPLIT) sqlite sqlite_unlock_notify
140140

141141
TAR_EXCLUDES := .git data indexers queues log node_modules $(EXECUTABLE) $(FOMANTIC_WORK_DIR)/node_modules $(DIST) $(MAKE_EVIDENCE_DIR) $(AIR_TMP_DIR) $(GO_LICENSE_TMP_DIR)
142142

0 commit comments

Comments
 (0)