cc14c63ccc
Add GetFileReader() & GetFile() support git-lfs ( #595 )
...
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/595
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: KN4CK3R <kn4ck3r@noreply.gitea.io >
2022-07-29 18:51:05 +08:00
lafriks
de34275bb6
Add method to get user organization permissions ( #594 )
...
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/594
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: lafriks <lafriks@noreply.gitea.io >
Co-committed-by: lafriks <lafriks@noreply.gitea.io >
2022-07-20 10:57:09 +08:00
Wim
e5f0c189f2
Add support for http signatures ( #553 )
...
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/553
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: Wim <42wim@noreply.gitea.io >
Co-committed-by: Wim <42wim@noreply.gitea.io >
2022-07-13 00:45:08 +08:00
359c771ce3
Make CI work again ( #593 )
...
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/593
2022-05-31 06:08:44 +08:00
Gusted
99a9de3172
Add response to ReadRepoNotifications
( #590 )
...
- This is a breaking change.
- Return the relevant notifications when the Gitea server is 1.16.0 or higher.
- Ref: https://github.com/go-gitea/gitea/pull/17064
- Resolves #543
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/590
Reviewed-by: 6543 <6543@obermui.de >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-05-15 23:47:38 +08:00
23e1316337
Relax TestAdminCronTasks ( #591 )
...
Relax test since this will be variable upstream ...
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/591
Reviewed-by: Gusted <williamzijl7@hotmail.com >
2022-05-15 06:22:02 +08:00
Gusted
f3ebdb8afe
Add function to get commit diff/patch ( #589 )
...
- Adds function the gets a commit's diff or patch.
- Ref: https://github.com/go-gitea/gitea/pull/17095
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/589
Reviewed-by: John Olheiser <john.olheiser@gmail.com >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-05-15 06:16:26 +08:00
arkamar
319a978c6c
Allow PR review with comments only ( #570 )
...
It is common to create PR review with Comments only, where foreword Body is empty. This is allowed by Gitea API, therefore SDK should return empty body error only if there are no comments.
Co-authored-by: Petr Vaněk <arkamar@atlas.cz >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/570
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Reviewed-by: Andrew Thornton <art27@cantab.net >
Co-authored-by: arkamar <arkamar@noreply.gitea.io >
Co-committed-by: arkamar <arkamar@noreply.gitea.io >
2022-05-02 03:09:34 +08:00
Gusted
adebf1cd11
Add file commit history ( #588 )
...
- Allow to specify to only get commit history of specific file.
- Ref: https://github.com/go-gitea/gitea/pull/17652
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/588
Reviewed-by: John Olheiser <john.olheiser@gmail.com >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-05-01 15:48:52 +08:00
Gusted
8fab37e740
Enforce golangci-lint + gofumpt ( #587 )
...
- Enforce [gofumpt](https://github.com/mvdan/gofumpt ) to enforce a more idiomatic go style.
- Enforce golangci-lint a bunch of linters! Which were able to detect a few issues in the current codebase and have been fixed by this PR.
- Updated the Makefile to use `go install ....` instead of the old deprecated way of `go get`
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/587
Reviewed-by: John Olheiser <john.olheiser@gmail.com >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-04-28 23:33:21 +08:00
John Olheiser
ce9d46682d
Add commit stats and verification ( #584 )
...
Co-authored-by: jolheiser <john.olheiser@gmail.com >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/584
Reviewed-by: 6543 <6543@obermui.de >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: John Olheiser <john.olheiser@gmail.com >
Co-committed-by: John Olheiser <john.olheiser@gmail.com >
2022-04-28 18:58:54 +08:00
John Olheiser
89a4b0be6e
Return error message for 4xx errors ( #583 )
...
Resolves #582
Resolves #551
As noted in both issues, we _could_ put the `resp.Body` back, however I think this should also suffice, as it will return error messages when appropriate based on the JSON response.
Co-authored-by: jolheiser <john.olheiser@gmail.com >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/583
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: John Olheiser <john.olheiser@gmail.com >
Co-committed-by: John Olheiser <john.olheiser@gmail.com >
2022-04-28 10:56:33 +08:00
Gusted
ad3580e44d
Add the Accept/Reject transfer of a repository. ( #586 )
...
- Allow to Accept or Reject a transfer of a repository via the API. Only
- available for v1.16+
- Ref: https://github.com/go-gitea/gitea/pull/17963
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/586
Reviewed-by: John Olheiser <john.olheiser@gmail.com >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-04-28 09:27:56 +08:00
Gusted
559cc2fb2a
Add sorting by owner/team for list search on user ( #585 )
...
- Add sorting by Owner and Team for the user list issues endpoint.
- Ref: https://github.com/go-gitea/gitea/pull/16662
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/585
Reviewed-by: John Olheiser <john.olheiser@gmail.com >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-04-28 08:43:52 +08:00
Gusted
468d48c978
Add search teams on org API ( #577 )
...
- Add the API to search for teams on a organization by the `/orgs/{org}/teams/search` API of Gitea.
- The response body of the API is a bit weird because it the JSON can return three fields "data", "error", "ok", first check if there's a general HTTP error. Otherwise when ok is set to false, return a error with the given error message of the error field. When ok is set to true, simply return the data.
CC @fnetx
Co-authored-by: Andrew Thornton <art27@cantab.net >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/577
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: John Olheiser <john.olheiser@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-04-27 03:21:25 +08:00
Norwin
223f0a75e0
ListOptions.setDefaults(): remove artificial and buggy pagination limits ( #573 )
...
fixes #571
Co-authored-by: Norwin <git@nroo.de >
Co-authored-by: Andrew Thornton <art27@cantab.net >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/573
Reviewed-by: Gusted <williamzijl7@hotmail.com >
Reviewed-by: Andrew Thornton <art27@cantab.net >
Co-authored-by: Norwin <noerw@noreply.gitea.io >
Co-committed-by: Norwin <noerw@noreply.gitea.io >
2022-04-27 03:07:37 +08:00
Gusted
2e8bb53b30
Add Name
field to CreateForkOption
( #576 )
...
- As per #558 , due https://github.com/go-gitea/gitea/pull/18066
Co-authored-by: Andrew Thornton <art27@cantab.net >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/576
Reviewed-by: techknowlogick <techknowlogick@gitea.io >
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: John Olheiser <john.olheiser@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-04-27 03:04:20 +08:00
John Olheiser
321bd56d93
Add webhook verification funcs ( #580 )
...
This PR adds a func for verifying incoming webhooks from Gitea, as well as a middleware for easier addition to a router stack.
Co-authored-by: jolheiser <john.olheiser@gmail.com >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/580
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Gusted <williamzijl7@hotmail.com >
2022-04-27 02:59:02 +08:00
John Olheiser
2616d10528
Pull newest Gitea dev image always ( #581 )
...
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/581
Reviewed-by: Gusted <williamzijl7@hotmail.com >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: John Olheiser <john.olheiser@gmail.com >
Co-committed-by: John Olheiser <john.olheiser@gmail.com >
2022-04-27 00:00:40 +08:00
Gusted
603e4358f8
Fix CI tests ( #579 )
...
- `master` -> `main`, due to https://github.com/go-gitea/gitea/pull/19354
- Fix incorrect variable being passed into assert in `TestPull`.
- Fix `createTestRepo` to only delete existing TestRepo if the result's repo wasn't redirected(e.g. due to being transferred or renamed). Fixes the error in TransferRepo.
- Remove a check for tag verfication, for some developers this will always fail due to local git configs forcing signing on tags.
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/579
Reviewed-by: 6543 <6543@obermui.de >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-04-22 15:52:45 +08:00
Gusted
a56a62a4df
Update length of cron tasks ( #578 )
...
- Bump amount of cron tasks that the dev image of Gitea has to 21.
- Fix TestAdminCronTasks.
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/578
Reviewed-by: techknowlogick <techknowlogick@gitea.io >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-04-10 20:10:20 +08:00
Gusted
f3162e5333
Update dependencies ( #575 )
...
- Update testify to v1.7.0(Thus fixing vulnerabilities https://deps.dev/go/code.gitea.io%2Fsdk%2Fgitea/ , quite minor because testify is only used for test code).
- Update go-version to v1.4.0
Co-authored-by: Andrew Thornton <art27@cantab.net >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/575
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Gusted <williamzijl7@hotmail.com >
Co-committed-by: Gusted <williamzijl7@hotmail.com >
2022-03-29 09:16:23 +08:00
Lunny Xiao
22f2853429
Use goproxy.io instead of goproxy.cn ( #574 )
...
Fix CI, Fix #572
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/574
Reviewed-by: techknowlogick <techknowlogick@gitea.io >
Reviewed-by: John Olheiser <john.olheiser@gmail.com >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-committed-by: Lunny Xiao <xiaolunwen@gmail.com >
2022-03-29 07:09:57 +08:00
petergardfjall
f0663b3c13
add mirror_updated field to Repository struct ( #565 )
...
This PR resolves https://gitea.com/gitea/go-sdk/issues/566 .
It ensures that the client-side SDK extracts the `mirror_updated` field introduced on the server by https://github.com/go-gitea/gitea/pull/18267 (issue: https://github.com/go-gitea/gitea/issues/18266 ).
Co-authored-by: Peter Gardfjäll <peter.gardfjall.work@gmail.com >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/565
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Co-authored-by: petergardfjall <petergardfjall@noreply.gitea.io >
Co-committed-by: petergardfjall <petergardfjall@noreply.gitea.io >
2022-03-28 19:06:48 +08:00
qwerty287
29e6eb37fe
Fix URL param ( #568 )
...
The URL param for pre-releases was `draft`, it should be `pre-release`.
Co-authored-by: qwerty287 <ndev@web.de >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/568
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: qwerty287 <qwerty287@noreply.gitea.io >
Co-committed-by: qwerty287 <qwerty287@noreply.gitea.io >
2022-02-15 23:14:18 +08:00
Norwin
36c7f8c8de
Fix CI (run gitea without root previleges) ( #569 )
...
CI is broken due to gitea upstream changes in deployment; may not run as root.
I have not tested if this actually fixes things, for upstream reference see f0bd1e9896 (diff-b54b39f1afced2465e1f3641db9d5bbf4f3a7fcf890996dfedd3c197bcb7f8c7)
I also switched from `:latest` to `:dev`, see https://github.com/go-gitea/gitea/pull/16421
edit: sorry for the messy commit list below, it's actually just a single commit.
Co-authored-by: Norwin <git@nroo.de >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/569
Co-authored-by: Norwin <noerw@noreply.gitea.io >
Co-committed-by: Norwin <noerw@noreply.gitea.io >
2022-02-14 23:05:57 +08:00
takirala
73182f46eb
More descriptive errors when validating repo metadata ( #567 )
...
When creating a repository using gitea client, it performs some validation on client options and the errors returned are not descriptive enough. This PR makes the errors more precise so that the user can fix the errors easily.
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/567
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: takirala <takirala@noreply.gitea.io >
Co-committed-by: takirala <takirala@noreply.gitea.io >
2022-02-01 07:14:45 +08:00
Norwin
3ff2c60a86
GetPullRequestDiff: add PullRequestDiffOptions param ( #542 )
...
this is for the upstream change in https://github.com/go-gitea/gitea/pull/17158
Co-authored-by: Norwin <git@nroo.de >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/542
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: 6543 <6543@obermui.de >
Co-authored-by: Norwin <noerw@noreply.gitea.io >
Co-committed-by: Norwin <noerw@noreply.gitea.io >
2022-01-14 01:30:39 +08:00
d19bc07721
Add Changelog for v0.15.1 & url fixes ( #564 )
...
as title
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/564
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
2022-01-12 08:44:20 +08:00
635de1b821
Add ignoreVersion & manuall version set option ( #560 )
...
be able to skip version check if needed.
!!! Be careful, because using it incorrectly can result in infinite loops with pagination !!!
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/560
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
2022-01-05 00:31:31 +08:00
a87a2c7390
Fix version for next release ( #561 )
...
as title
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/561
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2022-01-03 02:27:24 +08:00
spawn2kill
5d54a04f8d
Added missing fields to MergePullRequestOption ( #554 )
...
Adds `MergeCommitID`, `delete_branch_after_merge` and `force_merge` missing fields according to [Gitea Swagger docummentation](https://try.gitea.io/api/swagger#/repository/repoMergePullRequest ).
Co-authored-by: Hilário Coelho <hilario.coelho@securityside.com >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/554
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: spawn2kill <spawn2kill@noreply.gitea.io >
Co-committed-by: spawn2kill <spawn2kill@noreply.gitea.io >
2021-11-12 20:57:44 +08:00
Norwin
0fb32ac11f
NotificationSubject: add HTMLURL fields ( #548 )
...
upstream change: https://github.com/go-gitea/gitea/pull/17178
Co-authored-by: Norwin <git@nroo.de >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/548
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Andrew Thornton <art27@cantab.net >
Co-authored-by: Norwin <noerw@noreply.gitea.io >
Co-committed-by: Norwin <noerw@noreply.gitea.io >
2021-10-14 16:24:30 +08:00
Lunny Xiao
bf0e0883a8
Fix debug ( #545 )
...
As title.
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/545
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Reviewed-by: techknowlogick <techknowlogick@gitea.io >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-committed-by: Lunny Xiao <xiaolunwen@gmail.com >
2021-10-05 13:16:14 +08:00
4debc6ca4b
Extend Label Test ( #540 )
...
make test coverate 53.8%
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/540
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Andrew Thornton <art27@cantab.net >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-08-29 02:28:00 +08:00
747c78e835
Changelog for v0.15.0 ( #538 )
...
* Add Changelog for v0.15.0 release
* Update config ro changelog tool
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/538
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
gitea/v0.15.0
2021-08-14 00:46:54 +08:00
71d2bf01d1
Add CreateRepoFromTemplate ( #536 )
...
close #532
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/536
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-08-14 00:28:23 +08:00
b81847d03d
Add Repo Team Management Functions ( #537 )
...
close #526
* [x] functions
* [x] tests
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/537
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-08-13 23:56:50 +08:00
63e97e127c
Add gitea-vet ( #312 )
...
use gitea-vet to apply gitea specific vet rules
Co-authored-by: 6543 <6543@noreply.gitea.io >
Co-authored-by: techknowlogick <techknowlogick@gitea.io >
Co-authored-by: Andrew Thornton <art27@cantab.net >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/312
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: KN4CK3R <kn4ck3r@noreply.gitea.io >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-08-13 22:21:17 +08:00
f5cc003900
Add GetTag, GetAnnotatedTag & CreateTag ( #533 )
...
Add func to manage git tags via api
close #528
Co-authored-by: Andrew Thornton <art27@cantab.net >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/533
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Andrew Thornton <art27@cantab.net >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-08-13 20:27:52 +08:00
dee0475f01
Add GetReviewers & GetAssignees ( #534 )
...
close #525
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/534
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Andrew Thornton <art27@cantab.net >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-08-13 20:16:25 +08:00
79f379313c
Add user settings get & update functions ( #531 )
...
close #529
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/531
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-07-03 23:50:45 +08:00
230fd25196
Add ListPullRequestCommits ( #530 )
...
ref: https://github.com/go-gitea/gitea/pull/16300
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/530
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-07-03 20:29:50 +08:00
13d2d23dfc
Update Structs ( #524 )
...
Update gitea structs to [365c4e9316bbcc8bdf9cf68ef237bf18ae8db315](365c4e9316
) state.
use:
`git log --name-only --pretty=oneline --full-index v1.14.0..HEAD | grep -vE '^[0-9a-f]{40} ' | sort | uniq | grep ^modules/structs`
and
`git diff --full-index v1.13.0..HEAD -- modules/structs`
if you like to check yourselve
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/524
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-07-01 23:10:21 +08:00
cc08994d13
Update List Options ( #527 )
...
* ListReleasesOptions: https://github.com/go-gitea/gitea/pull/16175
* ListNotificationOptions: https://github.com/go-gitea/gitea/pull/16177
* ListIssueOption: https://github.com/go-gitea/gitea/pull/16174
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/527
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-07-01 19:39:50 +08:00
ddc879e297
Add "drop deprecated Assignee
hint to Migration Guide ( #523 )
...
as title (should have been added in #503 )
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/523
Reviewed-by: techknowlogick <techknowlogick@gitea.io >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-07-01 18:43:00 +08:00
a5ff184297
Changelog v0.14.1 ( #521 ) ( #522 )
...
froptport of #521
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/522
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: techknowlogick <techknowlogick@gitea.io >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-07-01 05:09:16 +08:00
fb42ca1c8d
Introduce NotifySubjectState ( #520 )
...
close #515
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/520
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: techknowlogick <techknowlogick@gitea.io >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-07-01 05:06:50 +08:00
42fed7165c
Update tests to new changes upstream ( #518 )
...
as title
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/518
Reviewed-by: Andrew Thornton <art27@cantab.net >
Reviewed-by: Norwin <noerw@noreply.gitea.io >
Reviewed-by: techknowlogick <techknowlogick@gitea.io >
Co-authored-by: 6543 <6543@obermui.de >
Co-committed-by: 6543 <6543@obermui.de >
2021-05-28 06:02:01 +08:00
J0Nes90
e11a4f7f3b
Add GetUserByID ( #513 )
...
Co-authored-by: Jochen Hunz <j.hunz@anchorpoint.app >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/513
Reviewed-by: 6543 <6543@obermui.de >
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: J0Nes90 <j0nes90@noreply.gitea.io >
Co-committed-by: J0Nes90 <j0nes90@noreply.gitea.io >
2021-04-05 11:23:50 +08:00