@easyflow/javascript-sdk 2.1.9 → 2.1.10

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/README.md +20 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Easyflow JavaScript SDK
2
2
 
3
3
  [![Build Status](https://github.com/easyflow-cash/easyflow-javascript-sdk/workflows/Build%20&%20Deploy%20Easyflow%20SDK/badge.svg)](https://github.com/easyflow-cash/easyflow-javascript-sdk/actions)
4
- [![Version](https://img.shields.io/badge/version-2.1.9-blue.svg)](https://easyflow-sdk.pages.dev)
4
+ [![Version](https://img.shields.io/badge/version-2.1.10-blue.svg)](https://easyflow-sdk.pages.dev)
5
5
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
6
6
  [![Tests](https://img.shields.io/badge/tests-250%20passing-brightgreen.svg)](https://github.com/easyflow-cash/easyflow-javascript-sdk)
7
7
  [![Coverage](https://img.shields.io/badge/coverage-95%25-brightgreen.svg)](https://github.com/easyflow-cash/easyflow-javascript-sdk)
@@ -84,7 +84,16 @@ The **Easyflow JavaScript SDK** is the official tool for developers to integrate
84
84
  - **High Performance**: Optimized for production
85
85
  - **Complete Documentation**: Practical examples for all use cases
86
86
 
87
- ## What's New in v2.1.9
87
+ ## What's New in v2.1.10
88
+
89
+ ### Workflow Corrections
90
+
91
+ - **GitHub Actions Fixed**: Resolved release workflow permissions and SRI hash generation
92
+ - **CDN Deployment**: Automated deployment to Cloudflare Pages working correctly
93
+ - **Release Automation**: GitHub releases created automatically with proper SRI hashes
94
+ - **Build Process**: Streamlined build and deployment pipeline
95
+
96
+ ### Hybrid Distribution Strategy
88
97
 
89
98
  ### Hybrid Distribution Strategy
90
99
 
@@ -158,7 +167,7 @@ Add this script tag to your HTML:
158
167
  <script src="https://easyflow-sdk.pages.dev/easyflow-sdk.min.js"></script>
159
168
 
160
169
  <!-- Specific version -->
161
- <script src="https://easyflow-sdk.pages.dev/easyflow-sdk.v2.1.9.min.js"></script>
170
+ <script src="https://easyflow-sdk.pages.dev/easyflow-sdk.v2.1.10.min.js"></script>
162
171
  ```
163
172
 
164
173
  #### Option 2: NPM Package (Documentation Only)
@@ -525,7 +534,7 @@ console.log('Bank Billet Link:', bankBillet.link)
525
534
 
526
535
  <!-- With SRI (Subresource Integrity) -->
527
536
  <script
528
- src="https://easyflow-sdk.pages.dev/easyflow-sdk.v2.1.9.min.js"
537
+ src="https://easyflow-sdk.pages.dev/easyflow-sdk.v2.1.10.min.js"
529
538
  integrity="sha384-[hash]"
530
539
  crossorigin="anonymous"
531
540
  ></script>
@@ -555,6 +564,13 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
555
564
 
556
565
  ## Changelog
557
566
 
567
+ ### v2.1.10
568
+
569
+ - **Workflow Fixed**: Resolved GitHub Actions permissions and SRI hash generation
570
+ - **CDN Automation**: Automated deployment to Cloudflare Pages working correctly
571
+ - **Release Process**: GitHub releases created automatically with proper SRI hashes
572
+ - **Build Pipeline**: Streamlined build and deployment process
573
+
558
574
  ### v2.1.9
559
575
 
560
576
  - **Hybrid Distribution**: NPM for docs, CDN for secure obfuscated code
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easyflow/javascript-sdk",
3
- "version": "2.1.9",
3
+ "version": "2.1.10",
4
4
  "description": "Easyflow JavaScript SDK - Documentation and TypeScript definitions. For production use, use the CDN script: https://easyflow-sdk.pages.dev/easyflow-sdk.min.js",
5
5
  "main": "README.md",
6
6
  "module": "README.md",