@automattic/jetpack-ai-client 0.27.1 → 0.27.2
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 +9 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,21 +5,25 @@ 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.27.2] - 2025-03-12
|
|
9
|
+
### Changed
|
|
10
|
+
- Update dependencies. [#42328]
|
|
11
|
+
|
|
8
12
|
## [0.27.1] - 2025-03-10
|
|
9
13
|
### Added
|
|
10
|
-
-
|
|
14
|
+
- Add optional preprocess function to getPostContent. [#42269]
|
|
11
15
|
|
|
12
16
|
### Changed
|
|
13
17
|
- Update dependencies. [#42222]
|
|
14
18
|
|
|
15
19
|
## [0.27.0] - 2025-03-03
|
|
16
20
|
### Added
|
|
17
|
-
-
|
|
21
|
+
- Move openBlockSidebar utility function. [#42016]
|
|
18
22
|
|
|
19
23
|
### Changed
|
|
20
24
|
- AI Assistant: Add experimental functionality to test Chrome's built-in AI API with the AI excerpt. [#41922]
|
|
21
|
-
-
|
|
22
|
-
-
|
|
25
|
+
- Move showAiAssistantSection function to AI Client. [#42158]
|
|
26
|
+
- Refactor usePostContent hook to expose isEditedPostEmpty. [#42149]
|
|
23
27
|
- Update package dependencies. [#42163]
|
|
24
28
|
|
|
25
29
|
## [0.26.3] - 2025-02-24
|
|
@@ -549,6 +553,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
549
553
|
- AI Client: stop using smart document visibility handling on the fetchEventSource library, so it does not restart the completion when changing tabs. [#32004]
|
|
550
554
|
- Updated package dependencies. [#31468] [#31659] [#31785]
|
|
551
555
|
|
|
556
|
+
[0.27.2]: https://github.com/Automattic/jetpack-ai-client/compare/v0.27.1...v0.27.2
|
|
552
557
|
[0.27.1]: https://github.com/Automattic/jetpack-ai-client/compare/v0.27.0...v0.27.1
|
|
553
558
|
[0.27.0]: https://github.com/Automattic/jetpack-ai-client/compare/v0.26.3...v0.27.0
|
|
554
559
|
[0.26.3]: https://github.com/Automattic/jetpack-ai-client/compare/v0.26.2...v0.26.3
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@automattic/jetpack-ai-client",
|
|
4
|
-
"version": "0.27.
|
|
4
|
+
"version": "0.27.2",
|
|
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": {
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"types": "./build/index.d.ts",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@automattic/jetpack-base-styles": "^0.6.44",
|
|
48
|
-
"@automattic/jetpack-components": "^0.68.
|
|
49
|
-
"@automattic/jetpack-connection": "^0.39.
|
|
50
|
-
"@automattic/jetpack-shared-extension-utils": "^0.
|
|
48
|
+
"@automattic/jetpack-components": "^0.68.2",
|
|
49
|
+
"@automattic/jetpack-connection": "^0.39.1",
|
|
50
|
+
"@automattic/jetpack-shared-extension-utils": "^0.18.0",
|
|
51
51
|
"@microsoft/fetch-event-source": "2.0.1",
|
|
52
52
|
"@types/jest": "29.5.14",
|
|
53
53
|
"@types/react": "18.3.18",
|