A sfdx plugin to fetch changeset details from salesforce sandbox
These installation instructions will get you started using the plugin on your local machine.
sfdx should be installed on your local machine. see following link for sfdx installation.
https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_install_cli.htm
Plugin can be installed in following ways:
- plugins install
- cloning and plugins link
- cloning and run command
sfdx plugins:install @ngfrx/changesetfetcher
git clone https://github.com/ngfrx/changeset-fetcher.git
npm install
sfdx plugins:link changsetfetcher
git clone https://github.com/ngfrx/changeset-fetcher.git
npm install
./bin/run ngfrx:changeset:list -u <username> --verbose
sfdx ngfrx:changeset:list --username mysandboxusername@example.com
NAME STATUS
────────────────────────────────────────── ──────
JIRA-1234_HELLO_WORLD_SPRINT3 Open
sfdx ngfrx:changeset:list --username mysandboxusername@example.com --verbose
ID NAME DESCRIPTION STATUS MODIFIED BY MODIFIED DATE
─────────────── ────────────────────────────────────────── ─────────── ────── ────────────── ───────────────
0A20E0000009BJA JIRA-1234_HELLO_WORLD_SPRINT3 Open Olivia White 22-1-2020 17:02
sfdx ngfrx:changeset:list --username mysandboxusername@example.com --list
{
"status": 0,
"result": {
"recordCount": 1,
"records": [
{
"id": "0A20E0000009BJA",
"name": "JIRA-1234_HELLO_WORLD_SPRINT3",
"description": "",
"status": "Open",
"modifiedBy": "Olivia White",
"modifiedDate": "22-1-2020 17:02"
}
]
}
}
This project is licensed under the MIT License - see the LICENSE.md file for details