Skip to content

Commit a1c334e

Browse files
author
SF-CLI-BOT
committed
chore(release): 2.0.0 [ci skip]
1 parent 2924569 commit a1c334e

File tree

2 files changed

+22
-16
lines changed

2 files changed

+22
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
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.
44

5+
## [2.0.0](https://github.com/salesforcecli/plugin-limits/compare/v1.3.0...v2.0.0) (2022-04-01)
6+
7+
### Features
8+
9+
- display all record counts ([2e905ce](https://github.com/salesforcecli/plugin-limits/commit/2e905ceaef69865680b1cdfb5a9cd0468302f753))
10+
11+
### Bug Fixes
12+
13+
- parking orbit plugin-limits ([e870115](https://github.com/salesforcecli/plugin-limits/commit/e870115b61bb8d6201787bf2d74e2ae3de5b13e2))
14+
- parking orbit plugin-limits ([ce77180](https://github.com/salesforcecli/plugin-limits/commit/ce77180d05176f6f1016762a06356210d6bf46d3))
15+
516
## [1.3.0](https://github.com/salesforcecli/plugin-limits/compare/v1.2.3...v1.3.0) (2021-12-02)
617

718
### Features

README.md

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,13 @@ sfdx plugins
7171
<!-- commands -->
7272

7373
- [`sfdx force:limits:api:display [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forcelimitsapidisplay--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
74-
- [`sfdx force:limits:recordcounts:display -s <array> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forcelimitsrecordcountsdisplay--s-array--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
74+
- [`sfdx force:limits:recordcounts:display [-s <array>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forcelimitsrecordcountsdisplay--s-array--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
7575

7676
## `sfdx force:limits:api:display [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
7777

7878
display current org’s limits
7979

8080
```
81-
display current org’s limits
82-
When you execute this command in a project, it provides limit information for your default scratch org.
83-
8481
USAGE
8582
$ sfdx force:limits:api:display [-u <string>] [--apiversion <string>] [--json] [--loglevel
8683
trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
@@ -105,25 +102,21 @@ EXAMPLES
105102
sfdx force:limits:api:display -u [email protected]
106103
```
107104

108-
_See code: [src/commands/force/limits/api/display.ts](https://github.com/salesforcecli/plugin-limits/blob/v1.2.3/src/commands/force/limits/api/display.ts)_
105+
_See code: [src/commands/force/limits/api/display.ts](https://github.com/salesforcecli/plugin-limits/blob/v2.0.0/src/commands/force/limits/api/display.ts)_
109106

110-
## `sfdx force:limits:recordcounts:display -s <array> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
107+
## `sfdx force:limits:recordcounts:display [-s <array>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
111108

112109
display record counts for the specified standard and custom objects
113110

114111
```
115-
display record counts for the specified standard and custom objects
116-
Use this command to get an approximate count of the records in standard or custom objects in your org. These record counts are the same as the counts listed in the Storage Usage page in Setup. The record counts are approximate because they're calculated asynchronously and your org’s storage usage isn’t updated immediately.
117-
118112
USAGE
119-
$ sfdx force:limits:recordcounts:display -s <array> [-u <string>] [--apiversion <string>] [--json] [--loglevel
113+
$ sfdx force:limits:recordcounts:display [-s <array>] [-u <string>] [--apiversion <string>] [--json] [--loglevel
120114
trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
121115
122116
OPTIONS
123-
-s, --sobjecttype=sobjecttype (required) comma-separated list of
124-
API names of standard or custom
125-
objects for which to display record
126-
counts
117+
-s, --sobjecttype=sobjecttype comma-separated list of API names of
118+
standard or custom objects for which
119+
to display record counts
127120
128121
-u, --targetusername=targetusername username or alias for the target
129122
org; overrides default target org
@@ -139,13 +132,15 @@ OPTIONS
139132
DESCRIPTION
140133
Use this command to get an approximate count of the records in standard or custom objects in your org. These record
141134
counts are the same as the counts listed in the Storage Usage page in Setup. The record counts are approximate because
142-
they're calculated asynchronously and your org’s storage usage isn’t updated immediately.
135+
they're calculated asynchronously and your org's storage usage isn't updated immediately. To display all available
136+
record counts, run the command without the '--sobjecttype' parameter.
143137
144138
EXAMPLES
139+
sfdx force:limits:recordcounts:display
145140
sfdx force:limits:recordcounts:display -s Account,Contact,Lead,Opportunity
146141
sfdx force:limits:recordcounts:display -s Account,Contact -u [email protected]
147142
```
148143

149-
_See code: [src/commands/force/limits/recordcounts/display.ts](https://github.com/salesforcecli/plugin-limits/blob/v1.2.3/src/commands/force/limits/recordcounts/display.ts)_
144+
_See code: [src/commands/force/limits/recordcounts/display.ts](https://github.com/salesforcecli/plugin-limits/blob/v2.0.0/src/commands/force/limits/recordcounts/display.ts)_
150145

151146
<!-- commandsstop -->

0 commit comments

Comments
 (0)