Skip to content

Commit 442cf96

Browse files
Publish
- @blockly/[email protected] - @blockly/[email protected] - @blockly/[email protected] - @blockly/[email protected] - @blockly/[email protected] - @blockly/[email protected]
1 parent 2756a47 commit 442cf96

File tree

17 files changed

+74
-18
lines changed

17 files changed

+74
-18
lines changed

plugins/cross-tab-copy-paste/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [8.0.0](https://github.com/google/blockly-samples/compare/@blockly/[email protected]...@blockly/[email protected]) (2025-07-03)
7+
8+
9+
### ⚠ BREAKING CHANGES
10+
11+
* cross-tab-copy-paste can copy more than just blocks (#2571)
12+
13+
### Features
14+
15+
* cross-tab-copy-paste can copy more than just blocks ([#2571](https://github.com/google/blockly-samples/issues/2571)) ([3fda886](https://github.com/google/blockly-samples/commit/3fda886d1bd39fa63f4c8fdf5ac3196b9bdcaf05))
16+
17+
18+
619
## [7.0.1](https://github.com/google/blockly-samples/compare/@blockly/[email protected]...@blockly/[email protected]) (2025-05-22)
720

821
**Note:** Version bump only for package @blockly/plugin-cross-tab-copy-paste

plugins/cross-tab-copy-paste/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@blockly/plugin-cross-tab-copy-paste",
3-
"version": "7.0.1",
3+
"version": "8.0.0",
44
"description": "Allows copying blocks between multiple tabs with Blockly editors.",
55
"scripts": {
66
"audit:fix": "blockly-scripts auditFix",

plugins/field-colour-hsv-sliders/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.0.3](https://github.com/google/blockly-samples/compare/@blockly/[email protected]...@blockly/[email protected]) (2025-07-03)
7+
8+
**Note:** Version bump only for package @blockly/field-colour-hsv-sliders
9+
10+
11+
12+
13+
614
## [6.0.2](https://github.com/google/blockly-samples/compare/@blockly/[email protected]...@blockly/[email protected]) (2025-06-19)
715

816
**Note:** Version bump only for package @blockly/field-colour-hsv-sliders

plugins/field-colour-hsv-sliders/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/field-colour-hsv-sliders/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@blockly/field-colour-hsv-sliders",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"description": "A Blockly colour field using HSV sliders.",
55
"scripts": {
66
"audit:fix": "blockly-scripts auditFix",
@@ -41,7 +41,7 @@
4141
"src"
4242
],
4343
"dependencies": {
44-
"@blockly/field-colour": "^6.0.2"
44+
"@blockly/field-colour": "^6.0.3"
4545
},
4646
"devDependencies": {
4747
"@blockly/dev-scripts": "^4.0.9",

plugins/field-colour/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.0.3](https://github.com/google/blockly-samples/compare/@blockly/[email protected]...@blockly/[email protected]) (2025-07-03)
7+
8+
**Note:** Version bump only for package @blockly/field-colour
9+
10+
11+
12+
13+
614
## [6.0.2](https://github.com/google/blockly-samples/compare/@blockly/[email protected]...@blockly/[email protected]) (2025-06-19)
715

816
**Note:** Version bump only for package @blockly/field-colour

plugins/field-colour/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/field-colour/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@blockly/field-colour",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"description": "A Blockly colour field.",
55
"scripts": {
66
"audit:fix": "blockly-scripts auditFix",
@@ -60,6 +60,6 @@
6060
"node": ">=8.0.0"
6161
},
6262
"dependencies": {
63-
"@blockly/field-grid-dropdown": "^6.0.1"
63+
"@blockly/field-grid-dropdown": "^6.0.2"
6464
}
6565
}

plugins/field-grid-dropdown/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.0.2](https://github.com/google/blockly-samples/compare/@blockly/[email protected]...@blockly/[email protected]) (2025-07-03)
7+
8+
9+
### Bug Fixes
10+
11+
* prevent Enter/Space from propagating from Grid ([#2570](https://github.com/google/blockly-samples/issues/2570)) ([25ee5a9](https://github.com/google/blockly-samples/commit/25ee5a9a750d819c9dbf00d6513f3b9c6fd302fe))
12+
13+
14+
615
## [6.0.1](https://github.com/google/blockly-samples/compare/@blockly/[email protected]...@blockly/[email protected]) (2025-05-22)
716

817

plugins/field-grid-dropdown/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)