Skip to content

Commit 90a8100

Browse files
authored
Merge pull request #1269 from nimsara66/4.4.1
Add changes for 4.4.1 Release
2 parents 4a5b691 + 3dba1b8 commit 90a8100

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/main.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
- name: Build
6060
run: |
6161
cd import-export-cli
62-
# go vet ./...
63-
./build.sh -t apictl.go -v 4.4.0
62+
go vet ./...
63+
./build.sh -t apictl.go -v 4.4.1
6464
6565
- name: Start APIM
6666
run: |
@@ -71,4 +71,4 @@ jobs:
7171
- name: Test
7272
run: |
7373
cd import-export-cli/integration
74-
go test -p 1 -timeout 0 -archive apictl-4.4.0-linux-x64.tar.gz -race -coverprofile=coverage.txt -covermode=atomic ./pkg/...
74+
go test -p 1 -timeout 0 -archive apictl-4.4.1-linux-x64.tar.gz -race -coverprofile=coverage.txt -covermode=atomic ./pkg/...

import-export-cli/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Command Line tool for importing and exporting APIs/Applications/API Products in
1717
- ### Building
1818
`cd` into `product-apim-tooling/import-export-cli`
1919

20-
Execute `./build.sh -t apictl.go -v 4.4.0 -f` to build for all platforms.
20+
Execute `./build.sh -t apictl.go -v 4.4.1 -f` to build for all platforms.
2121

2222
Created packages will be available at `build/target` directory
2323

@@ -69,11 +69,11 @@ Command Line tool for importing and exporting APIs/Applications/API Products in
6969

7070
Usage: `docker build --build-arg version=<version> -t apictl:<version> .`
7171

72-
Example: `docker build --build-arg version=4.4.0.1 -t apictl:4.4.0.1 .`
72+
Example: `docker build --build-arg version=4.4.1.1 -t apictl:4.4.1.1 .`
7373

7474
- ### Using the Docker Image
7575

76-
`docker run -it -v $(pwd):/git -v ~/.wso2apictl:/root/.wso2apictl -v ~/.wso2apictl.local:/root/.wso2apictl.local apictl:4.4.0.1 <apictl command>`
76+
`docker run -it -v $(pwd):/git -v ~/.wso2apictl:/root/.wso2apictl -v ~/.wso2apictl.local:/root/.wso2apictl.local apictl:4.4.1.1 <apictl command>`
7777

7878
***
7979

import-export-cli/integration/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ devops-rest-api-version: v0
5252
The version of the apictl that is being integration tested.
5353

5454
```
55-
apictl-version: 4.4.0
55+
apictl-version: 4.4.1
5656
```
5757

5858

@@ -95,7 +95,7 @@ apictl-version: 4.4.0
9595
```
9696
go test -p 1 -timeout 0 -archive <apictl archive name>
9797
98-
example: go test -p 1 -timeout 0 -archive apictl-4.4.0-linux-x64.tar.gz
98+
example: go test -p 1 -timeout 0 -archive apictl-4.4.1-linux-x64.tar.gz
9999
100100
```
101101
@@ -104,23 +104,23 @@ example: go test -p 1 -timeout 0 -archive apictl-4.4.0-linux-x64.tar.gz
104104
```
105105
go test -p 1 -timeout 0 -archive <apictl archive name> -run <Test function name or partial name regex>
106106
107-
example: go test -p 1 -timeout 0 -archive apictl-4.4.0-linux-x64.tar.gz -run TestVersion
107+
example: go test -p 1 -timeout 0 -archive apictl-4.4.1-linux-x64.tar.gz -run TestVersion
108108
```
109109

110110
- Print verbose output
111111

112112
```
113113
go test -p 1 -timeout 0 -archive <apictl archive name> -v
114114
115-
example: go test -p 1 -timeout 0 -archive apictl-4.4.0-linux-x64.tar.gz -v
115+
example: go test -p 1 -timeout 0 -archive apictl-4.4.1-linux-x64.tar.gz -v
116116
```
117117

118118
- Print http transport request/responses
119119

120120
```
121121
go test -p 1 -timeout 0 -archive <apictl archive name> -logtransport
122122
123-
example: go test -p 1 -timeout 0 -archive apictl-4.4.0-linux-x64.tar.gz -logtransport
123+
example: go test -p 1 -timeout 0 -archive apictl-4.4.1-linux-x64.tar.gz -logtransport
124124
```
125125

126126
---

import-export-cli/mi/integration/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
```
6363
go test -archive <apictl archive name>
6464
65-
example: go test -archive apictl-4.2.1-linux-x64.tar.gz
65+
example: go test -archive apictl-4.4.1-linux-x64.tar.gz
6666
6767
```
6868

@@ -71,21 +71,21 @@ example: go test -archive apictl-4.2.1-linux-x64.tar.gz
7171
```
7272
go test -archive <apictl archive name> -test.run <Test function name or partial name regex>
7373
74-
example: go test -archive apictl-4.2.1-linux-x64.tar.gz -test.run TestGetConnectors
74+
example: go test -archive apictl-4.4.1-linux-x64.tar.gz -test.run TestGetConnectors
7575
```
7676

7777
- Print verbose output
7878

7979
```
8080
go test -archive <apictl archive name> -test.v
8181
82-
example: go test -archive apictl-4.2.1-linux-x64.tar.gz -test.v
82+
example: go test -archive apictl-4.4.1-linux-x64.tar.gz -test.v
8383
```
8484

8585
- Print http transport request/responses
8686

8787
```
8888
go test -archive <apictl archive name> -logtransport
8989
90-
example: go test -archive apictl-4.2.1-linux-x64.tar.gz -logtransport
90+
example: go test -archive apictl-4.4.1-linux-x64.tar.gz -logtransport
9191
```

0 commit comments

Comments
 (0)