0ko 
								
							 
						 
						
							
							
								
							
							
	2a03e2c6b9  
						 
						
							
							
								
								
								i18n: cleanup  
							
							
							
							
						 
						
							2024-07-07 22:18:39 +05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									0ko 
								
							 
						 
						
							
							
								
							
							
	458bbe3f1a  
						 
						
							
							
								
								
								ui: remove non-working passkey link  
							
							
							
							
						 
						
							2024-07-07 22:11:50 +05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									0ko 
								
							 
						 
						
							
							
								
							
							
	dcd1039215  
						 
						
							
							
								
								
								i18n: fix strings related to sign in  
							
							... 
							
							
							
							
							Improve localizability, clean up. 
							
						 
						
							2024-07-07 14:40:50 +05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									0ko 
								
							 
						 
						
							
							
								
							
							
	577dc2d7d6  
						 
						
							
							
								
								
								i18n: fix sign up strings  
							
							... 
							
							
							
							
							To avoid conflicting with existing strings in translations. Also improve localizability. 
							
						 
						
							2024-07-07 14:37:45 +05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Anbraten 
								
							 
						 
						
							
							
								
							
							
	629ca22a97  
						 
						
							
							
								
								
								Refactor login page ( #31530 )  
							
							... 
							
							
							
							
							As requested in
https://github.com/go-gitea/gitea/pull/31504#issuecomment-2196196646 .
This PR refactor the login page:



- [x] use separate box for passkey login and go to registration
- [x] move forgot passoword next to password label
- [x] fix password required label `*` and padding
- [x] remove tabs from login page
---------
Co-authored-by: silverwind <me@silverwind.io>
(cherry picked from commit 9c00dda33ad7bd594dd8f331fa1bf0acefc2ca54)
Conflict resolution:
* signin_navbar.tmpl has been deleted
* additions in form.css
* major code changes in signin_openid
* ... 
							
						 
						
							2024-07-07 14:22:44 +05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									0ko 
								
							 
						 
						
							
							
								
							
							
	c19222b22f  
						 
						
							
							
								
								
								ui: improve button gap consistency in repos ( #4365 )  
							
							... 
							
							
							
							
							Improve UI in a few areas in a similar way to dc0d3a40abhttps://codeberg.org/attachments/cfca200a-3b68-4ba8-9876-75cea7822a00 
https://codeberg.org/attachments/aaa5d387-919b-45af-8854-6d0f5273125f 
https://codeberg.org/attachments/989225b7-b1dd-491d-bf76-7e4a962ea54e 
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4365 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Reviewed-by: Gusted <gusted@noreply.codeberg.org> 
							
						 
						
							2024-07-07 03:21:58 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	3ff661fe9e  
						 
						
							
							
								
								
								Merge pull request '[BUG] Use correct SHA in GetCommitPullRequest' ( #4377 ) from gusted/commit-to-pull into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4377 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-06 20:59:18 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	bf0c9837cc  
						 
						
							
							
								
								
								Merge pull request '[ENHANCEMENT] Improve caching of contributor stats' ( #4367 ) from gusted/contributors-stats-cache into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4367 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-06 20:12:35 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gusted 
								
							 
						 
						
							
							
								
							
							
	
	
	a8460bb132 
 
						 
						
							
							
								
								
								[BUG] Use correct SHA in GetCommitPullRequest  
							
							... 
							
							
							
							
							- The param wasn't `sha`, it was `ref`. Use this instead.
- Adds new integration tests.
- Resolves  #4190 
- Resolves  #4025  
							
						 
						
							2024-07-06 22:04:31 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gusted 
								
							 
						 
						
							
							
								
							
							
	
	
	70a7d6a0de 
 
						 
						
							
							
								
								
								[ENHANCEMENT] Improve caching of contributor stats  
							
							... 
							
							
							
							
							- It was noticed [in the Forgejo matrix channel](https://matrix.to/#/!qjPHwFPdxhpLkXMkyP:matrix.org/$vk78UR0eFCwQMDMTZ7-DWjMVB_LIAwHW6SkjhEcGkQQ?via=matrix.org ) that the generation of the Forgejo project contributor stats was taking quite a while on codeberg.org. This was continued with the fact that a few moments later it was once again generating them again; it seemed like they weren't being cached while they were.
- The problem was that the cache TTL is hardcoded to ten minutes and not to the configured TTL. This patch changes that by using the configured TLL for the contributor cache, as this is a computationally heavy operation and should be cached for as long as possible for a good user experience. This doesn't impact the accuracy of this feature because the commit ID of the default branch is used as a cache key.
- Also changed in this patch, is that errors aren't cached and are instead being logged, this is more helpful to the administrator. For the user essentially nothing changed on this side, the contributor stats just looks like it's loading indefinitely.
- Realistically, testing this isn't possible, as the cache library Forgejo currently uses doesn't expose the TTL or expiration time of a key. Manually testing this behavior is quite lengthy, as one of the steps would need to be "wait for ten minutes" and describe how you can notice the data was cached or was just generated, and because you could use different types of cache, it will be quite hard to write down how you could check the TTL of a key for a particular cache (I'm not even sure it's even possible for some). 
							
						 
						
							2024-07-06 21:23:46 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Mai-Lapyst 
								
							 
						 
						
							
							
								
							
							
	98c8d45f0b  
						 
						
							
							
								
								
								Fixes an visual bug where the info box to dispatch a workflow is shown even for users that lack permissions to actualy run the workflow. ( #4305 )  
							
							... 
							
							
							
							
							Example: Visit https://v8.next.forgejo.org/Mai-Lapyst/test/actions?workflow=dispatch.yaml&actor=0&status=0  without being logged in.

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4305 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: Mai-Lapyst <mai-lapyst@noreply.codeberg.org>
Co-committed-by: Mai-Lapyst <mai-lapyst@noreply.codeberg.org> 
							
						 
						
							2024-07-06 05:30:58 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	c49afdf0ff  
						 
						
							
							
								
								
								Merge pull request 'Lock file maintenance (forgejo)' ( #4344 ) from renovate/forgejo-lock-file-maintenance into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4344 
Reviewed-by: Caesar Schinas <caesar@caesarschinas.com>
Reviewed-by: Michael Kriese <michael.kriese@gmx.de> 
							
						 
						
							2024-07-05 12:18:20 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Renovate Bot 
								
							 
						 
						
							
							
								
							
							
	e487dfbbc6  
						 
						
							
							
								
								
								Lock file maintenance  
							
							
							
							
						 
						
							2024-07-05 10:42:17 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	c953aafb05  
						 
						
							
							
								
								
								Merge pull request 'chore(renovate): fix base branches regex' ( #4338 ) from viceice/renovat-base-branches-fix into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4338 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-05 10:17:40 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Michael Kriese 
								
							 
						 
						
							
							
								
							
							
	
	
	065102c263 
 
						 
						
							
							
								
								
								chore(renovate): fix base branches regex  
							
							
							
							
						 
						
							2024-07-05 12:10:51 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	9a618fbb25  
						 
						
							
							
								
								
								Merge pull request 'chore(renovate): add base branches' ( #4317 ) from viceice/renovat-base-branches into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4317 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-05 06:03:59 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	c5028d72a6  
						 
						
							
							
								
								
								Merge pull request 'Update module github.com/microcosm-cc/bluemonday to v1.0.27' ( #4333 ) from renovate/github.com-microcosm-cc-bluemonday-1.x into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4333 
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-05 05:25:08 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	860b33696d  
						 
						
							
							
								
								
								Merge pull request 'Update module github.com/buildkite/terminal-to-html/v3 to v3.13.0' ( #4313 ) from renovate/github.com-buildkite-terminal-to-html-v3-3.x into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4313 
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Reviewed-by: Michael Kriese <michael.kriese@gmx.de> 
							
						 
						
							2024-07-05 05:04:36 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Otto Richter 
								
							 
						 
						
							
							
								
							
							
	fafc4f6ad9  
						 
						
							
							
								
								
								test: issue sidebar testing using playwright ( #4319 )  
							
							... 
							
							
							
							
							Conclusion of https://codeberg.org/forgejo/forgejo/issues/3499 
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4319 
Co-authored-by: Otto Richter <git@otto.splvs.net>
Co-committed-by: Otto Richter <git@otto.splvs.net> 
							
						 
						
							2024-07-05 05:03:45 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Renovate Bot 
								
							 
						 
						
							
							
								
							
							
	
	
	a8df27e5a1 
 
						 
						
							
							
								
								
								Update module github.com/microcosm-cc/bluemonday to v1.0.27  
							
							
							
							
						 
						
							2024-07-05 06:36:35 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gusted 
								
							 
						 
						
							
							
								
							
							
	3c7a830fda  
						 
						
							
							
								
								
								Merge pull request 'Update module google.golang.org/grpc to v1.65.0' ( #4314 ) from renovate/google.golang.org-grpc-1.x into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4314 
Reviewed-by: thefox <thefox@noreply.codeberg.org>
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
Reviewed-by: Gusted <gusted@noreply.codeberg.org> 
							
						 
						
							2024-07-04 22:19:07 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									TheFox0x7 
								
							 
						 
						
							
							
								
							
							
	79b91930fa  
						 
						
							
							
								
								
								chore(license): license path change for protobuf  
							
							
							
							
						 
						
							2024-07-04 22:19:07 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Renovate Bot 
								
							 
						 
						
							
							
								
							
							
	1c49047390  
						 
						
							
							
								
								
								Update module google.golang.org/grpc to v1.65.0  
							
							
							
							
						 
						
							2024-07-04 22:19:07 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Gusted 
								
							 
						 
						
							
							
								
							
							
	
	
	3eb178db49 
 
						 
						
							
							
								
								
								[CHORE] Update terminal-to-html dependency  
							
							... 
							
							
							
							
							- Update the `github.com/buildkite/terminal-to-html/v3` dependency from
version v3.10.1 to v3.13.0.
- Version v3.12.0 introduced an incompatible change, the return type of
`AsHTML` changed from `[]byte` to `string`. That same version also
introduced streaming mode
https://github.com/buildkite/terminal-to-html/pull/126 , which allows us
to avoid reading the whole input into memory.
- Closes  #4313  
							
						 
						
							2024-07-04 23:41:17 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	741191a498  
						 
						
							
							
								
								
								Merge pull request 'build(go-licenses): support go toolchain mismatch' ( #4322 ) from viceice/build-go-licenses into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4322  
							
						 
						
							2024-07-04 14:15:08 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	3a442b9f09  
						 
						
							
							
								
								
								Merge pull request 'Update module github.com/blevesearch/bleve/v2 to v2.4.1' ( #4311 ) from renovate/github.com-blevesearch-bleve-v2-2.x into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4311 
Reviewed-by: Shiny Nematoda <snematoda@noreply.codeberg.org>
Reviewed-by: Michael Kriese <michael.kriese@gmx.de> 
							
						 
						
							2024-07-04 14:06:19 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	ec883971ef  
						 
						
							
							
								
								
								Merge pull request 'Update dependency esbuild-loader to v4.2.0' ( #4165 ) from renovate/esbuild-loader-4.x into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4165 
Reviewed-by: Michael Kriese <michael.kriese@gmx.de> 
							
						 
						
							2024-07-04 12:54:54 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Michael Kriese 
								
							 
						 
						
							
							
								
							
							
	
	
	b31e21d80e 
 
						 
						
							
							
								
								
								build(go-licenses): support go toolchain mismatch  
							
							
							
							
						 
						
							2024-07-04 14:42:26 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									0ko 
								
							 
						 
						
							
							
								
							
							
	aa7657c544  
						 
						
							
							
								
								
								ui(blame): remove broken padding ( #4318 )  
							
							... 
							
							
							
							
							This padding causes visual bug, because it only applies to the first line and not to the rest in case the line is broken into multiple.
I don't think it's actually needed here for good look, so I decided to remove it. In case decreased padding looks worse, the padding can be grown back via other element so it wouldn't cause this bug.
Preview: https://codeberg.org/attachments/56fd2ee8-4955-409d-998f-1feba987b9af 
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4318 
Reviewed-by: Gusted <gusted@noreply.codeberg.org> 
							
						 
						
							2024-07-04 11:46:31 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	4c4aaea26d  
						 
						
							
							
								
								
								Merge pull request 'Update dependency katex to v0.16.11' ( #4291 ) from renovate/katex-0.x into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4291 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-04 10:19:32 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Michael Kriese 
								
							 
						 
						
							
							
								
							
							
	
	
	c38acaff81 
 
						 
						
							
							
								
								
								chore(renovate): add base branches  
							
							
							
							
						 
						
							2024-07-04 09:43:53 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	763f4659cc  
						 
						
							
							
								
								
								Merge pull request 'Update dependency eslint-plugin-vue to v9.27.0' ( #4312 ) from renovate/linters into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4312  
							
						 
						
							2024-07-04 07:35:39 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Codeberg Translate 
								
							 
						 
						
							
							
								
							
							
	2a643d2136  
						 
						
							
							
								
								
								[I18N] Translations update from Weblate ( #4251 )  
							
							... 
							
							
							
							
							Translations update from [Weblate](https://translate.codeberg.org ) for [Forgejo/forgejo](https://translate.codeberg.org/projects/forgejo/forgejo/ ).
Current translation status:

Co-authored-by: 0ko <0ko@users.noreply.translate.codeberg.org>
Co-authored-by: Panagiotis \"Ivory\" Vasilopoulos <git@n0toose.net>
Co-authored-by: ZDev <ZDev@users.noreply.translate.codeberg.org>
Co-authored-by: Fjuro <fjuro@alius.cz>
Co-authored-by: Wuzzy <Wuzzy@users.noreply.translate.codeberg.org>
Co-authored-by: fnetX <otto@codeberg.org>
Co-authored-by: hankskyjames777 <hankskyjames777@users.noreply.translate.codeberg.org>
Co-authored-by: Kita Ikuyo <searinminecraft@courvix.com>
Co-authored-by: Marco Ciampa <ciampix@users.noreply.translate.codeberg.org>
Co-authored-by: kdh8219 <kdh8219@monamo.dev>
Co-authored-by: emansije <emansije@users.noreply.translate.codeberg.org>
Co-authored-by: b1nar10 <b1nar10@users.noreply.translate.codeberg.org>
Co-authored-by: Eryk Michalak <gnu.ewm@protonmail.com>
Co-authored-by: revi <revi@omglol.email>
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4251 
Co-authored-by: Codeberg Translate <translate@noreply.codeberg.org>
Co-committed-by: Codeberg Translate <translate@noreply.codeberg.org> 
							
						 
						
							2024-07-04 06:41:53 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Renovate Bot 
								
							 
						 
						
							
							
								
							
							
	15d25db3f8  
						 
						
							
							
								
								
								Update dependency eslint-plugin-vue to v9.27.0  
							
							
							
							
						 
						
							2024-07-04 06:07:24 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	938e6c0fd7  
						 
						
							
							
								
								
								Merge pull request 'test: remove performance sensitive test' ( #4315 ) from earl-warren/forgejo:wip-redis-test into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4315 
Reviewed-by: twenty-panda <twenty-panda@noreply.codeberg.org> 
							
						 
						
							2024-07-04 05:39:07 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	11596374ba 
 
						 
						
							
							
								
								
								test: remove performance sensitive test  
							
							... 
							
							
							
							
							A test must not fail depending on the performance of the machine it
runs on. It creates false negative and serves no purpose. These are
not benchmark tests for the hardware running them. 
							
						 
						
							2024-07-04 07:03:54 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Renovate Bot 
								
							 
						 
						
							
							
								
							
							
	319c4efbe7  
						 
						
							
							
								
								
								Update module github.com/blevesearch/bleve/v2 to v2.4.1  
							
							
							
							
						 
						
							2024-07-04 00:02:31 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	e19be90a6b  
						 
						
							
							
								
								
								Merge pull request 'Update module github.com/minio/minio-go/v7 to v7.0.73' ( #4292 ) from renovate/github.com-minio-minio-go-v7-7.x into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4292 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-03 19:39:12 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	dc0fa915d4 
 
						 
						
							
							
								
								
								docs(release-notes): 7.0.5 [skip ci]  
							
							
							
							
						 
						
							2024-07-03 21:02:39 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	4b485825c9 
 
						 
						
							
							
								
								
								docs(release-notes): KaTeX add support for \emph  
							
							
							
							
						 
						
							2024-07-03 20:38:22 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	11433a5378 
 
						 
						
							
							
								
								
								docs(licenses): add github.com/go-ini/ini  
							
							
							
							
						 
						
							2024-07-03 20:35:07 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Renovate Bot 
								
							 
						 
						
							
							
								
							
							
	4101260d6e  
						 
						
							
							
								
								
								Update module github.com/minio/minio-go/v7 to v7.0.73  
							
							
							
							
						 
						
							2024-07-03 18:07:19 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	a6756ed3b8  
						 
						
							
							
								
								
								Merge pull request 'test(js): false negative in sleep test' ( #4285 ) from earl-warren/forgejo:wip-js-utils into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4285 
Reviewed-by: Beowulf <beowulf@noreply.codeberg.org> 
							
						 
						
							2024-07-03 17:12:27 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	d1c5ddc5a6  
						 
						
							
							
								
								
								Merge pull request 'Update dependency @playwright/test to v1.45.1' ( #4290 ) from renovate/playwright-monorepo into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4290 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-03 17:11:53 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	9e6b6f5a06  
						 
						
							
							
								
								
								Merge pull request 'Update module golang.org/x/tools/gopls to v0.16.1' ( #4293 ) from renovate/golang.org-x-tools-gopls-0.x into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4293 
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> 
							
						 
						
							2024-07-03 17:11:18 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	0ab2852114  
						 
						
							
							
								
								
								Merge pull request 'fix(ci): do not block pull request CI when go-versions lags behind' ( #4298 ) from earl-warren/forgejo:wip-go-version-lag-workaround into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4298 
Reviewed-by: twenty-panda <twenty-panda@noreply.codeberg.org>
Reviewed-by: Michael Kriese <michael.kriese@gmx.de> 
							
						 
						
							2024-07-03 17:10:17 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Renovate Bot 
								
							 
						 
						
							
							
								
							
							
	75966ddef6  
						 
						
							
							
								
								
								Update module golang.org/x/tools/gopls to v0.16.1  
							
							
							
							
						 
						
							2024-07-03 16:03:58 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Renovate Bot 
								
							 
						 
						
							
							
								
							
							
	e510f2e84d  
						 
						
							
							
								
								
								Update dependency @playwright/test to v1.45.1  
							
							
							
							
						 
						
							2024-07-03 16:03:51 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	d1139ac55f  
						 
						
							
							
								
								
								Merge pull request 'Update dependency go to v1.22.5' ( #4286 ) from renovate/patch-golang-packages into forgejo  
							
							... 
							
							
							
							
							Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4286 
Reviewed-by: Michael Kriese <michael.kriese@gmx.de> 
							
						 
						
							2024-07-03 14:57:04 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	ee7f568aed 
 
						 
						
							
							
								
								
								fix(ci): do not block pull request CI when go-versions lags behind  
							
							... 
							
							
							
							
							When a new go version is published, it takes about 24h for
https://github.com/actions/go-versions  to be updated (see
https://github.com/actions/go-versions/pull/102  for example).
In the meantime the setup-go action that depends on it will install a
version of go that fails golang.org/x/vuln/cmd/govulncheck.
Move the security check to be the last step of the test job instead of
the first. It will still block the PRs from being merged but it will
allow the PR authors to keep working and look at the test results in
the meantime.
Fixes: https://codeberg.org/forgejo/forgejo/issues/4294  
							
						 
						
							2024-07-03 15:57:35 +02:00