File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.3.0] - 2025-08-19
9+
10+ ### Added
11+
12+ - ** Record CRUD Operations via REST API** : Complete suite of tools for managing Salesforce records
13+ - ` create_record ` - Create new records with field values via REST API
14+ - Supports all standard and custom objects
15+ - JSON-based field value specification
16+ - Returns created record ID on success
17+ - Respects READ_ONLY and ALLOWED_ORGS permissions
18+ - ` update_record ` - Update existing records with new field values
19+ - Partial updates (only specified fields are modified)
20+ - Supports 15 or 18 character record IDs
21+ - JSON-based field value specification
22+ - Respects READ_ONLY and ALLOWED_ORGS permissions
23+ - ` delete_record ` - Permanently delete records from Salesforce
24+ - Supports all deletable objects
25+ - Permanent removal (use with caution)
26+ - Respects READ_ONLY and ALLOWED_ORGS permissions
27+ - All CRUD operations use native REST API for better performance
28+ - Integrated with existing connection management system
29+ - Enhanced connection utilities with ` getOrgAccessToken() ` and improved ` listAllOrgs() ` with API version info
30+ - Centralized REST API execution with proper read-only mode enforcement
31+
832## [ 1.2.6] - 2025-08-15
933
1034### Fixed
You can’t perform that action at this time.
0 commit comments