Skip to content
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

Allowing fn inspect functions and fn list functions for PBF(Pre-Built Functions) function with empty image and digest field. By default, it was not supported. #659

Merged
merged 3 commits into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@

# Releases

## v 0.6.24

* Allowing `fn inspect functions` and `fn list functions` for PBF(Pre-Built Functions) function with empty image and digest field. By default, it was not supported.

Note: If you have functions created using Pre-Built Functions, then please upgrade to this version to have fn list and fn inspect work properly


## v 0.6.7

* Support for following languages versions:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/fnproject/cli
require (
github.com/coreos/go-semver v0.3.0
github.com/fatih/color v0.0.0-20170926111411-5df930a27be2
github.com/fnproject/fn_go v0.8.6
github.com/fnproject/fn_go v0.8.7
github.com/ghodss/yaml v1.0.0
github.com/giantswarm/semver-bump v0.0.0-20140912095342-88e6c9f2fe39
github.com/go-openapi/runtime v0.19.23
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ github.com/fatih/color v0.0.0-20170926111411-5df930a27be2 h1:40J76vs1Y7oiHFqTrQH
github.com/fatih/color v0.0.0-20170926111411-5df930a27be2/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/fnproject/fn_go v0.8.6 h1:CO2ouYc9ZytENgeHe36gGRFKwCb7nM7wf7Y+VGkI7eA=
github.com/fnproject/fn_go v0.8.6/go.mod h1:qQhi3sVpjmPVnxVwnWySZDjG0tackIT6IQjJ6BjiQpc=
github.com/fnproject/fn_go v0.8.7 h1:XtRc5EWfRmTmlfkR5rfRFB9BejnEpYukmXHRS0ME0Q4=
github.com/fnproject/fn_go v0.8.7/go.mod h1:qQhi3sVpjmPVnxVwnWySZDjG0tackIT6IQjJ6BjiQpc=
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
Expand Down
32 changes: 28 additions & 4 deletions vendor/github.com/fnproject/fn_go/provider/oracle/shim/fns.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ github.com/coreos/go-semver/semver
# github.com/fatih/color v0.0.0-20170926111411-5df930a27be2
## explicit
github.com/fatih/color
# github.com/fnproject/fn_go v0.8.6
# github.com/fnproject/fn_go v0.8.7
## explicit
github.com/fnproject/fn_go
github.com/fnproject/fn_go/client/version
Expand Down