valenceai 0.4.1 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.5.0] - 2025-06-23
9
+
10
+ ### Added
11
+ - **Enhanced API Compatibility**: JavaScript SDK now matches Python SDK's v0.5.0 feature set
12
+ - **Improved Upload Robustness**: Enhanced error handling and retry logic for async uploads
13
+ - **Sequential Upload Strategy**: Maintains reliable upload performance with proper error recovery
14
+
15
+ ### Changed
16
+ - **Version Alignment**: Updated to v0.5.0 to maintain feature parity with Python SDK
17
+ - **Consistent Documentation**: Updated examples and usage patterns to match Python SDK
18
+ - **Unified User Experience**: Ensures identical functionality across both language implementations
19
+
20
+ ### Technical Improvements
21
+ - **Cross-Platform Consistency**: JavaScript SDK maintains same API patterns as Python SDK
22
+ - **Reliable Upload Process**: Sequential part uploads with comprehensive error handling
23
+ - **Maintained Performance**: Optimized upload strategy for JavaScript environment
24
+
25
+ ### Documentation
26
+ - **Updated Examples**: Aligned with Python SDK documentation patterns
27
+ - **Consistent Naming**: Maintained unified terminology across both SDKs
28
+ - **Enhanced Guides**: Improved usage examples for better developer experience
29
+
30
+ ### Notes
31
+ - **No Breaking Changes**: All existing functionality preserved
32
+ - **Feature Parity**: JavaScript SDK maintains equivalent capabilities to Python SDK
33
+ - **Semantic Versioning**: Version bump reflects alignment with Python SDK capabilities
34
+
8
35
  ## [0.4.1] - 2025-06-18
9
36
 
10
37
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valenceai",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "scripts": {