@canva/cli 1.5.2 → 1.6.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 (4) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +4 -0
  3. package/cli.js +252 -252
  4. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.6.0 - 2025-10-22
4
+
5
+ ### Added
6
+
7
+ - Add `design-editor-intent` migration for updating apps to the design editor intent pattern.
8
+
3
9
  ## v1.5.2 - 2025-10-20
4
10
 
5
11
  ### Fixed
package/README.md CHANGED
@@ -320,11 +320,15 @@ canva apps migrate <migrationName>
320
320
 
321
321
  Available migrations:
322
322
  - `"apps-sdk-v1-v2"`: Migrates apps using the Apps SDK v1 packages to v2.
323
+ - `"app-ui-kit-v5"`: Migrates apps using App UI Kit v4 to v5.
324
+ - `"design-editor-intent"`: Migrates from direct render pattern to design intents pattern.
323
325
 
324
326
  - **Examples**:
325
327
 
326
328
  ```shell
327
329
  canva apps migrate apps-sdk-v1-v2
330
+ canva apps migrate app-ui-kit-v5
331
+ canva apps migrate design-editor-intent
328
332
  canva apps migrate apps-sdk-v1-v2 --debug
329
333
  ```
330
334