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

Package detail

@salesforce/core

forcedotcom1.6mBSD-3-Clause8.8.2TypeScript support: included

Core libraries to interact with SFDX projects, orgs, and APIs.

force, salesforce, sfdx, salesforcedx

readme

NPM

Description

The @salesforce/core library provides client-side management of Salesforce DX projects, org authentication, connections to Salesforce APIs, and other utilities. Much of the core functionality that powers the Salesforce CLI plugins comes from this library. You can use this functionality in your plugins too.

Usage

See the API documentation.

Contributing

If you're interested in contributing, take a look at the CONTRIBUTING guide.

Issues

Report all issues to the issues only repository.

Using TestSetup

The Salesforce DX Core Library provides a unit testing utility to help with mocking and sand-boxing core components. This feature allows unit tests to execute without needing to make API calls to salesforce.com.

See the Test Setup documentation.

Message Transformer

The Messages class, by default, loads message text during run time. It's optimized to do this only per file.

If you're using @salesforce/core or other code that uses its Messages class in a bundler (webpack, esbuild, etc) it may struggle with these runtime references.

src/messageTransformer will "inline" the messages into the js files during TS compile using https://github.com/nonara/ts-patch.

In your plugin or library,

yarn add --dev ts-patch

tsconfig.json

{
  ...
  "plugins": [{ "transform": "@salesforce/core/lib/messageTransformer", "import": "messageTransformer" }]
}

.sfdevrc.json, which gets merged into package.json

"wireit": {
    "compile": {
      "command": "tspc -p . --pretty --incremental",
      "files": [
        "src/**/*.ts",
        "tsconfig.json",
        "messages"
      ],
      "output": [
        "lib/**",
        "*.tsbuildinfo"
      ],
      "clean": "if-file-deleted"
    }
  }

Performance Testing

There are some benchmark.js checks to get a baseline for Logger performance. https://forcedotcom.github.io/sfdx-core/perf-Linux https://forcedotcom.github.io/sfdx-core/perf-Windows

You can add more test cases in test/perf/logger/main.js

If you add tests for new parts of sfdx-core outside of Logger, add new test Suites and create new jobs in the GHA perf.yml

changelog

8.8.2 (2025-01-18)

Bug Fixes

  • deps: bump cross-spawn from 7.0.3 to 7.0.6 (7d5497e)

8.8.1 (2025-01-17)

Bug Fixes

  • oauth: bubble up new token when refreshing it (b6bdd36)

8.8.0 (2024-11-13)

Features

  • sfdxAuthUrl support port in instanceUrl (b82e1da)

8.7.0 (2024-11-13)

Features

  • dns lookup doesn't include port (1afcc89)

8.6.4 (2024-10-29)

Bug Fixes

8.6.2 (2024-10-08)

Bug Fixes

  • better scratch org create authentication and lint fixes (#1147) (8d8360b)

8.6.1 (2024-09-24)

Bug Fixes

8.6.0 (2024-09-24)

Features

  • add fields in sandboxinfo (4e15a13)

8.5.7 (2024-09-12)

Bug Fixes

  • deps: bump path-to-regexp from 1.8.0 to 1.9.0 (7aacd1f)

8.5.6 (2024-09-11)

Bug Fixes

  • update error message for sfdx auth url (96f1dd4)

8.5.5 (2024-09-08)

Bug Fixes

  • deps: bump pino from 9.3.2 to 9.4.0 (bb3dcff)

8.5.4 (2024-09-04)

Bug Fixes

8.5.2-dev.0 (2024-08-30)

Bug Fixes

  • env: support more SF_ source-tracking vars (e9bff6b)

8.5.3 (2024-09-01)

Bug Fixes

  • deps: bump @jsforce/jsforce-node from 3.4.0 to 3.4.1 (95de99e)

8.5.2 (2024-09-01)

Bug Fixes

  • deps: bump @salesforce/kit from 3.1.6 to 3.2.2 (665258c)

8.5.2-dev.0 (2024-08-30)

Bug Fixes

  • env: support more SF_ source-tracking vars (e9bff6b)

8.5.1 (2024-08-30)

Bug Fixes

  • deps: bump micromatch from 4.0.7 to 4.0.8 (8b75440)

8.5.0 (2024-08-29)

Features

  • workspaces support for myDomain checks (81dcfb3)

8.4.0 (2024-08-13)

Features

8.3.0 (2024-08-08)

Features

8.2.9 (2024-08-07)

Bug Fixes

8.2.8 (2024-07-31)

Bug Fixes

8.2.7 (2024-07-29)

Bug Fixes

8.2.6 (2024-07-28)

Bug Fixes

  • deps: bump semver from 7.6.2 to 7.6.3 (715c9ce)

8.2.5 (2024-07-28)

Bug Fixes

  • deps: bump pino-pretty from 11.2.1 to 11.2.2 (f2cd372)

8.2.4 (2024-07-28)

Bug Fixes

  • deps: bump pino from 9.2.0 to 9.3.2 (af6dfc7)

8.2.3 (2024-07-22)

Bug Fixes

8.2.2 (2024-07-21)

Bug Fixes

  • deps: bump @jsforce/jsforce-node from 3.2.3 to 3.2.4 (5f92923)

8.2.1 (2024-07-19)

Bug Fixes

  • use EnvVar class for audience url and domain retry env vars (#1104) (8ca1368)

8.2.0 (2024-07-16)

Features

  • deprecate CMTRecordManagedDeletion scratch org feature (7716748)

8.1.3 (2024-07-16)

Bug Fixes

8.1.2 (2024-07-14)

Bug Fixes

  • deps: bump ajv from 8.16.0 to 8.17.1 (7c6f9d7)

8.1.1 (2024-07-03)

Bug Fixes

  • allow for undefined uniqueListerners (5c6779c)

8.1.0 (2024-06-27)

Features

  • methods for read/write sfProjectJson.plugins (dd2c26a)

8.0.5 (2024-06-25)

Bug Fixes

8.0.4 (2024-06-24)

Bug Fixes

8.0.3 (2024-06-21)

Bug Fixes

  • allow uppercase keys inside project.plugins (5b112f8)

8.0.2 (2024-06-20)

Bug Fixes

  • deps: bump ajv from 8.15.0 to 8.16.0 (f96c9fa)

8.0.1 (2024-06-19)

Bug Fixes

7.5.0 (2024-06-19)

Bug Fixes

  • compile error TS2589 - Type instantiation is excessively deep and possibly infinite (6b4aa8a)

7.3.12-qa.1 (2024-06-11)

7.3.12-qa.0 (2024-06-11)

Bug Fixes

  • sfProject types matches schemas repo (82fee15)

Features

  • only require packageDir, not NamedPackageDir (6b4b308)

7.4.1 (2024-06-14)

Bug Fixes

  • scratch creation partial success (74f9e1b)

7.4.0 (2024-06-12)

Features

  • better packageDirectory error (ff23050)

7.3.12 (2024-06-07)

Bug Fixes

  • non-reference clone of transferred listeners (#1080) (f5b2b02)

7.3.12-qa.1 (2024-06-11)

Features

  • only require packageDir, not NamedPackageDir (6b4b308)

7.3.12-qa.0 (2024-06-11)

Bug Fixes

  • sfProject types matches schemas repo (82fee15)

7.3.12 (2024-06-07)

Bug Fixes

  • non-reference clone of transferred listeners (#1080) (f5b2b02)

7.3.11 (2024-06-07)

Bug Fixes

7.3.10 (2024-06-04)

Bug Fixes

  • deps: bump ajv from 8.14.0 to 8.15.0 (66208eb)

7.3.9 (2024-05-19)

Bug Fixes

  • deps: bump @salesforce/schemas from 1.7.0 to 1.9.0 (0e3e42d)

7.3.8 (2024-05-16)

Bug Fixes

7.3.7 (2024-05-16)

Bug Fixes

  • add oauth options data to auth code exchange errors (#1068) (ea859ed)

7.3.6 (2024-05-12)

Bug Fixes

  • deps: bump semver from 7.6.0 to 7.6.2 (e5a480c)

7.3.5 (2024-05-06)

Bug Fixes

  • remove namespace if nonamespace option is set (#1064) (f90ab68)

7.3.4 (2024-05-05)

Bug Fixes

  • deps: bump ajv from 8.12.0 to 8.13.0 (624a01d)

7.3.3 (2024-04-30)

Bug Fixes

  • deps: bump @jsforce/jsforce-node from 3.1.0 to 3.2.0 (#1062) (cfba51b)

7.3.2 (2024-04-28)

Bug Fixes

  • deps: bump pino from 8.19.0 to 8.21.0 (9f8d872)

7.3.1 (2024-04-21)

Bug Fixes

  • deps: bump @salesforce/kit from 3.1.0 to 3.1.1 (bf1b11e)

7.3.0 (2024-04-15)

Features

  • scratch: remove language restriction (97e1989)

7.2.0 (2024-04-10)

Features

  • export envVars top-level (0ed5e69)

7.1.0 (2024-04-10)

Features

  • export of scratchSettingsGenerator for pkg-library (#1053) (920b5df)

7.0.0 (2024-04-10)

  • feat!: jsforce-node, top-level exports, improved sfError (515011c)

BREAKING CHANGES

  • top-level exports will prevent imports from @salesforce/core/lib/etc
  • uses jsforce-node in place of jsforce
  • type changes for SFError
  • remove previously deprecated checkLightningDomain, aliasAccessor

  • feat: sfError

  • chore: tsconfig changes to get es2022 error.cause (node 18+)

  • refactor: no mutate params, no NamedError

  • feat: let cause be unknown for constructor, create (like wrap)

  • chore: wrap an Error (so cause can be the original error)

  • chore: tsconfig for postcompile (doc)

  • docs: migrating

  • chore: top-level export of config

  • refactor: interface => type

  • refactor: simplify exports, add stateAggregator

  • chore: import default on messageTransformer

  • refactor: typing for sfError.getObject, omit undefined props

  • refactor: restore param mutation/side-effects

6.7.6 (2024-04-04)

6.7.5 (2024-04-04)

Bug Fixes

  • current linter standards, allow 2 (20601d0)

6.7.4 (2024-03-31)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.15 to 3.1.0 (ad320e0)

6.7.3 (2024-03-22)

Bug Fixes

6.7.2 (2024-03-22)

Bug Fixes

  • updating CN Edition test references (46ed37e)

6.7.1 (2024-03-11)

Bug Fixes

6.7.0 (2024-02-28)

Features

6.6.0 (2024-02-27)

Bug Fixes

  • delete sandbox auth files before writing new one (e88d780)

Features

  • add support for refreshing sandboxes (1071303)

6.5.6 (2024-02-25)

Bug Fixes

  • deps: bump @types/semver from 7.5.7 to 7.5.8 (ee55b66)

6.5.5 (2024-02-18)

Bug Fixes

  • deps: bump semver and @types/semver (a868c32)

6.5.4 (2024-02-18)

Bug Fixes

  • deps: bump pino from 8.18.0 to 8.19.0 (ff148e1)

6.5.3 (2024-02-06)

Bug Fixes

  • remove unused env/config (1c5bc73)

6.5.2 (2024-02-04)

Bug Fixes

  • deps: bump pino from 8.17.2 to 8.18.0 (5485a4d)

6.5.1 (2024-01-24)

Bug Fixes

  • correct typings for configStore get (4dad8c7)

6.5.0 (2024-01-22)

Bug Fixes

  • emit warning if config var is unset (fc32218)
  • properly handle undefined (94fe825)

6.4.8-dev.0 (2024-01-17)

Features

  • scratch: add org-capitalize-record-types (725bf67)

6.4.7 (2024-01-10)

Bug Fixes

  • deps: bump pino from 8.16.2 to 8.17.2 (c63976b)

6.4.6 (2024-01-09)

Bug Fixes

6.4.5 (2024-01-09)

Bug Fixes

  • ignore requests for site icons (aeab4a9)

6.4.4 (2024-01-04)

Bug Fixes

  • remove slash char from error message (1bb300b)

6.4.3 (2023-12-31)

Bug Fixes

  • deps: bump pino-pretty from 10.3.0 to 10.3.1 (e68014a)

6.4.2 (2023-12-17)

Bug Fixes

  • deps: bump pino-pretty from 10.2.3 to 10.3.0 (f7da5be)

6.4.1 (2023-12-12)

Bug Fixes

  • update max query limit env var (7b42e94)

6.4.0 (2023-12-08)

Features

6.3.0 (2023-12-05)

6.2.3-qa.1 (2023-12-04)

Bug Fixes

  • backward logic on scratch/sbox (98762d5)

6.2.3-qa.0 (2023-12-04)

Features

  • return a value, use that instead of mutating state (b311cb1)

6.2.2-qa.0 (2023-11-27)

Bug Fixes

  • jsdoc error (985c2f6)
  • only hit server for undefined values, not false (c0f3845)

Features

  • set some known props during scratch org creation (447b070)

6.2.2 (2023-11-28)

Bug Fixes

6.2.2-qa.0 (2023-11-27)

Bug Fixes

  • jsdoc error (985c2f6)
  • only hit server for undefined values, not false (c0f3845)

Features

  • set some known props during scratch org creation (447b070)

6.2.1 (2023-11-26)

Bug Fixes

  • deps: bump @types/semver from 7.5.5 to 7.5.6 (c12440d)

6.2.0 (2023-11-21)

Features

  • generic type for sfError.data (49beee5)

6.1.4 (2023-11-19)

Bug Fixes

  • deps: bump pino from 8.16.1 to 8.16.2 (44678d4)

6.1.3 (2023-11-15)

Bug Fixes

  • no retries on sync lock (b7f5588)

6.1.2 (2023-11-15)

Bug Fixes

  • types: additional props for packaging lib (25b3cf1)

6.1.1 (2023-11-15)

Bug Fixes

  • write safety and valid typing for sfProject (ff8b066)

6.1.0 (2023-11-14)

Bug Fixes

  • permissionSet type changes (7412d10)

Features

  • remove sfdxConfig class (80f21a3)
  • reusable file locks outside of ConfigFile (29c59e0)
  • ts5 and ts-patch (4e66905)

Performance Improvements

  • parallelize clear writes (25a525a)

5.4.0-crdt.1 (2023-10-13)

6.0.1-crdt.0 (2023-10-13)

Features

  • configFile file locks and write-via-merge (91316a7)
  • typing for what goes in the org-user file (bde5005)
  • wip: crdt-configfile (bad6dfb)

5.3.20 (2023-11-10)

Bug Fixes

5.3.19 (2023-11-08)

Bug Fixes

  • use memory logger instance when disabled (c2ef3a0)

5.3.18 (2023-11-05)

Bug Fixes

  • deps: bump @types/semver from 7.5.3 to 7.5.4 (a3be392)

5.3.17 (2023-11-02)

Bug Fixes

  • deps: testSetup has non ts-sinon dependency (9fcb206)

5.3.16 (2023-10-29)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.14 to 3.0.15 (6189030)

5.3.15 (2023-10-29)

Bug Fixes

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

5.3.14 (2023-10-26)

Bug Fixes

  • add scopeProfiles to project type (b130982)
  • update schemas dep (3f70e8f)

5.3.13 (2023-10-26)

Bug Fixes

  • handle alias file with no orgs prop (c59c7c7)

5.3.12 (2023-10-24)

Bug Fixes

  • deps: bump pino from 8.15.6 to 8.16.0 (7e05681)

5.3.11 (2023-10-22)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.13 to 3.0.14 (9e366de)

5.3.10 (2023-10-20)

Bug Fixes

5.4.0-crdt.1 (2023-10-13)

6.0.1-crdt.0 (2023-10-13)

Features

  • configFile file locks and write-via-merge (91316a7)
  • typing for what goes in the org-user file (bde5005)
  • wip: crdt-configfile (bad6dfb)

5.3.9 (2023-10-09)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.12 to 3.0.13 (08fb56b)

5.3.8 (2023-10-08)

Bug Fixes

  • deps: bump pino from 8.15.1 to 8.15.6 (2a5a9cc)

5.3.7 (2023-10-08)

Bug Fixes

  • deps: bump @types/semver from 7.5.2 to 7.5.3 (9e8a0a7)

5.3.6 (2023-10-08)

Bug Fixes

  • deps: bump pino-pretty from 10.2.0 to 10.2.3 (9e925c5)

5.3.5 (2023-10-06)

Bug Fixes

  • allow padding on id and secret (b93ac50)

5.3.4 (2023-10-04)

Bug Fixes

  • handle multiple sandbox processes in resumable state (#944) (a49409d)

5.3.3 (2023-10-01)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.7 to 2.0.8 (d3e22b9)

5.3.2 (2023-10-01)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.11 to 3.0.12 (b738085)

5.3.1 (2023-09-28)

Bug Fixes

  • deps: bump get-func-name from 2.0.0 to 2.0.2 (19aeb98)

5.3.0 (2023-09-27)

Features

  • unique listener names for lifecycle events (#941) (c5d60ae)

5.2.10 (2023-09-17)

Bug Fixes

  • deps: bump @types/semver from 7.5.1 to 7.5.2 (3994b3b)

5.2.9 (2023-09-10)

Bug Fixes

  • deps: bump pino from 8.15.0 to 8.15.1 (617c440)

5.2.8 (2023-09-10)

Bug Fixes

  • deps: bump @types/semver from 7.5.0 to 7.5.1 (90e2870)

5.2.7 (2023-09-04)

Bug Fixes

  • deps: bump ts-retry-promise from 0.7.0 to 0.7.1 (d71420a)

5.2.6 (2023-09-03)

Bug Fixes

  • deps: bump jsonwebtoken from 9.0.1 to 9.0.2 (8323f3c)

5.2.5 (2023-09-01)

Bug Fixes

  • deps: bump pino from 8.14.2 to 8.15.0 (e6770e6)

5.2.4 (2023-08-31)

Bug Fixes

5.2.3 (2023-08-27)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.9 to 3.0.11 (8bad544)

5.2.2 (2023-08-27)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.6 to 2.0.7 (ee069f4)

5.2.1 (2023-08-13)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.6 to 3.0.9 (a9d45eb)

5.2.0 (2023-08-03)

Features

  • save namespacePrefix in auth file (8d2dd7e)

5.1.6 (2023-08-03)

Bug Fixes

  • use debug levels that are numbers from the env (f051963)

5.1.5 (2023-08-02)

Bug Fixes

  • better type for SandboxFields (9bf4154)
  • check devhubs and non-scratch orgs and sandboxes (57c0bae)
  • identify sandboxes during authentication (a79117e)
  • query devhubs, non-scratch orgs, and non-sandboxes to identify sandboxes (26d923e)

5.1.4 (2023-07-31)

Bug Fixes

  • deps: bump pino-pretty from 10.0.0 to 10.2.0 (0b66a21)

5.1.3 (2023-07-30)

Bug Fixes

  • deps: bump pino from 8.14.1 to 8.14.2 (461f8e4)

5.1.2 (2023-07-28)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.4 to 3.0.6 (ecb5525)

5.1.1 (2023-07-28)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.4 to 2.0.5 (0b13602)

5.1.0 (2023-07-27)

5.0.1-v5-beta.1 (2023-07-24)

5.0.1-v5-beta.0 (2023-07-20)

Bug Fixes

Features

  • clean up week+ old log files (2af0bb9)
  • parameterize log cleanup for test use (b927164)
  • pino logger (7b6565b)

4.3.11 (2023-07-16)

Bug Fixes

  • deps: bump jsonwebtoken from 9.0.0 to 9.0.1 (ae66699)

4.3.10 (2023-07-11)

Bug Fixes

  • deps: bump semver from 5.7.1 to 5.7.2 (eef3f68)

4.3.9 (2023-07-10)

Bug Fixes

  • deps: bump @salesforce/schemas from 1.5.1 to 1.6.0 (2be2263)

4.3.8 (2023-07-09)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.3 to 3.0.4 (a88baa7)

4.3.7 (2023-07-08)

Bug Fixes

  • deps: bump tough-cookie from 4.0.0 to 4.1.3 (230c975)

4.3.6 (2023-07-06)

Bug Fixes

  • query scratch orgs by provided Id (cbfc47a)

4.3.5 (2023-06-29)

Bug Fixes

  • unset aliases and configs when org is deleted (a06ce1f)

4.3.4 (2023-06-28)

Bug Fixes

  • deps: bump jsforce from 2.0.0-beta.24 to 2.0.0-beta.27 (a0aa6c1)

4.3.3 (2023-06-26)

Bug Fixes

  • tolerate broken auth files (with warning) during readAll (#869) (4cea657)

4.3.2 (2023-06-20)

Bug Fixes

  • better scratch org settings messages (39d1124)

4.3.1 (2023-06-13)

Bug Fixes

  • messageTransformer: remove export, require deep import from lib (#861) (49abe60)

4.3.0 (2023-06-13)

Features

  • export msgTransformer for other libraries (25a5b4f)

4.2.2 (2023-06-11)

Bug Fixes

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

4.2.1 (2023-06-08)

Bug Fixes

4.2.0 (2023-06-06)

Bug Fixes

  • improve test robustness (1b29bd3)

Features

  • replace archiver with jszip for ZipWriter (c8d03d4)

4.1.3 (2023-06-06)

Bug Fixes

  • deps: bump @types/semver from 7.3.13 to 7.5.0 (4a84e39)

4.1.2 (2023-06-05)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.0 to 3.0.2 (c1e75d0)

4.1.1 (2023-06-05)

Bug Fixes

4.1.0 (2023-06-01)

Bug Fixes

  • everything but ut/testsetup (616488a)

Features

  • file locking for aliases (d351ebb)

4.0.1 (2023-05-30)

3.36.2 (2023-05-22)

Bug Fixes

  • bump jsforce to latest beta (32c46c1)

3.36.1 (2023-05-11)

Bug Fixes

  • handle unknown config keys that moved to plugins (5077340)

3.36.0 (2023-04-28)

3.35.0-qa.3 (2023-04-24)

Bug Fixes

  • load config for deprecated stuff, too (ef1c71b)

3.35.0-qa.2 (2023-04-24)

Features

3.35.0-qa.1 (2023-04-21)

Bug Fixes

  • prerelease branch for testing (cdeaa51)

3.35.0 (2023-04-28)

Bug Fixes

  • bad error message for in progress scratch orgs (b18d112)

Features

  • backward compatible configs/envs with warnings (51ed461)
  • sfdxConfigAggregator = configAggregator (a98cd97)
  • warnings from config (a84993e)

3.34.9 (2023-04-27)

Bug Fixes

3.34.8 (2023-04-21)

Bug Fixes

3.35.0-qa.3 (2023-04-24)

Bug Fixes

  • load config for deprecated stuff, too (ef1c71b)

3.35.0-qa.2 (2023-04-24)

Features

3.35.0-qa.1 (2023-04-21)

Bug Fixes

  • bad error message for in progress scratch orgs (b18d112)
  • prerelease branch for testing (cdeaa51)

Features

  • backward compatible configs/envs with warnings (51ed461)
  • sfdxConfigAggregator = configAggregator (a98cd97)
  • warnings from config (a84993e)

3.34.8 (2023-04-21)

Bug Fixes

3.35.0-qa.1 (2023-04-21)

Bug Fixes

  • bad error message for in progress scratch orgs (b18d112)
  • prerelease branch for testing (cdeaa51)

Features

  • backward compatible configs/envs with warnings (51ed461)
  • sfdxConfigAggregator = configAggregator (a98cd97)
  • warnings from config (a84993e)

3.34.7 (2023-04-16)

Bug Fixes

  • deps: bump jsforce from 2.0.0-beta.20 to 2.0.0-beta.21 (4a5ee12)

3.34.6 (2023-03-26)

Bug Fixes

  • deps: bump @salesforce/schemas from 1.5.0 to 1.5.1 (d447260)

3.34.5 (2023-03-26)

Bug Fixes

  • deps: bump json5 from 1.0.1 to 1.0.2 (0dbbcf6)

3.34.4 (2023-03-22)

Bug Fixes

  • check resumable state before emitting first progress event (#793) (6677d0f)

3.34.3 (2023-03-20)

Bug Fixes

  • deps: bump graceful-fs from 4.2.10 to 4.2.11 (8384d3f)

3.34.2 (2023-03-19)

Bug Fixes

  • deps: bump jsforce from 2.0.0-beta.19 to 2.0.0-beta.20 (9026092)

3.34.1 (2023-03-16)

Bug Fixes

  • allow completed status to be resume (484244d)

3.34.0 (2023-03-14)

Features

  • deprecate messages.load and docs (3229f74)

3.33.9 (2023-03-14)

Bug Fixes

  • save expiration date for scratch org (#775) (a59323b)

3.33.8 (2023-03-14)

Bug Fixes

  • deps: bump json5 from 1.0.1 to 1.0.2 (7ccd063)

3.33.7 (2023-03-13)

Bug Fixes

  • conf file stubs for read and readSync (a4ceedc)

3.33.6 (2023-03-02)

Bug Fixes

  • check for resumable state for sandbox resume (157622f)

3.33.5 (2023-02-26)

Bug Fixes

  • deps: bump @salesforce/schemas from 1.4.0 to 1.5.0 (f63c2f8)

3.33.4 (2023-02-22)

Bug Fixes

  • deps: bump @types/graceful-fs from 4.1.5 to 4.1.6 (d7500b9)

3.33.3 (2023-02-22)

Bug Fixes

  • correct timeout for deploy during scratch org creation (364985d)

3.33.2 (2023-02-21)

Bug Fixes

  • improve error contents for device login (#774) (3ad803a)

3.33.1 (2023-01-23)

Bug Fixes

  • remove source tracking files with Org.delete() (a85c5bf)

3.33.0 (2023-01-19)

Features

  • backward compatible messages.createError (ac564b9)

3.32.14 (2023-01-18)

Bug Fixes

3.32.13 (2023-01-12)

Bug Fixes

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

3.32.12 (2022-12-23)

Bug Fixes

  • deps: bump jsonwebtoken from 8.5.1 to 9.0.0 (c40ea0a)

3.32.11 (2022-12-16)

Bug Fixes

3.32.10 (2022-12-15)

Bug Fixes

3.32.9 (2022-12-08)

Bug Fixes

  • add password property to (1995c01)

3.32.8 (2022-12-04)

Bug Fixes

  • deps: bump ajv from 8.11.0 to 8.11.2 (78eb48d)

3.32.7 (2022-12-04)

Bug Fixes

  • deps: bump decode-uri-component from 0.2.0 to 0.2.2 (bb4c0d1)

3.32.6 (2022-12-01)

Bug Fixes

  • remove refs to legacy client id (82689ea)

3.32.5 (2022-11-30)

Bug Fixes

  • update a few tests (6952b44)
  • use API version cache more often (36b0e81)

3.32.4 (2022-11-27)

Bug Fixes

  • deps: bump @types/semver from 7.3.10 to 7.3.13 (0584bf6)

3.32.3 (2022-11-27)

Bug Fixes

  • deps: bump @salesforce/schemas from 1.1.3 to 1.4.0 (9b0f2a9)

3.32.2 (2022-11-22)

Bug Fixes

  • pass value to message correctly (c21f088)

3.32.1 (2022-11-17)

Bug Fixes

  • deps: bump @salesforce/kit from 1.7.0 to 1.8.0 (8e065a7)

3.32.0 (2022-11-17)

Features

  • getConnection accepts an optional version (c4299f8)
  • log when unnecessarily setting api version (9e4afd2)

3.31.19 (2022-11-12)

Bug Fixes

  • ajv allows union type schema, sfProject doesn't validate (#698) (ca726ae)

3.31.18 (2022-11-07)

Bug Fixes

  • deduplicate headers case on Connect.request (#697) (fc592b2)

3.31.17 (2022-10-24)

Bug Fixes

3.31.16 (2022-10-19)

3.31.15 (2022-10-19)

Bug Fixes

  • remove prerelease portion of version number (6dffeac)

3.31.13-0 (2022-10-18)

Bug Fixes

  • reset SFDX_INTEROPERABILITY on contextRestore (#673) (4c8ecae)

3.31.12 (2022-10-18)

Bug Fixes

  • incorrect url for scratch org error codes documentation (#681) (ab91644)

3.31.11 (2022-10-18)

Bug Fixes

  • function addLogFileStreamSync to use recursive mkdir (#683) (c85c69c)

3.31.10 (2022-10-14)

Bug Fixes

  • getPackageFromPath now handles nested package paths (#678) (d8c43c6)

3.31.9 (2022-10-13)

Bug Fixes

  • ensure the hubOrg passes is actually a DevHub, throw error if not (#669) (753292f)

3.31.8 (2022-10-13)

Bug Fixes

Features

  • deprecate testSetup and refactor TestContext (#676) (6e2f547)

3.30.14 (2022-10-11)

Bug Fixes

3.30.13 (2022-10-10)

Bug Fixes

  • add tooling query support to autoFetchQuery (#665) (608b119)

3.30.12 (2022-10-08)

Bug Fixes

  • deps: bump ts-retry-promise from 0.6.2 to 0.7.0 (5def87a)

3.30.11 (2022-10-07)

Bug Fixes

  • update kit, testSetup plus major refactor (453b886)

3.30.10 (2022-10-04)

3.30.9 (2022-09-28)

Bug Fixes

3.30.8 (2022-09-23)

Bug Fixes

  • scratch: respect apiVersion config value (#656) (1a29482)

3.30.7 (2022-09-23)

Bug Fixes

3.30.4 (2022-09-23)

Bug Fixes

3.30.3 (2022-09-20)

Bug Fixes

  • add helper functions to project for pkging (1ed5563)

3.30.2 (2022-09-16)

Bug Fixes

3.30.1 (2022-09-15)

Bug Fixes

3.30.0 (2022-09-12)

3.26.3 (2022-09-06)

3.26.2 (2022-08-16)

3.26.1 (2022-08-08)

Bug Fixes

3.26.0 (2022-08-04)

Features

3.25.1 (2022-08-03)

Bug Fixes

  • add interop between templates config/env var (eea3d05)

3.25.0 (2022-07-29)

Features

  • orgAccessor.get has throwOnNotFound option (a2ee821)

3.24.5 (2022-07-28)

Bug Fixes

  • set correct file mode for log file (30aa3fc)

3.24.4 (2022-07-28)

3.24.3 (2022-07-28)

Bug Fixes

  • handle ancestor keywords when creating scratch org (72af55a)

3.24.2 (2022-07-26)

Bug Fixes

  • use correct field for clone requests (#623) (2372f03)

3.24.1 (2022-07-21)

Bug Fixes

3.24.0 (2022-07-14)

Bug Fixes

Features

  • org.scratchOrgCreate uses all options except hub (045a7aa)

3.23.9 (2022-07-14)

3.23.8 (2022-07-13)

Bug Fixes

  • remove greedy matching for AuthInfo encryptedKeys (12c6dcc)

3.23.7 (2022-07-08)

Bug Fixes

  • add structure writer interface and refactor (daef19c)

3.23.6 (2022-07-06)

Bug Fixes

  • workaround for jsforce update bug (1776f50)

3.23.5 (2022-07-06)

Bug Fixes

3.23.4 (2022-07-05)

Bug Fixes

3.23.3 (2022-06-30)

Bug Fixes

3.23.2 (2022-06-30)

Bug Fixes

3.23.1 (2022-06-30)

Bug Fixes

  • isScratch should be boolean (ebda782)
  • update AuthFields type (766efec)

3.23.0 (2022-06-30)

Features

  • support more enhanced domains, wider test cases (f1bac94)

3.22.1 (2022-06-28)

Bug Fixes

  • encrypted key regex tests will no longer be stateful (06b7fa2)
  • update dev-scripts so yarn build won't change line endings for LICENSE.txt on Windows (ec5e48e)

3.22.0 (2022-06-23)

Features

  • modify uniqid to accept length and template (#604) (1fd1b5c)

3.21.6 (2022-06-23)

3.21.5 (2022-06-23)

Bug Fixes

3.21.4 (2022-06-22)

Bug Fixes

  • cause release for jsforce again (0700356)

3.21.3 (2022-06-22)

Bug Fixes

3.21.2 (2022-06-21)

Bug Fixes

  • bump jsforce to latest v2 (8a05add)

3.21.1 (2022-06-15)

Bug Fixes

  • deprecate maxQueryLimit config var (48105be)

3.21.0 (2022-06-15)

Features

  • add getConnection method to MockTestOrgData (#600) (a642f28)

3.20.3 (2022-06-15)

Bug Fixes

  • url: support sandboxes with enhanced domains enabled (7c958d1)

3.20.2 (2022-06-13)

Bug Fixes

  • instanceUrl config now using org-instance-url (54cb450)

3.20.1 (2022-06-08)

Features

  • cause a publish from previous skip (069c366)
  • safer caching for nuts (fa0af41)

3.19.5 (2022-06-06)

Bug Fixes

  • update NamedOrgNotFound err name (6a6a627)

3.19.4 (2022-06-06)

Bug Fixes

  • add stat method to OrgAccessor (f4e297c)

3.19.3 (2022-06-06)

3.19.2 (2022-06-02)

Bug Fixes

3.19.1 (2022-05-27)

Bug Fixes

  • env var resolution in ConfigAggregator (#590) (a65cfbd)

3.19.0 (2022-05-20)

Features

  • missing prop and logic correction (debe97e)
  • property on org with inteligent defaults and handling of undefined (e7295d3)
  • tracking property on AuthFields (2243d34)
  • tracksSource in TestSetup mock (7544c60)

3.18.3 (2022-05-20)

3.18.2 (2022-05-17)

Bug Fixes

3.18.1 (2022-05-16)

3.18.0 (2022-05-12)

Features

3.17.0 (2022-05-12)

Features

3.16.2 (2022-05-11)

3.16.1 (2022-05-11)

Bug Fixes

  • homedir can change after Core loads (bb1e4f5)

3.16.0 (2022-05-04)

Bug Fixes

Features

3.15.5 (2022-05-03)

Bug Fixes

3.15.4 (2022-05-03)

Bug Fixes

3.15.3 (2022-05-02)

Bug Fixes

3.15.2 (2022-05-02)

Bug Fixes

  • allow ConfigAggregator to accept custom config vars (#575) (2642128)

3.15.1 (2022-04-28)

Bug Fixes

3.15.0 (2022-04-26)

Features

  • core changes to support create scratch and sandboxes (#570) (916eeb1)

3.14.0 (2022-04-25)

Features

3.13.1 (2022-04-21)

Bug Fixes

3.13.0 (2022-04-20)

Features

  • detect if org is a devhub at auth time (#560) (958e2e7)

3.12.2 (2022-04-14)

Bug Fixes

3.12.1 (2022-04-05)

Bug Fixes

  • more FormData with buffers and headers (5ebf78f)

3.12.0 (2022-04-04)

Features

  • move common authinfo utils to core (01b8cf3)

3.11.1 (2022-04-01)

3.11.0 (2022-03-30)

Features

3.10.1 (2022-03-24)

Bug Fixes

3.10.0 (2022-03-23)

Bug Fixes

  • casing typo for import (066a2bb)
  • warnings about tracking aren't a throw (org will still auth, default) (38114a3)

Features

  • lifecycle events for scratch org create (cba673b)
  • scratch org lifecycle events (541349d)

3.9.0 (2022-03-21)

Features

3.8.1 (2022-03-18)

Bug Fixes

  • adjust mock org test data to conform to v3 (38faf50)
  • side effects function should not save when no changes (#541) (6bfb841)

3.8.0 (2022-03-09)

Features

  • add handle side effect function to authinfo (64c78e7)

3.7.9 (2022-03-04)

Bug Fixes

  • error literal to match the error thrown (#533) (b91ce5c)

3.7.8 (2022-03-03)

Bug Fixes

  • add create warning and info convenience functions (#526) (e3428b3)

3.7.7 (2022-03-01)

3.7.6 (2022-02-28)

4.0.0 (2022-02-28)

3.7.5 (2022-02-14)

Bug Fixes

  • add env vars from sfdx-cli init to envvars (#520) (8ef2785)

3.7.4 (2022-02-07)

Bug Fixes

3.7.3 (2021-12-16)

3.7.2 (2021-10-28)

Bug Fixes

  • make @types/sfdx-faye a dependendcy (683680b)

3.7.1 (2021-10-28)

3.7.0 (2021-10-12)

Features

3.6.6 (2021-10-08)

3.6.5 (2021-09-29)

Bug Fixes

  • add getValue to AliasAccessor (c4b69f5)

3.6.4 (2021-09-23)

Bug Fixes

3.6.3 (2021-09-23)

Bug Fixes

3.6.2 (2021-09-17)

Bug Fixes

  • improve time to build auths for many orgs @W-9914839@ (#478) (c788541)

3.6.1 (2021-09-13)

Bug Fixes

3.6.0 (2021-09-10)

Features

3.5.0 (2021-09-09)

Features

  • expose well known env vars as part of core (#473) (11c3f53)

3.4.5 (2021-09-03)

Bug Fixes

  • provide the correct options to SfdxConfig (fa2117e)

3.4.4 (2021-09-03)

3.4.3 (2021-08-26)

3.4.2 (2021-08-17)

Bug Fixes

  • improve interoperability when unsetting (#467) (ad781d5)

3.4.1 (2021-08-11)

Bug Fixes

  • optionally throw error when reading deprecated config key (#466) (3118ad8)

3.4.0 (2021-08-11)

Features

3.3.12 (2021-08-10)

Bug Fixes

  • add predicate function to list all auths (ccdb02c)

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.35.2 (2022-02-16)

Bug Fixes

2.35.1 (2022-02-10)

Bug Fixes

  • add error message on failed settings deploy (e218b1e)
  • prefer instanceUrl for loginUrl on user:create (#518) (c070a87)

2.35.0 (2022-01-25)

Bug Fixes

  • jsforce dep and pjson version realign (#516) (9f35f2f)

2.34.2 (2022-01-25)

2.33.2 (2022-01-25)

Bug Fixes

  • correct import declaration (4c69d2d)
  • exit deploy loop with error on status SucceededPartial (492e891)
  • refresh auth on a connection, too (ff32a70)
  • remove unwanted dep (12ccc3a)
  • save auth info (226bbd2)

2.33.1 (2021-12-15)

Bug Fixes

  • faye doesn't use custom stuff passed it (b1cefc7)

2.33.0 (2021-12-14)

Features

2.32.0 (2021-12-14)

Bug Fixes

  • no maxquery warning when records.length is 0 (758f912)
  • remove redundant warnings about no listerners on warnings (7a5bd23)

Features

  • switch sfdx-faye with faye (a0545e5)

Reverts

  • Revert "test: added basic tests for settings" (28e656c)

2.31.1 (2021-12-06)

2.31.0 (2021-11-30)

Features

  • bump version of jsforce (7d89024)

2.30.1 (2021-11-30)

Bug Fixes

  • better output for authUrl errors (f3ec729)

2.30.0 (2021-11-25)

Features

2.29.0 (2021-11-17)

Bug Fixes

  • use correct dir structure (e947fec)

2.28.4 (2021-11-10)

Bug Fixes

  • bump jsforce types and run unit tests on Windows (#485) (3952c8f)
  • transfer listeners when upgrading the global instance to newer version (0a40831)

Features

  • cleans up old listeners from upgraded instance (e3f2d69)
  • use warnings instead of process in sfdx-core (c1f7e98)
  • warning and telemetry events (80a8039)
  • warning and telemetry events (a04b293)

2.28.3 (2021-11-08)

Bug Fixes

2.28.2 (2021-10-13)

Bug Fixes

  • support for .mil sandboxes (9ef35c7)

2.28.1 (2021-10-06)

Bug Fixes

  • cant use require on json as module use readFileSync instead (3085029)
  • crmforce.mil (e263d5d)

2.28.0 (2021-09-16)

Features

  • add custom templates config (3cf8a8c)
  • add validator for custom templates config (dd2bcfe)
  • update config name (72e84bf)

2.27.2 (2021-08-05)

Bug Fixes

  • improve error handling while removing config props (eecf7b0)

2.27.1 (2021-08-05)

Bug Fixes

  • dont fail when trying to unset sf config keys (#456) (8aff9fd)
  • improve error message when providing an invalid username (2ab4bbd)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.7.5 (2022-02-14)

Bug Fixes

  • add env vars from sfdx-cli init to envvars (#520) (8ef2785)

3.7.4 (2022-02-07)

Bug Fixes

3.7.3 (2021-12-16)

3.7.2 (2021-10-28)

Bug Fixes

  • make @types/sfdx-faye a dependendcy (683680b)

3.7.1 (2021-10-28)

3.7.0 (2021-10-12)

Features

3.6.6 (2021-10-08)

3.6.5 (2021-09-29)

Bug Fixes

  • add getValue to AliasAccessor (c4b69f5)

3.6.4 (2021-09-23)

Bug Fixes

3.6.3 (2021-09-23)

Bug Fixes

3.6.2 (2021-09-17)

Bug Fixes

  • improve time to build auths for many orgs @W-9914839@ (#478) (c788541)

3.6.1 (2021-09-13)

Bug Fixes

3.6.0 (2021-09-10)

Features

3.5.0 (2021-09-09)

Features

  • expose well known env vars as part of core (#473) (11c3f53)

3.4.5 (2021-09-03)

Bug Fixes

  • provide the correct options to SfdxConfig (fa2117e)

3.4.4 (2021-09-03)

3.4.3 (2021-08-26)

3.4.2 (2021-08-17)

Bug Fixes

  • improve interoperability when unsetting (#467) (ad781d5)

3.4.1 (2021-08-11)

Bug Fixes

  • optionally throw error when reading deprecated config key (#466) (3118ad8)

3.4.0 (2021-08-11)

Features

3.3.12 (2021-08-10)

Bug Fixes

  • add predicate function to list all auths (ccdb02c)

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.35.1 (2022-02-10)

Bug Fixes

  • add error message on failed settings deploy (e218b1e)
  • prefer instanceUrl for loginUrl on user:create (#518) (c070a87)

2.35.0 (2022-01-25)

Bug Fixes

  • jsforce dep and pjson version realign (#516) (9f35f2f)

2.34.2 (2022-01-25)

2.33.2 (2022-01-25)

Bug Fixes

  • correct import declaration (4c69d2d)
  • exit deploy loop with error on status SucceededPartial (492e891)
  • refresh auth on a connection, too (ff32a70)
  • remove unwanted dep (12ccc3a)
  • save auth info (226bbd2)

2.33.1 (2021-12-15)

Bug Fixes

  • faye doesn't use custom stuff passed it (b1cefc7)

2.33.0 (2021-12-14)

Features

2.32.0 (2021-12-14)

Bug Fixes

  • no maxquery warning when records.length is 0 (758f912)

Features

  • switch sfdx-faye with faye (a0545e5)

Reverts

  • Revert "test: added basic tests for settings" (28e656c)

2.31.1 (2021-12-06)

2.31.0 (2021-11-30)

Features

  • bump version of jsforce (7d89024)

2.30.1 (2021-11-30)

Bug Fixes

  • better output for authUrl errors (f3ec729)

2.30.0 (2021-11-25)

Features

2.29.0 (2021-11-17)

Bug Fixes

  • use correct dir structure (e947fec)

2.28.4 (2021-11-10)

Bug Fixes

  • bump jsforce types and run unit tests on Windows (#485) (3952c8f)
  • transfer listeners when upgrading the global instance to newer version (0a40831)

Features

  • cleans up old listeners from upgraded instance (e3f2d69)
  • use warnings instead of process in sfdx-core (c1f7e98)
  • warning and telemetry events (80a8039)
  • warning and telemetry events (a04b293)

2.28.3 (2021-11-08)

Bug Fixes

2.28.2 (2021-10-13)

Bug Fixes

  • support for .mil sandboxes (9ef35c7)

2.28.1 (2021-10-06)

Bug Fixes

  • cant use require on json as module use readFileSync instead (3085029)
  • crmforce.mil (e263d5d)

2.28.0 (2021-09-16)

Features

  • add custom templates config (3cf8a8c)
  • add validator for custom templates config (dd2bcfe)
  • update config name (72e84bf)

2.27.2 (2021-08-05)

Bug Fixes

  • improve error handling while removing config props (eecf7b0)

2.27.1 (2021-08-05)

Bug Fixes

  • dont fail when trying to unset sf config keys (#456) (8aff9fd)
  • improve error message when providing an invalid username (2ab4bbd)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.7.4 (2022-02-07)

Bug Fixes

3.7.3 (2021-12-16)

3.7.2 (2021-10-28)

Bug Fixes

  • make @types/sfdx-faye a dependendcy (683680b)

3.7.1 (2021-10-28)

3.7.0 (2021-10-12)

Features

3.6.6 (2021-10-08)

3.6.5 (2021-09-29)

Bug Fixes

  • add getValue to AliasAccessor (c4b69f5)

3.6.4 (2021-09-23)

Bug Fixes

3.6.3 (2021-09-23)

Bug Fixes

3.6.2 (2021-09-17)

Bug Fixes

  • improve time to build auths for many orgs @W-9914839@ (#478) (c788541)

3.6.1 (2021-09-13)

Bug Fixes

3.6.0 (2021-09-10)

Features

3.5.0 (2021-09-09)

Features

  • expose well known env vars as part of core (#473) (11c3f53)

3.4.5 (2021-09-03)

Bug Fixes

  • provide the correct options to SfdxConfig (fa2117e)

3.4.4 (2021-09-03)

3.4.3 (2021-08-26)

3.4.2 (2021-08-17)

Bug Fixes

  • improve interoperability when unsetting (#467) (ad781d5)

3.4.1 (2021-08-11)

Bug Fixes

  • optionally throw error when reading deprecated config key (#466) (3118ad8)

3.4.0 (2021-08-11)

Features

3.3.12 (2021-08-10)

Bug Fixes

  • add predicate function to list all auths (ccdb02c)

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.35.0 (2022-01-25)

Bug Fixes

  • jsforce dep and pjson version realign (#516) (9f35f2f)
  • refresh auth on a connection, too (ff32a70)

2.34.2 (2022-01-25)

2.33.2 (2022-01-25)

Bug Fixes

  • correct import declaration (4c69d2d)
  • exit deploy loop with error on status SucceededPartial (492e891)
  • remove unwanted dep (12ccc3a)
  • save auth info (226bbd2)

2.33.1 (2021-12-15)

Bug Fixes

  • faye doesn't use custom stuff passed it (b1cefc7)

2.33.0 (2021-12-14)

Features

2.32.0 (2021-12-14)

Bug Fixes

  • no maxquery warning when records.length is 0 (758f912)

Features

  • switch sfdx-faye with faye (a0545e5)

Reverts

  • Revert "test: added basic tests for settings" (28e656c)

2.31.1 (2021-12-06)

2.31.0 (2021-11-30)

Features

  • bump version of jsforce (7d89024)

2.30.1 (2021-11-30)

Bug Fixes

  • better output for authUrl errors (f3ec729)

2.30.0 (2021-11-25)

Features

2.29.0 (2021-11-17)

Bug Fixes

  • use correct dir structure (e947fec)

2.28.4 (2021-11-10)

Bug Fixes

  • bump jsforce types and run unit tests on Windows (#485) (3952c8f)
  • transfer listeners when upgrading the global instance to newer version (0a40831)

Features

  • cleans up old listeners from upgraded instance (e3f2d69)
  • use warnings instead of process in sfdx-core (c1f7e98)
  • warning and telemetry events (80a8039)
  • warning and telemetry events (a04b293)

2.28.3 (2021-11-08)

Bug Fixes

2.28.2 (2021-10-13)

Bug Fixes

  • support for .mil sandboxes (9ef35c7)

2.28.1 (2021-10-06)

Bug Fixes

  • cant use require on json as module use readFileSync instead (3085029)
  • crmforce.mil (e263d5d)

2.28.0 (2021-09-16)

Features

  • add custom templates config (3cf8a8c)
  • add validator for custom templates config (dd2bcfe)
  • update config name (72e84bf)

2.27.2 (2021-08-05)

Bug Fixes

  • improve error handling while removing config props (eecf7b0)

2.27.1 (2021-08-05)

Bug Fixes

  • dont fail when trying to unset sf config keys (#456) (8aff9fd)
  • improve error message when providing an invalid username (2ab4bbd)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.7.3 (2021-12-16)

3.7.2 (2021-10-28)

Bug Fixes

  • make @types/sfdx-faye a dependendcy (683680b)

3.7.1 (2021-10-28)

3.7.0 (2021-10-12)

Features

3.6.6 (2021-10-08)

3.6.5 (2021-09-29)

Bug Fixes

  • add getValue to AliasAccessor (c4b69f5)

3.6.4 (2021-09-23)

Bug Fixes

3.6.3 (2021-09-23)

Bug Fixes

3.6.2 (2021-09-17)

Bug Fixes

  • improve time to build auths for many orgs @W-9914839@ (#478) (c788541)

3.6.1 (2021-09-13)

Bug Fixes

3.6.0 (2021-09-10)

Features

3.5.0 (2021-09-09)

Features

  • expose well known env vars as part of core (#473) (11c3f53)

3.4.5 (2021-09-03)

Bug Fixes

  • provide the correct options to SfdxConfig (fa2117e)

3.4.4 (2021-09-03)

3.4.3 (2021-08-26)

3.4.2 (2021-08-17)

Bug Fixes

  • improve interoperability when unsetting (#467) (ad781d5)

3.4.1 (2021-08-11)

Bug Fixes

  • optionally throw error when reading deprecated config key (#466) (3118ad8)

3.4.0 (2021-08-11)

Features

3.3.12 (2021-08-10)

Bug Fixes

  • add predicate function to list all auths (ccdb02c)

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.33.1 (2021-12-15)

Bug Fixes

  • faye doesn't use custom stuff passed it (b1cefc7)

2.33.0 (2021-12-14)

Features

2.32.0 (2021-12-14)

Bug Fixes

  • no maxquery warning when records.length is 0 (758f912)

Features

  • switch sfdx-faye with faye (a0545e5)

2.31.1 (2021-12-06)

2.31.0 (2021-11-30)

Features

  • bump version of jsforce (7d89024)

2.30.1 (2021-11-30)

Bug Fixes

  • better output for authUrl errors (f3ec729)

2.30.0 (2021-11-25)

Features

2.29.0 (2021-11-17)

Bug Fixes

  • transfer listeners when upgrading the global instance to newer version (0a40831)

Features

  • cleans up old listeners from upgraded instance (e3f2d69)
  • use warnings instead of process in sfdx-core (c1f7e98)
  • warning and telemetry events (80a8039)
  • warning and telemetry events (a04b293)

2.28.4 (2021-11-10)

Bug Fixes

  • bump jsforce types and run unit tests on Windows (#485) (3952c8f)

2.28.3 (2021-11-08)

Bug Fixes

2.28.2 (2021-10-13)

Bug Fixes

  • support for .mil sandboxes (9ef35c7)

2.28.1 (2021-10-06)

Bug Fixes

2.28.0 (2021-09-16)

Features

  • add custom templates config (3cf8a8c)
  • add validator for custom templates config (dd2bcfe)
  • update config name (72e84bf)

2.27.2 (2021-08-05)

Bug Fixes

  • improve error handling while removing config props (eecf7b0)

2.27.1 (2021-08-05)

Bug Fixes

  • dont fail when trying to unset sf config keys (#456) (8aff9fd)
  • improve error message when providing an invalid username (2ab4bbd)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.7.2 (2021-10-28)

Bug Fixes

  • make @types/sfdx-faye a dependendcy (683680b)

3.7.1 (2021-10-28)

3.7.0 (2021-10-12)

Features

3.6.6 (2021-10-08)

3.6.5 (2021-09-29)

Bug Fixes

  • add getValue to AliasAccessor (c4b69f5)

3.6.4 (2021-09-23)

Bug Fixes

3.6.3 (2021-09-23)

Bug Fixes

3.6.2 (2021-09-17)

Bug Fixes

  • improve time to build auths for many orgs @W-9914839@ (#478) (c788541)

3.6.1 (2021-09-13)

Bug Fixes

3.6.0 (2021-09-10)

Features

3.5.0 (2021-09-09)

Features

  • expose well known env vars as part of core (#473) (11c3f53)

3.4.5 (2021-09-03)

Bug Fixes

  • provide the correct options to SfdxConfig (fa2117e)

3.4.4 (2021-09-03)

3.4.3 (2021-08-26)

3.4.2 (2021-08-17)

Bug Fixes

  • improve interoperability when unsetting (#467) (ad781d5)

3.4.1 (2021-08-11)

Bug Fixes

  • optionally throw error when reading deprecated config key (#466) (3118ad8)

3.4.0 (2021-08-11)

Features

3.3.12 (2021-08-10)

Bug Fixes

  • add predicate function to list all auths (ccdb02c)

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.28.2 (2021-10-13)

Bug Fixes

  • support for .mil sandboxes (9ef35c7)

2.28.1 (2021-10-06)

Bug Fixes

2.28.0 (2021-09-16)

Features

  • add custom templates config (3cf8a8c)
  • add validator for custom templates config (dd2bcfe)
  • update config name (72e84bf)

2.27.2 (2021-08-05)

Bug Fixes

  • improve error handling while removing config props (eecf7b0)

2.27.1 (2021-08-05)

Bug Fixes

  • dont fail when trying to unset sf config keys (#456) (8aff9fd)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.7.0 (2021-10-12)

Features

3.6.6 (2021-10-08)

3.6.5 (2021-09-29)

Bug Fixes

  • add getValue to AliasAccessor (c4b69f5)

3.6.4 (2021-09-23)

Bug Fixes

3.6.3 (2021-09-23)

Bug Fixes

3.6.2 (2021-09-17)

Bug Fixes

  • improve time to build auths for many orgs @W-9914839@ (#478) (c788541)

3.6.1 (2021-09-13)

Bug Fixes

3.6.0 (2021-09-10)

Features

3.5.0 (2021-09-09)

Features

  • expose well known env vars as part of core (#473) (11c3f53)

3.4.5 (2021-09-03)

Bug Fixes

  • provide the correct options to SfdxConfig (fa2117e)

3.4.4 (2021-09-03)

3.4.3 (2021-08-26)

3.4.2 (2021-08-17)

Bug Fixes

  • improve interoperability when unsetting (#467) (ad781d5)

3.4.1 (2021-08-11)

Bug Fixes

  • optionally throw error when reading deprecated config key (#466) (3118ad8)

3.4.0 (2021-08-11)

Features

3.3.12 (2021-08-10)

Bug Fixes

  • add predicate function to list all auths (ccdb02c)

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.28.1 (2021-10-06)

Bug Fixes

2.28.0 (2021-09-16)

Features

  • add custom templates config (3cf8a8c)
  • add validator for custom templates config (dd2bcfe)
  • update config name (72e84bf)

2.27.2 (2021-08-05)

Bug Fixes

  • improve error handling while removing config props (eecf7b0)

2.27.1 (2021-08-05)

Bug Fixes

  • dont fail when trying to unset sf config keys (#456) (8aff9fd)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.6.5 (2021-09-29)

Bug Fixes

  • add getValue to AliasAccessor (c4b69f5)

3.6.4 (2021-09-23)

Bug Fixes

3.6.3 (2021-09-23)

Bug Fixes

3.6.2 (2021-09-17)

Bug Fixes

  • improve time to build auths for many orgs @W-9914839@ (#478) (c788541)

3.6.1 (2021-09-13)

Bug Fixes

3.6.0 (2021-09-10)

Features

3.5.0 (2021-09-09)

Features

  • expose well known env vars as part of core (#473) (11c3f53)

3.4.5 (2021-09-03)

Bug Fixes

  • provide the correct options to SfdxConfig (fa2117e)

3.4.4 (2021-09-03)

3.4.3 (2021-08-26)

3.4.2 (2021-08-17)

Bug Fixes

  • improve interoperability when unsetting (#467) (ad781d5)

3.4.1 (2021-08-11)

Bug Fixes

  • optionally throw error when reading deprecated config key (#466) (3118ad8)

3.4.0 (2021-08-11)

Features

3.3.12 (2021-08-10)

Bug Fixes

  • add predicate function to list all auths (ccdb02c)

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.28.0 (2021-09-16)

Features

  • add custom templates config (3cf8a8c)
  • add validator for custom templates config (dd2bcfe)
  • update config name (72e84bf)

2.27.2 (2021-08-05)

Bug Fixes

  • improve error handling while removing config props (eecf7b0)

2.27.1 (2021-08-05)

Bug Fixes

  • dont fail when trying to unset sf config keys (#456) (8aff9fd)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.6.1 (2021-09-13)

Bug Fixes

3.6.0 (2021-09-10)

Features

3.5.0 (2021-09-09)

Features

  • expose well known env vars as part of core (#473) (11c3f53)

3.4.5 (2021-09-03)

Bug Fixes

  • provide the correct options to SfdxConfig (fa2117e)

3.4.4 (2021-09-03)

3.4.3 (2021-08-26)

3.4.2 (2021-08-17)

Bug Fixes

  • improve interoperability when unsetting (#467) (ad781d5)

3.4.1 (2021-08-11)

Bug Fixes

  • optionally throw error when reading deprecated config key (#466) (3118ad8)

3.4.0 (2021-08-11)

Features

3.3.12 (2021-08-10)

Bug Fixes

  • add predicate function to list all auths (ccdb02c)

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.27.2 (2021-08-05)

Bug Fixes

  • improve error handling while removing config props (eecf7b0)

2.27.1 (2021-08-05)

Bug Fixes

  • dont fail when trying to unset sf config keys (#456) (8aff9fd)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.3.11 (2021-08-04)

Bug Fixes

  • allows for message keys of error and errors (#455) (3bfac58)

3.3.10 (2021-08-04)

3.3.9 (2021-08-04)

Bug Fixes

3.3.8 (2021-08-02)

Bug Fixes

  • return all info from AuthInfo.listAllAuthorizations (#449) (17e60ea)

3.3.7 (2021-07-30)

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.27.0 (2021-07-29)

Features

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.3.6 (2021-07-28)

Bug Fixes

3.3.5 (2021-07-28)

3.3.4 (2021-07-26)

Bug Fixes

  • remove bad validator function (1b97dc6)

3.3.3 (2021-07-22)

Bug Fixes

  • write sf.json contents on init (c47f649)

3.3.2 (2021-07-21)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.26.1 (2021-07-19)

Bug Fixes

  • force:org:open force:org:open --urlonly display bug (#439) (2ea0e74)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.3.1 (2021-07-15)

Bug Fixes

  • temporarily point Alias back to .sfdx (#438) (4bffcd8)

3.3.0 (2021-07-14)

Features

3.2.0-v3.0 (2021-07-14)

Features

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.26.0 (2021-07-13)

Features

  • update generate password functionality (#432) (ed65e83)

2.25.1 (2021-06-30)

Bug Fixes

  • set retries to INFINITELY for polling client (31539b4)

3.1.1-3.2 (2021-06-30)

Features

  • @W-9517449@ Allow signupTargetLoginUrl to be overridden via env var (#429) (e2b8b36), closes #427

2.24.2 (2021-06-23)

3.1.1-3.1 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)
  • rewrite polling client (8d363d1)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.1.1-v3.2 (2021-06-29)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.24.2 (2021-06-23)

Bug Fixes

  • puts some types back in dependencies (94bea31)

3.1.1-3.1 (2021-06-23)

Bug Fixes

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.1.1-v3.1 (2021-06-14)

Bug Fixes

  • keep track of auth changes (210be6c)

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.24.0 (2021-06-08)

Features

  • exported function checkLightningDomain() (#415) (8e75231)

2.23.5 (2021-06-07)

Bug Fixes

  • w-9299422 (login url from config) and fs-parallelization (043bb17)

3.1.1-3.0 (2021-06-03)

Bug Fixes

3.1.1-v3.0 (2021-06-03)

Bug Fixes

Features

  • add GlobalInfo config file (#397) (889425c)
  • add message support for markdown files (0f235a2)
  • move crypto to config file @W-9225317@ (#406) (bac83c3)

2.23.3 (2021-06-03)

2.23.2 (2021-06-02)

Bug Fixes

  • authinfo returning only lowercase usernames. (#411) (243668e), closes #405

2.23.1 (2021-05-27)

2.23.0 (2021-05-26)

Bug Fixes

Features

  • export getJwtAudienceUrl (e7d26d2)

2.22.0 (2021-05-24)

Features

2.21.0 (2021-05-24)

Features

  • modify authInfo to return username for access token auth (160b7d2)

2.20.11 (2021-05-12)

Bug Fixes

3.1.0-3.0 (2021-05-12)

3.0.1-3.0 (2021-05-05)

2.20.10 (2021-04-14)

Bug Fixes

  • add another internal test env domain (6ea538f)

2.20.9 (2021-04-05)

Bug Fixes

  • allow = in authUrl tokens (2337fcd)

2.20.8 (2021-04-03)

Bug Fixes

  • debugEnabled should be public (dbd0124)

2.20.7 (2021-04-02)

Bug Fixes

  • add deployRecentValidation (62d367b)
  • add deployRecentValidation (a39c329)
  • add test, clarify comments (8d5679e)

2.20.6 (2021-04-02)

Bug Fixes

  • add REST deploy and test (a1204f8)
  • deploy with REST working :) (ec36851)
  • remove requrie ts-node/register from package (5377fe4)
  • rest deploy without fs :D (9a4202d)
  • working on adding REST deploy (0b3947b)

2.20.5 (2021-03-08)

Bug Fixes

  • qualify a sandbox url via cname lookup (#385) (3e27623)

2.20.4 (2021-03-03)

2.20.3 (2021-02-25)

Bug Fixes

  • await the call to authInfo.save (299499e)
  • web:login fails when org cannot access REST (31b139a)

Performance Improvements

  • small queries to identify a devHub (7bc75c1)

2.20.2 (2021-02-25)

Performance Improvements

  • small queries to identify a devHub (2bae295)

2.20.1 (2021-02-24)

Bug Fixes

  • await the call to authInfo.save (b26ea70)

2.20.0 (2021-02-22)

Bug Fixes

  • do not save access token files (46d88b9)

Features

  • cache api version on auth info (cb21cf0)

2.19.1 (2021-02-19)

Bug Fixes

  • meet more password requirements (53025f0)

2.19.0 (2021-02-17)

Bug Fixes

  • move env vars to myDomainResolver (fcf1a4a)
  • revert dns polling timeout to 30 and frequency to 10 (4ba7a63)

Features

  • add SFDX_DISABLE_DNS_CHECK (2e2cb84)

2.18.6 (2021-02-17)

Bug Fixes

  • pass decrypted client secret for oauth (#374) (63bf84e)

2.18.5 (2021-02-11)

Bug Fixes

  • filter allowedProperties on getConfigInfo (cbb91e1)
  • no throw on unknown config value (49618db)

2.18.4 (2021-02-10)

Bug Fixes

2.18.3 (2021-02-05)

Bug Fixes

  • update password jsdoc for v51 + return type (390ed8d)

2.18.2 (2021-02-04)

Bug Fixes

  • fixed maxQueryLimit validation (6431065)
  • fixed test descriptions (1455204)
  • improved validation, error message, add test (63e6c4d)
  • maxQueryLimit must be > 0 (a3d9156)

2.18.1 (2021-02-04)

Bug Fixes

  • add space option to write json (51d01aa)

2.18.0 (2021-02-01)

Bug Fixes

  • audience for loginUrls without my in the domain (2bca84c)
  • audiences handle uppercased CS instances (0d6d3ea)
  • audiences use instanceURL (64590cc)
  • support enhanced domains (a89ce21)

Features

  • falcon usa support w/o createdOrgInstance (ec15d37)
  • more falcon domain support, url case insensitivity (f72b85d)
  • more jwt audience domains (03751ea)

2.17.0 (2021-01-29)

Bug Fixes

Features

2.16.6 (2021-01-29)

Bug Fixes

  • add internal mil environment (27e33ae)
  • additional "internal" host (af15447)
  • internal, local, and new stm.force domains (b93f26d)
  • myDomainResolver shouldn't check localhost (c07984e)

2.16.5 (2021-01-29)

Bug Fixes

  • send oauth error to browser (5fd027a)

2.16.4 (2021-01-27)

Bug Fixes

2.16.3 (2021-01-21)

2.16.2 (2021-01-21)

Bug Fixes

  • better error messaging and Steve feedback (20c8977)
  • better error name (43cac98)
  • error name as a constant (92ced7e)
  • export name for testing (fda9ce0)
  • line spacing (89e4dc7)
  • log versions as string (d82fe3e)
  • prevent DNS ENOTFOUND from hitting stdout (1bc473f)

2.16.1 (2021-01-20)

2.16.0 (2021-01-12)

Bug Fixes

Features

2.15.5 (2021-01-07)

Bug Fixes

2.15.4 (2020-12-09)

Bug Fixes

  • windows: throw error when file is not accessible (3c5e5f8)

2.15.3 (2020-12-02)

Bug Fixes

  • added docs around MyDomainResolver constructor method (68d8e52)
  • single package entry is defaulted to default package (badff89)

2.15.2 (2020-11-11)

Bug Fixes

  • config aggregator show changes to local and global config (e3b3a55)
  • localConfig typings now correctly show it might not exist (3cb7716)
  • updated various logic and QOL on User and PermissionSetAssignment (1bab28f)

2.15.1 (2020-11-02)

Bug Fixes

  • move @types/mkdirp to dependencies (e8e5cf7)

2.15.0 (2020-10-30)

Features

  • allow adding property metas to allowedProperties on config (2a264d3)

2.14.0 (2020-10-22)

Features

  • add decrypt option to getFields (ccd32e2)

2.13.0 (2020-10-13)

Bug Fixes

  • add falcon sandboxes (558dd72)
  • mock package json instead of fs (8cba4d1)
  • resolve sfdx project path before checking cache (265e523)

Features

  • add DeviceOauthService (3e72962)
  • add WebOauthServer for web based auth flow (25cea05)

2.12.3 (2020-10-01)

Bug Fixes

  • lifecycle should be a singleton across core versions (66a450b)
  • stub should call resolver at runtime (9002cbf)

2.12.2 (2020-09-28)

Bug Fixes

2.12.1 (2020-09-18)

Bug Fixes

2.12.0 (2020-09-14)

Bug Fixes

  • convert core from tslint -> eslint (d4791c8)
  • query for username during refresh token flow (f640070)
  • some changes regressed toolbelt (#299) (2c571a7)

Features

  • add a lot of sync method, add package directory information to the project (#284) (b973901)
  • add scope options (#289) (6bc23ec)
  • support plugin-auth (a1f6eca)

2.11.0 (2020-08-27)

Bug Fixes

  • examples/package.json & examples/yarn.lock to reduce vulnerabilities (d062ccc)
  • wrap logfmt message with double quotes (#280) (3ef407b)

Features

  • support array of messages when using getMessage (ac7407a)
  • support logfmt style formatting (#273) (2767cbf)

2.10.0 (2020-08-10)

Features

2.9.4 (2020-08-07)

Bug Fixes

  • updated messaging (7f9ab06)
  • fix edge case, updated messaging (a8f9a54)

2.9.3 (2020-08-06)

Bug Fixes

  • changed to be greater than, not greater than or equal to (7f1a12d)

2.9.2 (2020-08-06)

Bug Fixes

  • maxQueryLimit config, return full jsforce result, fix build issue (6c11196)
  • removed promise.reject (d28d649)
  • updated autoFetchQuery method (4d018f6)

2.9.1 (2020-08-04)

Bug Fixes

2.9.0 (2020-07-29)

Features

  • overwriting configStore unset (6095dd6)

2.8.0 (2020-07-27)

Features

  • changed data to be more flexible type (50414f9)

2.7.0 (2020-07-01)

Features

  • adds areFilesEqual / actOn / getContentHash from toolbelt to core (807dc72)

2.6.0 (2020-06-23)

Bug Fixes

  • added line breaks for readability (0f8b857)
  • fixed a capitalization that caused CircleCI to fail (db803a7)
  • updated comments and async for loop (fa3b580)

Features

  • added lifecycleEvents.ts from toolbelt: an event listener/emitter (099478c)

2.5.1 (2020-06-11)

Bug Fixes

  • fix child logger unit test (93da343)
  • log uncaught exception in root logger only (7a80662)
  • mock audience url for unit test (963b696)

2.5.0 (2020-06-08)

Bug Fixes

  • update mkdirp for updated dep (e2b471b)

Features

2.4.1 (2020-05-05)

Bug Fixes

2.4.0 (2020-04-23)

Features

  • create auth info with sfdx auth url (68dbfad)

2.3.1 (2020-04-13)

Bug Fixes

  • use new @salesfore/bunyan library, run tests in node 10 & 12 (#211) (249850d)

2.3.0 (2020-03-20)

Features

  • allow stubbing on single tests (37cef1b)

2.2.0 (2020-02-11)

Features

  • create authinfo with a parent authinfo (9b21226), closes #202

2.1.6 (2020-01-13)

Bug Fixes

  • add config var for telemetry opt out (f79ace3)

2.1.5 (2019-11-15)

Bug Fixes

  • rogue import causing compile issue (d0b5e5c)

2.1.4 (2019-11-04)

Bug Fixes

2.1.3 (2019-10-09)

Bug Fixes

  • make sure when stream processor throws an error we disconnect the streaming client (6dc8de9)

2.1.2 (2019-08-29)

Bug Fixes

  • add debug logger that accepts a function (117dee4)
  • deleting and org auth file never worked (a6a77c6)
  • review feedback (7c1f630)

2.1.1 (2019-07-17)

Bug Fixes

2.1.0 (2019-07-16)

Bug Fixes

  • update secureBuffer cipherName (b55fcde)
  • update secureBuffer cipherName (8e66a0c)
  • use empty string for client secret when client secret is undefined (9513551)

Features

  • add config file for sandbox (db2026e)
  • do not throw error on org.remove if sandbox config doesn't exist (3912993)

2.0.1 (2019-07-02)

Bug Fixes

  • update secureBuffer cipherName (1e8037b)
  • update secureBuffer cipherName (874d5b6)
  • use empty string for client secret when client secret is undefined (0d22a56)

2.0.0 (2019-06-17)

Bug Fixes

  • 🐛 prevent auth files from being accidentally overwritten (06d96fc), closes PR#114
  • add clientId to jwt fields (8a7c040)
  • force version bump to test ci-docs on release (ecb6a66)

BREAKING CHANGES

  • 🧨 some commands that call getCoreConnection with auth options and a username will now throw an error.

1.3.3 (2019-04-04)

Bug Fixes

  • allow aliases with dots (e8b17af)
  • allow packageAliases in sfdx-project.json (8d7b1fe)
  • hide sensitive values from being logged (8505f04)
  • move generating the secretfile path to the catch block (2b9e57d)
  • potential missing key.json file on windows (f94f127)
  • properly invoke callbacks (f03838c)

1.3.2 (2019-03-25)

Bug Fixes

  • revert of throwing auth error (f6ebe12)

1.3.1 (2019-03-25)

Bug Fixes

  • prevent auth files from being inadvertently overwritten (45195c1)
  • update test and don't throw when auth file not found (75af396)

1.3.0 (2019-03-19)

Features

  • support wrapping a string (2445003)

1.2.3 (2019-03-18)

Bug Fixes

  • @W-5907580@ respect code if it exist (5263fe2)
  • do not let name and code get out-of-date is name is set (3e5914e)
  • security update and patch to allow colons in filepaths for windows (a385b40)
  • use name by default for code (c5283d3)

1.2.2 (2019-02-11)

Bug Fixes

  • use default options off the constructor (368a5f1)

1.2.1 (2019-01-31)

Bug Fixes

1.2.0 (2019-01-30)

Bug Fixes

  • do not query server if cached (d7ccf99)
  • update to allow stored connected app info (66ea057)

Features

  • determine if a org is a dev hub (586d7ba)

1.1.2 (2018-12-21)

Bug Fixes

  • update contrib doc to trigger build (28c6945)

1.1.1 (2018-12-19)

Bug Fixes

  • bump kit, ts-types, and ts-sinon versions (1f088b4)
  • downgrade jsforce to match sfdx toolbelt (5fba254)
  • fix jsforce types reference (407e3df)
  • migrate from /docs to gh-pages branch (7d36139)

1.1.0 (2018-12-14)

Bug Fixes

Features

0.24.3 (2018-11-15)

Bug Fixes

  • remove npm install from core (832eaeb)

0.25.0 (2018-11-15)

Features

0.24.2 (2018-11-15)

Features

0.24.1 (2018-11-15)

Bug Fixes

Features

Reverts

  • Revert "Revert "build: try oclif semantic/release"" (a514b9a)
  • Revert "build: try oclif semantic/release" (840da22)

0.21.4 (2018-11-08)

Bug Fixes

0.21.3 (2018-11-08)

Bug Fixes

  • actual ts-types and kit versions (ca03b33)
  • typing correction in kit (2191040)
  • update has impl (429c4e9)
  • updates for ts-types and kit api changes (c7c599d)
  • use latest versions of ts-types and kit (0d73ad6)

0.21.2 (2018-10-24)

Bug Fixes

  • disable semantic release until approved (e443d17)
  • fix build config (b286261)

0.23.1 (2018-10-05)

0.22.0 (2018-09-25)

0.21.1 (2018-09-18)

0.21.0 (2018-09-14)

0.20.0 (2018-08-30)

0.19.0 (2018-08-21)

0.18.2 (2018-07-16)

0.18.1 (2018-07-12)

0.17.6 (2018-07-11)

0.17.5 (2018-07-06)

0.17.4 (2018-06-29)

0.17.3 (2018-06-29)

0.17.2 (2018-06-16)

0.17.1 (2018-06-16)

0.16.17 (2018-06-13)

0.16.16 (2018-06-04)

0.16.15 (2018-05-29)

0.16.14 (2018-05-22)

0.16.13 (2018-04-20)

0.16.12 (2018-04-06)

0.16.11 (2018-04-06)

0.16.10 (2018-03-22)

0.16.9 (2018-03-21)

0.16.8 (2018-03-20)

0.16.7 (2018-03-20)

0.16.6 (2018-03-16)

0.16.5 (2018-03-15)

0.16.4 (2018-03-14)

0.16.3 (2018-03-14)

0.16.2 (2018-03-10)

0.16.1 (2018-03-06)

0.16.0 (2018-03-06)

0.15.0 (2018-03-06)

0.14.0 (2018-03-06)

0.13.0 (2018-03-06)

0.12.0 (2018-03-05)

0.11.0 (2018-03-05)

0.10.0 (2018-03-01)

0.9.0 (2018-02-27)

0.8.0 (2018-02-27)

0.5.3 (2018-02-26)

0.5.2 (2018-02-26)

0.5.1 (2018-02-26)

0.7.0 (2018-02-27)

0.6.0 (2018-02-26)

0.5.3 (2018-02-26)

0.5.2 (2018-02-26)

0.5.1 (2018-02-26)

0.6.0 (2018-02-26)

0.5.1 (2018-02-26)

0.5.0 (2018-02-23)

0.4.0 (2018-02-22)

0.3.0 (2018-02-22)

0.2.0 (2018-02-20)

0.1.0 (2018-02-13)

0.0.4 (2017-12-05)

0.0.3 (2017-12-05)

0.0.2 (2017-12-05)

0.0.1 (2017-12-05)