Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit e244a99

Browse files
committed
prep for point release
1 parent cd2f555 commit e244a99

File tree

4 files changed

+8
-153
lines changed

4 files changed

+8
-153
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@woocommerce/block-library",
33
"title": "WooCommerce Blocks",
44
"author": "Automattic",
5-
"version": "2.4.4",
5+
"version": "2.4.5",
66
"description": "WooCommerce blocks for the Gutenberg editor.",
77
"homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/",
88
"keywords": [

readme.txt

Lines changed: 5 additions & 150 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: gutenberg, woocommerce, woo commerce, products, blocks, woocommerce blocks
44
Requires at least: 5.0
55
Tested up to: 5.3
66
Requires PHP: 5.6
7-
Stable tag: 2.4.4
7+
Stable tag: 2.4.5
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -103,6 +103,10 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
103103
5. WooCommerce Product Blocks in the block inserter menu
104104

105105
== Changelog ==
106+
= 2.4.5 - 2019-11-2 =
107+
108+
- Fix bug with html entities in product name being shown in review blocks.
109+
106110
= 2.4.4 - 2019-10-15 =
107111

108112
- Fix product search widget due to missing home url on the form action.
@@ -133,152 +137,3 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
133137
- Dev: Created new HOCs for retrieving data: `withProduct`, `withComponentId`, `withCategory`.
134138
- Dev: Export block settings to an external global `wc.blockSettings` that can be reliably used by extensions by enqueuing their script with the `wc-block-settings` as the handle. #903
135139
- Dev: Added new generic base components: `<OrderSelect />` and `<Label />` so they can be shared between different blocks. #905
136-
137-
= 2.3.1 - 2019-08-27 =
138-
139-
- Fix: Fix deprecation notices with PHP 7.4.
140-
- Fix: Removed unused screen-reader-text css styles for buttons which caused some theme conflicts.
141-
- Fix: Left align stars to fix alignment in Storefront.
142-
- Fix: Best-sellers block query results #917
143-
- Fix: Fix duplicated translatable string #843
144-
145-
= 2.3.0 - 2019-08-12 =
146-
147-
- Feature: Added a new Featured Category Block; feature a category and show a link to it's archive.
148-
- Feature: Added a new Products by Tag(s) block.
149-
- Feature: Allow individual variations to be selected in the Featured Product block.
150-
- Feature: Added a button alignment option to product grid blocks to align buttons horizontally across the row.
151-
- Feature: Added a cancel button to the product category block editor to discard unsaved changes.
152-
- Enhancement: Change the toggle for list type in Product Category List block to a button toggle component for clarity.
153-
- Build: Updated build process and plugin structure to follow modern best practices. Minimum PHP version bumped to 5.6.
154-
- Fix: Correctly hide products from grids when visibility is hidden.
155-
- Fix: Fix Featured Category block using radio buttons instead of checkboxes.
156-
- Fix: Use externals for frontend dependencies so they are shared between extensions and blocks. That saves 2.57MB on page weight.
157-
- Fix: Load frontend scripts dynamically only when the page contains a block that requires them.
158-
- Fix: Reduce dependencies of JavaScript powered frontend blocks.
159-
- Fix: Disable HTML editing on dynamic blocks which have no content.
160-
- Fix: Hide background opacity control in Featured Product settings if there is no background image.
161-
- Fix: Reduce CSS specificity to make styling easier.
162-
- Fix: Fix author access to API for handpicked products block.
163-
164-
= 2.2.1 - 2019-07-04 =
165-
166-
- Fix: Allow custom CSS classes on grid blocks.
167-
- Fix: Allow custom CSS classes on featured product block.
168-
- Fix: Allow custom CSS classes on product categories list.
169-
170-
= 2.2.0 - 2019-06-26 =
171-
172-
- Feature: Add Product Categories List navigation block for showing a list of categories on your site.
173-
- Enhancement: All grid blocks are now rendered directly by the blocks code, not using the shortcode.
174-
- Enhancement: Brand the WooCommerce Blocks for better discoverability in the block inserter.
175-
- Build: Update build process to dynamically generate required WordPress dependencies.
176-
- Build: Update packages.
177-
178-
= 2.1.0 - 2019-05-14 =
179-
180-
- Feature: Add focal point picker to the Featured Product block, so you can adjust the background image position (only available on WP 5.2+ or with Gutenberg plugin).
181-
- Fix: Improved fetching products from API, so searching for products in Featured Product & Hand-picked Products is faster for stores with over 200 products.
182-
- Fix: It might be possible to request over 100 products for the editor preview, but this would cause an API error - we now limit the preview request to 100 products.
183-
- Build: Update build script to show visual progress indicator.
184-
- Build: Update packages.
185-
186-
= 2.0.1 - 2019-04-22 =
187-
188-
- Fix: Fix warnings about blocks already being registered.
189-
- Fix: Fix a conflict with WooCommerce 3.6 and WooCommerce Blocks 1.4 (this change only applies to the version of blocks bundled with WooCommerce core).
190-
191-
= 2.0.0 - 2019-04-18 =
192-
193-
- **BREAKING:** Requires WordPress 5.0+, WooCommerce 3.6+
194-
- **BREAKING:** Remove the legacy block entirely
195-
- **BREAKING:** Remove the `wc-pb/v3/*` endpoints in favor of new core `wc-blocks/v1/*` endpoints
196-
- Feature: Add content visibility settings to show/hide title, price, rating, button
197-
- Feature: Add transforms between basic product grid blocks
198-
- Fix: Add product rating display to preview, to better match front end
199-
- Fix: Product titles render HTML correctly in preview
200-
- Fix: Icons are now aligned correctly in placeholders
201-
- Fix: Grid block preview column width now matches the front-end
202-
- Fix: Webpack now builds using a custom jsonp callback, fixing possible collisions with other projects
203-
- API: Change namespace, endpoints now accessed at `/wc/blocks/*`
204-
- API: Add `catalog_visibility` parameter for fetching products
205-
- API: Update structure of attribute term endpoint to return `attribute.slug`, `attribute.name` etc
206-
- API: Update parameters to use full names, `category_operator`, `attribute_operator`
207-
- Components: Move SearchListControl to `@woocommerce/components` library
208-
- Components: Added new control component GridContentControl to manage content visibility
209-
- Build: Reorganize CSS into one file for editor preview, and one file for front-end styles
210-
- Build: Move registration code to a new class
211-
- Build: Update packages
212-
213-
= 1.4.0 - 2019-02-12 =
214-
215-
- Feature: Added new block: "Products by Attribute"
216-
- Enhancement: Added the ability to resize the Featured Product block (a default and minimum height can be set by your theme)
217-
- Enhancement: Updated button on Featured Product block to match core button block behavior
218-
- Components: Added new control component `GridLayoutControl` to manage row/column layout values
219-
- Components: Updated `ProductAttributeControl` to list only attribute types, then once selected, list terms in that attribute
220-
- UX: Remove ability to change selected product in Featured Product block, to prevent "sticky" product links.
221-
- Fix: A product without an image will now use the placeholder image in grid-layout block previews
222-
- Fix: Previously, there was a PHP notice when a Featured Product has no background image
223-
- Fix: There is now an enforced limit on column and row counts (which can be set by your theme)
224-
- API: Added `attr_operator` support to products endpoint to compare product attribute terms
225-
- Build: Update packages
226-
- Build: Remove unnecessary internationalization build step
227-
228-
= 1.3.1 - 2019-01-17 =
229-
230-
- Fix: A CSS conflict was causing the core columns style to reset, this has been fixed and columns will display as expected now.
231-
- Fix: A version conflict with a JS package was causing the blocks to be broken in non-English locales. The package was updated.
232-
- Fix: Translations were not being loaded correctly for the JS files. We now bundle the Danish, Spanish, and French translations so that these can be used.
233-
234-
= 1.3.0 - 2019-01-15 =
235-
236-
- Feature: Added new blocks: "Featured Product", "Hand-picked Products", "Best Selling Products", "Newest Products", "On Sale Products", "Top Rated Products"
237-
- Enhancement: Create new "WooCommerce" block category, all blocks are found there now
238-
- Enhancement: Added a control to "Products by Category" block to control whether products need to match any selected categories or all selected categories
239-
- Fix: A "Products by Category" block with no category selected will no longer show all products
240-
- Legacy block: Remove legacy "Products" block from being shown in the block inserter (still loading the block for an existing uses)
241-
- Legacy block: Fix an issue with imageless products in the legacy "Products" block.
242-
- Components: Add new Control components `ProductControl`, `ProductsControl`, `ProductOrderbyControl`
243-
- Components: Update `SearchListControl` to allow selecting a single item
244-
- API: Add `cat_operator` support to products endpoint
245-
- API: Add product `description` & `short_description` to each product
246-
- API: Add attribute group names to each attribute
247-
- Build: Update packages
248-
- Build: Add cssnano to minify CSS
249-
- Build: Split out node_modules code into separate vendors files
250-
251-
= 1.2.0 - 2018-12-04 =
252-
253-
* Feature - Stand-alone product category block with improved category selection interface.
254-
* Fix - All users who can edit posts can now use these blocks thanks to a new set of API endpoints allowing view access to products, product categories, and product attributes.
255-
* Fix - Compatibility with WP 5.0, fixed error “Cannot read property Toolbar of undefined”.
256-
* Fix - Only published products are shown in previews.
257-
* Enhancement - Translations should now load into the block (for WP 5.0+).
258-
* Enhancement - Modernized build process and developer tools, and added tests for faster future development.
259-
260-
= 1.1.2 - 2018-09-07 =
261-
262-
* Fix - Refactor to remove withAPIData usage, as the class was removed in Gutenberg 3.7.
263-
264-
= 1.1.1 - 2018-08-22 =
265-
266-
* Fix - Make Newness ordering order correctly on frontend.
267-
* Fix - Don't cause fatal errors if WooCommerce is not active.
268-
269-
= 1.1.0 - 2018-06-06 =
270-
271-
* Feature - Add "Best Selling" and "Top Rated" product scopes.
272-
* Fix - Only enqueue scripts and styles in the site backend.
273-
* Fix - Remove focus checks deprecated in latest Gutenberg version.
274-
* Fix - Added keys to some elements to prevent React warnings.
275-
* Enhancement - Added custom API endpoint for more accurate block previews with orderby.
276-
* Performance - Refactored the way the attribute select works to prevent many concurrent API requests on sites with many attributes.
277-
278-
= 1.0.0 - 2018-04-24 =
279-
280-
* Initial implementation of the Gutenberg Products block.
281-
282-
== Upgrade Notice ==
283-
284-
= 1.0 =

src/Package.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Package {
1919
*
2020
* @var string
2121
*/
22-
const VERSION = '2.4.4';
22+
const VERSION = '2.4.5';
2323

2424
/**
2525
* Stores if init has ran yet.

0 commit comments

Comments
 (0)