Skip to content

Commit 92f63c5

Browse files
committed
chore: update version to 1.5.3 and enhance changelog for deploy tool clarification
1 parent 08326e2 commit 92f63c5

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.5.3] - 2025-09-20
9+
10+
### Fixed
11+
12+
- **Deploy Tool Enhancement**: Fixed `deploy_start` tool's `sourceDirectory` parameter description to clearly indicate it accepts both directories and individual file paths for single-file deployments
13+
814
## [1.5.2] - 2025-09-15
915

1016
### Changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"dxt_version": "0.2",
33
"name": "salesforce-mcp-server",
44
"display_name": "Salesforce MCP Server",
5-
"version": "1.5.2",
5+
"version": "1.5.3",
66
"description": "Salesforce MCP Server - Interact with Salesforce orgs through AI assistants",
77
"icon": "icon.png",
88
"long_description": "Enables AI assistants to execute Apex code, query Salesforce data, and manage org metadata using your existing Salesforce CLI authentication. Perfect for developers and administrators who want to automate Salesforce tasks through natural language interactions.\n\nSupports environment variables:\n- READ_ONLY=true - Prevents Apex code execution\n- ALLOWED_ORGS=ALL or comma-separated org list - Restricts access to specific orgs (default: ALL)",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@advanced-communities/salesforce-mcp-server",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"description": "MCP server enabling AI assistants to interact with Salesforce orgs through the Salesforce CLI",
55
"main": "./src/index.ts",
66
"scripts": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function buildServerDescription(): string {
2525
const allowedOrgs = permissions.getAllowedOrgs();
2626
const permissionInfo = [];
2727

28-
let description = `Salesforce MCP Server v1.5.2 - AI-powered Salesforce automation via CLI integration\n`;
28+
let description = `Salesforce MCP Server v1.5.3 - AI-powered Salesforce automation via CLI integration\n`;
2929
description += `Capabilities: Apex execution, SOQL queries, org management, code testing & coverage\n`;
3030

3131
if (readOnlyMode) {

0 commit comments

Comments
 (0)