From f06f64f8ab2785f587dda1875d5b2b194ed7e7f3 Mon Sep 17 00:00:00 2001 From: laurensvalk Date: Mon, 11 Sep 2023 20:54:53 +0200 Subject: [PATCH 1/6] feat: make playground open state persistent (#1921) (#1921) When working on code generation, it's nice to have it open all the time. This is the current behavior. But when designing blocks, it's nice if it doesn't re-open on every save/relaunch. --- plugins/dev-tools/src/playground/index.js | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/plugins/dev-tools/src/playground/index.js b/plugins/dev-tools/src/playground/index.js index 3731a7bfb8..eee0ca8a5e 100644 --- a/plugins/dev-tools/src/playground/index.js +++ b/plugins/dev-tools/src/playground/index.js @@ -123,6 +123,7 @@ export function createPlayground( // Load / Save playground state. const playgroundState = new LocalStorageState(`playgroundState_${id}`, { activeTab: 'XML', + playgroundOpen: true, autoGenerate: config && config.auto != undefined ? config.auto : true, workspaceXml: '', }); @@ -377,18 +378,26 @@ export function createPlayground( guiElement.style.minWidth = '100%'; guiContainer.appendChild(guiElement); - // Create minimize button - minimizeButton.addEventListener('click', (e) => { - if (playgroundDiv.style.display === 'none') { + // Click handler to toggle the playground. + const togglePlayground = (e) => { + const shouldOpen = playgroundDiv.style.display === 'none'; + if (shouldOpen) { playgroundDiv.style.display = 'flex'; minimizeButton.textContent = 'Collapse'; } else { playgroundDiv.style.display = 'none'; minimizeButton.textContent = 'Expand'; } - + playgroundState.set('playgroundOpen', shouldOpen); + playgroundState.save(); Blockly.svgResize(workspace); - }); + }; + minimizeButton.addEventListener('click', togglePlayground); + + // Start minimized if the playground was previously closed. + if (playgroundState.get('playgroundOpen') === false) { + togglePlayground(); + } // Playground API. From e45ad05b9f5f6cb717b8337c60df09fa0128e06b Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Mon, 11 Sep 2023 15:49:06 -0700 Subject: [PATCH 2/6] chore: update issue templates (#1884) * chore: update issue templates * chore: address PR comments --- .github/ISSUE_TEMPLATE/bug_report.md | 53 --------------------- .github/ISSUE_TEMPLATE/bug_report.yaml | 52 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++ .github/ISSUE_TEMPLATE/feature_request.md | 35 -------------- .github/ISSUE_TEMPLATE/feature_request.yaml | 45 +++++++++++++++++ 5 files changed, 102 insertions(+), 88 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 6b53c18cf8..0000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -name: Bug Report -about: Create a report to help us improve -labels: 'type: bug, triage' -assignees: '' - ---- - - - -**Category** - - - -**Component** - - - -**Describe the bug** - - - -**To Reproduce** - - -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** - - - -**Screenshots** - - - -**Additional context** - - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000000..44bce28abf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,52 @@ +name: Report a bug 🐛 +description: Create a report to help us improve +labels: 'type: bug, triage' +body: + - type: markdown + attributes: + value: > + Thank you for taking the time to fill out a bug report! + If you have a question about how to use Blockly in your application, + please ask on the [forum](https://groups.google.com/forum/#!forum/blockly) instead of filing an issue. + - type: checkboxes + id: duplicates + attributes: + label: Check for duplicates + options: + - label: I have searched for similar issues before opening a new one. + - type: textarea + id: component + attributes: + label: Component + description: Which component has a bug? + placeholder: e.g. workspace search plugin, custom generator codelab, RTL demo + - type: textarea + id: description + attributes: + label: Description + description: Please provide a clear and concise description of the bug. + placeholder: What happened? What did you expect to happen? + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction steps + description: What steps should we take to reproduce the issue? + value: | + 1. + 2. + 3. + - type: textarea + id: stack-trace + attributes: + label: Stack trace + description: If you saw an error message or stack trace, please include it here. + placeholder: The text in this section will be formatted automatically; no need to include backticks. + render: shell + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: Screenshots can help us see the behavior you're describing. Please add a screenshot or gif, especially if you are describing a rendering or visual bug. + placeholder: Paste or drag-and-drop an image to upload it. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..76b00cec9e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Ask a question ❓ + url: https://groups.google.com/forum/#!forum/blockly + about: Go to the Blockly developer forum, where you can ask and answer questions. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index e9cab62222..0000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -labels: 'type: feature request, triage' -assignees: '' - ---- - -**Category** - - - -**Component** - - - -**Is your feature request related to a problem? Please describe.** - - - -**Describe the solution you'd like** - - - -**Describe alternatives you've considered** - - - -**Additional context** - - diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000000..6432e13d2a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,45 @@ +name: Make a feature request ✨ +description: Suggest an idea for this project +labels: 'type: feature request, triage' +body: + - type: markdown + attributes: + value: > + Thank you for taking the time to fill out a feature request! + If you have a question about how to use Blockly in your application, + please ask on the [forum](https://groups.google.com/forum/#!forum/blockly) instead of filing an issue. + - type: checkboxes + id: duplicates + attributes: + label: Check for duplicates + options: + - label: I have searched for similar issues before opening a new one. + - type: textarea + id: component + attributes: + label: Component + description: Which component does this request apply to? + placeholder: e.g. workspace search plugin, custom generator codelab, RTL demo + - type: textarea + id: problem + attributes: + label: Problem + description: Is your feature request related to a problem? Please describe. + placeholder: I'm always frustrated when... + - type: textarea + id: request + attributes: + label: Request + description: Describe your feature request and how it solves your problem. + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Alternatives considered + description: Describe any alternative solutions or features you've considered. + - type: textarea + id: context + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. From 3d268418f6e4be8d8f739fa21d582a9dc48342d7 Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Tue, 12 Sep 2023 09:52:16 -0700 Subject: [PATCH 3/6] fix: deleting procedures with callers not being undoable (#1917) --- plugins/block-shareable-procedures/src/events_procedure_base.ts | 1 - .../src/events_procedure_parameter_base.ts | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/block-shareable-procedures/src/events_procedure_base.ts b/plugins/block-shareable-procedures/src/events_procedure_base.ts index aec4b6437a..0f5445a122 100644 --- a/plugins/block-shareable-procedures/src/events_procedure_base.ts +++ b/plugins/block-shareable-procedures/src/events_procedure_base.ts @@ -27,7 +27,6 @@ export abstract class ProcedureBase extends Blockly.Events.Abstract { readonly procedure: Blockly.procedures.IProcedureModel) { super(); this.workspaceId = workspace.id; - this.recordUndo = false; } /** diff --git a/plugins/block-shareable-procedures/src/events_procedure_parameter_base.ts b/plugins/block-shareable-procedures/src/events_procedure_parameter_base.ts index 0a382083f8..5406aba0f3 100644 --- a/plugins/block-shareable-procedures/src/events_procedure_parameter_base.ts +++ b/plugins/block-shareable-procedures/src/events_procedure_parameter_base.ts @@ -29,6 +29,7 @@ export abstract class ProcedureParameterBase extends ProcedureBase { procedure: Blockly.procedures.IProcedureModel, readonly parameter: Blockly.procedures.IParameterModel) { super(workspace, procedure); + this.recordUndo = false; } /** From ef1c1739d4b8b5e42ea7633a317522c6f73c84ea Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Tue, 12 Sep 2023 15:19:21 -0700 Subject: [PATCH 4/6] chore: mark serialize-disabled-interactions as private (#1927) --- plugins/serialize-disabled-interactions/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/serialize-disabled-interactions/package.json b/plugins/serialize-disabled-interactions/package.json index 7b0a247d76..c60f8e2c79 100644 --- a/plugins/serialize-disabled-interactions/package.json +++ b/plugins/serialize-disabled-interactions/package.json @@ -11,6 +11,7 @@ "start": "blockly-scripts start", "test": "blockly-scripts test" }, + "private": true, "main": "./dist/index.js", "module": "./src/index.js", "unpkg": "./dist/index.js", From f5598a65a26761c3854af06ee7a5a13b46d5ffdb Mon Sep 17 00:00:00 2001 From: laurensvalk Date: Wed, 13 Sep 2023 22:33:12 +0200 Subject: [PATCH 5/6] fix: args and types for PlaygroundAPI.addGenerator (#1889) (#1889) --- plugins/dev-tools/src/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/dev-tools/src/index.d.ts b/plugins/dev-tools/src/index.d.ts index cd2611d0b1..6f0a0af564 100644 --- a/plugins/dev-tools/src/index.d.ts +++ b/plugins/dev-tools/src/index.d.ts @@ -20,7 +20,8 @@ interface PlaygroundAPI { addCheckboxAction: (name: string, callback: (workspace: Blockly.Workspace, value: boolean) => void, folder?: string, defaultValue?: boolean) => dat.GUIController; - addGenerator: () => void; + addGenerator: (label: string, generator: Blockly.Generator, + language?: string) => void; getCurrentTab: () => PlaygroundTab; getGUI: () => DevTools.GUI; getWorkspace: () => Blockly.WorkspaceSvg; From eed62d8b5ecd40d26b122b2fe2224dfc26025a3a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:15:58 +0000 Subject: [PATCH 6/6] Publish - @blockly/block-dynamic-connection@0.4.2 - @blockly/block-plus-minus@6.0.4 - @blockly/block-shareable-procedures@3.0.6 - @blockly/workspace-content-highlight@4.0.4 - @blockly/continuous-toolbox@5.0.4 - @blockly/plugin-cross-tab-copy-paste@4.0.4 - @blockly/dev-tools@7.1.0 - @blockly/disable-top-blocks@0.4.4 - @blockly/field-angle@3.0.5 - @blockly/field-bitmap@4.0.5 - @blockly/field-colour-hsv-sliders@4.1.3 - @blockly/field-colour@3.0.5 - @blockly/field-date@8.0.4 - @blockly/field-dependent-dropdown@3.0.4 - @blockly/field-grid-dropdown@4.0.4 - @blockly/field-multilineinput@3.0.5 - @blockly/field-slider@6.0.4 - @blockly/fixed-edges@4.0.5 - @blockly/keyboard-navigation@0.4.6 - @blockly/plugin-modal@6.0.4 - @blockly/renderer-inline-row-separators@0.4.4 - @blockly/plugin-scroll-options@5.0.4 - @blockly/shadow-block-converter@4.0.4 - @blockly/plugin-strict-connection-checker@4.0.5 - @blockly/suggested-blocks@4.0.4 - @blockly/toolbox-search@1.1.5 - @blockly/plugin-typed-variable-modal@7.0.4 - @blockly/workspace-backpack@5.2.1 - @blockly/workspace-minimap@0.1.1 - @blockly/plugin-workspace-search@8.0.5 - @blockly/zoom-to-fit@5.0.5 --- plugins/block-dynamic-connection/CHANGELOG.md | 8 ++++++++ plugins/block-dynamic-connection/package-lock.json | 4 ++-- plugins/block-dynamic-connection/package.json | 4 ++-- plugins/block-plus-minus/CHANGELOG.md | 8 ++++++++ plugins/block-plus-minus/package-lock.json | 4 ++-- plugins/block-plus-minus/package.json | 4 ++-- plugins/block-shareable-procedures/CHANGELOG.md | 10 ++++++++++ .../block-shareable-procedures/package-lock.json | 4 ++-- plugins/block-shareable-procedures/package.json | 4 ++-- plugins/content-highlight/CHANGELOG.md | 8 ++++++++ plugins/content-highlight/package-lock.json | 4 ++-- plugins/content-highlight/package.json | 4 ++-- plugins/continuous-toolbox/CHANGELOG.md | 8 ++++++++ plugins/continuous-toolbox/package-lock.json | 4 ++-- plugins/continuous-toolbox/package.json | 4 ++-- plugins/cross-tab-copy-paste/CHANGELOG.md | 8 ++++++++ plugins/cross-tab-copy-paste/package-lock.json | 4 ++-- plugins/cross-tab-copy-paste/package.json | 4 ++-- plugins/dev-tools/CHANGELOG.md | 14 ++++++++++++++ plugins/dev-tools/package-lock.json | 4 ++-- plugins/dev-tools/package.json | 2 +- plugins/disable-top-blocks/CHANGELOG.md | 8 ++++++++ plugins/disable-top-blocks/package-lock.json | 4 ++-- plugins/disable-top-blocks/package.json | 4 ++-- plugins/field-angle/CHANGELOG.md | 8 ++++++++ plugins/field-angle/package-lock.json | 4 ++-- plugins/field-angle/package.json | 4 ++-- plugins/field-bitmap/CHANGELOG.md | 8 ++++++++ plugins/field-bitmap/package-lock.json | 4 ++-- plugins/field-bitmap/package.json | 4 ++-- plugins/field-colour-hsv-sliders/CHANGELOG.md | 8 ++++++++ plugins/field-colour-hsv-sliders/package-lock.json | 8 ++++---- plugins/field-colour-hsv-sliders/package.json | 6 +++--- plugins/field-colour/CHANGELOG.md | 8 ++++++++ plugins/field-colour/package-lock.json | 4 ++-- plugins/field-colour/package.json | 4 ++-- plugins/field-date/CHANGELOG.md | 8 ++++++++ plugins/field-date/package-lock.json | 4 ++-- plugins/field-date/package.json | 4 ++-- plugins/field-dependent-dropdown/CHANGELOG.md | 8 ++++++++ plugins/field-dependent-dropdown/package-lock.json | 4 ++-- plugins/field-dependent-dropdown/package.json | 4 ++-- plugins/field-grid-dropdown/CHANGELOG.md | 8 ++++++++ plugins/field-grid-dropdown/package-lock.json | 4 ++-- plugins/field-grid-dropdown/package.json | 4 ++-- plugins/field-multilineinput/CHANGELOG.md | 8 ++++++++ plugins/field-multilineinput/package-lock.json | 4 ++-- plugins/field-multilineinput/package.json | 4 ++-- plugins/field-slider/CHANGELOG.md | 8 ++++++++ plugins/field-slider/package-lock.json | 4 ++-- plugins/field-slider/package.json | 4 ++-- plugins/fixed-edges/CHANGELOG.md | 8 ++++++++ plugins/fixed-edges/package-lock.json | 4 ++-- plugins/fixed-edges/package.json | 4 ++-- plugins/keyboard-navigation/CHANGELOG.md | 8 ++++++++ plugins/keyboard-navigation/package-lock.json | 4 ++-- plugins/keyboard-navigation/package.json | 4 ++-- plugins/modal/CHANGELOG.md | 8 ++++++++ plugins/modal/package-lock.json | 4 ++-- plugins/modal/package.json | 4 ++-- .../renderer-inline-row-separators/CHANGELOG.md | 8 ++++++++ .../package-lock.json | 4 ++-- .../renderer-inline-row-separators/package.json | 4 ++-- plugins/scroll-options/CHANGELOG.md | 8 ++++++++ plugins/scroll-options/package-lock.json | 4 ++-- plugins/scroll-options/package.json | 4 ++-- plugins/shadow-block-converter/CHANGELOG.md | 8 ++++++++ plugins/shadow-block-converter/package-lock.json | 4 ++-- plugins/shadow-block-converter/package.json | 4 ++-- plugins/strict-connection-checker/CHANGELOG.md | 8 ++++++++ .../strict-connection-checker/package-lock.json | 4 ++-- plugins/strict-connection-checker/package.json | 4 ++-- plugins/suggested-blocks/CHANGELOG.md | 8 ++++++++ plugins/suggested-blocks/package-lock.json | 4 ++-- plugins/suggested-blocks/package.json | 4 ++-- plugins/toolbox-search/CHANGELOG.md | 8 ++++++++ plugins/toolbox-search/package-lock.json | 4 ++-- plugins/toolbox-search/package.json | 4 ++-- plugins/typed-variable-modal/CHANGELOG.md | 8 ++++++++ plugins/typed-variable-modal/package-lock.json | 4 ++-- plugins/typed-variable-modal/package.json | 6 +++--- plugins/workspace-backpack/CHANGELOG.md | 8 ++++++++ plugins/workspace-backpack/package-lock.json | 4 ++-- plugins/workspace-backpack/package.json | 4 ++-- plugins/workspace-minimap/CHANGELOG.md | 8 ++++++++ plugins/workspace-minimap/package-lock.json | 4 ++-- plugins/workspace-minimap/package.json | 4 ++-- plugins/workspace-search/CHANGELOG.md | 8 ++++++++ plugins/workspace-search/package-lock.json | 4 ++-- plugins/workspace-search/package.json | 4 ++-- plugins/zoom-to-fit/CHANGELOG.md | 8 ++++++++ plugins/zoom-to-fit/package-lock.json | 4 ++-- plugins/zoom-to-fit/package.json | 4 ++-- 93 files changed, 383 insertions(+), 127 deletions(-) diff --git a/plugins/block-dynamic-connection/CHANGELOG.md b/plugins/block-dynamic-connection/CHANGELOG.md index f92991e114..c6f9bf3744 100644 --- a/plugins/block-dynamic-connection/CHANGELOG.md +++ b/plugins/block-dynamic-connection/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.2](https://github.com/google/blockly-samples/compare/@blockly/block-dynamic-connection@0.4.1...@blockly/block-dynamic-connection@0.4.2) (2023-09-14) + +**Note:** Version bump only for package @blockly/block-dynamic-connection + + + + + ## [0.4.1](https://github.com/google/blockly-samples/compare/@blockly/block-dynamic-connection@0.4.0...@blockly/block-dynamic-connection@0.4.1) (2023-08-17) **Note:** Version bump only for package @blockly/block-dynamic-connection diff --git a/plugins/block-dynamic-connection/package-lock.json b/plugins/block-dynamic-connection/package-lock.json index efeea93385..b48f6db2cc 100644 --- a/plugins/block-dynamic-connection/package-lock.json +++ b/plugins/block-dynamic-connection/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/block-dynamic-connection", - "version": "0.4.1", + "version": "0.4.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/block-dynamic-connection", - "version": "0.4.1", + "version": "0.4.2", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/block-dynamic-connection/package.json b/plugins/block-dynamic-connection/package.json index 74dec5e24f..19b7de5773 100644 --- a/plugins/block-dynamic-connection/package.json +++ b/plugins/block-dynamic-connection/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/block-dynamic-connection", - "version": "0.4.1", + "version": "0.4.2", "description": "A group of blocks that add connections dynamically.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "mocha": "^10.2.0" diff --git a/plugins/block-plus-minus/CHANGELOG.md b/plugins/block-plus-minus/CHANGELOG.md index b1fc54ea19..9932e159ea 100644 --- a/plugins/block-plus-minus/CHANGELOG.md +++ b/plugins/block-plus-minus/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.4](https://github.com/google/blockly-samples/compare/@blockly/block-plus-minus@6.0.3...@blockly/block-plus-minus@6.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/block-plus-minus + + + + + ## [6.0.3](https://github.com/google/blockly-samples/compare/@blockly/block-plus-minus@6.0.2...@blockly/block-plus-minus@6.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/block-plus-minus diff --git a/plugins/block-plus-minus/package-lock.json b/plugins/block-plus-minus/package-lock.json index f7074dfd47..2cf3fbdf8b 100644 --- a/plugins/block-plus-minus/package-lock.json +++ b/plugins/block-plus-minus/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/block-plus-minus", - "version": "6.0.3", + "version": "6.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/block-plus-minus", - "version": "6.0.3", + "version": "6.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/block-plus-minus/package.json b/plugins/block-plus-minus/package.json index 6d74dd98e2..55e4761104 100644 --- a/plugins/block-plus-minus/package.json +++ b/plugins/block-plus-minus/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/block-plus-minus", - "version": "6.0.3", + "version": "6.0.4", "description": "A group of blocks that replace the built-in mutator UI with a +/- based UI.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "mocha": "^10.2.0", diff --git a/plugins/block-shareable-procedures/CHANGELOG.md b/plugins/block-shareable-procedures/CHANGELOG.md index 897f9a4f78..c8b2d2b7a1 100644 --- a/plugins/block-shareable-procedures/CHANGELOG.md +++ b/plugins/block-shareable-procedures/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.6](https://github.com/google/blockly-samples/compare/@blockly/block-shareable-procedures@3.0.5...@blockly/block-shareable-procedures@3.0.6) (2023-09-14) + + +### Bug Fixes + +* caller args disconnecting shareable procedures ([#1918](https://github.com/google/blockly-samples/issues/1918)) ([b11bf6a](https://github.com/google/blockly-samples/commit/b11bf6a4a863dd513c3d6f6686236916b8c5a0a7)) +* deleting procedures with callers not being undoable ([#1917](https://github.com/google/blockly-samples/issues/1917)) ([3d26841](https://github.com/google/blockly-samples/commit/3d268418f6e4be8d8f739fa21d582a9dc48342d7)) + + + ## [3.0.5](https://github.com/google/blockly-samples/compare/@blockly/block-shareable-procedures@3.0.4...@blockly/block-shareable-procedures@3.0.5) (2023-08-31) diff --git a/plugins/block-shareable-procedures/package-lock.json b/plugins/block-shareable-procedures/package-lock.json index 41f38e721f..a50915a508 100644 --- a/plugins/block-shareable-procedures/package-lock.json +++ b/plugins/block-shareable-procedures/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/block-shareable-procedures", - "version": "3.0.5", + "version": "3.0.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@blockly/block-shareable-procedures", - "version": "3.0.5", + "version": "3.0.6", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/block-shareable-procedures/package.json b/plugins/block-shareable-procedures/package.json index 036cfaee35..d069f97a28 100644 --- a/plugins/block-shareable-procedures/package.json +++ b/plugins/block-shareable-procedures/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/block-shareable-procedures", - "version": "3.0.5", + "version": "3.0.6", "description": "A plugin that adds procedure blocks which are backed by explicit data models.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -42,7 +42,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "@blockly/eslint-config": "^3.0.0", "blockly": "^10.0.0", "chai": "^4.3.7", diff --git a/plugins/content-highlight/CHANGELOG.md b/plugins/content-highlight/CHANGELOG.md index 8bef2cb300..0a8b76cc2c 100644 --- a/plugins/content-highlight/CHANGELOG.md +++ b/plugins/content-highlight/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/google/blockly-samples/compare/@blockly/workspace-content-highlight@4.0.3...@blockly/workspace-content-highlight@4.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/workspace-content-highlight + + + + + ## [4.0.3](https://github.com/google/blockly-samples/compare/@blockly/workspace-content-highlight@4.0.2...@blockly/workspace-content-highlight@4.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/workspace-content-highlight diff --git a/plugins/content-highlight/package-lock.json b/plugins/content-highlight/package-lock.json index 5f81e1e5f4..631c3c0b25 100644 --- a/plugins/content-highlight/package-lock.json +++ b/plugins/content-highlight/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/workspace-content-highlight", - "version": "4.0.3", + "version": "4.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/workspace-content-highlight", - "version": "4.0.3", + "version": "4.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0" diff --git a/plugins/content-highlight/package.json b/plugins/content-highlight/package.json index d912b1d06f..caaebef259 100644 --- a/plugins/content-highlight/package.json +++ b/plugins/content-highlight/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/workspace-content-highlight", - "version": "4.0.3", + "version": "4.0.4", "description": "A Blockly workspace plugin that adds a highlight around the content area.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -44,7 +44,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "peerDependencies": { diff --git a/plugins/continuous-toolbox/CHANGELOG.md b/plugins/continuous-toolbox/CHANGELOG.md index 33aca5d2d0..a8d3f7ed86 100644 --- a/plugins/continuous-toolbox/CHANGELOG.md +++ b/plugins/continuous-toolbox/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.4](https://github.com/google/blockly-samples/compare/@blockly/continuous-toolbox@5.0.3...@blockly/continuous-toolbox@5.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/continuous-toolbox + + + + + ## [5.0.3](https://github.com/google/blockly-samples/compare/@blockly/continuous-toolbox@5.0.2...@blockly/continuous-toolbox@5.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/continuous-toolbox diff --git a/plugins/continuous-toolbox/package-lock.json b/plugins/continuous-toolbox/package-lock.json index d15535fda0..4bd06b34ee 100644 --- a/plugins/continuous-toolbox/package-lock.json +++ b/plugins/continuous-toolbox/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/continuous-toolbox", - "version": "5.0.3", + "version": "5.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/continuous-toolbox", - "version": "5.0.3", + "version": "5.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0" diff --git a/plugins/continuous-toolbox/package.json b/plugins/continuous-toolbox/package.json index 16de842795..705478ee78 100644 --- a/plugins/continuous-toolbox/package.json +++ b/plugins/continuous-toolbox/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/continuous-toolbox", - "version": "5.0.3", + "version": "5.0.4", "description": "A Blockly plugin that adds a continous-scrolling style toolbox and flyout", "scripts": { "build": "blockly-scripts build", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "peerDependencies": { diff --git a/plugins/cross-tab-copy-paste/CHANGELOG.md b/plugins/cross-tab-copy-paste/CHANGELOG.md index ed5473cc0a..34f9870a21 100644 --- a/plugins/cross-tab-copy-paste/CHANGELOG.md +++ b/plugins/cross-tab-copy-paste/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/google/blockly-samples/compare/@blockly/plugin-cross-tab-copy-paste@4.0.3...@blockly/plugin-cross-tab-copy-paste@4.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/plugin-cross-tab-copy-paste + + + + + ## [4.0.3](https://github.com/google/blockly-samples/compare/@blockly/plugin-cross-tab-copy-paste@4.0.2...@blockly/plugin-cross-tab-copy-paste@4.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/plugin-cross-tab-copy-paste diff --git a/plugins/cross-tab-copy-paste/package-lock.json b/plugins/cross-tab-copy-paste/package-lock.json index 777debea13..f4b2d52e81 100644 --- a/plugins/cross-tab-copy-paste/package-lock.json +++ b/plugins/cross-tab-copy-paste/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/plugin-cross-tab-copy-paste", - "version": "4.0.3", + "version": "4.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/plugin-cross-tab-copy-paste", - "version": "4.0.3", + "version": "4.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0" diff --git a/plugins/cross-tab-copy-paste/package.json b/plugins/cross-tab-copy-paste/package.json index 164fb2cc61..8fe84e0561 100644 --- a/plugins/cross-tab-copy-paste/package.json +++ b/plugins/cross-tab-copy-paste/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/plugin-cross-tab-copy-paste", - "version": "4.0.3", + "version": "4.0.4", "description": "Allows you to copy blocks with cross-tab.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "peerDependencies": { diff --git a/plugins/dev-tools/CHANGELOG.md b/plugins/dev-tools/CHANGELOG.md index ac81f5cb5c..496941e463 100644 --- a/plugins/dev-tools/CHANGELOG.md +++ b/plugins/dev-tools/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.1.0](https://github.com/google/blockly-samples/compare/@blockly/dev-tools@7.0.3...@blockly/dev-tools@7.1.0) (2023-09-14) + + +### Features + +* make playground open state persistent ([#1921](https://github.com/google/blockly-samples/issues/1921)) ([#1921](https://github.com/google/blockly-samples/issues/1921)) ([f06f64f](https://github.com/google/blockly-samples/commit/f06f64f8ab2785f587dda1875d5b2b194ed7e7f3)) + + +### Bug Fixes + +* args and types for PlaygroundAPI.addGenerator ([#1889](https://github.com/google/blockly-samples/issues/1889)) ([#1889](https://github.com/google/blockly-samples/issues/1889)) ([f5598a6](https://github.com/google/blockly-samples/commit/f5598a65a26761c3854af06ee7a5a13b46d5ffdb)) + + + ## [7.0.3](https://github.com/google/blockly-samples/compare/@blockly/dev-tools@7.0.2...@blockly/dev-tools@7.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/dev-tools diff --git a/plugins/dev-tools/package-lock.json b/plugins/dev-tools/package-lock.json index bf7b90ea0e..b8491ef77c 100644 --- a/plugins/dev-tools/package-lock.json +++ b/plugins/dev-tools/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/dev-tools", - "version": "7.0.3", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/dev-tools", - "version": "7.0.3", + "version": "7.1.0", "license": "Apache-2.0", "dependencies": { "chai": "^4.2.0", diff --git a/plugins/dev-tools/package.json b/plugins/dev-tools/package.json index de94dfcfd3..5c77220188 100644 --- a/plugins/dev-tools/package.json +++ b/plugins/dev-tools/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/dev-tools", - "version": "7.0.3", + "version": "7.1.0", "description": "A library of common utilities for Blockly extension development.", "scripts": { "audit:fix": "blockly-scripts auditFix", diff --git a/plugins/disable-top-blocks/CHANGELOG.md b/plugins/disable-top-blocks/CHANGELOG.md index c453a2c00a..b0056ffb77 100644 --- a/plugins/disable-top-blocks/CHANGELOG.md +++ b/plugins/disable-top-blocks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.4](https://github.com/google/blockly-samples/compare/@blockly/disable-top-blocks@0.4.3...@blockly/disable-top-blocks@0.4.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/disable-top-blocks + + + + + ## [0.4.3](https://github.com/google/blockly-samples/compare/@blockly/disable-top-blocks@0.4.2...@blockly/disable-top-blocks@0.4.3) (2023-08-17) **Note:** Version bump only for package @blockly/disable-top-blocks diff --git a/plugins/disable-top-blocks/package-lock.json b/plugins/disable-top-blocks/package-lock.json index c11cfb487c..c2d2ff841e 100644 --- a/plugins/disable-top-blocks/package-lock.json +++ b/plugins/disable-top-blocks/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/disable-top-blocks", - "version": "0.4.3", + "version": "0.4.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/disable-top-blocks", - "version": "0.4.3", + "version": "0.4.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0" diff --git a/plugins/disable-top-blocks/package.json b/plugins/disable-top-blocks/package.json index 6fad6b9d4e..d0036bf3d0 100644 --- a/plugins/disable-top-blocks/package.json +++ b/plugins/disable-top-blocks/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/disable-top-blocks", - "version": "0.4.3", + "version": "0.4.4", "description": "A Blockly plugin that shows the 'disable' context menu option only on non-orphan blocks.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -39,7 +39,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "peerDependencies": { diff --git a/plugins/field-angle/CHANGELOG.md b/plugins/field-angle/CHANGELOG.md index e5405b7d52..44c197f206 100644 --- a/plugins/field-angle/CHANGELOG.md +++ b/plugins/field-angle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.5](https://github.com/google/blockly-samples/compare/@blockly/field-angle@3.0.4...@blockly/field-angle@3.0.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-angle + + + + + ## [3.0.4](https://github.com/google/blockly-samples/compare/@blockly/field-angle@3.0.3...@blockly/field-angle@3.0.4) (2023-08-31) **Note:** Version bump only for package @blockly/field-angle diff --git a/plugins/field-angle/package-lock.json b/plugins/field-angle/package-lock.json index 9095c91270..72e2b74353 100644 --- a/plugins/field-angle/package-lock.json +++ b/plugins/field-angle/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/field-angle", - "version": "3.0.4", + "version": "3.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/field-angle", - "version": "3.0.4", + "version": "3.0.5", "license": "Apache-2.0", "devDependencies": { "@typescript-eslint/parser": "^5.59.5", diff --git a/plugins/field-angle/package.json b/plugins/field-angle/package.json index 6b9874903b..9969262dec 100644 --- a/plugins/field-angle/package.json +++ b/plugins/field-angle/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-angle", - "version": "3.0.4", + "version": "3.0.5", "description": "A Blockly angle field.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "@typescript-eslint/parser": "^5.59.5", "blockly": "^10.0.0", "chai": "^4.2.0", diff --git a/plugins/field-bitmap/CHANGELOG.md b/plugins/field-bitmap/CHANGELOG.md index 97924cc637..f09587e86f 100644 --- a/plugins/field-bitmap/CHANGELOG.md +++ b/plugins/field-bitmap/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.5](https://github.com/google/blockly-samples/compare/@blockly/field-bitmap@4.0.4...@blockly/field-bitmap@4.0.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-bitmap + + + + + ## [4.0.4](https://github.com/google/blockly-samples/compare/@blockly/field-bitmap@4.0.3...@blockly/field-bitmap@4.0.4) (2023-08-17) **Note:** Version bump only for package @blockly/field-bitmap diff --git a/plugins/field-bitmap/package-lock.json b/plugins/field-bitmap/package-lock.json index 295bb9e387..3e556eee66 100644 --- a/plugins/field-bitmap/package-lock.json +++ b/plugins/field-bitmap/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/field-bitmap", - "version": "4.0.4", + "version": "4.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/field-bitmap", - "version": "4.0.4", + "version": "4.0.5", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/field-bitmap/package.json b/plugins/field-bitmap/package.json index d995f2d3f8..0d015aa15a 100644 --- a/plugins/field-bitmap/package.json +++ b/plugins/field-bitmap/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-bitmap", - "version": "4.0.4", + "version": "4.0.5", "description": "A field that lets users input a pixel grid with their mouse.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.3.6", "mocha": "^9.2.1" diff --git a/plugins/field-colour-hsv-sliders/CHANGELOG.md b/plugins/field-colour-hsv-sliders/CHANGELOG.md index f7298782c0..ff35be3743 100644 --- a/plugins/field-colour-hsv-sliders/CHANGELOG.md +++ b/plugins/field-colour-hsv-sliders/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.1.3](https://github.com/google/blockly-samples/compare/@blockly/field-colour-hsv-sliders@4.1.2...@blockly/field-colour-hsv-sliders@4.1.3) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-colour-hsv-sliders + + + + + ## [4.1.2](https://github.com/google/blockly-samples/compare/@blockly/field-colour-hsv-sliders@4.1.1...@blockly/field-colour-hsv-sliders@4.1.2) (2023-08-31) **Note:** Version bump only for package @blockly/field-colour-hsv-sliders diff --git a/plugins/field-colour-hsv-sliders/package-lock.json b/plugins/field-colour-hsv-sliders/package-lock.json index a6747ae9fe..721237975d 100644 --- a/plugins/field-colour-hsv-sliders/package-lock.json +++ b/plugins/field-colour-hsv-sliders/package-lock.json @@ -1,19 +1,19 @@ { "name": "@blockly/field-colour-hsv-sliders", - "version": "4.1.2", + "version": "4.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/field-colour-hsv-sliders", - "version": "4.1.2", + "version": "4.1.3", "license": "Apache-2.0", "dependencies": { - "@blockly/field-colour": "^3.0.4" + "@blockly/field-colour": "^3.0.5" }, "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "engines": { diff --git a/plugins/field-colour-hsv-sliders/package.json b/plugins/field-colour-hsv-sliders/package.json index c54e7351af..4d64acb92c 100644 --- a/plugins/field-colour-hsv-sliders/package.json +++ b/plugins/field-colour-hsv-sliders/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-colour-hsv-sliders", - "version": "4.1.2", + "version": "4.1.3", "description": "A Blockly colour field using HSV sliders.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,11 +41,11 @@ "src" ], "dependencies": { - "@blockly/field-colour": "^3.0.4" + "@blockly/field-colour": "^3.0.5" }, "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "peerDependencies": { diff --git a/plugins/field-colour/CHANGELOG.md b/plugins/field-colour/CHANGELOG.md index a1a5fd445b..6e239586cb 100644 --- a/plugins/field-colour/CHANGELOG.md +++ b/plugins/field-colour/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.5](https://github.com/google/blockly-samples/compare/@blockly/field-colour@3.0.4...@blockly/field-colour@3.0.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-colour + + + + + ## [3.0.4](https://github.com/google/blockly-samples/compare/@blockly/field-colour@3.0.3...@blockly/field-colour@3.0.4) (2023-08-31) **Note:** Version bump only for package @blockly/field-colour diff --git a/plugins/field-colour/package-lock.json b/plugins/field-colour/package-lock.json index 2611577825..bf297dcd59 100644 --- a/plugins/field-colour/package-lock.json +++ b/plugins/field-colour/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/field-colour", - "version": "3.0.4", + "version": "3.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/field-colour", - "version": "3.0.4", + "version": "3.0.5", "license": "Apache-2.0", "devDependencies": { "@typescript-eslint/parser": "^5.59.5", diff --git a/plugins/field-colour/package.json b/plugins/field-colour/package.json index bd8aae88c2..1eed2bd1c8 100644 --- a/plugins/field-colour/package.json +++ b/plugins/field-colour/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-colour", - "version": "3.0.4", + "version": "3.0.5", "description": "A Blockly colour field.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "@typescript-eslint/parser": "^5.59.5", "blockly": "^10.0.0", "chai": "^4.2.0", diff --git a/plugins/field-date/CHANGELOG.md b/plugins/field-date/CHANGELOG.md index 24ef6c85c1..5d320ba081 100644 --- a/plugins/field-date/CHANGELOG.md +++ b/plugins/field-date/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.4](https://github.com/google/blockly-samples/compare/@blockly/field-date@8.0.3...@blockly/field-date@8.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-date + + + + + ## [8.0.3](https://github.com/google/blockly-samples/compare/@blockly/field-date@8.0.2...@blockly/field-date@8.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/field-date diff --git a/plugins/field-date/package-lock.json b/plugins/field-date/package-lock.json index a9a89b0895..ca9328d4ba 100644 --- a/plugins/field-date/package-lock.json +++ b/plugins/field-date/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/field-date", - "version": "8.0.3", + "version": "8.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/field-date", - "version": "8.0.3", + "version": "8.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/field-date/package.json b/plugins/field-date/package.json index 725eeb127f..4335134d14 100644 --- a/plugins/field-date/package.json +++ b/plugins/field-date/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-date", - "version": "8.0.3", + "version": "8.0.4", "description": "A Blockly date picker field that uses the Google Closure date picker.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -43,7 +43,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "sinon": "^9.0.1" diff --git a/plugins/field-dependent-dropdown/CHANGELOG.md b/plugins/field-dependent-dropdown/CHANGELOG.md index 2112462d96..67c06f40c2 100644 --- a/plugins/field-dependent-dropdown/CHANGELOG.md +++ b/plugins/field-dependent-dropdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.4](https://github.com/google/blockly-samples/compare/@blockly/field-dependent-dropdown@3.0.3...@blockly/field-dependent-dropdown@3.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-dependent-dropdown + + + + + ## [3.0.3](https://github.com/google/blockly-samples/compare/@blockly/field-dependent-dropdown@3.0.2...@blockly/field-dependent-dropdown@3.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/field-dependent-dropdown diff --git a/plugins/field-dependent-dropdown/package-lock.json b/plugins/field-dependent-dropdown/package-lock.json index 29a3261ead..8a2e1ba8c4 100644 --- a/plugins/field-dependent-dropdown/package-lock.json +++ b/plugins/field-dependent-dropdown/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/field-dependent-dropdown", - "version": "3.0.3", + "version": "3.0.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@blockly/field-dependent-dropdown", - "version": "3.0.3", + "version": "3.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/field-dependent-dropdown/package.json b/plugins/field-dependent-dropdown/package.json index 37e4208fad..dc684c7600 100644 --- a/plugins/field-dependent-dropdown/package.json +++ b/plugins/field-dependent-dropdown/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-dependent-dropdown", - "version": "3.0.3", + "version": "3.0.4", "description": "A Blockly dropdown field that automatically updates its available options depending on the value of another field.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -42,7 +42,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "sinon": "^9.0.1" diff --git a/plugins/field-grid-dropdown/CHANGELOG.md b/plugins/field-grid-dropdown/CHANGELOG.md index 2019ac501f..ba085cdafd 100644 --- a/plugins/field-grid-dropdown/CHANGELOG.md +++ b/plugins/field-grid-dropdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/google/blockly-samples/compare/@blockly/field-grid-dropdown@4.0.3...@blockly/field-grid-dropdown@4.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-grid-dropdown + + + + + ## [4.0.3](https://github.com/google/blockly-samples/compare/@blockly/field-grid-dropdown@4.0.2...@blockly/field-grid-dropdown@4.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/field-grid-dropdown diff --git a/plugins/field-grid-dropdown/package-lock.json b/plugins/field-grid-dropdown/package-lock.json index 2472464c8c..857e1fc8a3 100644 --- a/plugins/field-grid-dropdown/package-lock.json +++ b/plugins/field-grid-dropdown/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/field-grid-dropdown", - "version": "4.0.3", + "version": "4.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/field-grid-dropdown", - "version": "4.0.3", + "version": "4.0.4", "license": "Apache 2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/field-grid-dropdown/package.json b/plugins/field-grid-dropdown/package.json index 35fb059236..5d5d31c5cd 100644 --- a/plugins/field-grid-dropdown/package.json +++ b/plugins/field-grid-dropdown/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-grid-dropdown", - "version": "4.0.3", + "version": "4.0.4", "description": "A Blockly dropdown field with grid layout.", "scripts": { "build": "blockly-scripts build", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "typescript": "^4.3.2" }, diff --git a/plugins/field-multilineinput/CHANGELOG.md b/plugins/field-multilineinput/CHANGELOG.md index d2190bcd72..7c49431074 100644 --- a/plugins/field-multilineinput/CHANGELOG.md +++ b/plugins/field-multilineinput/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.5](https://github.com/google/blockly-samples/compare/@blockly/field-multilineinput@3.0.4...@blockly/field-multilineinput@3.0.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-multilineinput + + + + + ## [3.0.4](https://github.com/google/blockly-samples/compare/@blockly/field-multilineinput@3.0.3...@blockly/field-multilineinput@3.0.4) (2023-08-31) **Note:** Version bump only for package @blockly/field-multilineinput diff --git a/plugins/field-multilineinput/package-lock.json b/plugins/field-multilineinput/package-lock.json index 022cc108fb..9f4cb8f1a2 100644 --- a/plugins/field-multilineinput/package-lock.json +++ b/plugins/field-multilineinput/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/field-multilineinput", - "version": "3.0.4", + "version": "3.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/field-multilineinput", - "version": "3.0.4", + "version": "3.0.5", "license": "Apache-2.0", "devDependencies": { "@typescript-eslint/parser": "^5.59.5", diff --git a/plugins/field-multilineinput/package.json b/plugins/field-multilineinput/package.json index 16bc6881ce..8664e9b8b7 100644 --- a/plugins/field-multilineinput/package.json +++ b/plugins/field-multilineinput/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-multilineinput", - "version": "3.0.4", + "version": "3.0.5", "description": "A Blockly multilineinput field.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "@typescript-eslint/parser": "^5.59.5", "blockly": "^10.0.0", "chai": "^4.2.0", diff --git a/plugins/field-slider/CHANGELOG.md b/plugins/field-slider/CHANGELOG.md index f32220c732..70792d3dc3 100644 --- a/plugins/field-slider/CHANGELOG.md +++ b/plugins/field-slider/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.4](https://github.com/google/blockly-samples/compare/@blockly/field-slider@6.0.3...@blockly/field-slider@6.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/field-slider + + + + + ## [6.0.3](https://github.com/google/blockly-samples/compare/@blockly/field-slider@6.0.2...@blockly/field-slider@6.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/field-slider diff --git a/plugins/field-slider/package-lock.json b/plugins/field-slider/package-lock.json index 8272f8ea94..8fa4fa69cc 100644 --- a/plugins/field-slider/package-lock.json +++ b/plugins/field-slider/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/field-slider", - "version": "6.0.3", + "version": "6.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/field-slider", - "version": "6.0.3", + "version": "6.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/field-slider/package.json b/plugins/field-slider/package.json index d23757a60b..a786f2d6d0 100644 --- a/plugins/field-slider/package.json +++ b/plugins/field-slider/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/field-slider", - "version": "6.0.3", + "version": "6.0.4", "description": "A Blockly slider field.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "sinon": "^9.0.1" diff --git a/plugins/fixed-edges/CHANGELOG.md b/plugins/fixed-edges/CHANGELOG.md index b5126d5a6f..0b84a4842e 100644 --- a/plugins/fixed-edges/CHANGELOG.md +++ b/plugins/fixed-edges/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.5](https://github.com/google/blockly-samples/compare/@blockly/fixed-edges@4.0.4...@blockly/fixed-edges@4.0.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/fixed-edges + + + + + ## [4.0.4](https://github.com/google/blockly-samples/compare/@blockly/fixed-edges@4.0.3...@blockly/fixed-edges@4.0.4) (2023-08-17) **Note:** Version bump only for package @blockly/fixed-edges diff --git a/plugins/fixed-edges/package-lock.json b/plugins/fixed-edges/package-lock.json index 3d48bdf387..84ee32662c 100644 --- a/plugins/fixed-edges/package-lock.json +++ b/plugins/fixed-edges/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/fixed-edges", - "version": "4.0.4", + "version": "4.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/fixed-edges", - "version": "4.0.4", + "version": "4.0.5", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0" diff --git a/plugins/fixed-edges/package.json b/plugins/fixed-edges/package.json index 1be55cc88a..a31ba0649c 100644 --- a/plugins/fixed-edges/package.json +++ b/plugins/fixed-edges/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/fixed-edges", - "version": "4.0.4", + "version": "4.0.5", "description": "A plugin that provides a MetricsManager that can be used to prevent the workspace from expanding to the top/left/right/bottom when blocks are dragged to that edge.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -39,7 +39,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "peerDependencies": { diff --git a/plugins/keyboard-navigation/CHANGELOG.md b/plugins/keyboard-navigation/CHANGELOG.md index 79e5fc33e5..8b0b526e6e 100644 --- a/plugins/keyboard-navigation/CHANGELOG.md +++ b/plugins/keyboard-navigation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.6](https://github.com/google/blockly-samples/compare/@blockly/keyboard-navigation@0.4.5...@blockly/keyboard-navigation@0.4.6) (2023-09-14) + +**Note:** Version bump only for package @blockly/keyboard-navigation + + + + + ## [0.4.5](https://github.com/google/blockly-samples/compare/@blockly/keyboard-navigation@0.4.4...@blockly/keyboard-navigation@0.4.5) (2023-08-17) **Note:** Version bump only for package @blockly/keyboard-navigation diff --git a/plugins/keyboard-navigation/package-lock.json b/plugins/keyboard-navigation/package-lock.json index 2d5d2645c7..d4c327bfdb 100644 --- a/plugins/keyboard-navigation/package-lock.json +++ b/plugins/keyboard-navigation/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/keyboard-navigation", - "version": "0.4.5", + "version": "0.4.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/keyboard-navigation", - "version": "0.4.5", + "version": "0.4.6", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/keyboard-navigation/package.json b/plugins/keyboard-navigation/package.json index adc7d03fa0..6fdf2cde42 100644 --- a/plugins/keyboard-navigation/package.json +++ b/plugins/keyboard-navigation/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/keyboard-navigation", - "version": "0.4.5", + "version": "0.4.6", "description": "A Blockly plugin that adds keyboard navigation support.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "jsdom": "^16.4.0", diff --git a/plugins/modal/CHANGELOG.md b/plugins/modal/CHANGELOG.md index 8d30a0f482..7edf27c26b 100644 --- a/plugins/modal/CHANGELOG.md +++ b/plugins/modal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.4](https://github.com/google/blockly-samples/compare/@blockly/plugin-modal@6.0.3...@blockly/plugin-modal@6.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/plugin-modal + + + + + ## [6.0.3](https://github.com/google/blockly-samples/compare/@blockly/plugin-modal@6.0.2...@blockly/plugin-modal@6.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/plugin-modal diff --git a/plugins/modal/package-lock.json b/plugins/modal/package-lock.json index 7d190689b9..ab9a494331 100644 --- a/plugins/modal/package-lock.json +++ b/plugins/modal/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/plugin-modal", - "version": "6.0.3", + "version": "6.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/plugin-modal", - "version": "6.0.3", + "version": "6.0.4", "license": "Apache 2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/modal/package.json b/plugins/modal/package.json index 486c00369a..3482e22602 100644 --- a/plugins/modal/package.json +++ b/plugins/modal/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/plugin-modal", - "version": "6.0.3", + "version": "6.0.4", "description": "A Blockly plugin that creates a modal.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "jsdom": "^19.0.0", "jsdom-global": "3.0.2", diff --git a/plugins/renderer-inline-row-separators/CHANGELOG.md b/plugins/renderer-inline-row-separators/CHANGELOG.md index 6aee52823c..f39853dbeb 100644 --- a/plugins/renderer-inline-row-separators/CHANGELOG.md +++ b/plugins/renderer-inline-row-separators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.4](https://github.com/google/blockly-samples/compare/@blockly/renderer-inline-row-separators@0.4.3...@blockly/renderer-inline-row-separators@0.4.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/renderer-inline-row-separators + + + + + ## [0.4.3](https://github.com/google/blockly-samples/compare/@blockly/renderer-inline-row-separators@0.4.2...@blockly/renderer-inline-row-separators@0.4.3) (2023-08-17) **Note:** Version bump only for package @blockly/renderer-inline-row-separators diff --git a/plugins/renderer-inline-row-separators/package-lock.json b/plugins/renderer-inline-row-separators/package-lock.json index fae6e234f4..1bf21050a6 100644 --- a/plugins/renderer-inline-row-separators/package-lock.json +++ b/plugins/renderer-inline-row-separators/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/renderer-inline-row-separators", - "version": "0.4.3", + "version": "0.4.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/renderer-inline-row-separators", - "version": "0.4.3", + "version": "0.4.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/renderer-inline-row-separators/package.json b/plugins/renderer-inline-row-separators/package.json index 72efa87515..c5139af0e2 100644 --- a/plugins/renderer-inline-row-separators/package.json +++ b/plugins/renderer-inline-row-separators/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/renderer-inline-row-separators", - "version": "0.4.3", + "version": "0.4.4", "description": "A plugin to treat dummy inputs like line breaks.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "jsdom": "^19.0.0", diff --git a/plugins/scroll-options/CHANGELOG.md b/plugins/scroll-options/CHANGELOG.md index af2f03b525..9eec34029c 100644 --- a/plugins/scroll-options/CHANGELOG.md +++ b/plugins/scroll-options/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.4](https://github.com/google/blockly-samples/compare/@blockly/plugin-scroll-options@5.0.3...@blockly/plugin-scroll-options@5.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/plugin-scroll-options + + + + + ## [5.0.3](https://github.com/google/blockly-samples/compare/@blockly/plugin-scroll-options@5.0.2...@blockly/plugin-scroll-options@5.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/plugin-scroll-options diff --git a/plugins/scroll-options/package-lock.json b/plugins/scroll-options/package-lock.json index 4310c872ab..2d55b430eb 100644 --- a/plugins/scroll-options/package-lock.json +++ b/plugins/scroll-options/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/plugin-scroll-options", - "version": "5.0.3", + "version": "5.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/plugin-scroll-options", - "version": "5.0.3", + "version": "5.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0" diff --git a/plugins/scroll-options/package.json b/plugins/scroll-options/package.json index ff72f53e27..b57f1a91a0 100644 --- a/plugins/scroll-options/package.json +++ b/plugins/scroll-options/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/plugin-scroll-options", - "version": "5.0.3", + "version": "5.0.4", "description": "A Blockly plugin that adds advanced scroll options such as scroll-on-drag and scroll while holding a block.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "peerDependencies": { diff --git a/plugins/shadow-block-converter/CHANGELOG.md b/plugins/shadow-block-converter/CHANGELOG.md index ee2fff6e1a..f7c1fefccb 100644 --- a/plugins/shadow-block-converter/CHANGELOG.md +++ b/plugins/shadow-block-converter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/google/blockly-samples/compare/@blockly/shadow-block-converter@4.0.3...@blockly/shadow-block-converter@4.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/shadow-block-converter + + + + + ## [4.0.3](https://github.com/google/blockly-samples/compare/@blockly/shadow-block-converter@4.0.2...@blockly/shadow-block-converter@4.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/shadow-block-converter diff --git a/plugins/shadow-block-converter/package-lock.json b/plugins/shadow-block-converter/package-lock.json index 93a18ceee6..2dac9f2d4c 100644 --- a/plugins/shadow-block-converter/package-lock.json +++ b/plugins/shadow-block-converter/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/shadow-block-converter", - "version": "4.0.3", + "version": "4.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/shadow-block-converter", - "version": "4.0.3", + "version": "4.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/shadow-block-converter/package.json b/plugins/shadow-block-converter/package.json index f1691e442a..f3e77035d2 100644 --- a/plugins/shadow-block-converter/package.json +++ b/plugins/shadow-block-converter/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/shadow-block-converter", - "version": "4.0.3", + "version": "4.0.4", "description": "A workspace change listener that converts shadow blocks to real blocks when the user edits them.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "sinon": "^9.0.1" diff --git a/plugins/strict-connection-checker/CHANGELOG.md b/plugins/strict-connection-checker/CHANGELOG.md index 12e7c136bb..99d0d009af 100644 --- a/plugins/strict-connection-checker/CHANGELOG.md +++ b/plugins/strict-connection-checker/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.5](https://github.com/google/blockly-samples/compare/@blockly/plugin-strict-connection-checker@4.0.4...@blockly/plugin-strict-connection-checker@4.0.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/plugin-strict-connection-checker + + + + + ## [4.0.4](https://github.com/google/blockly-samples/compare/@blockly/plugin-strict-connection-checker@4.0.3...@blockly/plugin-strict-connection-checker@4.0.4) (2023-08-17) **Note:** Version bump only for package @blockly/plugin-strict-connection-checker diff --git a/plugins/strict-connection-checker/package-lock.json b/plugins/strict-connection-checker/package-lock.json index 35d8647d24..bf2dab8fd9 100644 --- a/plugins/strict-connection-checker/package-lock.json +++ b/plugins/strict-connection-checker/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/plugin-strict-connection-checker", - "version": "4.0.4", + "version": "4.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/plugin-strict-connection-checker", - "version": "4.0.4", + "version": "4.0.5", "license": "Apache 2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/strict-connection-checker/package.json b/plugins/strict-connection-checker/package.json index 13862cedc5..d00297d052 100644 --- a/plugins/strict-connection-checker/package.json +++ b/plugins/strict-connection-checker/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/plugin-strict-connection-checker", - "version": "4.0.4", + "version": "4.0.5", "description": "A connection checker that prevents blocks that don't provide type information from being connected to blocks that do.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0" }, diff --git a/plugins/suggested-blocks/CHANGELOG.md b/plugins/suggested-blocks/CHANGELOG.md index 5adb71a7d3..5ba3a71ee3 100644 --- a/plugins/suggested-blocks/CHANGELOG.md +++ b/plugins/suggested-blocks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.4](https://github.com/google/blockly-samples/compare/@blockly/suggested-blocks@4.0.3...@blockly/suggested-blocks@4.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/suggested-blocks + + + + + ## [4.0.3](https://github.com/google/blockly-samples/compare/@blockly/suggested-blocks@4.0.2...@blockly/suggested-blocks@4.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/suggested-blocks diff --git a/plugins/suggested-blocks/package-lock.json b/plugins/suggested-blocks/package-lock.json index 1a42db89f6..a5ad0ee138 100644 --- a/plugins/suggested-blocks/package-lock.json +++ b/plugins/suggested-blocks/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/suggested-blocks", - "version": "4.0.3", + "version": "4.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/suggested-blocks", - "version": "4.0.3", + "version": "4.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/suggested-blocks/package.json b/plugins/suggested-blocks/package.json index eac1501319..3f713757d9 100644 --- a/plugins/suggested-blocks/package.json +++ b/plugins/suggested-blocks/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/suggested-blocks", - "version": "4.0.3", + "version": "4.0.4", "description": "A plugin that adds toolbox panes with suggested blocks based on the user's past usage of blocks.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.3.6", "sinon": "^14.0.0" diff --git a/plugins/toolbox-search/CHANGELOG.md b/plugins/toolbox-search/CHANGELOG.md index 6a730a586b..844e470aed 100644 --- a/plugins/toolbox-search/CHANGELOG.md +++ b/plugins/toolbox-search/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.5](https://github.com/google/blockly-samples/compare/@blockly/toolbox-search@1.1.4...@blockly/toolbox-search@1.1.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/toolbox-search + + + + + ## [1.1.4](https://github.com/google/blockly-samples/compare/@blockly/toolbox-search@1.1.3...@blockly/toolbox-search@1.1.4) (2023-08-17) **Note:** Version bump only for package @blockly/toolbox-search diff --git a/plugins/toolbox-search/package-lock.json b/plugins/toolbox-search/package-lock.json index 410788877c..640de1def7 100644 --- a/plugins/toolbox-search/package-lock.json +++ b/plugins/toolbox-search/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/toolbox-search", - "version": "1.1.4", + "version": "1.1.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/toolbox-search", - "version": "1.1.4", + "version": "1.1.5", "license": "Apache-2.0", "devDependencies": { "@typescript-eslint/parser": "^5.59.5", diff --git a/plugins/toolbox-search/package.json b/plugins/toolbox-search/package.json index 4f1499e3db..d11aaa7f40 100644 --- a/plugins/toolbox-search/package.json +++ b/plugins/toolbox-search/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/toolbox-search", - "version": "1.1.4", + "version": "1.1.5", "description": "A Blockly plugin that adds a toolbox category that allows searching for blocks.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -41,7 +41,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "@typescript-eslint/parser": "^5.59.5", "blockly": "^10.0.0", "chai": "^4.3.7", diff --git a/plugins/typed-variable-modal/CHANGELOG.md b/plugins/typed-variable-modal/CHANGELOG.md index 3330c363fb..81edec8218 100644 --- a/plugins/typed-variable-modal/CHANGELOG.md +++ b/plugins/typed-variable-modal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.4](https://github.com/google/blockly-samples/compare/@blockly/plugin-typed-variable-modal@7.0.3...@blockly/plugin-typed-variable-modal@7.0.4) (2023-09-14) + +**Note:** Version bump only for package @blockly/plugin-typed-variable-modal + + + + + ## [7.0.3](https://github.com/google/blockly-samples/compare/@blockly/plugin-typed-variable-modal@7.0.2...@blockly/plugin-typed-variable-modal@7.0.3) (2023-08-17) **Note:** Version bump only for package @blockly/plugin-typed-variable-modal diff --git a/plugins/typed-variable-modal/package-lock.json b/plugins/typed-variable-modal/package-lock.json index 67f6da1ca5..2175533ea8 100644 --- a/plugins/typed-variable-modal/package-lock.json +++ b/plugins/typed-variable-modal/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/plugin-typed-variable-modal", - "version": "7.0.3", + "version": "7.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/plugin-typed-variable-modal", - "version": "7.0.3", + "version": "7.0.4", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/typed-variable-modal/package.json b/plugins/typed-variable-modal/package.json index 8321370e24..fbf2d6d7d8 100644 --- a/plugins/typed-variable-modal/package.json +++ b/plugins/typed-variable-modal/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/plugin-typed-variable-modal", - "version": "7.0.3", + "version": "7.0.4", "description": "A Blockly plugin to create a modal for creating typed variables.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "jsdom": "^19.0.0", "jsdom-global": "3.0.2", @@ -51,7 +51,7 @@ "blockly": "^10.0.0" }, "dependencies": { - "@blockly/plugin-modal": "^6.0.3" + "@blockly/plugin-modal": "^6.0.4" }, "publishConfig": { "access": "public", diff --git a/plugins/workspace-backpack/CHANGELOG.md b/plugins/workspace-backpack/CHANGELOG.md index f15d9679ee..b5805e976f 100644 --- a/plugins/workspace-backpack/CHANGELOG.md +++ b/plugins/workspace-backpack/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.2.1](https://github.com/google/blockly-samples/compare/@blockly/workspace-backpack@5.2.0...@blockly/workspace-backpack@5.2.1) (2023-09-14) + +**Note:** Version bump only for package @blockly/workspace-backpack + + + + + ## [5.2.0](https://github.com/google/blockly-samples/compare/@blockly/workspace-backpack@5.1.1...@blockly/workspace-backpack@5.2.0) (2023-08-24) diff --git a/plugins/workspace-backpack/package-lock.json b/plugins/workspace-backpack/package-lock.json index 6ac3cab0bb..5af15fd475 100644 --- a/plugins/workspace-backpack/package-lock.json +++ b/plugins/workspace-backpack/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/workspace-backpack", - "version": "5.2.0", + "version": "5.2.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/workspace-backpack", - "version": "5.2.0", + "version": "5.2.1", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0" diff --git a/plugins/workspace-backpack/package.json b/plugins/workspace-backpack/package.json index 2d8a79eb67..801c4e6f6c 100644 --- a/plugins/workspace-backpack/package.json +++ b/plugins/workspace-backpack/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/workspace-backpack", - "version": "5.2.0", + "version": "5.2.1", "description": "A Blockly plugin that adds Backpack support.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -42,7 +42,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0" }, "peerDependencies": { diff --git a/plugins/workspace-minimap/CHANGELOG.md b/plugins/workspace-minimap/CHANGELOG.md index 5a3ac2fd50..1016763bba 100644 --- a/plugins/workspace-minimap/CHANGELOG.md +++ b/plugins/workspace-minimap/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.1](https://github.com/google/blockly-samples/compare/@blockly/workspace-minimap@0.1.0...@blockly/workspace-minimap@0.1.1) (2023-09-14) + +**Note:** Version bump only for package @blockly/workspace-minimap + + + + + ## 0.1.0 (2023-08-24) diff --git a/plugins/workspace-minimap/package-lock.json b/plugins/workspace-minimap/package-lock.json index 9c303be4b9..9a24868ac0 100644 --- a/plugins/workspace-minimap/package-lock.json +++ b/plugins/workspace-minimap/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/workspace-minimap", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@blockly/workspace-minimap", - "version": "0.1.0", + "version": "0.1.1", "license": "Apache-2.0", "devDependencies": { "blockly": "^10.0.0", diff --git a/plugins/workspace-minimap/package.json b/plugins/workspace-minimap/package.json index b840ad3ea4..7f4ec6884f 100644 --- a/plugins/workspace-minimap/package.json +++ b/plugins/workspace-minimap/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/workspace-minimap", - "version": "0.1.0", + "version": "0.1.1", "description": "A Blockly plugin.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.0", - "@blockly/dev-tools": "^7.0.0", + "@blockly/dev-tools": "^7.1.0", "blockly": "^10.0.0", "chai": "^4.2.0", "typescript": "^5.1.3" diff --git a/plugins/workspace-search/CHANGELOG.md b/plugins/workspace-search/CHANGELOG.md index 769501955c..cbae76de35 100644 --- a/plugins/workspace-search/CHANGELOG.md +++ b/plugins/workspace-search/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.5](https://github.com/google/blockly-samples/compare/@blockly/plugin-workspace-search@8.0.4...@blockly/plugin-workspace-search@8.0.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/plugin-workspace-search + + + + + ## [8.0.4](https://github.com/google/blockly-samples/compare/@blockly/plugin-workspace-search@8.0.3...@blockly/plugin-workspace-search@8.0.4) (2023-08-24) **Note:** Version bump only for package @blockly/plugin-workspace-search diff --git a/plugins/workspace-search/package-lock.json b/plugins/workspace-search/package-lock.json index f2df8c97ac..1d808e8fdc 100644 --- a/plugins/workspace-search/package-lock.json +++ b/plugins/workspace-search/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/plugin-workspace-search", - "version": "8.0.4", + "version": "8.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/plugin-workspace-search", - "version": "8.0.4", + "version": "8.0.5", "license": "Apache-2.0", "devDependencies": { "@typescript-eslint/parser": "^5.59.5", diff --git a/plugins/workspace-search/package.json b/plugins/workspace-search/package.json index f3408a03a4..74d0ba5e3c 100644 --- a/plugins/workspace-search/package.json +++ b/plugins/workspace-search/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/plugin-workspace-search", - "version": "8.0.4", + "version": "8.0.5", "description": "A Blockly plugin that adds workspace search support.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -40,7 +40,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "@typescript-eslint/parser": "^5.59.5", "blockly": "^10.0.0", "jsdom": "^19.0.0", diff --git a/plugins/zoom-to-fit/CHANGELOG.md b/plugins/zoom-to-fit/CHANGELOG.md index dc4120ccc8..0da3cd574a 100644 --- a/plugins/zoom-to-fit/CHANGELOG.md +++ b/plugins/zoom-to-fit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.5](https://github.com/google/blockly-samples/compare/@blockly/zoom-to-fit@5.0.4...@blockly/zoom-to-fit@5.0.5) (2023-09-14) + +**Note:** Version bump only for package @blockly/zoom-to-fit + + + + + ## [5.0.4](https://github.com/google/blockly-samples/compare/@blockly/zoom-to-fit@5.0.3...@blockly/zoom-to-fit@5.0.4) (2023-08-24) **Note:** Version bump only for package @blockly/zoom-to-fit diff --git a/plugins/zoom-to-fit/package-lock.json b/plugins/zoom-to-fit/package-lock.json index dbec55ca97..33153c4c5b 100644 --- a/plugins/zoom-to-fit/package-lock.json +++ b/plugins/zoom-to-fit/package-lock.json @@ -1,12 +1,12 @@ { "name": "@blockly/zoom-to-fit", - "version": "5.0.4", + "version": "5.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@blockly/zoom-to-fit", - "version": "5.0.4", + "version": "5.0.5", "license": "Apache-2.0", "devDependencies": { "@typescript-eslint/parser": "^5.59.5", diff --git a/plugins/zoom-to-fit/package.json b/plugins/zoom-to-fit/package.json index b9b917e2be..27d864c4a3 100644 --- a/plugins/zoom-to-fit/package.json +++ b/plugins/zoom-to-fit/package.json @@ -1,6 +1,6 @@ { "name": "@blockly/zoom-to-fit", - "version": "5.0.4", + "version": "5.0.5", "description": "A Blockly plugin that adds a zoom-to-fit control to the workspace.", "scripts": { "audit:fix": "blockly-scripts auditFix", @@ -39,7 +39,7 @@ ], "devDependencies": { "@blockly/dev-scripts": "^2.0.1", - "@blockly/dev-tools": "^7.0.3", + "@blockly/dev-tools": "^7.1.0", "@typescript-eslint/parser": "^5.59.5", "blockly": "^10.0.0", "typescript": "^5.1.6"