1
1
mirror of https://github.com/go-gitea/gitea synced 2024-09-22 03:36:04 +00:00
Commit Graph

12 Commits

Author SHA1 Message Date
Henry Goodman
cb057ff2a3
Merge branch 'main' into allow-force-push-protected-branches 2024-01-11 18:59:27 +11:00
wxiaoguang
f3999888c0
Refactor some legacy code and remove unused code (#28622)
1. use slices.Contains, remove Int64sContains
2. use HashEmail, remove base.EncodeMD5
3. remove BasicAuthEncode, IsLetter
2023-12-28 09:38:59 +00:00
Henry Goodman
fdbe77fd8b
Merge branch 'main' into allow-force-push-protected-branches 2023-12-14 23:05:31 +11:00
Lunny Xiao
dd30d9d5c0
Remove GetByBean method because sometimes it's danger when query condition parameter is zero and also introduce new generic methods (#28220)
The function `GetByBean` has an obvious defect that when the fields are
empty values, it will be ignored. Then users will get a wrong result
which is possibly used to make a security problem.

To avoid the possibility, this PR removed function `GetByBean` and all
references.
And some new generic functions have been introduced to be used.

The recommand usage like below.

```go
// if query an object according id
obj, err := db.GetByID[Object](ctx, id)
// query with other conditions
obj, err := db.Get[Object](ctx, builder.Eq{"a": a, "b":b})
```
2023-12-07 15:27:36 +08:00
Henry
f28ecbe420 Fix backend dup code lint err and generate swagger 2023-11-24 23:55:11 +11:00
Henry Goodman
7c6cd8b867 Make fmt whitespace fix 2023-11-24 23:55:11 +11:00
Henry Goodman
9da0dc16ad Update RemoveUserIDFromProtectedBranch for forcepush user/team IDs 2023-11-24 23:55:11 +11:00
Henry Goodman
50819b0424 Allow force pushes to protected branches 2023-11-24 23:55:11 +11:00
JakobDev
28f9b313ba
Updates to the API for archived repos (#27149) 2023-09-21 23:43:29 +00:00
CaiCandong
a78c2eae24
Replace util.SliceXxx with slices.Xxx (#26958) 2023-09-07 09:37:47 +00:00
yp05327
bd66fa586a
Rename repo.GetOwner to repo.LoadOwner (#22967)
Fixes https://github.com/go-gitea/gitea/issues/22963

---------

Co-authored-by: Yarden Shoham <hrsi88@gmail.com>
2023-02-18 20:11:03 +08:00
Lunny Xiao
2782c14396
Supports wildcard protected branch (#20825)
This PR introduce glob match for protected branch name. The separator is
`/` and you can use `*` matching non-separator chars and use `**` across
separator.

It also supports input an exist or non-exist branch name as matching
condition and branch name condition has high priority than glob rule.

Should fix #2529 and #15705

screenshots

<img width="1160" alt="image"
src="https://user-images.githubusercontent.com/81045/205651179-ebb5492a-4ade-4bb4-a13c-965e8c927063.png">

Co-authored-by: zeripath <art27@cantab.net>
2023-01-16 16:00:22 +08:00