Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@salesforce/plugin-limits

salesforcecli872.3kApache-2.03.3.53TypeScript support: included

commands to display api limits to your org

force, salesforce, salesforcedx, sf-plugin, sf, sfdx-plugin, sfdx

readme

plugin-limits

NPM Downloads/week License

A command to display the api limits of your org

This plugin is bundled with the Salesforce CLI. For more information on the CLI, read the getting started guide.

We always recommend using the latest version of these commands bundled with the CLI, however, you can install a specific version or tag if needed.

Install

sfdx plugins:install limits@x.y.z

Issues

Please report any issues at https://github.com/forcedotcom/cli/issues

Contributing

  1. Please read our Code of Conduct
  2. Create a new issue before starting your project so that we can keep track of what you are trying to add/fix. That way, we can also offer suggestions or let you know if there is already an effort in progress.
  3. Fork this repository.
  4. Build the plugin locally
  5. Create a topic branch in your fork. Note, this step is recommended but technically not required if contributing using a fork.
  6. Edit the code in your fork.
  7. Write appropriate tests for your changes. Try to achieve at least 95% code coverage on any new code. No pull request will be accepted without unit tests.
  8. Sign CLA (see CLA below).
  9. Send us a pull request when you are done. We'll review your code, suggest any needed changes, and merge it in.

CLA

External contributors will be required to sign a Contributor's License Agreement. You can do so by going to https://cla.salesforce.com/sign-cla.

Build

To build the plugin locally, make sure to have yarn installed and run the following commands:

# Clone the repository
git clone git@github.com:salesforcecli/plugin-limits

# Install the dependencies and compile
yarn install
yarn build

To use your plugin, run using the local ./bin/dev or ./bin/dev.cmd file.

# Run using local run file.
./bin/dev force:limits

There should be no differences when running via the Salesforce CLI or using the local run file. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.

# Link your plugin to the sfdx cli
sfdx plugins:link .
# To verify
sfdx plugins

Commands

sf org list limits

Display information about limits in your org.

USAGE
  $ sf org list limits -o <value> [--json] [--flags-dir <value>] [--api-version <value>]

FLAGS
  -o, --target-org=<value>   (required) Username or alias of the target org. Not required if the `target-org`
                             configuration variable is already set.
      --api-version=<value>  Override the api version used for api requests made by this command

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  Display information about limits in your org.

  For each limit, this command returns the maximum allocation and the remaining allocation based on usage. See this
  topic for a description of each limit:
  https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_limits.htm.

ALIASES
  $ sf force limits api display
  $ sf limits api display

EXAMPLES
  Display limits in your default org:

    $ sf org list limits

  Display limits in the org with alias "my-scratch-org":

    $ sf org list limits --target-org my-scratch-org

See code: src/commands/org/list/limits.ts

sf org list sobject record-counts

Display record counts for the specified standard or custom objects.

USAGE
  $ sf org list sobject record-counts -o <value> [--json] [--flags-dir <value>] [-s <value>...] [--api-version <value>]

FLAGS
  -o, --target-org=<value>   (required) Username or alias of the target org. Not required if the `target-org`
                             configuration variable is already set.
  -s, --sobject=<value>...   [default: ] API name of the standard or custom object for which to display record counts.
      --api-version=<value>  Override the api version used for api requests made by this command

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  Display record counts for the specified standard or custom objects.

  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 the Setup UI. The record counts are approximate
  because they're calculated asynchronously and your org's storage usage isn't updated immediately. To display all
  available record counts, run the command without the --sobject flag.

ALIASES
  $ sf force limits recordcounts display
  $ sf limits recordcounts display

EXAMPLES
  Display all available record counts in your default org:

    $ sf org list sobject record-counts

  Display record counts for the Account, Contact, Lead, and Opportunity objects in your default org:

    $ sf org list sobject record-counts --sobject Account --sobject Contact --sobject Lead --sobject Opportunity

  Display record counts for the Account and Lead objects for the org with alias "my-scratch-org":

    $ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org

See code: src/commands/org/list/sobject/record-counts.ts

changelog

3.3.53 (2025-05-04)

Bug Fixes

  • deps: bump @salesforce/core from 8.10.0 to 8.10.1 (fef163b)

3.3.52 (2025-04-20)

Bug Fixes

  • deps: bump @salesforce/core from 8.9.0 to 8.9.1 (88cf2a0)

3.3.51 (2025-03-23)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.5 to 8.8.6 (b233f64)

3.3.50 (2025-03-23)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.2.0 to 12.2.1 (0e16c7e)

3.3.49 (2025-03-09)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.3 to 8.8.5 (fda7b50)

3.3.48 (2025-03-02)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.4 to 12.2.0 (6151f83)

3.3.47 (2025-02-23)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.2 to 8.8.3 (8a4bbdf)

3.3.46 (2025-02-09)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.3 to 12.1.4 (5390c40)

3.3.45 (2025-02-02)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.2 to 12.1.3 (36b61f1)

3.3.44 (2025-01-12)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.1 to 12.1.2 (a9aa439)

3.3.43 (2024-12-15)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.0 to 12.1.1 (02736af)

3.3.42 (2024-12-01)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.0.13 to 12.1.0 (5c8bd46)

3.3.41 (2024-11-24)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.0.11 to 12.0.13 (1f7d015)

3.3.40 (2024-11-17)

Bug Fixes

  • deps: bump cross-spawn from 7.0.3 to 7.0.5 (13b5a66)

3.3.39 (2024-11-10)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.0.9 to 12.0.11 (cf0c006)

3.3.38 (2024-11-03)

Bug Fixes

  • deps: bump @salesforce/core from 8.6.3 to 8.6.4 (b426b32)

3.3.37 (2024-10-28)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.0.4 to 12.0.9 (06fc553)

3.3.36 (2024-10-21)

Bug Fixes

  • update dependency and new table format (281874a)

3.3.35 (2024-10-18)

Reverts

  • Revert "fix: update new tables for recordCounts and limits" (e797989)

3.3.34 (2024-10-18)

Bug Fixes

  • update new tables for recordCounts and limits (5b6d486)

3.3.33 (2024-10-13)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.3.10 to 11.3.12 (87d2bbe)

3.3.32 (2024-09-15)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.3.7 to 11.3.10 (d45b5e0)

3.3.31 (2024-09-15)

Bug Fixes

  • deps: bump @salesforce/core from 8.5.5 to 8.5.7 (4f7c836)

3.3.30 (2024-09-08)

Bug Fixes

  • deps: bump @salesforce/core from 8.5.4 to 8.5.5 (517bda7)

3.3.29 (2024-09-01)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.3.4 to 11.3.7 (4577bee)

3.3.28 (2024-09-01)

Bug Fixes

  • deps: bump @salesforce/core from 8.4.0 to 8.5.1 (edf95d4)

3.3.27 (2024-08-25)

Bug Fixes

  • deps: bump micromatch from 4.0.7 to 4.0.8 (1e2886b)

3.3.26 (2024-08-25)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.3.2 to 11.3.4 (9753619)

3.3.25 (2024-08-18)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.3.0 to 11.3.2 (f20c3a1)

3.3.24 (2024-08-12)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.2.4 to 11.3.0 (9ef63f9)

3.3.23 (2024-08-11)

Bug Fixes

  • deps: bump @salesforce/core from 8.2.8 to 8.3.0 (8e03b0d)

3.3.22 (2024-08-04)

Bug Fixes

  • deps: bump @salesforce/core from 8.2.7 to 8.2.8 (2a9672c)

3.3.21 (2024-07-28)

Bug Fixes

  • deps: bump @salesforce/core from 8.2.1 to 8.2.3 (97e88cd)

3.3.20 (2024-07-21)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.1.6 to 11.2.1 (adefe95)

3.3.19 (2024-07-21)

Bug Fixes

  • deps: bump @salesforce/core from 8.1.1 to 8.2.1 (65c6308)

3.3.18 (2024-07-14)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.1.2 to 11.1.6 (b586287)

3.3.17 (2024-07-07)

Bug Fixes

  • deps: bump @salesforce/core from 8.1.0 to 8.1.1 (e0ff146)

3.3.16 (2024-06-30)

Bug Fixes

  • deps: bump @salesforce/core from 8.0.3 to 8.1.0 (f3d8036)

3.3.15 (2024-06-21)

Bug Fixes

3.3.14 (2024-06-20)

Bug Fixes

3.3.13 (2024-06-13)

Bug Fixes

  • deps: bump braces from 3.0.2 to 3.0.3 (ac8de27)

3.3.12 (2024-06-09)

Bug Fixes

  • deps: bump @oclif/core from 4.0.2 to 4.0.3 (c3578e3)

3.3.11 (2024-06-06)

3.3.10 (2024-06-02)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 9.0.13 to 9.1.1 (b43909c)

3.3.9 (2024-05-26)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 9.0.7 to 9.0.13 (c1bf8f8)

3.3.8 (2024-05-26)

Bug Fixes

  • deps: bump @salesforce/kit from 3.1.1 to 3.1.2 (8b61847)

3.3.7 (2024-05-12)

Bug Fixes

  • deps: bump @oclif/core from 3.26.5 to 3.26.6 (c20daf7)

3.3.6 (2024-05-12)

Bug Fixes

  • deps: bump @salesforce/core from 7.3.5 to 7.3.6 (2887ff4)

3.3.5 (2024-05-05)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 9.0.5 to 9.0.7 (6cd11ef)

3.3.4 (2024-04-21)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 9.0.1 to 9.0.4 (41c1b8e)

3.3.3 (2024-04-15)

Bug Fixes

  • deps: bump @salesforce/core from 7.1.0 to 7.2.0 (d64b4fc)

3.3.2 (2024-04-14)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 9.0.0 to 9.0.1 (76e6a9b)

3.3.1 (2024-04-14)

Bug Fixes

  • deps: bump @oclif/core from 3.26.2 to 3.26.3 (90c403c)

3.3.0 (2024-04-10)

Features

3.2.1 (2024-03-31)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 8.0.1 to 8.0.2 (b316402)

3.2.0 (2024-03-25)

Features

3.1.15 (2024-03-24)

Bug Fixes

  • deps: bump @salesforce/core from 6.7.1 to 6.7.3 (2383069)

3.1.14 (2024-03-17)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.14 to 7.1.15 (8fb4682)

3.1.13 (2024-03-03)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.12 to 7.1.14 (a7e0230)

3.1.12 (2024-02-26)

3.1.11 (2024-02-26)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.9 to 7.1.12 (8f0ed67)

3.1.10 (2024-02-21)

Bug Fixes

  • deps: bump ip from 2.0.0 to 2.0.1 (70ec049)

3.1.9 (2024-02-18)

Bug Fixes

  • deps: bump @oclif/core from 3.19.1 to 3.19.2 (adc9dcc)

3.1.8 (2024-02-11)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.8 to 7.1.9 (6faf6c0)

3.1.7 (2024-02-04)

Bug Fixes

  • deps: bump @oclif/core from 3.18.1 to 3.18.2 (fe3421a)

3.1.6 (2024-01-28)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.3 to 7.1.4 (d445572)

3.1.5 (2024-01-21)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.2 to 7.1.3 (af9828e)

3.1.4 (2024-01-14)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.0.0 to 7.1.2 (b49ef0a)

3.1.3 (2024-01-14)

Bug Fixes

  • deps: bump @oclif/core from 3.16.0 to 3.18.1 (35c6881)

3.1.2 (2024-01-08)

Bug Fixes

3.1.1 (2024-01-07)

Bug Fixes

  • deps: bump @oclif/core from 3.15.1 to 3.16.0 (142a16f)

3.1.0 (2024-01-02)

Features

3.0.11 (2023-12-24)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 5.0.11 to 5.0.13 (a1098b9)

3.0.10 (2023-12-24)

Bug Fixes

  • deps: bump @salesforce/core from 6.4.1 to 6.4.2 (1100b34)

3.0.9 (2023-12-24)

Bug Fixes

  • deps: bump @oclif/core from 3.15.0 to 3.15.1 (da1f94e)

3.0.8 (2023-12-17)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 5.0.5 to 5.0.11 (b9551a4)

3.0.7 (2023-12-17)

Bug Fixes

  • deps: bump @salesforce/core from 6.4.0 to 6.4.1 (7500c86)

3.0.6 (2023-12-10)

Bug Fixes

  • deps: bump @oclif/core from 3.13.1 to 3.14.1 (24db9eb)

3.0.5 (2023-12-03)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 5.0.3 to 5.0.5 (b4addf0)

3.0.4 (2023-11-26)

Bug Fixes

  • deps: bump @salesforce/core from 6.1.3 to 6.2.1 (0188f8e)

3.0.3 (2023-11-26)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 5.0.1 to 5.0.3 (66e5c03)

3.0.2 (2023-11-15)

Bug Fixes

  • deps: updates from devScripts (#695) and core v6 (59c8db3)

3.0.1 (2023-11-03)

Bug Fixes

2.3.41 (2023-10-22)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.8 to 2.0.9 (1f15bca)

2.3.40 (2023-10-22)

Bug Fixes

  • deps: bump @salesforce/core from 5.3.9 to 5.3.10 (7769fbe)

2.3.39 (2023-10-17)

Bug Fixes

  • deps: bump @babel/traverse from 7.20.1 to 7.23.2 (001c26b)

2.3.38 (2023-10-08)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.1.22 to 3.1.28 (0414502)

2.3.37 (2023-10-01)

Bug Fixes

  • deps: bump @salesforce/core from 5.2.10 to 5.3.2 (2993e14)

2.3.36 (2023-09-28)

Bug Fixes

  • deps: bump get-func-name from 2.0.0 to 2.0.2 (24ee680)

2.3.35 (2023-09-24)

Bug Fixes

  • deps: bump @salesforce/core from 5.2.9 to 5.2.10 (c78042b)

2.3.34 (2023-09-10)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.1.20 to 3.1.22 (3c258e9)

2.3.33 (2023-09-03)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.1.18 to 3.1.20 (d879d1b)

2.3.32 (2023-08-27)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.9 to 3.0.11 (7ed90f5)

2.3.31 (2023-08-20)

Bug Fixes

  • deps: bump tslib from 2.6.1 to 2.6.2 (68cae76)

2.3.30 (2023-08-13)

Bug Fixes

  • deps: bump @oclif/core from 2.11.7 to 2.11.8 (a8e37ad)

2.3.29 (2023-08-07)

2.3.28 (2023-08-06)

Bug Fixes

  • deps: bump tslib from 2.6.0 to 2.6.1 (1d5e200)

2.3.27 (2023-07-23)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.1.2 to 3.1.10 (1a0511c)

2.3.26 (2023-07-11)

Bug Fixes

  • deps: bump semver from 5.7.1 to 5.7.2 (29b8dda)

2.3.25 (2023-07-09)

Bug Fixes

  • deps: bump tough-cookie from 4.1.2 to 4.1.3 (2ac7ebf)

2.3.24 (2023-07-09)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.3 to 2.0.4 (c6c42dc)

2.3.23 (2023-07-02)

Bug Fixes

  • deps: bump tslib from 2.5.3 to 2.6.0 (03c03e5)

2.3.22 (2023-06-18)

Bug Fixes

  • deps: bump @oclif/core from 2.8.5 to 2.8.7 (252df32)

2.3.21 (2023-06-18)

Bug Fixes

  • deps: bump @salesforce/core from 4.2.1 to 4.3.1 (b58d73b)

2.3.20 (2023-06-11)

Bug Fixes

  • deps: bump @salesforce/core from 4.0.1 to 4.2.1 (9f51481)

2.3.19 (2023-06-11)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.2 to 3.0.3 (cb181a6)

2.3.18 (2023-06-04)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.2 to 2.0.3 (84c6135)

2.3.17 (2023-05-21)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 2.4.0 to 2.4.3 (86962c8)

2.3.16 (2023-05-21)

Bug Fixes

  • deps: bump tslib from 2.5.0 to 2.5.2 (372acd6)

2.3.15 (2023-05-14)

Bug Fixes

  • deps: bump @salesforce/core from 3.36.0 to 3.36.1 (7a9717a)

2.3.14 (2023-05-08)

Bug Fixes

  • deps: bump @oclif/core from 2.8.2 to 2.8.5 (f7af057)

2.3.13 (2023-04-16)

Bug Fixes

  • deps: bump @oclif/core from 2.8.0 to 2.8.2 (87770c1)

2.3.12 (2023-04-02)

Bug Fixes

  • deps: bump @salesforce/core from 3.34.5 to 3.34.6 (3e8d02d)

2.3.11 (2023-04-02)

Bug Fixes

  • deps: bump @oclif/core from 2.6.4 to 2.8.0 (f62eaea)

2.3.10 (2023-03-26)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 2.2.4 to 2.2.5 (5203336)

2.3.9 (2023-03-20)

Bug Fixes

  • deps: bump @oclif/core from 2.4.0 to 2.6.4 (b672a9e)

2.3.8 (2023-03-05)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 2.1.2 to 2.2.4 (44ffe40)

2.3.7 (2023-03-05)

Bug Fixes

  • deps: bump @oclif/core from 2.3.1 to 2.4.0 (2aa8044)

2.3.6 (2023-02-26)

Bug Fixes

  • deps: bump @salesforce/core from 3.33.1 to 3.33.4 (00c77fe)

2.3.5 (2023-02-20)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 2.1.1 to 2.1.2 (c1f0af0)

2.3.4 (2023-02-19)

Bug Fixes

  • deps: bump @oclif/core from 2.1.2 to 2.1.7 (5e9f94e)

2.3.3 (2023-02-06)

Bug Fixes

  • deps: bump @oclif/core from 2.0.7 to 2.0.8 (e7a7aba)

2.3.2 (2023-02-06)

Bug Fixes

  • deps: bump @salesforce/ts-types from 1.7.2 to 1.7.3 (9122aab)

2.3.1 (2023-02-05)

Bug Fixes

  • deps: bump http-cache-semantics from 4.1.0 to 4.1.1 (a62f632)

2.3.0 (2023-01-30)

Features

2.2.4 (2023-01-29)

Bug Fixes

  • deps: bump @oclif/core from 1.23.1 to 1.26.1 (94c993b)

2.2.3 (2023-01-16)

Bug Fixes

  • deps: bump @salesforce/ts-types from 1.7.1 to 1.7.2 (28b6d20)

2.2.2 (2023-01-09)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 1.21.3 to 1.21.6 (8d20d86)

2.2.1 (2023-01-08)

Bug Fixes

  • deps: bump json5 from 1.0.1 to 1.0.2 (2fb67ac)

2.2.0 (2023-01-03)

Features

2.1.7 (2023-01-01)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.35 to 5.2.37 (231b9bc)

2.1.6 (2022-12-25)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.33 to 5.2.35 (96b3233)

2.1.5 (2022-12-18)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.28 to 5.2.33 (e8a2632)

2.1.4 (2022-12-18)

Bug Fixes

  • deps: bump @salesforce/core from 3.32.6 to 3.32.11 (ffda4c3)

2.1.3 (2022-12-04)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.22 to 5.2.28 (bcb0fba)

2.1.2 (2022-11-27)

Bug Fixes

  • deps: bump @salesforce/core from 3.32.1 to 3.32.2 (52a0e59)

2.1.1 (2022-11-17)

Reverts

  • Revert "feat: modify limits commands to align with sf and sfdx (#365)" (#372) (4c76933), closes #365 #372

2.1.0 (2022-11-17)

Features

  • modify limits commands to align with sf and sfdx (#365) (28b6c4e)

2.0.13 (2022-11-13)

Bug Fixes

  • deps: bump @oclif/core from 1.20.3 to 1.20.4 (aececa3)

2.0.12 (2022-11-13)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.20 to 5.2.22 (0eaec11)

2.0.11 (2022-11-06)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.18 to 5.2.20 (a9af854)

2.0.10 (2022-10-30)

Bug Fixes

  • deps: bump @oclif/core from 1.19.1 to 1.20.0 (3c9825e)

2.0.9 (2022-10-30)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.16 to 5.2.17 (1bbf966)

2.0.8 (2022-10-26)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.11 to 5.2.16 (f2415f4)

2.0.7 (2022-10-25)

Bug Fixes

  • deps: bump @salesforce/core from 3.30.9 to 3.31.16 (aae7e53)

2.0.6 (2022-10-23)

Bug Fixes

  • deps: bump @oclif/core from 1.16.4 to 1.19.1 (699483e)

2.0.5 (2022-10-02)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.10 to 5.2.11 (69b83dc)

2.0.4 (2022-09-30)

Bug Fixes

  • deps: bump @salesforce/core from 3.30.8 to 3.30.9 (0d15ff0)

2.0.3 (2022-09-28)

Bug Fixes

  • deps: bump @oclif/core from 1.16.0 to 1.16.4 (5b27743)

2.0.2 (2022-09-28)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.6 to 5.2.10 (3e6c201)

2.0.1 (2022-05-20)

Bug Fixes

2.0.0 (2022-04-01)

Bug Fixes

  • parking orbit plugin-limits (e870115)

Features

  • display all record counts (2e905ce)

1.3.0 (2021-12-02)

Features

1.2.3 (2021-11-02)

1.2.2 (2021-10-05)

Bug Fixes

1.2.1 (2021-05-10)

1.2.0 (2021-04-29)

Bug Fixes

Features

  • add recordcounts command (7628eaa)

1.1.0 (2021-04-26)

Features

1.0.6 (2021-04-13)

Bug Fixes

  • update help for force:limit:api:display (86f3f51)

1.0.5 (2021-04-01)

Bug Fixes

  • jobs names [skip-validate-pr] (4103421)
  • leif .yml merge [skip-validate-pr] (bdbf265)
  • leif .yml merge [skip-validate-pr] (42dc4b1)

1.0.4 (2021-02-19)

1.0.3 (2021-01-21)

Bug Fixes

1.0.2 (2020-12-16)

1.0.1 (2020-12-10)

1.0.0 (2020-11-16)

Bug Fixes

  • add command, test, config/readme housekeeping (8273060)
  • bumped release-orb to 4 (bcdc288)