@capawesome/cli 3.10.0 → 3.10.1

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [3.10.1](https://github.com/capawesome-team/cli/compare/v3.10.0...v3.10.1) (2025-12-29)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **apps:bundles:create:** adjust multipart upload threshold to 50 MB to prevent OOM issues ([ad0958c](https://github.com/capawesome-team/cli/commit/ad0958cc615bb5b5e97f8d04a55d4906c46418e1))
11
+
5
12
  ## [3.10.0](https://github.com/capawesome-team/cli/compare/v3.9.0...v3.10.0) (2025-12-20)
6
13
 
7
14
 
@@ -1,7 +1,7 @@
1
- import FormData from 'form-data';
2
1
  import { MAX_CONCURRENT_UPLOADS } from '../config/index.js';
3
- import httpClient from '../utils/http-client.js';
4
2
  import authorizationService from '../services/authorization-service.js';
3
+ import httpClient from '../utils/http-client.js';
4
+ import FormData from 'form-data';
5
5
  class AppBundleFilesServiceImpl {
6
6
  httpClient;
7
7
  constructor(httpClient) {
@@ -9,7 +9,7 @@ class AppBundleFilesServiceImpl {
9
9
  }
10
10
  async create(dto) {
11
11
  const sizeInBytes = dto.buffer.byteLength;
12
- const useMultipartUpload = sizeInBytes >= 100 * 1024 * 1024; // 100 MB
12
+ const useMultipartUpload = sizeInBytes >= 50 * 1024 * 1024; // 50 MB
13
13
  const formData = new FormData();
14
14
  formData.append('checksum', dto.checksum);
15
15
  if (!useMultipartUpload) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capawesome/cli",
3
- "version": "3.10.0",
3
+ "version": "3.10.1",
4
4
  "description": "The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.",
5
5
  "type": "module",
6
6
  "scripts": {