Skip to content

Commit 89332e5

Browse files
authored
Prep. for potential 1.2.0 release (#498)
* Prep. for potential 1.2.0 release * Update CHANGELOG and NOTICE files
1 parent 50f4f69 commit 89332e5

File tree

5 files changed

+265
-55
lines changed

5 files changed

+265
-55
lines changed

CHANGELOG.md

Lines changed: 34 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -19,35 +19,46 @@
1919

2020
# Changelog
2121

22+
## v1.2.0
23+
24+
- Update for travis migration (#492)
25+
- bump openwhisk-client-go dependency (#493)
26+
- remove trailing slash on apihost #481 (#485)
27+
- recognize .rs extension as a Rust action kind (#495)
28+
- Remove last Godeps, update Gogradle for gomod and Ansible setup (#496)
29+
- Update Gradle/Wrapper to latest version (#497)
30+
2231
## v1.1.0
23-
* Upgrade all Go dependencies to latest (#490)
24-
* Migrated to using go mod to manage dependencies (#489)
25-
* Upgrade travis to go 1.15
26-
* Support passing del annotation (#488)
27-
* Add an overwrite flag to "package bind" (#474)
28-
* Trigger parameter issue (#479)
29-
* remove test for download of iOS SDK (#478)
30-
* build binary test artifacts (#477)
31-
* Update test file (#463)
32-
* Fix regex for log stripping. (#462)
33-
* Ensure that the pollSince is greater than Activation start time (#461)
32+
33+
- Upgrade all Go dependencies to latest (#490)
34+
- Migrated to using go mod to manage dependencies (#489)
35+
- Upgrade travis to go 1.15
36+
- Support passing del annotation (#488)
37+
- Add an overwrite flag to "package bind" (#474)
38+
- Trigger parameter issue (#479)
39+
- remove test for download of iOS SDK (#478)
40+
- build binary test artifacts (#477)
41+
- Update test file (#463)
42+
- Fix regex for log stripping. (#462)
43+
- Ensure that the pollSince is greater than Activation start time (#461)
3444

3545
## v1.0.0
36-
* Allow log stripping to tolerate a missing stream identifier. (#444)
37-
* Add --logs options on activation get to return stripped logs as a convenience. (#445)
38-
* RestAssured fixes (#441)
39-
* Remove namespace property from wskprops (#434)
40-
* "wsk property get" can now return raw output for specific properties (#430)
41-
* Add dynamic column sizing to wsk activation list command (#427)
46+
47+
- Allow log stripping to tolerate a missing stream identifier. (#444)
48+
- Add --logs options on activation get to return stripped logs as a convenience. (#445)
49+
- RestAssured fixes (#441)
50+
- Remove namespace property from wskprops (#434)
51+
- "wsk property get" can now return raw output for specific properties (#430)
52+
- Add dynamic column sizing to wsk activation list command (#427)
4253

4354
## v0.10.0
4455

45-
* Integrate wskdeploy via `project` subcommand
46-
* Enhanced columnar output in `activation list`
47-
* CLI support for OpenWhisk enhancements including:
48-
* Support for specifying intra-container concurrency
49-
* New supported action languages: Ballerina, .Net, and Go
56+
- Integrate wskdeploy via `project` subcommand
57+
- Enhanced columnar output in `activation list`
58+
- CLI support for OpenWhisk enhancements including:
59+
- Support for specifying intra-container concurrency
60+
- New supported action languages: Ballerina, .Net, and Go
5061

5162
## v0.9.0
5263

53-
* Initial release as an Apache Incubator project.
64+
- Initial release as an Apache Incubator project.

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Apache OpenWhisk Command-line Interface (CLI)
2-
Copyright 2016-2020 The Apache Software Foundation
2+
Copyright 2016-2021 The Apache Software Foundation
33

44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).

README.md

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ We also provide instructions on how to build your own binaries from source code.
5959

6060
You can copy the `wsk` binary to any folder, and add the folder to your system `PATH` in order to run the OpenWhisk CLI command from anywhere on your system. To get the CLI command help, execute the following:
6161

62-
```
62+
```sh
6363
$ wsk --help
6464
```
6565

@@ -90,7 +90,7 @@ git clone [email protected]:apache/openwhisk-cli
9090
or you can specify a release (tag) if you do not want the latest code by using the `--branch <tag>` flag. For example, you can clone the source code for the tagged 1.1.0 [release](https://github.com/apache/openwhisk-cli/releases/tag/1.1.0)
9191

9292
```sh
93-
git clone --branch 1.1.0 [email protected]:apache/openwhisk-clie
93+
git clone --branch 1.1.0 [email protected]:apache/openwhisk-cli
9494
```
9595

9696
You can also pull the code from a fork of the repository. If you intend to become a Contributor to the project, read the section [Contributing to the project](#contributing-to-the-project) below on how to setup a fork.
@@ -226,7 +226,7 @@ $ go test -tags=unit -v
226226
227227
All tests can be run using the Gradle script:
228228
229-
```
229+
```sh
230230
$ ./gradlew goTest -PgoTags=unit
231231
$ ./gradlew goTest -PgoTags=native
232232
```
@@ -272,7 +272,7 @@ Integration tests are best left to the Travis build as they depend on a fully fu
272272
Please use `go get` to add new dependencies to the `go.mod` file:
273273
274274
```sh
275-
go get github.com/project/[email protected]
275+
go get -u github.com/project/[email protected]
276276
```
277277
278278
> Please avoid using commit hashes for referencing non-OpenWhisk libraries.
@@ -289,22 +289,10 @@ go mod tidy
289289
290290
Although you might be tempted to edit the go.mod file directly, please use the recommended method of using the `go get` command:
291291
292-
Using "latest" version:
293-
294-
```sh
295-
go get github.com/project/libname
296-
```
297-
298-
Using a release tag:
299-
300-
```sah
301-
go get github.com/project/[email protected]
302-
```
303-
304-
Using a commit hash:
305-
306292
```sh
307-
go get github.com/project/libname@aee5cab1c
293+
go get -u github.com/project/libname # Using "latest" version
294+
go get -u github.com/project/[email protected] # Using tagged version
295+
go get -u github.com/project/libname@aee5cab1c # Using a commit hash
308296
```
309297
310298
### Updating Go version

go.mod

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
module github.com/apache/openwhisk-cli
22

3-
go 1.14
3+
go 1.15
44

55
require (
6-
github.com/apache/openwhisk-client-go v0.0.0-20200824013630-44551f1f3b71
7-
github.com/apache/openwhisk-wskdeploy v0.0.0-20200827195556-535f5a9d3942
6+
github.com/apache/openwhisk-client-go v0.0.0-20210308161059-5cd1006dc35f
7+
github.com/apache/openwhisk-wskdeploy v0.0.0-20210305213302-f4f94e757f09
8+
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect
89
github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
9-
github.com/fatih/color v1.9.0
10+
github.com/fatih/color v1.10.0
1011
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
1112
github.com/google/go-querystring v1.0.0 // indirect
12-
github.com/hokaccha/go-prettyjson v0.0.0-20190818114111-108c894c2c0e // indirect
1313
github.com/jteeuwen/go-bindata v3.0.7+incompatible // indirect
14-
github.com/mattn/go-colorable v0.1.7
14+
github.com/mattn/go-colorable v0.1.8
1515
github.com/mitchellh/go-homedir v1.1.0
1616
github.com/nicksnyder/go-i18n v1.10.1
17-
github.com/onsi/ginkgo v1.14.0
18-
github.com/onsi/gomega v1.10.1
19-
github.com/pelletier/go-toml v1.8.0 // indirect
20-
github.com/spf13/cobra v1.0.0
17+
github.com/onsi/ginkgo v1.15.0
18+
github.com/onsi/gomega v1.10.5
19+
github.com/pelletier/go-buffruneio v0.1.0 // indirect
20+
github.com/spf13/cobra v1.1.3
2121
github.com/spf13/pflag v1.0.5 // indirect
2222
github.com/stretchr/testify v1.6.1
23-
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect
24-
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4 // indirect
23+
github.com/ugorji/go v1.1.4 // indirect
24+
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect
25+
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b // indirect
2526
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2627
)

0 commit comments

Comments
 (0)