Skip to content

Commit

Permalink
Merge changes published in the Gutenberg plugin "release/10.3" branch
Browse files Browse the repository at this point in the history
  • Loading branch information
gziolo committed Apr 6, 2021
1 parent fa19358 commit 76ca614
Show file tree
Hide file tree
Showing 17 changed files with 14 additions and 35 deletions.
2 changes: 0 additions & 2 deletions packages/api-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## Unreleased

## 3.23.0 (2021-04-02)

### New Feature

- Publish TypeScript definitions.
Expand Down
2 changes: 1 addition & 1 deletion packages/api-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wordpress/api-fetch",
"version": "3.23.0-prerelease",
"version": "3.22.0",
"description": "Utility to make WordPress REST API requests.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 0 additions & 2 deletions packages/babel-preset-default/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## Unreleased

## 5.2.0 (2021-04-02)

### Enhancements

- The bundled `@babel/core` dependency has been updated from requiring `^7.12.9` to requiring `^7.13.10` ([#30018](https://github.com/WordPress/gutenberg/pull/30018)).
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-preset-default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wordpress/babel-preset-default",
"version": "5.2.0-prerelease",
"version": "5.1.0",
"description": "Default Babel preset for WordPress development.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 0 additions & 2 deletions packages/create-block-tutorial-template/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## Unreleased

## 1.2.0 (2021-04-02)

### Enhancement

- Scaffolded plugin requires WordPress 5.7 now ([#29757](https://github.com/WordPress/gutenberg/pull/29757).
Expand Down
2 changes: 1 addition & 1 deletion packages/create-block-tutorial-template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wordpress/create-block-tutorial-template",
"version": "1.2.0-prerelease",
"version": "1.1.0",
"description": "Template for @wordpress/create-block used in the official WordPress tutorial.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 0 additions & 2 deletions packages/create-block/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## Unreleased

## 2.2.0 (2021-04-02)

### Enhancement

- Scaffolded plugin requires WordPress 5.7 now ([#29757](https://github.com/WordPress/gutenberg/pull/29757)).
Expand Down
2 changes: 1 addition & 1 deletion packages/create-block/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wordpress/create-block",
"version": "2.2.0-prerelease",
"version": "2.1.0",
"description": "Generates PHP, JS and CSS code for registering a block for a WordPress plugin.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 0 additions & 2 deletions packages/date/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## Unreleased

## 3.15.0 (2021-04-02)

### New Feature

- Bundle type definitions.
Expand Down
2 changes: 1 addition & 1 deletion packages/date/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wordpress/date",
"version": "3.15.0-prerelease",
"version": "3.14.0",
"description": "Date module for WordPress.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wordpress/e2e-tests",
"version": "2.1.0",
"version": "2.1.1",
"description": "End-To-End (E2E) tests for WordPress.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

## 9.0.1 (2021-04-02)
## 9.0.1 (2021-03-19)

### Bug Fix

Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wordpress/eslint-plugin",
"version": "9.0.1-prerelease",
"version": "9.0.1",
"description": "ESLint plugin for WordPress development.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
Expand Down
4 changes: 4 additions & 0 deletions packages/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Breaking Changes

- Passing a tuple of components with `as` prop to `ActionItem.Slot` component is no longer supported. Please pass a component with `as` prop instead ([#30417](https://github.com/WordPress/gutenberg/pull/30417)).

## 1.1.0 (2021-03-17)

### Deprecations
Expand Down
15 changes: 1 addition & 14 deletions packages/interface/src/components/action-item/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
/**
* External dependencies
*/
import { isArray, isEmpty, noop } from 'lodash';
import { isEmpty, noop } from 'lodash';

/**
* WordPress dependencies
*/
import { ButtonGroup, Button, Slot, Fill } from '@wordpress/components';
import deprecated from '@wordpress/deprecated';
import { Children } from '@wordpress/element';

function ActionItemSlot( {
Expand All @@ -17,18 +16,6 @@ function ActionItemSlot( {
bubblesVirtually,
...props
} ) {
if ( isArray( Component ) ) {
deprecated(
'Passing a tuple of components with `as` prop to `ActionItem.Slot` component',
{
since: '10.2',
plugin: 'Gutenberg',
alternative: 'a component with `as` prop',
version: '10.3',
}
);
Component = Component[ 0 ];
}
return (
<Slot
name={ name }
Expand Down
2 changes: 0 additions & 2 deletions packages/scripts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

## Unreleased

## 14.1.0 (2021-04-02)

### Enhancements

- The bundled `babel-loader` dependency has been updated from requiring `^8.1.0` to requiring `^8.2.2` ([#30018](https://github.com/WordPress/gutenberg/pull/30018)).
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wordpress/scripts",
"version": "14.1.0-prerelease",
"version": "14.0.1",
"description": "Collection of reusable scripts for WordPress development.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
Expand Down

0 comments on commit 76ca614

Please sign in to comment.