@canva/cli 1.21.0 → 1.23.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.
- package/CHANGELOG.md +20 -0
- package/README.md +3 -3
- package/THIRD_PARTY_LICENSES +2573 -0
- package/cli.js +566 -574
- package/lib/cjs/index.cjs +8 -8
- package/lib/esm/index.mjs +8 -8
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.23.0 - 2026-04-01
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added new permission scope to read brand template data
|
|
8
|
+
|
|
9
|
+
## v1.22.0 - 2026-03-25
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Added doctor check to verify SDK dependency requirements (e.g. React version).
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Updated the recommended node.js/npm version to v24/v11 respectively.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- The npm package was not including licenses for all bundled dependencies.
|
|
22
|
+
|
|
3
23
|
## v1.21.0 - 2026-03-11
|
|
4
24
|
|
|
5
25
|
### Changed
|
package/README.md
CHANGED
|
@@ -33,11 +33,11 @@ To learn more about app development, visit [the official documentation](https://
|
|
|
33
33
|
|
|
34
34
|
Before using the CLI, make sure that you have the following:
|
|
35
35
|
|
|
36
|
-
- Node.js `
|
|
37
|
-
- npm `
|
|
36
|
+
- Node.js `v24`
|
|
37
|
+
- npm `v11`
|
|
38
38
|
- A [Canva account](https://www.canva.com/developers).
|
|
39
39
|
|
|
40
|
-
**Note**: If you are using a version manager such as nvm, run the `nvm install
|
|
40
|
+
**Note**: If you are using a version manager such as nvm, run the `nvm install 24` command to make sure you have the correct Node.js version.
|
|
41
41
|
|
|
42
42
|
## Quickstart
|
|
43
43
|
|