Skip to content

Commit

Permalink
fix: change snapshot command status to beta from pilot
Browse files Browse the repository at this point in the history
* fix: change snapshot command status to beta from pilot

* fix: link to oclif plugin broken

* fix: 404 link for oclif
  • Loading branch information
agomez-sf authored Dec 12, 2023
1 parent 950c837 commit e14e03c
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Learn about the plugin-signups

Salesforce CLI plugins are based on the [oclif plugin framework](<(https://oclif.io/docs/introduction.html)>). Read the [plugin developer guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_plugins.meta/sfdx_cli_plugins/cli_plugins_architecture_sf_cli.htm) to learn about Salesforce CLI plugin development.
Salesforce CLI plugins are based on the [oclif plugin framework](https://oclif.io/docs/introduction). Read the [plugin developer guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_plugins.meta/sfdx_cli_plugins/cli_plugins_architecture_sf_cli.htm) to learn about Salesforce CLI plugin development.

This repository contains a lot of additional scripts and tools to help with general Salesforce node development and enforce coding standards. You should familiarize yourself with some of the [node developer packages](https://github.com/forcedotcom/sfdx-dev-packages/) used by Salesforce. There is also a default circleci config using the [release management orb](https://github.com/forcedotcom/npm-release-management-orb) standards.

Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
"description": "Commands to create org shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "closedPilot",
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W19 Pilot: Scratch Org Snapshots"
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
Expand All @@ -78,10 +78,10 @@
"description": "Commands to list org shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "closedPilot",
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W19 Pilot: Scratch Org Snapshots"
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
Expand All @@ -90,10 +90,10 @@
"description": " Commands to delete shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "closedPilot",
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W19 Pilot: Scratch Org Snapshots"
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
Expand All @@ -102,10 +102,10 @@
"description": "Commands to get an org snapshot.",
"subtopics": {
"snapshot": {
"state": "closedPilot",
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W19 Pilot: Scratch Org Snapshots"
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/commands/org/create/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class SnapshotCreate extends SfCommand<OrgSnapshot> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:create'];
public static readonly deprecateAliases = true;
public static readonly state = 'closedPilot';
public static readonly state = 'beta';
public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/org/delete/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class SnapshotDelete extends SfCommand<SaveResult> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:delete'];
public static readonly deprecateAliases = true;
public static readonly state = 'closedPilot';
public static readonly state = 'beta';

public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/org/get/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class SnapshotGet extends SfCommand<OrgSnapshot> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:get'];
public static readonly deprecateAliases = true;
public static readonly state = 'closedPilot';
public static readonly state = 'beta';

public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/org/list/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class SnapshotList extends SfCommand<OrgSnapshot[]> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:list'];
public static readonly deprecateAliases = true;
public static readonly state = 'closedPilot';
public static readonly state = 'beta';
public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
Expand Down

0 comments on commit e14e03c

Please sign in to comment.