@automattic/jetpack-ai-client 0.14.3 → 0.14.5
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 +10 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.14.5] - 2024-07-08
|
|
9
|
+
### Changed
|
|
10
|
+
- Updated package dependencies. [#38132]
|
|
11
|
+
|
|
12
|
+
## [0.14.4] - 2024-06-17
|
|
13
|
+
### Changed
|
|
14
|
+
- Updated package dependencies. [#37779]
|
|
15
|
+
|
|
8
16
|
## [0.14.3] - 2024-06-10
|
|
9
17
|
### Changed
|
|
10
18
|
- AI Featured Image: export generic image generation request function. [#37668]
|
|
@@ -339,6 +347,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
339
347
|
- Updated package dependencies. [#31659]
|
|
340
348
|
- Updated package dependencies. [#31785]
|
|
341
349
|
|
|
350
|
+
[0.14.5]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.4...v0.14.5
|
|
351
|
+
[0.14.4]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.3...v0.14.4
|
|
342
352
|
[0.14.3]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.2...v0.14.3
|
|
343
353
|
[0.14.2]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.1...v0.14.2
|
|
344
354
|
[0.14.1]: https://github.com/Automattic/jetpack-ai-client/compare/v0.14.0...v0.14.1
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@automattic/jetpack-ai-client",
|
|
4
|
-
"version": "0.14.
|
|
4
|
+
"version": "0.14.5",
|
|
5
5
|
"description": "A JS client for consuming Jetpack AI services",
|
|
6
6
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/ai-client/#readme",
|
|
7
7
|
"bugs": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
},
|
|
24
24
|
"type": "module",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@storybook/addon-actions": "8.
|
|
27
|
-
"@storybook/blocks": "8.
|
|
28
|
-
"@storybook/preview-api": "8.
|
|
29
|
-
"@storybook/react": "8.
|
|
26
|
+
"@storybook/addon-actions": "8.1.6",
|
|
27
|
+
"@storybook/blocks": "8.1.6",
|
|
28
|
+
"@storybook/preview-api": "8.1.6",
|
|
29
|
+
"@storybook/react": "8.1.6",
|
|
30
30
|
"@types/markdown-it": "14.0.1",
|
|
31
31
|
"@types/turndown": "5.0.4",
|
|
32
32
|
"jest": "^29.6.2",
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
"main": "./build/index.js",
|
|
43
43
|
"types": "./build/index.d.ts",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@automattic/jetpack-base-styles": "^0.6.
|
|
46
|
-
"@automattic/jetpack-connection": "^0.33.
|
|
47
|
-
"@automattic/jetpack-shared-extension-utils": "^0.14.
|
|
45
|
+
"@automattic/jetpack-base-styles": "^0.6.28",
|
|
46
|
+
"@automattic/jetpack-connection": "^0.33.19",
|
|
47
|
+
"@automattic/jetpack-shared-extension-utils": "^0.14.17",
|
|
48
48
|
"@microsoft/fetch-event-source": "2.0.1",
|
|
49
49
|
"@types/react": "18.3.1",
|
|
50
|
-
"@wordpress/api-fetch": "7.
|
|
51
|
-
"@wordpress/block-editor": "13.
|
|
52
|
-
"@wordpress/components": "28.
|
|
53
|
-
"@wordpress/compose": "7.
|
|
54
|
-
"@wordpress/data": "10.
|
|
55
|
-
"@wordpress/element": "6.
|
|
56
|
-
"@wordpress/i18n": "5.
|
|
57
|
-
"@wordpress/icons": "10.
|
|
50
|
+
"@wordpress/api-fetch": "7.2.0",
|
|
51
|
+
"@wordpress/block-editor": "13.2.0",
|
|
52
|
+
"@wordpress/components": "28.2.0",
|
|
53
|
+
"@wordpress/compose": "7.2.0",
|
|
54
|
+
"@wordpress/data": "10.2.0",
|
|
55
|
+
"@wordpress/element": "6.2.0",
|
|
56
|
+
"@wordpress/i18n": "5.2.0",
|
|
57
|
+
"@wordpress/icons": "10.2.0",
|
|
58
58
|
"clsx": "2.1.1",
|
|
59
59
|
"debug": "4.3.4",
|
|
60
60
|
"markdown-it": "14.0.0",
|