File: migrate-v0.13-to-v0.14.md

package info (click to toggle)
golang-code-gitea-sdk 0.17.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 760 kB
  • sloc: makefile: 107
file content (46 lines) | stat: -rw-r--r-- 1,505 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Migration Guide: v0.13 to v0.14

v0.14.0 introduces a number of breaking changes, through which it should not be difficult to migrate.
Just follow this guid and if you still encounter problems, ask for help on discord or feel free to create an issue.

<!-- toc -->

-   [Removed Functions (#467)](#removed-functions)
-   [Renamed Functions (#467)](#renamed-functions)
-   [New Optional Fields (#486)](#new-optional-fields)
-   [Arguemnts are escapted by the SDK iteslve now (#273)](#escape-function-arguments)

<!-- tocstop -->

## Removed Functions

 - for **GetUserTrackedTimes** and **GetRepoTrackedTimes** use **ListRepoTrackedTimes** with specific options set

Pulls:
-   [#467 Remove GetUserTrackedTimes](https://gitea.com/gitea/go-sdk/pulls/467)


## Renamed Functions

- **ListTrackedTimes** is now **ListIssueTrackedTimes**

Pulls:
-   [#467 Remove & Rename TrackedTimes list functions](https://gitea.com/gitea/go-sdk/pulls/467)


## New Optional Fields

The `EditUserOption` struct has gained several new Optional fields.
For example Email type changed from `string` to `*string`.

The easiest migration path is, to wrap your options with:
**OptionalString()**, **OptionalBool()** and **OptionalInt64()**

Pulls:
-   [#486 Update Structs](https://gitea.com/gitea/go-sdk/pulls/486)


## Escape Function Arguments

String arguments like `user`, `repo`, `tag`, ... are now url/path/query escapted as they need.
If you had issues and did escape arguments by yourselve you have to remove this now.