-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prep. for potential 1.2.0 release #498
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -19,35 +19,46 @@ | |||||
|
||||||
# Changelog | ||||||
|
||||||
## v1.2.0 | ||||||
|
||||||
- Update for travis migration (#492) | ||||||
- bump openwhisk-client-go dependency (#493) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
- remove trailing slash on apihost #481 (#485) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
- recognize .rs extension as a Rust action kind (#495) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
- Remove last Godeps, update Gogradle for gomod and Ansible setup (#496) | ||||||
- Update Gradle/Wrapper to latest version (#497) | ||||||
|
||||||
## v1.1.0 | ||||||
* Upgrade all Go dependencies to latest (#490) | ||||||
* Migrated to using go mod to manage dependencies (#489) | ||||||
* Upgrade travis to go 1.15 | ||||||
* Support passing del annotation (#488) | ||||||
* Add an overwrite flag to "package bind" (#474) | ||||||
* Trigger parameter issue (#479) | ||||||
* remove test for download of iOS SDK (#478) | ||||||
* build binary test artifacts (#477) | ||||||
* Update test file (#463) | ||||||
* Fix regex for log stripping. (#462) | ||||||
* Ensure that the pollSince is greater than Activation start time (#461) | ||||||
|
||||||
- Upgrade all Go dependencies to latest (#490) | ||||||
- Migrated to using go mod to manage dependencies (#489) | ||||||
- Upgrade travis to go 1.15 | ||||||
- Support passing del annotation (#488) | ||||||
- Add an overwrite flag to "package bind" (#474) | ||||||
- Trigger parameter issue (#479) | ||||||
- remove test for download of iOS SDK (#478) | ||||||
- build binary test artifacts (#477) | ||||||
- Update test file (#463) | ||||||
- Fix regex for log stripping. (#462) | ||||||
- Ensure that the pollSince is greater than Activation start time (#461) | ||||||
|
||||||
## v1.0.0 | ||||||
* Allow log stripping to tolerate a missing stream identifier. (#444) | ||||||
* Add --logs options on activation get to return stripped logs as a convenience. (#445) | ||||||
* RestAssured fixes (#441) | ||||||
* Remove namespace property from wskprops (#434) | ||||||
* "wsk property get" can now return raw output for specific properties (#430) | ||||||
* Add dynamic column sizing to wsk activation list command (#427) | ||||||
|
||||||
- Allow log stripping to tolerate a missing stream identifier. (#444) | ||||||
- Add --logs options on activation get to return stripped logs as a convenience. (#445) | ||||||
- RestAssured fixes (#441) | ||||||
- Remove namespace property from wskprops (#434) | ||||||
- "wsk property get" can now return raw output for specific properties (#430) | ||||||
- Add dynamic column sizing to wsk activation list command (#427) | ||||||
|
||||||
## v0.10.0 | ||||||
|
||||||
* Integrate wskdeploy via `project` subcommand | ||||||
* Enhanced columnar output in `activation list` | ||||||
* CLI support for OpenWhisk enhancements including: | ||||||
* Support for specifying intra-container concurrency | ||||||
* New supported action languages: Ballerina, .Net, and Go | ||||||
- Integrate wskdeploy via `project` subcommand | ||||||
- Enhanced columnar output in `activation list` | ||||||
- CLI support for OpenWhisk enhancements including: | ||||||
- Support for specifying intra-container concurrency | ||||||
- New supported action languages: Ballerina, .Net, and Go | ||||||
|
||||||
## v0.9.0 | ||||||
|
||||||
* Initial release as an Apache Incubator project. | ||||||
- Initial release as an Apache Incubator project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Apache OpenWhisk Command-line Interface (CLI) | ||
Copyright 2016-2020 The Apache Software Foundation | ||
Copyright 2016-2021 The Apache Software Foundation | ||
|
||
This product includes software developed at | ||
The Apache Software Foundation (http://www.apache.org/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
module github.com/apache/openwhisk-cli | ||
|
||
go 1.14 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/apache/openwhisk-client-go v0.0.0-20200824013630-44551f1f3b71 | ||
github.com/apache/openwhisk-wskdeploy v0.0.0-20200827195556-535f5a9d3942 | ||
github.com/apache/openwhisk-client-go v0.0.0-20210308161059-5cd1006dc35f | ||
github.com/apache/openwhisk-wskdeploy v0.0.0-20210305213302-f4f94e757f09 | ||
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect | ||
github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21 | ||
github.com/fatih/color v1.9.0 | ||
github.com/fatih/color v1.10.0 | ||
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/hokaccha/go-prettyjson v0.0.0-20190818114111-108c894c2c0e // indirect | ||
github.com/jteeuwen/go-bindata v3.0.7+incompatible // indirect | ||
github.com/mattn/go-colorable v0.1.7 | ||
github.com/mattn/go-colorable v0.1.8 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/nicksnyder/go-i18n v1.10.1 | ||
github.com/onsi/ginkgo v1.14.0 | ||
github.com/onsi/gomega v1.10.1 | ||
github.com/pelletier/go-toml v1.8.0 // indirect | ||
github.com/spf13/cobra v1.0.0 | ||
github.com/onsi/ginkgo v1.15.0 | ||
github.com/onsi/gomega v1.10.5 | ||
github.com/pelletier/go-buffruneio v0.1.0 // indirect | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/testify v1.6.1 | ||
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect | ||
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4 // indirect | ||
github.com/ugorji/go v1.1.4 // indirect | ||
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect | ||
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.