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

feat: removing beta marking @w-14636241@ #629

Merged
merged 2 commits into from
Jul 2, 2024
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
44 changes: 4 additions & 40 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,52 +62,16 @@
"description": "Commands to manage org shapes and snapshots.",
"subtopics": {
"create": {
"description": "Commands to create org shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
"description": "Commands to create org shapes and snapshots."
},
"list": {
"description": "Commands to list org shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
"description": "Commands to list org shapes and snapshots."
},
"delete": {
"description": " Commands to delete shapes and snapshots.",
"subtopics": {
"snapshot": {
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
"description": "Commands to delete shapes and snapshots."
},
"get": {
"description": "Commands to get an org snapshot.",
"subtopics": {
"snapshot": {
"state": "beta",
"trailblazerCommunityLink": {
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
"name": "W24 Beta: Scratch Org Snapshots"
}
}
}
"description": "Commands to get an org snapshot."
}
}
}
Expand Down
1 change: 0 additions & 1 deletion src/commands/org/create/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ 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 = 'beta';
public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
Expand Down
1 change: 0 additions & 1 deletion src/commands/org/delete/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export class SnapshotDelete extends SfCommand<SaveResult | undefined> {
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:org:snapshot:delete'];
public static readonly deprecateAliases = true;
public static readonly state = 'beta';

public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
Expand Down
1 change: 0 additions & 1 deletion src/commands/org/get/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ 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 = 'beta';

public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
Expand Down
1 change: 0 additions & 1 deletion src/commands/org/list/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ 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 = 'beta';
public static readonly flags = {
'target-dev-hub': requiredHubFlagWithDeprecations,
'api-version': orgApiVersionFlagWithDeprecations,
Expand Down