mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 13:13:37 +03:00
UPGRADING.md
This commit is contained in:
parent
7f4f16f25b
commit
fc92fd532c
2 changed files with 75 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
|
||||
This is golang RetailCRM API client.
|
||||
|
||||
## Install
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
go get -u github.com/retailcrm/api-client-go/v2
|
||||
|
@ -158,3 +158,7 @@ func main() {
|
|||
log.Println("Available scopes:", strings.Join(resp.Scopes, ", "))
|
||||
}
|
||||
```
|
||||
|
||||
## Upgrading
|
||||
|
||||
Please check the [UPGRADING.md](UPGRADING.md) to learn how to upgrade to the new version.
|
||||
|
|
70
UPGRADING.md
Normal file
70
UPGRADING.md
Normal file
|
@ -0,0 +1,70 @@
|
|||
# Upgrading to the v2
|
||||
|
||||
### Install the new version
|
||||
|
||||
```bash
|
||||
go get -u github.com/retailcrm/api-client-go/v2
|
||||
```
|
||||
|
||||
### Update all imports
|
||||
|
||||
Before:
|
||||
```go
|
||||
package main
|
||||
|
||||
import v5 "github.com/retailcrm/api-client-go/v5"
|
||||
```
|
||||
|
||||
After:
|
||||
```go
|
||||
package main
|
||||
|
||||
import "github.com/retailcrm/api-client-go/v2"
|
||||
```
|
||||
|
||||
You can use package alias `v5` to skip the second step.
|
||||
|
||||
### Replace package name for all imported symbols
|
||||
|
||||
Before:
|
||||
|
||||
```go
|
||||
package main
|
||||
|
||||
import v5 "github.com/retailcrm/api-client-go/v5"
|
||||
|
||||
func main() {
|
||||
client := v5.New("https://test.retailcrm.pro", "key")
|
||||
data, status, err := client.Orders(v5.OrdersRequest{
|
||||
Filter: v5.OrdersFilter{
|
||||
City: "Moscow",
|
||||
},
|
||||
Page: 1,
|
||||
})
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
After:
|
||||
|
||||
```go
|
||||
package main
|
||||
|
||||
import "github.com/retailcrm/api-client-go/v2"
|
||||
|
||||
func main() {
|
||||
client := retailcrm.New("https://test.retailcrm.pro", "key")
|
||||
data, status, err := client.Orders(retailcrm.OrdersRequest{
|
||||
Filter: retailcrm.OrdersFilter{
|
||||
City: "Moscow",
|
||||
},
|
||||
Page: 1,
|
||||
})
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
### Upgrade client usages
|
||||
|
||||
This major release contains some breaking changes regarding field names and fully redesigned error handling. Use the second example from
|
||||
the readme to learn how to process errors correctly.
|
Loading…
Add table
Reference in a new issue