@canva/cli 1.4.0 → 1.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.
- package/CHANGELOG.md +14 -0
- package/cli.js +553 -560
- package/package.json +5 -2
- package/templates/base/package.json +6 -6
- package/templates/base/webpack.config.ts +3 -4
- package/templates/common/jest.config.mjs +1 -1
- package/templates/dam/package.json +7 -7
- package/templates/dam/webpack.config.ts +3 -4
- package/templates/data_connector/README.md +2 -2
- package/templates/data_connector/package.json +7 -7
- package/templates/data_connector/src/api/data_source.ts +1 -0
- package/templates/data_connector/src/context/app_context.tsx +1 -1
- package/templates/data_connector/webpack.config.ts +3 -4
- package/templates/gen_ai/package.json +7 -8
- package/templates/gen_ai/src/components/remaining_credits.tsx +1 -0
- package/templates/gen_ai/src/components/report_box.tsx +1 -0
- package/templates/gen_ai/src/context/app_context.tsx +1 -0
- package/templates/gen_ai/webpack.config.ts +3 -4
- package/templates/hello_world/package.json +7 -7
- package/templates/hello_world/webpack.config.ts +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.5.0 - 2025-10-15
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Update `testRegex` in jest config to include `__tests__`
|
|
8
|
+
- Updated @canva/app-ui-kit to 5.1.0 and React to 19.2.0.
|
|
9
|
+
- Upgraded @canva/app-eslint-plugin to 1.0.0-beta.7.
|
|
10
|
+
- Updated `@canva/design` from `2.7.2` to `2.7.3` across templates.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Minor improvements to the Data Connector README.
|
|
15
|
+
- Fixed a bug that causes app build to break when `BACKEND_HOST` is undefined.
|
|
16
|
+
|
|
3
17
|
## v1.4.0 - 2025-10-09
|
|
4
18
|
|
|
5
19
|
### Added
|