Skip to content

Commit

Permalink
sf RNs: Oct 25 (#2532)
Browse files Browse the repository at this point in the history
* sf RNs: Oct 25

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md
  • Loading branch information
jshackell-sfdc authored Oct 25, 2023
1 parent 50e22a3 commit 5e7b40f
Showing 1 changed file with 29 additions and 10 deletions.
39 changes: 29 additions & 10 deletions releasenotes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,39 @@ Additional documentation:
* [Salesforce CLI Setup Guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm)


## 2.14.6 (Oct 25, 2023) [stable-rc]
## 2.15.8 (Nov 1, 2023) [stable-rc]

These changes are in the Salesforce CLI release candidate. We plan to include these changes in next week's official release. This list isn't final and is subject to change.

------------

* NEW: The `dev convert script` command for migrating your CI scripts to use the `sf`-style commands now handles `sfdx` commands that span multiple lines. For example, the command converts this:

```bash
sfdx force:user:create -f config/user-def.json \
-a myuser \
-u myorg
```
into this:

```bash
sf org create user --definition-file config/user-def.json \
--set-alias myuser \
--target-org myorg
```
(plugin-dev PR [#402](https://github.com/salesforcecli/plugin-dev/pull/402))

* FIX: The `org list` command now correctly renders the output when a listed org has expired or been deactivated, such as a [developer edition org](https://help.salesforce.com/s/articleView?id=sf.admin_deactivate_org.htm&type=5). (GitHub issue [#2533](https://github.com/forcedotcom/cli/issues/2533), plugin-org PR [#845](https://github.com/salesforcecli/plugin-org/pull/845))

## 2.14.6 (Oct 25, 2023) [stable]

ANNOUNCEMENTS:

* If you install Salesforce CLI using `npm`, be aware that Node.js 14 and 16 are both officially [end-of-life](https://github.com/forcedotcom/cli/issues/1985).
* We plan to upgrade the version of Node.js bundled in the Salesforce CLI installers, TAR balls, and Docker images to v20 soon, probably in next week's release candidate. Why? Because we always bundle the Active LTS version of Node.js in tandem with its [release schedule](https://github.com/nodejs/release#release-schedule), and v20 went LTS on October 24, 2023.
-------------
* NEW: Disable Salesforce CLI version checking with the new `SF_SKIP_VERSION_CHECK` environment variable. By default, every CLI command execution checks whether there's a new CLI version available, and prints out a warning message if it finds one. While this message is useful, it's not always wanted, especially in CI environments. To completely disable the check, set `SF_SKIP_VERSION_CHECK=true`.
Alternatively, you can configure the frequency of the warning message, such as once a day, by setting these two environment variables:
Expand All @@ -52,15 +79,7 @@ These changes are in the Salesforce CLI release candidate. We plan to include th

* FIX: The `SF_NPM_REGISTRY` environment variable is now working correctly. (GitHub issue [#2517](https://github.com/forcedotcom/cli/issues/2517), plugin-trust PR [#618](https://github.com/salesforcecli/plugin-trust/pull/618))

## 2.13.9 (Oct 18, 2023) [stable]
ANNOUNCEMENTS:
* Check out our new [public roadmap](https://github.com/orgs/salesforcecli/projects/2/views/1) and let us know what you think!
* If you install Salesforce CLI using `npm`, be aware that Node 14 and 16 are both officially [end-of-life](https://github.com/forcedotcom/cli/issues/1985).
-------------
## 2.13.9 (Oct 18, 2023)

* FIX: If the `project deploy start --metadata-dir` command encounters failures when deploying files in metadata format, the error message now contains the line and column number in the file where the error occurred. We also improved the output with better sorting and duplication removal. (GitHub issue [#356](https://github.com/forcedotcom/cli/issues/356), plugin-deploy-retrieve PR [#771](https://github.com/salesforcecli/plugin-deploy-retrieve/pull/771))

Expand Down

0 comments on commit 5e7b40f

Please sign in to comment.