Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	1eae2aadae 
 
						 
						
							
							
								
								
								Fix issue not showing on default board and add test ( #27720 )  
							
							... 
							
							
							
							
							See https://github.com/go-gitea/gitea/pull/27718#issuecomment-1773743014 
. Add a test to ensure its behavior.
Why this test uses `ProjectBoardID=0`? Because in `SearchOptions`,
`ProjectBoardID=0` means what it is. But in `IssueOptions`,
`ProjectBoardID=0` means there is no condition, and
`ProjectBoardID=db.NoConditionID` means the board ID = 0.
It's really confusing. Probably it's better to separate the db search
engine and the other issue search code. It's really two different
systems. As far as I can see, `IssueOptions` is not necessary for most
of the code, which has very simple issue search conditions. 
							
						 
						
							2023-10-25 11:51:49 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gerd Katzenbeisser 
								
							 
						 
						
							
							
								
							
							
	
	
	31f8880bc2 
 
						 
						
							
							
								
								
								Show placeholder email in privacy popup ( #27770 )  
							
							... 
							
							
							
							
							This PR will show the _noreply_ address in the privacy popup
_keep_email_private_popup_.
I had to look into the source code to figure out which E-Mail Adress I
had to use on gitea.com to hide it from public access.
According to the contribution guidelines I only updated the en-US
translation file.
Co-authored-by: Hakito <hakito@git.example.com> 
							
						 
						
							2023-10-25 11:12:36 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									yp05327 
								
							 
						 
						
							
							
								
							
							
	
	
	f39256f035 
 
						 
						
							
							
								
								
								Add word-break to organization name and description ( #26624 )  
							
							... 
							
							
							
							
							Fix  #24318 
Before:



After:



 
						
							2023-10-25 10:40:39 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	3602a1987d 
 
						 
						
							
							
								
								
								Add border to file tree 'sub-items' and add padding to 'item-file' ( #27593 )  
							
							... 
							
							
							
							
							## Add border to file tree 'sub-items'
close  #24766  
view in `gitea-light` 
<img width="275" alt="image"
src="https://github.com/go-gitea/gitea/assets/70063547/f1bf8736-2db3-454f-86f5-d050a2fae3eb ">
view in `gitea-dark`
<img width="296" alt="image"
src="https://github.com/go-gitea/gitea/assets/70063547/053e2e6e-28f7-41d2-a139-1dae4df45929 ">
## Change the 'item-file' padding 
Before that the 'item-file' only have padding when they in
'item-directory', which is too compact when 'item-file' after
'item-directory'
<details>

---------
Co-authored-by: silverwind <me@silverwind.io> 
							
						 
						
							2023-10-25 18:00:53 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									853 
								
							 
						 
						
							
							
								
							
							
	
	
	e544a277fe 
 
						 
						
							
							
								
								
								Fix the missing repo count in new team page and edit team page ( #27743 )  
							
							... 
							
							
							
							
							Follow #26942 
Before:


After:

 
							
						 
						
							2023-10-25 13:55:56 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	572f0963ed 
 
						 
						
							
							
								
								
								Only show diff file tree when more than one file changed ( #27775 )  
							
							... 
							
							
							
							
							When 0 or 1 files changed in a diff, we don't need to show a file tree.
This behaviour matches GitHub. Single-file diff after this change, note
absence of button:
<img width="1234" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/3618438b-e655-42a3-989f-f299267b2b8b ">
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-10-25 05:09:18 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	fba4ee7efc 
 
						 
						
							
							
								
								
								Add gap between diff boxes ( #27776 )  
							
							... 
							
							
							
							
							Before (almost no gap between files):
<img width="1240" alt="Screenshot 2023-10-24 at 19 43 32"
src="https://github.com/go-gitea/gitea/assets/115237/30cdbdbc-d102-479c-89ce-3f68837ae0cd ">
After (with 8px gap):
<img width="1241" alt="Screenshot 2023-10-24 at 19 43 22"
src="https://github.com/go-gitea/gitea/assets/115237/72b26a30-8730-4a36-8de9-be143b684b98 "> 
							
						 
						
							2023-10-25 00:47:17 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									merlleu 
								
							 
						 
						
							
							
								
							
							
	
	
	796ff26e0e 
 
						 
						
							
							
								
								
								Do not force creation of _cargo-index repo on publish ( #27266 )  
							
							... 
							
							
							
							
							Hello there,
Cargo Index over HTTP is now prefered over git for package updates: we
should not force users who do not need the GIT repo to have the repo
created/updated on each publish (it can still be created in the packages
settings).
The current behavior when publishing is to check if the repo exist and
create it on the fly if not, then update it's content.
Cargo HTTP Index does not rely on the repo itself so this will be
useless for everyone not using the git protocol for cargo registry.
This PR only disable the creation on the fly of the repo when publishing
a crate.
This is linked to #26844  (error 500 when trying to publish a crate if
user is missing write access to the repo) because it's now optional.
---------
Co-authored-by: KN4CK3R <admin@oldschoolhack.me> 
							
						 
						
							2023-10-24 03:26:38 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	ce83609ff6 
 
						 
						
							
							
								
								
								Upgrade to golangci-lint@v1.55.0 ( #27756 )  
							
							... 
							
							
							
							
							https://github.com/golangci/golangci-lint/releases/tag/v1.55.0  
						
							2023-10-24 02:54:59 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									wxiaoguang 
								
							 
						 
						
							
							
								
							
							
	
	
	def907de7b 
 
						 
						
							
							
								
								
								Fix incorrect "tab" parameter for repo search sub-template ( #27755 )  
							
							... 
							
							
							
							
							
 
							
						 
						
							2023-10-24 02:00:06 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	6352114a77 
 
						 
						
							
							
								
								
								Fix label render containing invalid HTML ( #27752 )  
							
							... 
							
							
							
							
							- The label HTML contained a quote that wasn't being closed.
Refs: https://codeberg.org/forgejo/forgejo/pulls/1651 
(cherry picked from commit e2bc2c9a1f 
							
						 
						
							2023-10-23 23:02:00 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	51d1dc22ff 
 
						 
						
							
							
								
								
								Fix duplicate project board when hitting enter key ( #27746 )  
							
							... 
							
							
							
							
							When hitting the `enter` key to create a new project column, the request
is sent twice because the `submit` event and `key up` event are both
triggered.
Probably a better solution is to rewrite these parts of the code to
avoid using native jQuery but reuse the `form-fetch-action` class. But
it's beyond my ability. 
							
						 
						
							2023-10-23 12:40:33 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	61d94b247a 
 
						 
						
							
							
								
								
								Fix link-action redirect network error ( #27734 )  
							
							... 
							
							
							
							
							<img width="823" alt="image"
src="https://github.com/go-gitea/gitea/assets/70063547/99da3d5a-c28a-4fd0-8ae0-88461a9142e2 ">
---------
Co-authored-by: 6543 <6543@obermui.de> 
							
						 
						
							2023-10-23 20:34:17 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									wxiaoguang 
								
							 
						 
						
							
							
								
							
							
	
	
	f3956fcb28 
 
						 
						
							
							
								
								
								Fix incorrect ctx usage in defer function ( #27740 )  
							
							
							
							
						 
						
							2023-10-22 14:12:27 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	d8c09c25d1 
 
						 
						
							
							
								
								
								Enable followCursor for language stats bar ( #27713 )  
							
							... 
							
							
							
							
							Fixes: https://github.com/go-gitea/gitea/issues/27600 

Also tested together with https://github.com/go-gitea/gitea/pull/27704 ,
works well. 
							
						 
						
							2023-10-22 13:06:04 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									tomholford 
								
							 
						 
						
							
							
								
							
							
	
	
	e3afe4a248 
 
						 
						
							
							
								
								
								teams: new View button ( #27685 )  
							
							... 
							
							
							
							
							Per the discussion on #22054 , the flow for adding a new team member to
an org is not intuitive for new Gitea users.
The ideal solution would be to add a new button on the Org > Members
index view (see the screenshot mockup in the issue description).
However, this would require a refactor of the UX for the flow. The
current flow has an implicit context of which team within the org the
new member is being added to ('Owners' by default). From the Members
index, there is no implicit context; the flow would have to add a picker
for which team the new member should be added to.
So, as a stopgap, this change simply adds a button to the Teams index
page that performs the same action as clicking on the title of the team
(a behavior that is currently too obscure as indicated in the comments
on the issue). This should reduce support burden and serve as a decent
temporary measure until the Add Member flow is refactored.
---------
Co-authored-by: tomholford <tomholford@users.noreply.github.com> 
							
						 
						
							2023-10-22 12:34:16 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Denys Konovalov 
								
							 
						 
						
							
							
								
							
							
	
	
	16cfa17844 
 
						 
						
							
							
								
								
								fix issues in translation file ( #27699 )  
							
							... 
							
							
							
							
							- use correct comment sign for INI (`;`)
- remove duplicated `repo.branch.search` key
- remove duplicated spaces & similar 
							
						 
						
							2023-10-22 11:59:31 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									HoshinoRei 
								
							 
						 
						
							
							
								
							
							
	
	
	9b991f2947 
 
						 
						
							
							
								
								
								Fix an indentation in the Chinese documentation of Act Runner ( #27730 )  
							
							... 
							
							
							
							
							In the [English
document](https://docs.gitea.com/1.21/usage/actions/act-runner#configuring-cache-when-starting-a-runner-using-docker-image ),
there is indentation here, but there is no indentation in the Chinese
document. 
							
						 
						
							2023-10-22 19:37:56 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									GiteaBot 
								
							 
						 
						
							
							
								
							
							
	a5bdcfc863  
						 
						
							
							
								
								
								[skip ci] Updated translations via Crowdin  
							
							
							
							
						 
						
							2023-10-22 00:24:59 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	1859bbbf91 
 
						 
						
							
							
								
								
								Fix org team endpoint ( #27721 )  
							
							... 
							
							
							
							
							Fix  #27711  
						
							2023-10-22 01:40:59 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	b39bb958cc 
 
						 
						
							
							
								
								
								Improve diff tree spacing ( #27714 )  
							
							... 
							
							
							
							
							1. Un-indent top-level items, matching GitHub rendering
2. Increase item padding and add 1px gap between items
Before and After:
<img width="247" alt="Screenshot 2023-10-20 at 18 37 32"
src="https://github.com/go-gitea/gitea/assets/115237/43c1ce86-1814-4a8a-9dd2-0c4a82a2be7c ">
<img width="241" alt="Screenshot 2023-10-20 at 18 40 46"
src="https://github.com/go-gitea/gitea/assets/115237/b541b85b-c428-4903-becd-773ae5807495 ">
---------
Co-authored-by: 6543 <m.huber@kithara.com> 
							
						 
						
							2023-10-21 10:38:19 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									6543 
								
							 
						 
						
							
							
								
							
							
	
	
	b2f828db5e 
 
						 
						
							
							
								
								
								refactor: make db iterate context aware ( #27710 )  
							
							... 
							
							
							
							
							the iteration will run until finished atm.
this changes it by checking if if the context got canceled before each
run of a loop sequence is executed
[View this pull with now
whitespace](https://github.com/go-gitea/gitea/pull/27710/files?diff=unified&w=1 ) 
							
						 
						
							2023-10-21 10:05:29 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									MrDevil 
								
							 
						 
						
							
							
								
							
							
	
	
	510d07506e 
 
						 
						
							
							
								
								
								[FIX] resolve confusing colors in languages stats by insert a gap ( #27704 )  
							
							... 
							
							
							
							
							The current language stats are too obsessed with color matching. Similar
colors are always next to each other. It is a bit troublesome to find
the place where the color matching is generated, so just follow the
example of github and add a gap.
## before
<img width="883" alt="image"
src="https://github.com/go-gitea/gitea/assets/12915306/cf54430c-616c-4b37-b561-5a37c20b2d94 ">
## after
<img width="877" alt="image"
src="https://github.com/go-gitea/gitea/assets/12915306/e518ea36-2b8f-4f11-a867-a58dc393db85 "> 
							
						 
						
							2023-10-20 17:33:05 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	4539a7b0b4 
 
						 
						
							
							
								
								
								Fix sticky diff header background ( #27697 )  
							
							... 
							
							
							
							
							Fixes: https://github.com/go-gitea/gitea/issues/27604 
Add negative margins so the header covers any shadow of active elements.
No rendering change of the content of the header because the padding
counteracts the effect.
<img width="128" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/3d0f55b6-9351-4985-a290-da9a92d15b4e "> 
							
						 
						
							2023-10-20 14:56:19 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	881806a50b 
 
						 
						
							
							
								
								
								Replace -1 with GhostUserID ( #27703 )  
							
							
							
							
						 
						
							2023-10-20 14:43:08 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	eb1478791f 
 
						 
						
							
							
								
								
								Clean some functions about project issue ( #27705 )  
							
							... 
							
							
							
							
							1. remove unused function `MoveIssueAcrossProjectBoards`
2. extract the project board condition into a function
3. use db.NoCondition instead of -1. (BTW, the usage of db.NoCondition
is too confusing. Is there any way to avoid that?)
4. remove the unnecessary comment since the ctx refactor is completed.
5. Change `b.ID != 0` to `b.ID > 0`. It's more intuitive but I think
they're the same since board ID can't be negative. 
							
						 
						
							2023-10-20 14:01:25 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									delvh 
								
							 
						 
						
							
							
								
							
							
	
	
	cab7b7f59c 
 
						 
						
							
							
								
								
								Adapt .changelog.yml to new labeling system ( #27701 )  
							
							... 
							
							
							
							
							Otherwise, it is not possible anymore to generate changelogs. 
							
						 
						
							2023-10-20 00:22:00 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	bd58266957 
 
						 
						
							
							
								
								
								Update and add new eslint plugins ( #27698 )  
							
							... 
							
							
							
							
							- Switch `eslint-plugin-import` to
[`eslint-plugin-i`](https://github.com/un-es/eslint-plugin-i ), a fork
with better dependencies
- Update `eslint-plugin-regexp` to 2.0.0 and add new rules
- Add
[`eslint-plugin-vitest`](https://github.com/veritem/eslint-plugin-vitest ) 
							
						 
						
							2023-10-19 21:51:56 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									6543 
								
							 
						 
						
							
							
								
							
							
	
	
	adbc995c34 
 
						 
						
							
							
								
								
								Show total TrackedTime on issue/pull/milestone lists ( #26672 )  
							
							... 
							
							
							
							
							TODOs:
- [x] write test for `GetIssueTotalTrackedTime`
- [x] frontport kitharas template changes and make them mobile-friendly
---


---
*Sponsored by Kithara Software GmbH* 
							
						 
						
							2023-10-19 14:08:31 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									6543 
								
							 
						 
						
							
							
								
							
							
	
	
	e83f2cbbac 
 
						 
						
							
							
								
								
								Add doctor dbconsistency fix to delete repos with no owner ( #27290 )  
							
							... 
							
							
							
							
							to address #27273 
replace #24873  
							
						 
						
							2023-10-19 15:20:52 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									JakobDev 
								
							 
						 
						
							
							
								
							
							
	
	
	3dc0c962bf 
 
						 
						
							
							
								
								
								Delete repos of org when purge delete user ( #27273 )  
							
							... 
							
							
							
							
							Fixes https://codeberg.org/forgejo/forgejo/issues/1514 
I had to remove `RenameOrganization` to avoid circular import.
We should really add some foreign keys to the database. 
							
						 
						
							2023-10-19 13:16:11 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									JakobDev 
								
							 
						 
						
							
							
								
							
							
	
	
	398eccb322 
 
						 
						
							
							
								
								
								Fix required checkboxes in issue forms ( #27592 )  
							
							... 
							
							
							
							
							If you set a checkbox as required in a issue form at the moment, the
checkbox is checked and read only, what does not make much sense. With
this PR, the Checkbox actually needs to be checked. The label supports
now also Markdown. This matches GitHub's behaviour.
And yes, I know the CSS is a ugly workaround. It looks like the given
CSS code is part Fomantic and I don't know how to change that. The
Maintainers are free to change that.
 
							
						 
						
							2023-10-19 11:43:15 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	e91d4f106b 
 
						 
						
							
							
								
								
								Upgrade xorm ( #27673 )  
							
							... 
							
							
							
							
							Related to https://gitea.com/xorm/xorm/pulls/2341  
							
						 
						
							2023-10-19 10:25:57 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									MiloCubed 
								
							 
						 
						
							
							
								
							
							
	
	
	2f2ca8c940 
 
						 
						
							
							
								
								
								[docs] Add note that PROTOCOL config is case-sensitive ( #25685 )  
							
							... 
							
							
							
							
							See [issue on
gitea.com](https://gitea.com/gitea/gitea-docusaurus/issues/38 ), copied
below for convenience:
> Hello, may I first confirm that the app.ini PROTOCOL config is case
sensitive (must be lowercase)?
> 
> If so, I'd like to suggest for it to be highlighted in the [HTTPS
Setup](https://docs.gitea.com/administration/https-setup#using-the-built-in-server )
page.
> Perhaps something like:
> For the PROTOCOL=https field, make sure https is lowercase. Writing
PROTOCOL=HTTPS may result in a SSL_ERROR_RX_RECORD_TOO_LONG error on
Firefox or ERR_SSL_PROTOCOL_ERROR on Chrome and Edge.
> 
> Background
> At first I carelessly wrote PROTOCOL=HTTPS in my app.ini, and Firefox
didn't allow me to connect because:
> Secure Connection Failed
> An error occurred during a connection to gitea.local.lan. SSL received
a record that exceeded the maximum permissible length.
> Error code: SSL_ERROR_RX_RECORD_TOO_LONG
> I spent maybe half an hour troubleshooting my certs, ports, and other
configs before backtracking to the start and realizing the
capitalization difference there 😅 . When I changed that config to
lowercase, it worked.
For this PR I added the note in the Config Cheat Sheet page and fixed
the links to it from the HTTPS Setup page.
Was originally thinking to put the note in the HTTPS Setup page itself,
but since there are 2 sections referencing the PROTOCOL config, I was
thinking it'd be neater and more concise to put it in the Config Cheat
Sheet page instead. Especially since both sections already link to it,
and I actually tried to check that link quite early on in my
troubleshooting (but didn't pay much attention to it since the link was
broken).
## Before/After screenshots as per [this repo's
docs](https://github.com/go-gitea/gitea/tree/main/docs )
Before - links

Note: For this the links weren't broken, the links fix is because they
were broken on gitea.com's docs (see below).
After - links

Before - config cheat sheet

After - config cheat sheet

## Before/After screenshots as per [gitea.com's
docs](https://gitea.com/gitea/gitea-docusaurus )
Before - links

After - links

Before - config cheat sheet

After - config cheat sheet
 
							
						 
						
							2023-10-19 16:14:46 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									techknowlogick 
								
							 
						 
						
							
							
								
							
							
	
	
	60fce1568e 
 
						 
						
							
							
								
								
								Remove network call on make clean ( #27689 )  
							
							... 
							
							
							
							
							fix  #27653 
credit to silverwind for finding issue 
						
							2023-10-19 08:02:22 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Nanguan Lin 
								
							 
						 
						
							
							
								
							
							
	
	
	80a0ab350b 
 
						 
						
							
							
								
								
								Add unit tests for action runner token ( #27670 )  
							
							... 
							
							
							
							
							In case the behavior of the register token changes. 
							
						 
						
							2023-10-19 07:24:24 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									SandeshPyakurel 
								
							 
						 
						
							
							
								
							
							
	
	
	776b092863 
 
						 
						
							
							
								
								
								Typos fixed in documentation files ( #27687 )  
							
							... 
							
							
							
							
							Typos fixed in multiple docs files. 
							
						 
						
							2023-10-19 02:46:26 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									GiteaBot 
								
							 
						 
						
							
							
								
							
							
	63e391ed17  
						 
						
							
							
								
								
								[skip ci] Updated translations via Crowdin  
							
							
							
							
						 
						
							2023-10-19 00:23:11 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									sebastian-sauer 
								
							 
						 
						
							
							
								
							
							
	
	
	7210f23fa0 
 
						 
						
							
							
								
								
								Add link for repositories README file ( #27684 )  
							
							... 
							
							
							
							
							this allows to deep link to the readme section of a repository.
fixes  #27641 
Screenshots:
No changes on initial display:

On hover the link is shown:
 
							
						 
						
							2023-10-18 17:59:46 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Jason Song 
								
							 
						 
						
							
							
								
							
							
	
	
	0a2b93d411 
 
						 
						
							
							
								
								
								Fix typo "GetLatestRunnerToken" ( #27680 )  
							
							
							
							
						 
						
							2023-10-18 15:52:44 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	0b654fa8dc 
 
						 
						
							
							
								
								
								Clipboard copy enhancements ( #27669 )  
							
							... 
							
							
							
							
							1. Do not show temporary tooltips that are triggered from within
dropdowns. Previously this resulted in the tooltip being stuck to
top-left of the page like seen on issue comment URL copy. I could not
figure out any tippy options that prevent this, so I think it's better
to just not show it.
1. Refactor `initGlobalCopyToClipboardListener` so that it does not run
a often useless `document.querySelector` on every click, make
`data-clipboard-text-type` work with `data-clipboard-target`. No use in
current code base but still good to have. Finally some minor code
cleanup in the function.
Point 1 is for this copy button:
<img width="229" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/81f34746-8ea5-43d9-8c6f-f6f417a9e4ad ">
---------
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-10-18 15:16:06 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	9852c92e9a 
 
						 
						
							
							
								
								
								Remove unnecessary parameter ( #27671 )  
							
							
							
							
						 
						
							2023-10-18 15:03:10 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									KN4CK3R 
								
							 
						 
						
							
							
								
							
							
	
	
	83186eca80 
 
						 
						
							
							
								
								
								Always delete existing scheduled action tasks ( #27662 )  
							
							... 
							
							
							
							
							Fixes  #27650  
						
							2023-10-18 10:34:39 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Jason Song 
								
							 
						 
						
							
							
								
							
							
	
	
	4e98224a45 
 
						 
						
							
							
								
								
								Support allowed hosts for webhook to work with proxy ( #27655 )  
							
							... 
							
							
							
							
							When `webhook.PROXY_URL` has been set, the old code will check if the
proxy host is in `ALLOWED_HOST_LIST` or reject requests through the
proxy. It requires users to add the proxy host to `ALLOWED_HOST_LIST`.
However, it actually allows all requests to any port on the host, when
the proxy host is probably an internal address.
But things may be even worse. `ALLOWED_HOST_LIST` doesn't really work
when requests are sent to the allowed proxy, and the proxy could forward
them to any hosts.
This PR fixes it by:
- If the proxy has been set, always allow connectioins to the host and
port.
- Check `ALLOWED_HOST_LIST` before forwarding. 
							
						 
						
							2023-10-18 09:44:36 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									yp05327 
								
							 
						 
						
							
							
								
							
							
	
	
	8abc1aae4a 
 
						 
						
							
							
								
								
								Improve the list header in milestone page ( #27302 )  
							
							... 
							
							
							
							
							The ui of list header in milestone page is not same as issue and pr list
page.
And they are using different template codes which can be merged into
one.
Before:




After:


---------
Co-authored-by: puni9869 <80308335+puni9869@users.noreply.github.com> 
							
						 
						
							2023-10-18 00:03:42 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	eeb1e0242b 
 
						 
						
							
							
								
								
								Fix poster is not loaded in get default merge message ( #27657 )  
							
							
							
							
						 
						
							2023-10-17 15:07:23 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									puni9869 
								
							 
						 
						
							
							
								
							
							
	
	
	4adc2a828d 
 
						 
						
							
							
								
								
								Hide archived labels by default from the suggestions when assigning labels for an issue ( #27451 )  
							
							... 
							
							
							
							
							Followup of #27115 
Finally closes  #25237 
## Screenshots
### Issue Sidebar
<img width="513" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/9f7fda2f-5a03-4684-8619-fd3498a95b41 ">
### PR sidebar
<img width="367" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/53db9b64-faec-4a67-91d6-76945596a469 ">
### PR sidebar with archived labels shown
<img width="352" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/9dc5050f-4e69-4f76-bb83-582480a2281e ">
---------
Signed-off-by: puni9869 <punitinani1@hotmail.com>
Co-authored-by: silverwind <me@silverwind.io> 
							
						 
						
							2023-10-17 16:10:45 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Yevhen Pavlov 
								
							 
						 
						
							
							
								
							
							
	
	
	d98c863884 
 
						 
						
							
							
								
								
								actions/setup-go use go-version-file ( #27651 )  
							
							... 
							
							
							
							
							These changes will allow not to specify the version of go in every
pipeline. 
							
						 
						
							2023-10-17 10:24:54 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Sandro Santilli 
								
							 
						 
						
							
							
								
							
							
	
	
	0f3ea4e1b1 
 
						 
						
							
							
								
								
								Update agit-support.en-us.md ( #27652 )  
							
							... 
							
							
							
							
							Clarify Agit PR creation documentation
See https://github.com/go-gitea/gitea/issues/27579  
							
						 
						
							2023-10-17 17:53:36 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Denys Konovalov 
								
							 
						 
						
							
							
								
							
							
	
	
	0271114e64 
 
						 
						
							
							
								
								
								cleanup repo details icons/labels ( #27644 )  
							
							... 
							
							
							
							
							Fix  #27596  
Change confusing behavior when showing information about a repo via
labels and icons. Implement changes proposed by @lng2020 in
https://github.com/go-gitea/gitea/pull/27627#pullrequestreview-1678787673 . 
						
							2023-10-16 23:06:15 +02:00