Skip to content

Commit

Permalink
chore(release): 1.1.7 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
SF-CLI-BOT committed Nov 4, 2021
1 parent 31bd909 commit fdddb7f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 16 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.1.7](https://github.com/salesforcecli/plugin-functions/compare/v1.1.6...v1.1.7) (2021-11-04)

### [1.1.6](https://github.com/salesforcecli/plugin-functions/compare/v1.1.5...v1.1.6) (2021-10-28)

### Bug Fixes
Expand Down
46 changes: 31 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ FLAGS
DESCRIPTION
Create a compute environment for use with Salesforce Functions.
Compute environments must be connected to a Salesforce org. By default the command uses your local environment's
connected org. Use the '--connected-org' flag to specify a specific org. Run 'sf env list' to see a list of
environments.
EXAMPLES
Create a compute environment to run Salesforce Functions:
Expand Down Expand Up @@ -105,6 +109,12 @@ FLAGS
DESCRIPTION
Delete an environment.
You must include the name of the environment to delete using '--target-compute'. Run 'sf env list' to see a list of
environments.
Running this command will prompt a confirmation. If you want to skip this confirmation, use the '--confirm' flag and
the environment alias to skip confirmation.
EXAMPLES
Delete a compute environment:
Expand All @@ -126,9 +136,6 @@ USAGE
FLAGS
-e, --target-compute=<value> Compute environment name to retrieve logs.
DESCRIPTION
Stream log output for an environment.
EXAMPLES
Stream log output:
Expand All @@ -150,6 +157,9 @@ FLAGS
DESCRIPTION
Add log drain to a specified environment.
Both '--target-compute' and '--url' are required flags. '--url' should be a HTTP or HTTPS URL that can receive the log
drain messages.
EXAMPLES
Add a log drain:
Expand All @@ -168,9 +178,6 @@ FLAGS
-e, --target-compute=<value> Environment name.
-j, --json Output list in JSON format.
DESCRIPTION
List log drains connected to a specified environment.
EXAMPLES
List log drains:
Expand All @@ -196,6 +203,8 @@ FLAGS
DESCRIPTION
Remove log drain from a specified environment.
Both '--target-compute' and '--drain-url' are required flags.
EXAMPLES
Remove a logdrain:
Expand All @@ -216,6 +225,8 @@ FLAGS
DESCRIPTION
Display a single config variable for an environment.
You must provide the '--target-compute' flag and the key to retrieve.
EXAMPLES
Get a config variable:
Expand All @@ -237,6 +248,8 @@ FLAGS
DESCRIPTION
List your environment's config vars in a table.
Use the '--json' flag to return config vars in JSON format.
EXAMPLES
List config vars:
Expand All @@ -258,9 +271,6 @@ USAGE
FLAGS
-e, --target-compute=<value> Environment name.
DESCRIPTION
Set a single config value for an environment.
EXAMPLES
Set a config value:
Expand All @@ -281,6 +291,8 @@ FLAGS
DESCRIPTION
Unset a single config value for an environment.
Run 'sf env var list' to see a list of config values that can be unset.
EXAMPLES
Unset a value:
Expand All @@ -302,6 +314,8 @@ FLAGS
DESCRIPTION
Create a Salesforce Function with basic scaffolding specific to a given language.
Both '--language' and '--name' are required flags. Function names must start with a capital letter.
EXAMPLES
Create a JavaScript function:
Expand All @@ -319,6 +333,8 @@ USAGE
DESCRIPTION
Log in to Salesforce Functions.
This step is required to develop or deploy Salesforce Functions.
EXAMPLES
Log in to Salesforce Functions:
Expand Down Expand Up @@ -346,6 +362,8 @@ FLAGS
DESCRIPTION
Login using JWT instead of default web-based flow. This will authenticate you with both sf and Salesforce Functions.
Use this command when executing from a script.
EXAMPLES
Log in using JWT:
Expand All @@ -365,9 +383,6 @@ Log out of your Salesforce Functions account.
USAGE
$ sf logout functions
DESCRIPTION
Log out of your Salesforce Functions account.
EXAMPLES
Log out:
Expand All @@ -389,9 +404,6 @@ FLAGS
-p, --payload=<value> Set the payload of the cloudevent as a JSON object or a path to a file via @file.json.
-s, --structured Set the cloudevent to be emitted as a structured JSON cloudevent.
DESCRIPTION
Send a cloudevent to a function.
EXAMPLES
Run a function:
Expand Down Expand Up @@ -423,6 +435,8 @@ FLAGS
DESCRIPTION
Build and run a Salesforce Function locally.
Run this command from the directory of your Salesforce Functions project.
EXAMPLES
Build and run a function:
Expand Down Expand Up @@ -451,6 +465,8 @@ FLAGS
DESCRIPTION
Show information on your Salesforce Functions login.
Returns your email and ID. Use '--show-token' to show your Salesforce Functions token.
EXAMPLES
Get account information:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/plugin-functions",
"description": "Functions plugin for the SF CLI",
"version": "1.1.6",
"version": "1.1.7",
"author": "[email protected]",
"bin": {
"functions": "./bin/run"
Expand Down

0 comments on commit fdddb7f

Please sign in to comment.