Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: alibabacloud-go/cr-20181201
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.10
Choose a base ref
...
head repository: alibabacloud-go/cr-20181201
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.0
Choose a head ref
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Sep 23, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    46e6f0f View commit details
Showing with 918 additions and 595 deletions.
  1. +3 −0 ChangeLog.txt
  2. +1 −1 README-CN.md
  3. +1 −1 README.md
  4. +908 −588 client/client.go
  5. +5 −5 go.mod
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2022-09-23 Version: v2.0.0
- Generated golang 2018-12-01 for cr.

2022-03-10 Version: v1.0.10
- Release some feature APIs.

2 changes: 1 addition & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
## 安装
你可以使用 `go mod` 来管理你的依赖,
```sh
go get github.com/alibabacloud-go/cr-20181201
go get github.com/alibabacloud-go/cr-20181201/v2
```

## 问题
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ English | [简体中文](README-CN.md)
If you use `go mod` to manage your dependence, you can use the following command:

```sh
$ go get github.com/alibabacloud-go/cr-20181201
$ go get github.com/alibabacloud-go/cr-20181201/v2
```

## Issues
1,496 changes: 908 additions & 588 deletions client/client.go

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module github.com/alibabacloud-go/cr-20181201
module github.com/alibabacloud-go/cr-20181201/v2

go 1.15

require (
github.com/alibabacloud-go/darabonba-openapi v0.1.14
github.com/alibabacloud-go/darabonba-openapi/v2 v2.0.0
github.com/alibabacloud-go/endpoint-util v1.1.0
github.com/alibabacloud-go/openapi-util v0.0.10
github.com/alibabacloud-go/tea v1.1.17
github.com/alibabacloud-go/tea-utils v1.4.3
github.com/alibabacloud-go/openapi-util v0.0.11
github.com/alibabacloud-go/tea v1.1.19
github.com/alibabacloud-go/tea-utils/v2 v2.0.0
)