parent
fbd1224fee
commit
ef0aacf2d2
|
@ -1,5 +1,26 @@
|
|||
# Changelog
|
||||
|
||||
## [0.4](https://github.com/woocommerce/woocommerce/releases/tag/0.4) - 2023-09-12
|
||||
|
||||
- Patch - Add Woo AI Personalization setting and check setting when generating descriptions with AI.
|
||||
- Minor - Suggest product categories using AI
|
||||
- Minor - [Woo AI] Add a Write with AI button for the short description field in product editor.
|
||||
|
||||
## [0.3](https://github.com/woocommerce/woocommerce/releases/tag/0.3) - 2023-08-18
|
||||
|
||||
- Patch - Fix Woo AI settings page fields persistence bug when disabling the feature.
|
||||
- Patch - Woo AI - Fix store branding settings retrieval for use with description generation.
|
||||
- Minor - Adding settings screen for AI centric settings.
|
||||
- Minor - Generating short description after long description on product editor.
|
||||
- Minor - [Woo AI] Add Store Branding data to product description generation prompt.
|
||||
- Minor - Moving text completion hooks into @woocommerce/ai package for reuse.
|
||||
- Minor - Updating AI endpoints for product editing features.
|
||||
- Minor - Use additional product data (categories, tags, and attributes) when generating product descriptions.
|
||||
- Minor - Update pnpm monorepo-wide to 8.6.5
|
||||
- Minor - Update pnpm to 8.6.7
|
||||
- Patch - Update `wp-env` to version 8.2.0.
|
||||
- Minor - Upgrade TypeScript to 5.1.6
|
||||
|
||||
## [0.2](https://github.com/woocommerce/woocommerce/releases/tag/0.2) - 2023-06-28
|
||||
|
||||
- Minor - Adding error handling for a bad token request.
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: add
|
||||
|
||||
Adding settings screen for AI centric settings.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: add
|
||||
|
||||
[Woo AI] Add Store Branding data to product description generation prompt.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: add
|
||||
|
||||
Generating short description after long description on product editor.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: dev
|
||||
|
||||
Update pnpm to 8.6.7
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: dev
|
||||
|
||||
Update pnpm monorepo-wide to 8.6.5
|
|
@ -1,4 +0,0 @@
|
|||
Significance: patch
|
||||
Type: dev
|
||||
|
||||
Update `wp-env` to version 8.2.0.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: dev
|
||||
|
||||
Upgrade TypeScript to 5.1.6
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: update
|
||||
|
||||
Use additional product data (categories, tags, and attributes) when generating product descriptions.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: add
|
||||
|
||||
Suggest product categories using AI
|
|
@ -1,4 +0,0 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Woo AI - Fix store branding settings retrieval for use with description generation.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Fix Woo AI settings page fields persistence bug when disabling the feature.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Add Woo AI Personalization setting and check setting when generating descriptions with AI.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: update
|
||||
|
||||
Moving text completion hooks into @woocommerce/ai package for reuse.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: add
|
||||
|
||||
[Woo AI] Add a Write with AI button for the short description field in product editor.
|
|
@ -1,4 +0,0 @@
|
|||
Significance: minor
|
||||
Type: update
|
||||
|
||||
Updating AI endpoints for product editing features.
|
|
@ -6,7 +6,7 @@
|
|||
"license": "GPL-3.0-or-later",
|
||||
"prefer-stable": true,
|
||||
"minimum-stability": "dev",
|
||||
"version": "0.2.0",
|
||||
"version": "0.4.0",
|
||||
"require": {
|
||||
"composer/installers": "~1.7",
|
||||
"ext-json": "*"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"url": "git://github.com/woocommerce/woo-ai.git"
|
||||
},
|
||||
"title": "Woo AI",
|
||||
"version": "0.2.0",
|
||||
"version": "0.4.0",
|
||||
"homepage": "http://github.com/woocommerce/woo-ai",
|
||||
"devDependencies": {
|
||||
"@svgr/webpack": "^8.1.0",
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Plugin Name: Woo AI
|
||||
* Plugin URI: https://github.com/woocommerce/woocommerce/
|
||||
* Description: Enable AI experiments within the WooCommerce experience. <a href="https://automattic.com/ai-guidelines" target="_blank" rel="noopener noreferrer">Learn more</a>.
|
||||
* Version: 0.2.0
|
||||
* Version: 0.4.0
|
||||
* Author: WooCommerce
|
||||
* Author URI: http://woocommerce.com/
|
||||
* Requires at least: 5.8
|
||||
|
|
Loading…
Reference in New Issue