From 2fe0beb8b7b122acf0605532f52b0f6ea4d73f68 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Thu, 11 Jul 2024 14:13:57 -0500 Subject: [PATCH 01/21] update plugin uri --- figma-block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/figma-block.php b/figma-block.php index 79daf1a..0125258 100644 --- a/figma-block.php +++ b/figma-block.php @@ -1,7 +1,7 @@ Date: Thu, 11 Jul 2024 14:14:21 -0500 Subject: [PATCH 02/21] fix plugin name --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 8395a79..5192ea7 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -=== Block Catalog === +=== Figma Block === Contributors: 10up, dkotter, jeffpaul Tags: gutenberg, figma, embed, blocks, custom blocks Tested up to: 6.6 From 5a0ba4cf7d37e155d9ab1061fada5b258b9c4a5d Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 22 Jul 2024 12:27:15 -0400 Subject: [PATCH 03/21] Update and rename `no-response.yml` to `close-stale-issues.yml` --- ...no-response.yml => close-stale-issues.yml} | 30 +++++++++++-------- 1 file changed, 18 insertions(+), 12 deletions(-) rename .github/workflows/{no-response.yml => close-stale-issues.yml} (55%) diff --git a/.github/workflows/no-response.yml b/.github/workflows/close-stale-issues.yml similarity index 55% rename from .github/workflows/no-response.yml rename to .github/workflows/close-stale-issues.yml index ce0c42f..4ffcfbc 100644 --- a/.github/workflows/no-response.yml +++ b/.github/workflows/close-stale-issues.yml @@ -1,26 +1,27 @@ -name: No Response +name: 'Close stale issues' # **What it does**: Closes issues where the original author doesn't respond to a request for information. # **Why we have it**: To remove the need for maintainers to remember to check back on issues periodically to see if contributors have responded. -# **Who does it impact**: Everyone that works on docs or docs-internal. on: - issue_comment: - types: [created] schedule: - # Schedule for five minutes after the hour, every hour - - cron: '5 * * * *' + # Schedule for every day at 1:30am UTC + - cron: '30 1 * * *' + +permissions: + issues: write jobs: - noResponse: + stale: runs-on: ubuntu-latest steps: - - uses: lee-dohm/no-response@v0.5.0 + - uses: actions/stale@v9 with: - token: ${{ github.token }} - daysUntilClose: 14 # Number of days of inactivity before an Issue is closed for lack of response - responseRequiredLabel: "needs:feedback" # Label indicating that a response from the original author is required - closeComment: > + days-before-stale: 7 + days-before-close: 7 + stale-issue-message: > + It has been 7 days since more information was requested from you in this issue and we have not heard back. This issue is now marked as stale and will be closed in 7 days, but if you have more information to add then please comment and the issue will stay open. + close-issue-message: > This issue has been automatically closed because there has been no response to our request for more information. With only the information that is currently in the issue, we don't have enough information @@ -28,3 +29,8 @@ jobs: that we can investigate further. See [this blog post on bug reports and the importance of repro steps](https://www.lee-dohm.com/2015/01/04/writing-good-bug-reports/) for more information about the kind of information that may be helpful. + stale-issue-label: 'stale' + close-issue-reason: 'not_planned' + any-of-labels: 'needs:feedback' + remove-stale-when-updated: true + From 3f64c46a78501acf5a384f527e45189ef244158f Mon Sep 17 00:00:00 2001 From: thrijith Date: Fri, 16 Aug 2024 14:42:02 +0530 Subject: [PATCH 04/21] Update Figma block name --- README.md | 2 +- composer.json | 4 ++-- figma-block.php => embed-block-figma.php | 10 +++++----- includes/FigmaBlock/Plugin.php | 2 +- languages/figma-block.pot | 12 ++++++------ package-lock.json | 4 ++-- package.json | 4 ++-- readme.txt | 2 +- src/assets/js/figma-embed.js | 2 +- 9 files changed, 21 insertions(+), 21 deletions(-) rename figma-block.php => embed-block-figma.php (86%) diff --git a/README.md b/README.md index 3419e68..7eceddf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Figma Block for WordPress +# Embed Block for Figma for WordPress > Adds a Figma embed block to the WordPress Block Editor. diff --git a/composer.json b/composer.json index bc068b3..0b14f3f 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { - "name": "10up/figma-block", + "name": "10up/embed-block-figma", "description": "Adds a Figma embed block to the WordPress Block Editor.", "type": "wordpress-plugin", - "homepage": "https://github.com/10up/figma-block", + "homepage": "https://github.com/10up/embed-block-figma", "license": "GPL-2.0-or-later", "authors": [ { diff --git a/figma-block.php b/embed-block-figma.php similarity index 86% rename from figma-block.php rename to embed-block-figma.php index 0125258..e93fb16 100644 --- a/figma-block.php +++ b/embed-block-figma.php @@ -1,7 +1,7 @@

%2$s

', 'notice notice-error', esc_html( $message ) ); error_log( esc_html( $message ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log } diff --git a/includes/FigmaBlock/Plugin.php b/includes/FigmaBlock/Plugin.php index 3bd2401..c10bebf 100644 --- a/includes/FigmaBlock/Plugin.php +++ b/includes/FigmaBlock/Plugin.php @@ -50,6 +50,6 @@ public function init() { * Load translations. */ public function i18n() { - load_plugin_textdomain( 'figma-block', false, FIGMA_BLOCK_PATH . '/languages' ); + load_plugin_textdomain( 'embed-block-figma', false, FIGMA_BLOCK_PATH . '/languages' ); } } diff --git a/languages/figma-block.pot b/languages/figma-block.pot index d489ae5..3159888 100644 --- a/languages/figma-block.pot +++ b/languages/figma-block.pot @@ -2,8 +2,8 @@ # This file is distributed under the GPL v2 or later. msgid "" msgstr "" -"Project-Id-Version: Figma Block 0.1.0\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/figma-block\n" +"Project-Id-Version: Embed Block for Figma 0.1.0\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/embed-block-figma\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -12,10 +12,10 @@ msgstr "" "POT-Creation-Date: 2024-03-12T17:56:24+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.9.0\n" -"X-Domain: figma-block\n" +"X-Domain: embed-block-figma\n" #. Plugin Name of the plugin -msgid "Figma Block" +msgid "Embed Block for Figma" msgstr "" #. Plugin URI of the plugin @@ -32,6 +32,6 @@ msgid "10up" msgstr "" #. translators: %s: Minimum required PHP version -#: figma-block.php:61 -msgid "The Figma Block plugin requires PHP version %s or later. Please upgrade PHP or disable the plugin." +#: embed-block-figma.php:61 +msgid "The Embed Block for Figma plugin requires PHP version %s or later. Please upgrade PHP or disable the plugin." msgstr "" diff --git a/package-lock.json b/package-lock.json index 34fee4b..731637c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "figma-block", + "name": "embed-block-figma", "version": "0.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "figma-block", + "name": "embed-block-figma", "version": "0.2.0", "devDependencies": { "10up-toolkit": "6.0.0", diff --git a/package.json b/package.json index cadaa3c..346dde7 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { - "name": "figma-block", + "name": "embed-block-figma", "version": "0.2.0", "description": "Adds a Figma embed block to the WordPress Block Editor.", - "homepage": "https://github.com/10up/figma-block", + "homepage": "https://github.com/10up/embed-block-figma", "license": "GPL-2.0-or-later", "author": { "name": "10up", diff --git a/readme.txt b/readme.txt index 5192ea7..0716bdd 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -=== Figma Block === +=== Embed Block for Figma === Contributors: 10up, dkotter, jeffpaul Tags: gutenberg, figma, embed, blocks, custom blocks Tested up to: 6.6 diff --git a/src/assets/js/figma-embed.js b/src/assets/js/figma-embed.js index eefde79..1e7e682 100644 --- a/src/assets/js/figma-embed.js +++ b/src/assets/js/figma-embed.js @@ -12,7 +12,7 @@ import { IconColor } from './icon'; registerBlockVariation('core/embed', { name: 'figma', title: 'Figma', - description: __('Embed Figma designs.'), + description: __('Embed Figma designs.', 'embed-block-figma'), icon: { src: IconColor, foreground: 'transparent' }, patterns: [/https:\/\/[\w.-]+\.?figma.com\/([\w-]+)\/([0-9a-zA-Z]{22,128})(?:\/.*)?$/i], attributes: { From 8e5983905e05244a6b0963b97e74926e5a175e71 Mon Sep 17 00:00:00 2001 From: thrijith Date: Fri, 16 Aug 2024 18:48:28 +0530 Subject: [PATCH 05/21] Add playground blueprint --- .wordpress-org/blueprints/blueprint.json | 31 ++++++++++++++++++++++++ README.md | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .wordpress-org/blueprints/blueprint.json diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json new file mode 100644 index 0000000..e1c947c --- /dev/null +++ b/.wordpress-org/blueprints/blueprint.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://playground.wordpress.net/blueprint-schema.json", + "landingPage": "\/wp-admin\/post-new.php", + "preferredVersions": { + "php": "7.4", + "wp": "latest" + }, + "phpExtensionBundles": [ + "kitchen-sink" + ], + "features": { + "networking": true + }, + "steps": [ + { + "step": "login", + "username": "admin", + "password": "password" + }, + { + "step": "installPlugin", + "pluginZipFile": { + "resource": "url", + "slug": "https://github.com/10up/figma-block/archive/refs/tags/0.2.0.zip" + }, + "options": { + "activate": true + } + } + ] +} diff --git a/README.md b/README.md index 3419e68..482c598 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > Adds a Figma embed block to the WordPress Block Editor. [![Support Level](https://img.shields.io/badge/support-beta-blueviolet.svg)](#support-level) ![WordPress tested up to version](https://img.shields.io/badge/WordPress-v6.5%20tested-success.svg) [![GPLv2 License](https://img.shields.io/github/license/10up/block-catalog.svg)](https://github.com/10up/block-catalog/blob/develop/LICENSE.md) -[![Dependency Review](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/figma-block/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/figma-block/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/figma-block/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/eslint.yml) +[![Dependency Review](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/figma-block/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/figma-block/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/figma-block/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/eslint.yml) [![WordPress Playground Demo](https://img.shields.io/github/v/release/10up/figma-block?logo=wordpress&logoColor=FFFFFF&label=Playground%20Demo&labelColor=3858E9&color=3858E9)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/10up/figma-block/feature/add-playground/.wordpress-org/blueprints/blueprint.json) ![Screenshot of the rendered Figma Embed block in the editor / admin](.wordpress-org/screenshot-2.png) From 831430215df6d23d57ebd6b4d5941e83ebb8f7e4 Mon Sep 17 00:00:00 2001 From: thrijith Date: Fri, 16 Aug 2024 18:53:51 +0530 Subject: [PATCH 06/21] Update blueprint path --- .wordpress-org/blueprints/blueprint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json index e1c947c..8cdd674 100644 --- a/.wordpress-org/blueprints/blueprint.json +++ b/.wordpress-org/blueprints/blueprint.json @@ -21,7 +21,7 @@ "step": "installPlugin", "pluginZipFile": { "resource": "url", - "slug": "https://github.com/10up/figma-block/archive/refs/tags/0.2.0.zip" + "url": "https://github.com/10up/figma-block/archive/refs/tags/0.2.0.zip" }, "options": { "activate": true From 0dab09d3e21fc738440ff1519890d982c8186a63 Mon Sep 17 00:00:00 2001 From: thrijith Date: Fri, 16 Aug 2024 19:36:55 +0530 Subject: [PATCH 07/21] Use wp.org type for plugin --- .wordpress-org/blueprints/blueprint.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json index 8cdd674..f6ec8d2 100644 --- a/.wordpress-org/blueprints/blueprint.json +++ b/.wordpress-org/blueprints/blueprint.json @@ -20,8 +20,8 @@ { "step": "installPlugin", "pluginZipFile": { - "resource": "url", - "url": "https://github.com/10up/figma-block/archive/refs/tags/0.2.0.zip" + "resource": "wordpress.org\/plugins", + "slug": "embed-block-figma" }, "options": { "activate": true From a85cd616ef0c9594123819d3298ce15854b2c192 Mon Sep 17 00:00:00 2001 From: thrijith Date: Fri, 16 Aug 2024 19:39:43 +0530 Subject: [PATCH 08/21] Update label path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 482c598..e2d23b5 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > Adds a Figma embed block to the WordPress Block Editor. [![Support Level](https://img.shields.io/badge/support-beta-blueviolet.svg)](#support-level) ![WordPress tested up to version](https://img.shields.io/badge/WordPress-v6.5%20tested-success.svg) [![GPLv2 License](https://img.shields.io/github/license/10up/block-catalog.svg)](https://github.com/10up/block-catalog/blob/develop/LICENSE.md) -[![Dependency Review](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/figma-block/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/figma-block/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/figma-block/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/eslint.yml) [![WordPress Playground Demo](https://img.shields.io/github/v/release/10up/figma-block?logo=wordpress&logoColor=FFFFFF&label=Playground%20Demo&labelColor=3858E9&color=3858E9)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/10up/figma-block/feature/add-playground/.wordpress-org/blueprints/blueprint.json) +[![Dependency Review](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/figma-block/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/figma-block/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/figma-block/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/eslint.yml) [![WordPress Playground Demo](https://img.shields.io/github/v/release/10up/figma-block?logo=wordpress&logoColor=FFFFFF&label=Playground%20Demo&labelColor=3858E9&color=3858E9)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/10up/figma-block/trunk/.wordpress-org/blueprints/blueprint.json) ![Screenshot of the rendered Figma Embed block in the editor / admin](.wordpress-org/screenshot-2.png) From 05a11e7ed51038173610e543cb02fc56024f0c1f Mon Sep 17 00:00:00 2001 From: thrijith Date: Tue, 20 Aug 2024 22:56:51 +0530 Subject: [PATCH 09/21] Add demo-data.xml for playground --- .wordpress-org/blueprints/demo-data.xml | 77 +++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 .wordpress-org/blueprints/demo-data.xml diff --git a/.wordpress-org/blueprints/demo-data.xml b/.wordpress-org/blueprints/demo-data.xml new file mode 100644 index 0000000..04e33fc --- /dev/null +++ b/.wordpress-org/blueprints/demo-data.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + My WordPress Website + https://playground.wordpress.net/scope:0.1624312760462985 + + Tue, 20 Aug 2024 17:24:18 +0000 + en-US + 1.2 + https://playground.wordpress.net/scope:0.1624312760462985 + https://playground.wordpress.net/scope:0.1624312760462985 + + 1 + + + https://wordpress.org/?v=6.6.1 + + + <![CDATA[Embed Block Figma]]> + https://playground.wordpress.net/scope:0.1624312760462985/?page_id=7 + Tue, 20 Aug 2024 17:20:57 +0000 + + https://playground.wordpress.net/scope:0.1624312760462985/?page_id=7 + + +
+https://www.figma.com/file/LKQ4FJ4bTnCSjedbRpk931/Sample-Filesss +
+]]>
+ + 7 + + + + + + + + + 0 + 0 + + + 0 + + + + +
+
+
+ \ No newline at end of file From 6135d1b18a0f1e78268c5e5732168ec923c65097 Mon Sep 17 00:00:00 2001 From: thrijith Date: Tue, 20 Aug 2024 23:00:55 +0530 Subject: [PATCH 10/21] Add option to import demo data with figma block and update landing page --- .wordpress-org/blueprints/blueprint.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json index f6ec8d2..e655900 100644 --- a/.wordpress-org/blueprints/blueprint.json +++ b/.wordpress-org/blueprints/blueprint.json @@ -1,6 +1,6 @@ { "$schema": "https://playground.wordpress.net/blueprint-schema.json", - "landingPage": "\/wp-admin\/post-new.php", + "landingPage": "\/wp-admin\/post.php?post=7&action=edit", "preferredVersions": { "php": "7.4", "wp": "latest" @@ -26,6 +26,13 @@ "options": { "activate": true } + }, + { + "step": "importFile", + "file": { + "resource": "url", + "url": "https:\/\/raw.githubusercontent.com\/10up\/figma-block\/05a11e7ed51038173610e543cb02fc56024f0c1f\/.wordpress-org\/blueprints\/demo-data.xml" + } } ] } From a7d69636c755193c63e0024aca395ed35422405f Mon Sep 17 00:00:00 2001 From: thrijith Date: Wed, 21 Aug 2024 14:07:27 +0530 Subject: [PATCH 11/21] Update import step --- .wordpress-org/blueprints/blueprint.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json index e655900..0060b0f 100644 --- a/.wordpress-org/blueprints/blueprint.json +++ b/.wordpress-org/blueprints/blueprint.json @@ -28,10 +28,10 @@ } }, { - "step": "importFile", + "step": "importWxr", "file": { "resource": "url", - "url": "https:\/\/raw.githubusercontent.com\/10up\/figma-block\/05a11e7ed51038173610e543cb02fc56024f0c1f\/.wordpress-org\/blueprints\/demo-data.xml" + "url": "https:\/\/raw.githubusercontent.com\/10up\/figma-block\/develop/.wordpress-org\/blueprints\/demo-data.xml" } } ] From aa84bf1fbd7692a15a383b607dcc8031d4d79301 Mon Sep 17 00:00:00 2001 From: Darin Kotter Date: Wed, 28 Aug 2024 11:01:06 -0600 Subject: [PATCH 12/21] Update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7eceddf..1bc3f26 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Embed Block for Figma for WordPress +# Embed Block for Figma -> Adds a Figma embed block to the WordPress Block Editor. +> A Figma Block for the WordPress block editor (Gutenberg). [![Support Level](https://img.shields.io/badge/support-beta-blueviolet.svg)](#support-level) ![WordPress tested up to version](https://img.shields.io/badge/WordPress-v6.5%20tested-success.svg) [![GPLv2 License](https://img.shields.io/github/license/10up/block-catalog.svg)](https://github.com/10up/block-catalog/blob/develop/LICENSE.md) [![Dependency Review](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/figma-block/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/figma-block/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/figma-block/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/eslint.yml) From 6d239cf585276d53818078fe701f9081ec3d6552 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 17:04:26 +0000 Subject: [PATCH 13/21] Bump webpack in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [webpack](https://github.com/webpack/webpack). Updates `webpack` from 5.90.3 to 5.94.0 - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.90.3...v5.94.0) --- updated-dependencies: - dependency-name: webpack dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] --- package-lock.json | 134 +++++++++++++++++++++------------------------- 1 file changed, 62 insertions(+), 72 deletions(-) diff --git a/package-lock.json b/package-lock.json index 731637c..54f7b57 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,6 +7,7 @@ "": { "name": "embed-block-figma", "version": "0.2.0", + "license": "GPL-2.0-or-later", "devDependencies": { "10up-toolkit": "6.0.0", "classnames": "^2.3.2", @@ -4556,16 +4557,6 @@ "@types/json-schema": "*" } }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", - "dev": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, "node_modules/@types/estree": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", @@ -5131,9 +5122,9 @@ "peer": true }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", "dev": true, "dependencies": { "@webassemblyjs/helper-numbers": "1.11.6", @@ -5153,9 +5144,9 @@ "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { @@ -5176,15 +5167,15 @@ "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/wasm-gen": "1.12.1" } }, "node_modules/@webassemblyjs/ieee754": { @@ -5212,28 +5203,28 @@ "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", "@webassemblyjs/leb128": "1.11.6", @@ -5241,24 +5232,24 @@ } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-api-error": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", @@ -5267,12 +5258,12 @@ } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@xtuc/long": "4.2.2" } }, @@ -5663,10 +5654,10 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", "dev": true, "peerDependencies": { "acorn": "^8" @@ -8337,9 +8328,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz", - "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==", + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -19691,9 +19682,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", @@ -19713,26 +19704,25 @@ } }, "node_modules/webpack": { - "version": "5.90.3", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.3.tgz", - "integrity": "sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==", + "version": "5.94.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", + "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", "dev": true, "dependencies": { - "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", + "acorn-import-attributes": "^1.9.5", "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", @@ -19740,7 +19730,7 @@ "schema-utils": "^3.2.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.0", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { From fd83c16a044678388209c025dbe8180c9b3a8794 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 28 Aug 2024 12:04:43 -0500 Subject: [PATCH 14/21] Update blueprint.json --- .wordpress-org/blueprints/blueprint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json index 0060b0f..79fcb83 100644 --- a/.wordpress-org/blueprints/blueprint.json +++ b/.wordpress-org/blueprints/blueprint.json @@ -31,7 +31,7 @@ "step": "importWxr", "file": { "resource": "url", - "url": "https:\/\/raw.githubusercontent.com\/10up\/figma-block\/develop/.wordpress-org\/blueprints\/demo-data.xml" + "url": "https:\/\/raw.githubusercontent.com\/10up\/embed-block-figma\/develop/.wordpress-org\/blueprints\/demo-data.xml" } } ] From 55adcb473cdb0e057ed6beadf94066e8357636e7 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 28 Aug 2024 12:08:20 -0500 Subject: [PATCH 15/21] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e77b093..f8f53a3 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ > A Figma Block for the WordPress block editor (Gutenberg). -[![Support Level](https://img.shields.io/badge/support-beta-blueviolet.svg)](#support-level) ![WordPress tested up to version](https://img.shields.io/badge/WordPress-v6.5%20tested-success.svg) [![GPLv2 License](https://img.shields.io/github/license/10up/block-catalog.svg)](https://github.com/10up/block-catalog/blob/develop/LICENSE.md) -[![Dependency Review](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/figma-block/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/figma-block/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/figma-block/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/figma-block/actions/workflows/eslint.yml) [![WordPress Playground Demo](https://img.shields.io/github/v/release/10up/figma-block?logo=wordpress&logoColor=FFFFFF&label=Playground%20Demo&labelColor=3858E9&color=3858E9)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/10up/figma-block/trunk/.wordpress-org/blueprints/blueprint.json) +[![Support Level](https://img.shields.io/badge/support-beta-blueviolet.svg)](#support-level) ![WordPress tested up to version](https://img.shields.io/badge/WordPress-v6.5%20tested-success.svg) [![GPLv2 License](https://img.shields.io/github/license/10up/embed-block-figma.svg)](https://github.com/10up/embed-block-figma/blob/develop/LICENSE.md) +[![Dependency Review](https://github.com/10up/embed-block-figma/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/embed-block-figma/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/embed-block-figma/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/embed-block-figma/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/eslint.yml) [![WordPress Playground Demo](https://img.shields.io/github/v/release/10up/embed-block-figma?logo=wordpress&logoColor=FFFFFF&label=Playground%20Demo&labelColor=3858E9&color=3858E9)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/10up/embed-block-figma/trunk/.wordpress-org/blueprints/blueprint.json) ![Screenshot of the rendered Figma Embed block in the editor / admin](.wordpress-org/screenshot-2.png) @@ -22,7 +22,7 @@ ## Installation -* You can install the plugin manually by [downloading a zip file](https://github.com/10up/figma-block/releases/latest) from GitHub. +* You can install the plugin manually by [downloading a zip file](https://github.com/10up/embed-block-figma/releases/latest) from GitHub. * You then need to upload the zip file to your WordPress site by going to *WP-Admin > Plugins > Add New > Upload Plugin* and selecting the zip file from your computer. ## Getting Started From dc7b9708ffd8d8f55db1f0812531f854cce4670a Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 28 Aug 2024 12:13:46 -0500 Subject: [PATCH 16/21] update naming from `figma-block` to `embed-block-figma` --- CHANGELOG.md | 14 +++++++------- CONTRIBUTING.md | 18 +++++++++--------- readme.txt | 8 ++++---- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95a3ecf..f832346 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,16 +8,16 @@ All notable changes to this project will be documented in this file, per [the Ke **Initial public plugin release. ๐ŸŽ‰** ### Changed -- Bump WordPress "tested up to" version 6.6 (props [@psorensen](https://github.com/psorensen), [@jeffpaul](https://github.com/jeffpaul) via [#21](https://github.com/10up/figma-block/pull/21)). -- Updated documentation (props [@jeffpaul](https://github.com/jeffpaul) via [#17](https://github.com/10up/figma-block/pull/17)). +- Bump WordPress "tested up to" version 6.6 (props [@psorensen](https://github.com/psorensen), [@jeffpaul](https://github.com/jeffpaul) via [#21](https://github.com/10up/embed-block-figma/pull/21)). +- Updated documentation (props [@jeffpaul](https://github.com/jeffpaul) via [#17](https://github.com/10up/embed-block-figma/pull/17)). ### Security -- Bump `braces` from 3.0.2 to 3.0.3 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/figma-block/pull/15)). -- Bump `ws` from 7.5.9 to 7.5.10 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/figma-block/pull/15)). +- Bump `braces` from 3.0.2 to 3.0.3 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/embed-block-figma/pull/15)). +- Bump `ws` from 7.5.9 to 7.5.10 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/embed-block-figma/pull/15)). ## [0.1.0] - 2024-06-25 - Initial private plugin release. -[Unreleased]: https://github.com/10up/figma-block/compare/trunk...develop -[0.2.0]: https://github.com/10up/figma-block/compare/0.1.0...0.2.0 -[0.1.0]: https://github.com/10up/figma-block/tree/v0.1.0 +[Unreleased]: https://github.com/10up/embed-block-figma/compare/trunk...develop +[0.2.0]: https://github.com/10up/embed-block-figma/compare/0.1.0...0.2.0 +[0.1.0]: https://github.com/10up/embed-block-figma/tree/v0.1.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index be02ece..b92b2e7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,11 +10,11 @@ Contributing isn't just writing code - it's anything that improves the project. ### Reporting bugs -If you're running into an issue with the plugin, please take a look through [existing issues](https://github.com/10up/figma-block/issues) and [open a new one](https://github.com/10up/figma-block/issues/new) if needed. If you're able, include steps to reproduce, environment information, and screenshots/screencasts as relevant. +If you're running into an issue with the plugin, please take a look through [existing issues](https://github.com/10up/embed-block-figma/issues) and [open a new one](https://github.com/10up/embed-block-figma/issues/new) if needed. If you're able, include steps to reproduce, environment information, and screenshots/screencasts as relevant. ### Suggesting enhancements -New features and enhancements are also managed via [issues](https://github.com/10up/figma-block/issues). +New features and enhancements are also managed via [issues](https://github.com/10up/embed-block-figma/issues). ### Pull requests @@ -29,17 +29,17 @@ The `develop` branch is the development branch which means it contains the next ## Release instructions 1. Branch: Starting from `develop`, cut a release branch named `release/X.Y.Z` for your changes. -1. Version bump: Bump the version number in `figma-block.php`, `package-lock.json`, `package.json`, and `readme.txt` if it does not already reflect the version being released. In `figma-block.php` update both the plugin "Version:" property and the plugin `FIGMA_BLOCK_VERSION` constant. +1. Version bump: Bump the version number in `embed-block-figma.php`, `package-lock.json`, `package.json`, and `readme.txt` if it does not already reflect the version being released. In `embed-block-figma.php` update both the plugin "Version:" property and the plugin `FIGMA_BLOCK_VERSION` constant. 1. Changelog: Add/update the changelog in `CHANGELOG.md` and `readme.txt`. 1. Props: update `CREDITS.md` file with any new contributors, confirm maintainers are accurate. 1. New files: Check to be sure any new files/paths that are unnecessary in the production version are included in `.gitattributes`. 1. Readme updates: Make any other readme changes as necessary. `README.md` is geared toward GitHub and `readme.txt` contains WordPress.org-specific content. The two are slightly different. 1. Merge: Make a non-fast-forward merge from your release branch to `develop` (or merge the pull request), then do the same for `develop` into `trunk`, ensuring you pull the most recent changes into `develop` first (`git checkout develop && git pull origin develop && git checkout trunk && git merge --no-ff develop`). `trunk` contains the stable development version. 1. Push: Push your trunk branch to GitHub (e.g. `git push origin trunk`). -1. [Compare](https://github.com/10up/figma-block/compare/trunk...develop) `trunk` to `develop` to ensure no additional changes were missed. -1. Test the pre-release ZIP locally by [downloading](https://github.com/10up/figma-block/actions/workflows/build-release-zip.yml) it from the Build release zip action artifact and installing it locally. Ensure this zip has all the files we expect, that it installs and activates correctly and that all basic functionality is working. -1. Release: Create a [new release](https://github.com/10up/figma-block/releases/new), naming the tag and the release with the new version number, and targeting the `trunk` branch. Paste the changelog from `CHANGELOG.md` into the body of the release and include a link to the closed issues on the [milestone](https://github.com/10up/figma-block/milestone/#?closed=1). -1. SVN: Wait for the [GitHub Action](https://github.com/10up/figma-block/actions/workflows/wordpress-plugin-deploy.yml) to finish deploying to the WordPress.org repository. If all goes well, users with SVN commit access for that plugin will receive an emailed diff of changes. -1. Check WordPress.org: Ensure that the changes are live on [WordPress.org](https://wordpress.org/plugins/figma-block/). This may take a few minutes. -1. Close milestone: Edit the [milestone](https://github.com/10up/figma-block/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description field`), then close the milestone. +1. [Compare](https://github.com/10up/embed-block-figma/compare/trunk...develop) `trunk` to `develop` to ensure no additional changes were missed. +1. Test the pre-release ZIP locally by [downloading](https://github.com/10up/embed-block-figma/actions/workflows/build-release-zip.yml) it from the Build release zip action artifact and installing it locally. Ensure this zip has all the files we expect, that it installs and activates correctly and that all basic functionality is working. +1. Release: Create a [new release](https://github.com/10up/embed-block-figma/releases/new), naming the tag and the release with the new version number, and targeting the `trunk` branch. Paste the changelog from `CHANGELOG.md` into the body of the release and include a link to the closed issues on the [milestone](https://github.com/10up/embed-block-figma/milestone/#?closed=1). +1. SVN: Wait for the [GitHub Action](https://github.com/10up/embed-block-figma/actions/workflows/wordpress-plugin-deploy.yml) to finish deploying to the WordPress.org repository. If all goes well, users with SVN commit access for that plugin will receive an emailed diff of changes. +1. Check WordPress.org: Ensure that the changes are live on [WordPress.org](https://wordpress.org/plugins/embed-block-figma/). This may take a few minutes. +1. Close milestone: Edit the [milestone](https://github.com/10up/embed-block-figma/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description field`), then close the milestone. 1. Punt incomplete items: If any open issues or PRs which were milestoned for `X.Y.Z` do not make it into the release, update their milestone to `X.Y.Z+1`, `X.Y+1.0`, `X+1.0.0` or `Future Release`. diff --git a/readme.txt b/readme.txt index 0716bdd..ba6cfee 100644 --- a/readme.txt +++ b/readme.txt @@ -33,10 +33,10 @@ Assuming it's a valid URL, the block will automatically fetch the Figma file and **Initial public plugin release. ๐ŸŽ‰** -* **Changed:** Bump WordPress "tested up to" version 6.6 (props [@psorensen](https://github.com/psorensen), [@jeffpaul](https://github.com/jeffpaul) via [#21](https://github.com/10up/figma-block/pull/21)). -* **Changed:** Updated documentation (props [@jeffpaul](https://github.com/jeffpaul) via [#17](https://github.com/10up/figma-block/pull/17)). -* **Security:** Bump `braces` from 3.0.2 to 3.0.3 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/figma-block/pull/15)). -* **Security:** Bump `ws` from 7.5.9 to 7.5.10 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/figma-block/pull/15)). +* **Changed:** Bump WordPress "tested up to" version 6.6 (props [@psorensen](https://github.com/psorensen), [@jeffpaul](https://github.com/jeffpaul) via [#21](https://github.com/10up/embed-block-figma/pull/21)). +* **Changed:** Updated documentation (props [@jeffpaul](https://github.com/jeffpaul) via [#17](https://github.com/10up/embed-block-figma/pull/17)). +* **Security:** Bump `braces` from 3.0.2 to 3.0.3 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/embed-block-figma/pull/15)). +* **Security:** Bump `ws` from 7.5.9 to 7.5.10 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/embed-block-figma/pull/15)). = 0.1.0 - 2024-06-25 = From 3260f32adf5018786dc55e065d60511617fc343f Mon Sep 17 00:00:00 2001 From: Darin Kotter Date: Wed, 28 Aug 2024 11:14:34 -0600 Subject: [PATCH 17/21] Update all references to old repo. Update references to Block Catalog (copy/paste error) --- CHANGELOG.md | 14 +++++++------- CONTRIBUTING.md | 20 ++++++++++---------- README.md | 4 ++-- readme.txt | 8 ++++---- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95a3ecf..f832346 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,16 +8,16 @@ All notable changes to this project will be documented in this file, per [the Ke **Initial public plugin release. ๐ŸŽ‰** ### Changed -- Bump WordPress "tested up to" version 6.6 (props [@psorensen](https://github.com/psorensen), [@jeffpaul](https://github.com/jeffpaul) via [#21](https://github.com/10up/figma-block/pull/21)). -- Updated documentation (props [@jeffpaul](https://github.com/jeffpaul) via [#17](https://github.com/10up/figma-block/pull/17)). +- Bump WordPress "tested up to" version 6.6 (props [@psorensen](https://github.com/psorensen), [@jeffpaul](https://github.com/jeffpaul) via [#21](https://github.com/10up/embed-block-figma/pull/21)). +- Updated documentation (props [@jeffpaul](https://github.com/jeffpaul) via [#17](https://github.com/10up/embed-block-figma/pull/17)). ### Security -- Bump `braces` from 3.0.2 to 3.0.3 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/figma-block/pull/15)). -- Bump `ws` from 7.5.9 to 7.5.10 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/figma-block/pull/15)). +- Bump `braces` from 3.0.2 to 3.0.3 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/embed-block-figma/pull/15)). +- Bump `ws` from 7.5.9 to 7.5.10 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/embed-block-figma/pull/15)). ## [0.1.0] - 2024-06-25 - Initial private plugin release. -[Unreleased]: https://github.com/10up/figma-block/compare/trunk...develop -[0.2.0]: https://github.com/10up/figma-block/compare/0.1.0...0.2.0 -[0.1.0]: https://github.com/10up/figma-block/tree/v0.1.0 +[Unreleased]: https://github.com/10up/embed-block-figma/compare/trunk...develop +[0.2.0]: https://github.com/10up/embed-block-figma/compare/0.1.0...0.2.0 +[0.1.0]: https://github.com/10up/embed-block-figma/tree/v0.1.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index be02ece..14df0d8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,15 +6,15 @@ The following is a set of guidelines for contributors as well as information and ## Ways to contribute -Contributing isn't just writing code - it's anything that improves the project. All contributions for Block Catalog are managed right here on GitHub. Here are some ways you can help: +Contributing isn't just writing code - it's anything that improves the project. All contributions for Embed Block for Figma are managed right here on GitHub. Here are some ways you can help: ### Reporting bugs -If you're running into an issue with the plugin, please take a look through [existing issues](https://github.com/10up/figma-block/issues) and [open a new one](https://github.com/10up/figma-block/issues/new) if needed. If you're able, include steps to reproduce, environment information, and screenshots/screencasts as relevant. +If you're running into an issue with the plugin, please take a look through [existing issues](https://github.com/10up/embed-block-figma/issues) and [open a new one](https://github.com/10up/embed-block-figma/issues/new) if needed. If you're able, include steps to reproduce, environment information, and screenshots/screencasts as relevant. ### Suggesting enhancements -New features and enhancements are also managed via [issues](https://github.com/10up/figma-block/issues). +New features and enhancements are also managed via [issues](https://github.com/10up/embed-block-figma/issues). ### Pull requests @@ -29,17 +29,17 @@ The `develop` branch is the development branch which means it contains the next ## Release instructions 1. Branch: Starting from `develop`, cut a release branch named `release/X.Y.Z` for your changes. -1. Version bump: Bump the version number in `figma-block.php`, `package-lock.json`, `package.json`, and `readme.txt` if it does not already reflect the version being released. In `figma-block.php` update both the plugin "Version:" property and the plugin `FIGMA_BLOCK_VERSION` constant. +1. Version bump: Bump the version number in `embed-block-figma.php`, `package-lock.json`, `package.json`, and `readme.txt` if it does not already reflect the version being released. In `embed-block-figma.php` update both the plugin "Version:" property and the plugin `FIGMA_BLOCK_VERSION` constant. 1. Changelog: Add/update the changelog in `CHANGELOG.md` and `readme.txt`. 1. Props: update `CREDITS.md` file with any new contributors, confirm maintainers are accurate. 1. New files: Check to be sure any new files/paths that are unnecessary in the production version are included in `.gitattributes`. 1. Readme updates: Make any other readme changes as necessary. `README.md` is geared toward GitHub and `readme.txt` contains WordPress.org-specific content. The two are slightly different. 1. Merge: Make a non-fast-forward merge from your release branch to `develop` (or merge the pull request), then do the same for `develop` into `trunk`, ensuring you pull the most recent changes into `develop` first (`git checkout develop && git pull origin develop && git checkout trunk && git merge --no-ff develop`). `trunk` contains the stable development version. 1. Push: Push your trunk branch to GitHub (e.g. `git push origin trunk`). -1. [Compare](https://github.com/10up/figma-block/compare/trunk...develop) `trunk` to `develop` to ensure no additional changes were missed. -1. Test the pre-release ZIP locally by [downloading](https://github.com/10up/figma-block/actions/workflows/build-release-zip.yml) it from the Build release zip action artifact and installing it locally. Ensure this zip has all the files we expect, that it installs and activates correctly and that all basic functionality is working. -1. Release: Create a [new release](https://github.com/10up/figma-block/releases/new), naming the tag and the release with the new version number, and targeting the `trunk` branch. Paste the changelog from `CHANGELOG.md` into the body of the release and include a link to the closed issues on the [milestone](https://github.com/10up/figma-block/milestone/#?closed=1). -1. SVN: Wait for the [GitHub Action](https://github.com/10up/figma-block/actions/workflows/wordpress-plugin-deploy.yml) to finish deploying to the WordPress.org repository. If all goes well, users with SVN commit access for that plugin will receive an emailed diff of changes. -1. Check WordPress.org: Ensure that the changes are live on [WordPress.org](https://wordpress.org/plugins/figma-block/). This may take a few minutes. -1. Close milestone: Edit the [milestone](https://github.com/10up/figma-block/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description field`), then close the milestone. +1. [Compare](https://github.com/10up/embed-block-figma/compare/trunk...develop) `trunk` to `develop` to ensure no additional changes were missed. +1. Test the pre-release ZIP locally by [downloading](https://github.com/10up/embed-block-figma/actions/workflows/build-release-zip.yml) it from the Build release zip action artifact and installing it locally. Ensure this zip has all the files we expect, that it installs and activates correctly and that all basic functionality is working. +1. Release: Create a [new release](https://github.com/10up/embed-block-figma/releases/new), naming the tag and the release with the new version number, and targeting the `trunk` branch. Paste the changelog from `CHANGELOG.md` into the body of the release and include a link to the closed issues on the [milestone](https://github.com/10up/embed-block-figma/milestone/#?closed=1). +1. SVN: Wait for the [GitHub Action](https://github.com/10up/embed-block-figma/actions/workflows/wordpress-plugin-deploy.yml) to finish deploying to the WordPress.org repository. If all goes well, users with SVN commit access for that plugin will receive an emailed diff of changes. +1. Check WordPress.org: Ensure that the changes are live on [WordPress.org](https://wordpress.org/plugins/embed-block-figma/). This may take a few minutes. +1. Close milestone: Edit the [milestone](https://github.com/10up/embed-block-figma/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description field`), then close the milestone. 1. Punt incomplete items: If any open issues or PRs which were milestoned for `X.Y.Z` do not make it into the release, update their milestone to `X.Y.Z+1`, `X.Y+1.0`, `X+1.0.0` or `Future Release`. diff --git a/README.md b/README.md index f8f53a3..d0bb6df 100644 --- a/README.md +++ b/README.md @@ -41,11 +41,11 @@ Assuming it's a valid URL, the block will automatically fetch the Figma file and ## Changelog -A complete listing of all notable changes to Block Catalog are documented in [CHANGELOG.md](CHANGELOG.md). +A complete listing of all notable changes to Embed Block for Figma are documented in [CHANGELOG.md](CHANGELOG.md). ## Contributing -Please read [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for details on our code of conduct, [CONTRIBUTING.md](CONTRIBUTING.md) for details on the process for submitting pull requests to us, and [CREDITS.md](CREDITS.md) for a listing of maintainers, contributors, and libraries for Block Catalog. +Please read [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) for details on our code of conduct, [CONTRIBUTING.md](CONTRIBUTING.md) for details on the process for submitting pull requests to us, and [CREDITS.md](CREDITS.md) for a listing of maintainers, contributors, and libraries for Embed Block for Figma. ## Like what you see? diff --git a/readme.txt b/readme.txt index 0716bdd..ba6cfee 100644 --- a/readme.txt +++ b/readme.txt @@ -33,10 +33,10 @@ Assuming it's a valid URL, the block will automatically fetch the Figma file and **Initial public plugin release. ๐ŸŽ‰** -* **Changed:** Bump WordPress "tested up to" version 6.6 (props [@psorensen](https://github.com/psorensen), [@jeffpaul](https://github.com/jeffpaul) via [#21](https://github.com/10up/figma-block/pull/21)). -* **Changed:** Updated documentation (props [@jeffpaul](https://github.com/jeffpaul) via [#17](https://github.com/10up/figma-block/pull/17)). -* **Security:** Bump `braces` from 3.0.2 to 3.0.3 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/figma-block/pull/15)). -* **Security:** Bump `ws` from 7.5.9 to 7.5.10 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/figma-block/pull/15)). +* **Changed:** Bump WordPress "tested up to" version 6.6 (props [@psorensen](https://github.com/psorensen), [@jeffpaul](https://github.com/jeffpaul) via [#21](https://github.com/10up/embed-block-figma/pull/21)). +* **Changed:** Updated documentation (props [@jeffpaul](https://github.com/jeffpaul) via [#17](https://github.com/10up/embed-block-figma/pull/17)). +* **Security:** Bump `braces` from 3.0.2 to 3.0.3 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/embed-block-figma/pull/15)). +* **Security:** Bump `ws` from 7.5.9 to 7.5.10 (props [@dependabot](https://github.com/apps/dependabot), [@psorensen](https://github.com/psorensen) via [#15](https://github.com/10up/embed-block-figma/pull/15)). = 0.1.0 - 2024-06-25 = From 13ba8bd1174fe705078157243191f8014eeb661f Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 28 Aug 2024 12:24:54 -0500 Subject: [PATCH 18/21] version bump to 0.3.0 --- embed-block-figma.php | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- readme.txt | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/embed-block-figma.php b/embed-block-figma.php index e93fb16..b73a3bd 100644 --- a/embed-block-figma.php +++ b/embed-block-figma.php @@ -3,7 +3,7 @@ * Plugin Name: Embed Block for Figma * Plugin URI: https://github.com/10up/embed-block-figma * Description: Adds a Figma embed block to the WordPress Block Editor. - * Version: 0.2.0 + * Version: 0.3.0 * Requires at least: 6.4 * Requires PHP: 7.4 * Author: 10up @@ -21,7 +21,7 @@ use function TenUpToolkit\set_dist_url_path; // Useful global constants. -define( 'FIGMA_BLOCK_VERSION', '0.2.0' ); +define( 'FIGMA_BLOCK_VERSION', '0.3.0' ); define( 'FIGMA_BLOCK_URL', plugin_dir_url( __FILE__ ) ); define( 'FIGMA_BLOCK_PATH', plugin_dir_path( __FILE__ ) ); define( 'FIGMA_BLOCK_INC', FIGMA_BLOCK_PATH . 'includes/' ); diff --git a/package-lock.json b/package-lock.json index 54f7b57..3215789 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "embed-block-figma", - "version": "0.2.0", + "version": "0.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "embed-block-figma", - "version": "0.2.0", + "version": "0.3.0", "license": "GPL-2.0-or-later", "devDependencies": { "10up-toolkit": "6.0.0", diff --git a/package.json b/package.json index 346dde7..8422af7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "embed-block-figma", - "version": "0.2.0", + "version": "0.3.0", "description": "Adds a Figma embed block to the WordPress Block Editor.", "homepage": "https://github.com/10up/embed-block-figma", "license": "GPL-2.0-or-later", diff --git a/readme.txt b/readme.txt index ba6cfee..353fc55 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: 10up, dkotter, jeffpaul Tags: gutenberg, figma, embed, blocks, custom blocks Tested up to: 6.6 -Stable tag: 0.2.0 +Stable tag: 0.3.0 License: GPL-2.0-or-later License URI: https://spdx.org/licenses/GPL-2.0-or-later.html From d8d544246ad944806b16f7c3864e6b8c2c16e9a3 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 28 Aug 2024 12:35:57 -0500 Subject: [PATCH 19/21] add 0.3.0 items to changelogs --- CHANGELOG.md | 11 +++++++++++ readme.txt | 6 ++++++ 2 files changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f832346..353d74f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD +## [0.3.0] - 2024-08-29 +### Added +- WordPress.org Playground preview (props [@thrijith](https://github.com/thrijith), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#29](https://github.com/10up/embed-block-figma/pull/29)). + +### Changed +- Updated plugin name from "Figma Block" to "Embed Block for Figma" (props [@thrijith](https://github.com/thrijith), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#28](https://github.com/10up/embed-block-figma/pull/28), [#31](https://github.com/10up/embed-block-figma/pull/31)). + +### Security +- Bump `webpack` from 5.90.3 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter) via [#30](https://github.com/10up/embed-block-figma/pull/30)). + ## [0.2.0] - 2024-07-11 **Initial public plugin release. ๐ŸŽ‰** @@ -19,5 +29,6 @@ All notable changes to this project will be documented in this file, per [the Ke - Initial private plugin release. [Unreleased]: https://github.com/10up/embed-block-figma/compare/trunk...develop +[0.3.0]: https://github.com/10up/embed-block-figma/compare/0.2.0...0.3.0 [0.2.0]: https://github.com/10up/embed-block-figma/compare/0.1.0...0.2.0 [0.1.0]: https://github.com/10up/embed-block-figma/tree/v0.1.0 diff --git a/readme.txt b/readme.txt index 353fc55..464427b 100644 --- a/readme.txt +++ b/readme.txt @@ -29,6 +29,12 @@ Assuming it's a valid URL, the block will automatically fetch the Figma file and == Changelog == += 0.3.0 - 2024-08-29 = + +* **Added:** WordPress.org Playground preview (props [@thrijith](https://github.com/thrijith), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#29](https://github.com/10up/embed-block-figma/pull/29)). +* **Changed:** Updated plugin name from "Figma Block" to "Embed Block for Figma" (props [@thrijith](https://github.com/thrijith), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#28](https://github.com/10up/embed-block-figma/pull/28), [#31](https://github.com/10up/embed-block-figma/pull/31)). +* **Security:** Bump `webpack` from 5.90.3 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter) via [#30](https://github.com/10up/embed-block-figma/pull/30)). + = 0.2.0 - 2024-07-11 = **Initial public plugin release. ๐ŸŽ‰** From cd62ccea6c5bd54ef2ba420f17afd77978490e0a Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 28 Aug 2024 12:36:36 -0500 Subject: [PATCH 20/21] Update CREDITS.md --- CREDITS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CREDITS.md b/CREDITS.md index d774470..d1e38e1 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -10,7 +10,7 @@ The following individuals are responsible for curating the list of issues, respo Thank you to all the people who have already contributed to this repository via bug reports, code, design, ideas, project management, translation, testing, etc. -[Darin Kotter (@dkotter)](https://github.com/dkotter), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [Faisal Alvi (@faisal-alvi)](https://github.com/faisal-alvi), [Konstantinos Galanakis (@kmgalanakis)](https://github.com/kmgalanakis), [Ankit Gupta (@ankitguptaindia)](https://github.com/ankitguptaindia), [Fabian Kรคgy (@fabiankaegy)](https://github.com/fabiankaegy), [Zubair Bhatti](https://www.linkedin.com/in/zbhatti89/), [Peter Sorensen (@psorensen)](https://github.com/psorensen). +[Darin Kotter (@dkotter)](https://github.com/dkotter), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [Faisal Alvi (@faisal-alvi)](https://github.com/faisal-alvi), [Konstantinos Galanakis (@kmgalanakis)](https://github.com/kmgalanakis), [Ankit Gupta (@ankitguptaindia)](https://github.com/ankitguptaindia), [Fabian Kรคgy (@fabiankaegy)](https://github.com/fabiankaegy), [Zubair Bhatti](https://www.linkedin.com/in/zbhatti89/), [Peter Sorensen (@psorensen)](https://github.com/psorensen), [Thrijith Thankachan (@thrijith)](https://github.com/thrijith). ## Libraries From 35f54a9a16d7e72d8cbf5808b3ea444a04766604 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 28 Aug 2024 12:39:10 -0500 Subject: [PATCH 21/21] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d0bb6df..ff45f2a 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ > A Figma Block for the WordPress block editor (Gutenberg). -[![Support Level](https://img.shields.io/badge/support-beta-blueviolet.svg)](#support-level) ![WordPress tested up to version](https://img.shields.io/badge/WordPress-v6.5%20tested-success.svg) [![GPLv2 License](https://img.shields.io/github/license/10up/embed-block-figma.svg)](https://github.com/10up/embed-block-figma/blob/develop/LICENSE.md) -[![Dependency Review](https://github.com/10up/embed-block-figma/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/embed-block-figma/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/embed-block-figma/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/embed-block-figma/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/eslint.yml) [![WordPress Playground Demo](https://img.shields.io/github/v/release/10up/embed-block-figma?logo=wordpress&logoColor=FFFFFF&label=Playground%20Demo&labelColor=3858E9&color=3858E9)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/10up/embed-block-figma/trunk/.wordpress-org/blueprints/blueprint.json) +[![Support Level](https://img.shields.io/badge/support-beta-blueviolet.svg)](#support-level) ![WordPress tested up to version](https://img.shields.io/badge/WordPress-v6.5%20tested-success.svg) [![GPLv2 License](https://img.shields.io/github/license/10up/embed-block-figma.svg)](https://github.com/10up/embed-block-figma/blob/develop/LICENSE.md) [![WordPress Playground Demo](https://img.shields.io/github/v/release/10up/embed-block-figma?logo=wordpress&logoColor=FFFFFF&label=Playground%20Demo&labelColor=3858E9&color=3858E9)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/10up/embed-block-figma/trunk/.wordpress-org/blueprints/blueprint.json) +[![Dependency Review](https://github.com/10up/embed-block-figma/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/dependency-review.yml) [![PHP Compatibility](https://github.com/10up/embed-block-figma/actions/workflows/php-compat.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/php-compat.yml) [![PHP Linting](https://github.com/10up/embed-block-figma/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/phpcs.yml) [![JS Linting](https://github.com/10up/embed-block-figma/actions/workflows/eslint.yml/badge.svg)](https://github.com/10up/embed-block-figma/actions/workflows/eslint.yml) ![Screenshot of the rendered Figma Embed block in the editor / admin](.wordpress-org/screenshot-2.png)