Skip to content

Commit

Permalink
chore(release): 1.4.11 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
k-capehart committed Oct 4, 2024
1 parent 3833b87 commit 098715e
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.4.11](https://github.com/k-capehart/kc-sf-plugin/compare/1.4.10...1.4.11) (2024-10-04)



## [1.4.10](https://github.com/k-capehart/kc-sf-plugin/compare/1.4.9...1.4.10) (2024-10-03)


Expand Down
45 changes: 40 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ For more template examples: https://github.com/k-capehart/kc-sf-plugin/tree/main
## List of Commands

<!-- commands -->

- [`sf kc diff`](#sf-kc-diff)
- [`sf kc trigger-framework`](#sf-kc-trigger-framework)
* [`sf kc diff`](#sf-kc-diff)
* [`sf kc trigger-framework`](#sf-kc-trigger-framework)
* [`sf kc update-api`](#sf-kc-update-api)

## `sf kc diff`

Expand Down Expand Up @@ -145,7 +145,7 @@ FLAG DESCRIPTIONS
Ignore files by placing them in your .forceignore and using this flag.
```

_See code: [src/commands/kc/diff.ts](https://github.com/k-capehart/kc-sf-plugin/blob/1.4.10/src/commands/kc/diff.ts)_
_See code: [src/commands/kc/diff.ts](https://github.com/k-capehart/kc-sf-plugin/blob/1.4.11/src/commands/kc/diff.ts)_

## `sf kc trigger-framework`

Expand Down Expand Up @@ -186,8 +186,43 @@ EXAMPLES
$ sf kc trigger-framework --custom-template templates/ --sobject Account
```

_See code: [src/commands/kc/trigger-framework.ts](https://github.com/k-capehart/kc-sf-plugin/blob/1.4.10/src/commands/kc/trigger-framework.ts)_
_See code: [src/commands/kc/trigger-framework.ts](https://github.com/k-capehart/kc-sf-plugin/blob/1.4.11/src/commands/kc/trigger-framework.ts)_

## `sf kc update-api`

Update the API version of Apex classes, triggers, and flows.

```
USAGE
$ sf kc update-api -t classes|triggers|flows... -v <value> [--json] [--flags-dir <value>] [-d <value>]
FLAGS
-d, --target-dir=<value> [default: force-app/main/default] The target directory for your salesforce project.
-t, --type=<option>... (required) The component type whose API version should be updated.
<options: classes|triggers|flows>
-v, --api-version=<value> (required) The minimum required API version that components should satisfy.
GLOBAL FLAGS
--flags-dir=<value> Import flag values from a directory.
--json Format output as json.
DESCRIPTION
Update the API version of Apex classes, triggers, and flows.
Parse through a SFDX project and update the API version for Apex classes, triggers and flows to a specified version.
The API version must be a valid version that is not deprecated.
EXAMPLES
Update all apex classes and triggers to be at least version 61.0.
- sf kc update-api --type classes --type triggers --api-version 61.0
FLAG DESCRIPTIONS
-v, --api-version=<value> The minimum required API version that components should satisfy.
Override the api version used for api requests made by this command
```

_See code: [src/commands/kc/update-api.ts](https://github.com/k-capehart/kc-sf-plugin/blob/1.4.11/src/commands/kc/update-api.ts)_
<!-- commandsstop -->

## Build
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": "kc-sf-plugin",
"description": "Various commands for enabling salesforce development, including automated apex trigger framework generation.",
"version": "1.4.10",
"version": "1.4.11",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
Expand Down

0 comments on commit 098715e

Please sign in to comment.