Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update FSE plugin to version 1.11.0 #43857

Merged
merged 3 commits into from
Jul 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/full-site-editing-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile # Not needed when restoring from cache.

- name: Run composer
uses: nick-zh/composer-php@master
with:
action: 'install'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are Composer packages cached in Circle CI?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you elaborate on that question? We're using Github Actions here, no?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤦 hah, of course no circle ci here.

So e.g. node_modules gets cached so that running yarn is faster, and I was wondering if results from composer install also could get cached?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah I am by no means an expert in this realm. All I can say that the time added by the composer install was really minimal, so I am not sure if it's worth trying to cache something.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Screenshot 2020-07-02 at 11 22 16

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good then! :-) 👍 Thanks for checking the time.


- name: Build packages
if: steps.cache.outputs.cache-hit == 'true'
run: yarn run postinstall # Needed only when not running yarn install.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Full Site Editing
* Description: Enhances your page creation workflow within the Block Editor.
* Version: 1.10
* Version: 1.11
* Author: Automattic
* Author URI: https://automattic.com/wordpress-plugins/
* License: GPLv2 or later
Expand Down Expand Up @@ -35,7 +35,7 @@
*
* @var string
*/
define( 'PLUGIN_VERSION', '1.10' );
define( 'PLUGIN_VERSION', '1.11' );

// Always include these helper files for dotcom FSE.
require_once __DIR__ . '/dotcom-fse/helpers.php';
Expand Down
13 changes: 12 additions & 1 deletion apps/full-site-editing/full-site-editing-plugin/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: alexislloyd, allancole, automattic, bartkalisz, codebykat, copons,
Tags: block, blocks, editor, gutenberg, page
Requires at least: 5.0
Tested up to: 5.4
Stable tag: 1.10
Stable tag: 1.11
Requires PHP: 5.6.20
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -40,6 +40,17 @@ This plugin is experimental, so we don't provide any support for it outside of w

== Changelog ==

= 1.11 =
* Fix broken blocks in page layout picker preview in Firefox.
* Add settings to the donation block.
* Fix premium content block to ensure it is auto-selected when mounted.
* Add fallback to donations block to set default products if none are already defined.
* Fix block pattern preview viewport scaling.
* Fix broken site editor page.
* Add one time payment option to payment plans.
* Add a general transform to premium content.
* Fix custom font size in block patterns previews.

= 1.10 =
* Improvements to the premium blocks.
* Add 10 new block patterns.
Expand Down
2 changes: 1 addition & 1 deletion apps/full-site-editing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@automattic/full-site-editing",
"version": "1.10.0",
"version": "1.11.0",
"description": "Plugin for full site editing with the block editor.",
"sideEffects": true,
"repository": {
Expand Down