From 4ecdefeb02281ec7f826f00c6d74243b000c3684 Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Tue, 17 Dec 2024 09:41:32 -0800 Subject: [PATCH 1/7] Update README.md --- releasenotes/README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 3294d84d9..18629e7fe 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -25,12 +25,18 @@ Additional documentation: * [Salesforce CLI Plugin Developer Guide](https://github.com/salesforcecli/cli/wiki/Quick-Introduction-to-Developing-sf-Plugins) * [Salesforce CLI Setup Guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm) -## 2.70.7 (December 18, 2024) [stable-rc] +## 2.71.6 (January 8, 2025) [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. ------------ +## December 25, 2024 AND January 1, 2025 + +Due to the holiday break in the United States, we aren't releasing a new stable version. Happy holidays! + +## 2.70.7 (December 18, 2024) [stable] + * NEW: Write the output of an executed SOQL query to a file with the new `--output-file` flag of the `data query` command. This new flag works only with CSV (comma-separated values) and JSON output, so you must use it in combination with `--result-format csv|json`. This example executes a SOQL query in an org with alias `my-scratch` and writes the JSON results to a file called `query-output.json`: ```bash @@ -43,7 +49,7 @@ These changes are in the Salesforce CLI release candidate. We plan to include th * FIX: The `data export bulk` command no longer fails when exporting a very large dataset, such as millions of records, to a JSON-formatted output file. (GitHub issue [#3138](https://github.com/forcedotcom/cli/issues/3138), plugin-data PR [#1140](https://github.com/salesforcecli/plugin-data/pull/1140)) -## 2.69.14 (December 11, 2024) [stable] +## 2.69.14 (December 11, 2024) * NEW: Specify the line endings used in the comma-separated values (CSV) file when you run the `data delete|upsert bulk` commands with the new `--line-ending` flag. The default value on Windows is `CRLF`; on macOS and Linux it's `LF`. Similarly, specify the column delimiters in the CSV file when you run `data upsert bulk` with the new `--column-delimiter` flag; possible values include `BACKQUOTE`, `CARET`, and more. For example: From cefc37f8056b71bf03238f951d9135301d8b5594 Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:32:21 -0800 Subject: [PATCH 2/7] Update README.md --- releasenotes/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/releasenotes/README.md b/releasenotes/README.md index 18629e7fe..bda1faf64 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -31,6 +31,15 @@ These changes are in the Salesforce CLI release candidate. We plan to include th ------------ +* CHANGE: Starting this release, the `--bulk`, `--wait`, and `--async` flags of the `data query` command are deprecated. The `data query resume` command is also deprecated because it works with only the `data query` command in bulk mode. All these deprecated flags and command will be removed from Salesforce CLI on April 25, 2025, or later. Use the `data export bulk|resume` commands instead. For example: + + ```bash + sf data export bulk --query "SELECT Id, Name, Account.Name FROM Contact" --output-file export-accounts.csv --wait 10 --target-org my-scratch + ``` + + (plugin-data PR [#1134](https://github.com/salesforcecli/plugin-data/pull/1134)) + + ## December 25, 2024 AND January 1, 2025 Due to the holiday break in the United States, we aren't releasing a new stable version. Happy holidays! From bffe005983544ccf686dc3f4c157cb5ff2ed935e Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Wed, 18 Dec 2024 08:51:45 -0800 Subject: [PATCH 3/7] Update README.md --- releasenotes/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/releasenotes/README.md b/releasenotes/README.md index bda1faf64..037897b7c 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -39,6 +39,7 @@ These changes are in the Salesforce CLI release candidate. We plan to include th (plugin-data PR [#1134](https://github.com/salesforcecli/plugin-data/pull/1134)) +* FIX: We changed the running output of `project deploy start` to show test failures right away. As a result, you don’t need to wait for the entire deploy to finish before you decide how to handle the test failures. (GitHub issue [#3104](https://github.com/forcedotcom/cli/issues/3104), plugin-deploy-retrieve PR [#1215](https://github.com/salesforcecli/plugin-deploy-retrieve/pull/1215)) ## December 25, 2024 AND January 1, 2025 From 627307f44b328de99a98e1602f74ad39480575be Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Wed, 18 Dec 2024 08:59:43 -0800 Subject: [PATCH 4/7] Update README.md --- releasenotes/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/releasenotes/README.md b/releasenotes/README.md index 037897b7c..72f6053d3 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -41,6 +41,8 @@ These changes are in the Salesforce CLI release candidate. We plan to include th * FIX: We changed the running output of `project deploy start` to show test failures right away. As a result, you don’t need to wait for the entire deploy to finish before you decide how to handle the test failures. (GitHub issue [#3104](https://github.com/forcedotcom/cli/issues/3104), plugin-deploy-retrieve PR [#1215](https://github.com/salesforcecli/plugin-deploy-retrieve/pull/1215)) +* FIX: The `data bulk` commands, when importing from a CSV file, default to the COMMA delimiter if they can't find the delimiter used in the CSV file. (plugin-data PR [#1151](https://github.com/salesforcecli/plugin-data/pull/1151)) + ## December 25, 2024 AND January 1, 2025 Due to the holiday break in the United States, we aren't releasing a new stable version. Happy holidays! From e3a2293d5a2f1425dbf204b83602e051d87e637f Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Wed, 18 Dec 2024 09:07:29 -0800 Subject: [PATCH 5/7] Update README.md --- releasenotes/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/releasenotes/README.md b/releasenotes/README.md index 72f6053d3..9a64854bd 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -43,6 +43,8 @@ These changes are in the Salesforce CLI release candidate. We plan to include th * FIX: The `data bulk` commands, when importing from a CSV file, default to the COMMA delimiter if they can't find the delimiter used in the CSV file. (plugin-data PR [#1151](https://github.com/salesforcecli/plugin-data/pull/1151)) +* FIX: The `data import tree` command now avoids recursion when resolving refIds when importing records. (plugin-data PR [#1146](https://github.com/salesforcecli/plugin-data/pull/1146)) + ## December 25, 2024 AND January 1, 2025 Due to the holiday break in the United States, we aren't releasing a new stable version. Happy holidays! From 2722cf466c5118bbdd52d8e9a861b26560ddea4c Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Wed, 18 Dec 2024 09:45:32 -0800 Subject: [PATCH 6/7] Update README.md --- releasenotes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 9a64854bd..9a575bb09 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -43,7 +43,7 @@ These changes are in the Salesforce CLI release candidate. We plan to include th * FIX: The `data bulk` commands, when importing from a CSV file, default to the COMMA delimiter if they can't find the delimiter used in the CSV file. (plugin-data PR [#1151](https://github.com/salesforcecli/plugin-data/pull/1151)) -* FIX: The `data import tree` command now avoids recursion when resolving refIds when importing records. (plugin-data PR [#1146](https://github.com/salesforcecli/plugin-data/pull/1146)) +* FIX: The `data import tree` command no longer fails when importing over 2K records. (GitHub [comment](https://github.com/forcedotcom/cli/issues/2738#issuecomment-2375750110), plugin-data PR [#1146](https://github.com/salesforcecli/plugin-data/pull/1146)) ## December 25, 2024 AND January 1, 2025 From 24043a2ec1d8bd6bd4163341d7a4b7aabc1e1d2f Mon Sep 17 00:00:00 2001 From: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com> Date: Wed, 18 Dec 2024 10:52:06 -0800 Subject: [PATCH 7/7] Update README.md --- releasenotes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasenotes/README.md b/releasenotes/README.md index 9a575bb09..80255d381 100644 --- a/releasenotes/README.md +++ b/releasenotes/README.md @@ -47,7 +47,7 @@ These changes are in the Salesforce CLI release candidate. We plan to include th ## December 25, 2024 AND January 1, 2025 -Due to the holiday break in the United States, we aren't releasing a new stable version. Happy holidays! +Due to the holiday break, we aren't releasing a new stable version these two weeks. Happy holidays! ## 2.70.7 (December 18, 2024) [stable]