sf-raven 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  # sf-raven
2
2
 
3
+ [![NPM](https://img.shields.io/npm/v/sf-raven.svg?label=sf-raven)](https://www.npmjs.com/package/sf-raven) [![Downloads/week](https://img.shields.io/npm/dw/sf-raven.svg)](https://npmjs.org/package/sf-raven) [![License](https://img.shields.io/badge/License-BSD%203--Clause-brightgreen.svg)](https://raw.githubusercontent.com/salesforcecli/sf-raven/main/LICENSE.txt)
4
+
3
5
  A plugin for the Salesforce CLI built by Tom Carman.
4
6
 
5
7
  [sf-raven](https://github.com/tomcarman/sf-raven) now replaces [sfdx-raven](https://github.com/tomcarman/sfdx-raven/).
6
8
 
7
9
  ## Why a new plugin?
8
10
 
9
- [sfdx-raven](https://github.com/tomcarman/sfdx-raven/) was originally built in 2020, but the Salesforce CLI landscape has changed a lot since then. Rather than attempting to [migrate the original plugin from sfdx to sf](https://github.com/salesforcecli/cli/wiki/Migrate-Plugins-Built-for-sfdx), it felt cleaner to start a new project and leverage the new architecture and scaffolding tools that come with the new sf cli.
11
+ I originally built [sfdx-raven](https://github.com/tomcarman/sfdx-raven/) in 2020, but the Salesforce CLI landscape has changed a lot since then. Rather than attempting to [migrate the original plugin from sfdx to sf](https://github.com/salesforcecli/cli/wiki/Migrate-Plugins-Built-for-sfdx), it felt cleaner to start a new project and leverage the new architecture and scaffolding tools that come with the new sf cli.
10
12
 
11
13
  ## Improvements over sfdx-raven
12
14
 
@@ -31,6 +33,11 @@ Full details, usage, examples etc are further down, or can be accessed via `--he
31
33
  - [sf raven object display recordtypes](#sf-raven-object-display-recordtypes)
32
34
  - Show RecordType information for a given sObject.
33
35
 
36
+ #### sf raven audit display
37
+
38
+ - [sf raven audit display](#sf-raven-audit-display)
39
+ - Show recent entries in the Setup Audit Trail.
40
+
34
41
  #### sf raven event
35
42
 
36
43
  - [sf raven event subscribe](#sf-raven-event-subscribe)
@@ -87,8 +94,6 @@ The plugin can be updated to the latest version using
87
94
  - sfdx raven:utils:deploy:branch2org
88
95
  - sfdx raven:utils:diff
89
96
  - sfdx raven:utils:dashboarduser:update - tbc
90
- - Audit Trail inspector
91
- - Allow you to quickly search audit trail by username, metadata item, most recent 50 etc.
92
97
  - Get the sObject Type for a given Id
93
98
  - Get the picklist values for a given picklist
94
99
  - Clone a record
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.4",
2
+ "version": "1.0.5",
3
3
  "commands": {
4
4
  "raven:audit:display": {
5
5
  "id": "raven:audit:display",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sf-raven",
3
3
  "description": "A custom sf plugin built by @tomcarman",
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "dependencies": {
6
6
  "@oclif/core": "^2.11.8",
7
7
  "@salesforce/core": "^5.2.10",
@@ -118,7 +118,6 @@
118
118
  "docs": "sf-docs",
119
119
  "format": "wireit",
120
120
  "lint": "wireit",
121
- "_postinstall": "yarn husky install",
122
121
  "postpack": "pinst --enable && shx rm -f oclif.manifest.json",
123
122
  "prepack": "pinst --disable && sf-prepack",
124
123
  "test": "wireit",