-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release: v10.0.0 #7222
Merged
Merged
release: v10.0.0 #7222
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* fix: allow splicing into shadow block stacks * chore: format
Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 7.6.0 to 8.0.1. - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - [Commits](open-cli-tools/concurrently@v7.6.0...v8.0.1) --- updated-dependencies: - dependency-name: concurrently dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Merge pull request #6935 from google/master
fix: remove forced rerender from mutator
Bumps [eslint](https://github.com/eslint/eslint) from 8.34.0 to 8.37.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v8.34.0...v8.37.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…out (#6960) * chore: remove underscores in flyout files * chore: remove underscores in flyout_button
….0 (#6965) Bumps [google-closure-deps](https://github.com/google/closure-library) from 20230206.0.0 to 20230228.0.0. - [Release notes](https://github.com/google/closure-library/releases) - [Commits](google/closure-library@v20230206...v20230228) --- updated-dependencies: - dependency-name: google-closure-deps dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.0.2 to 5.0.4. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.0.2...v5.0.4) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [google-closure-compiler](https://github.com/google/closure-compiler-npm) from 20230206.0.0 to 20230228.0.0. - [Release notes](https://github.com/google/closure-compiler-npm/releases) - [Commits](google/closure-compiler-npm@v20230206.0.0...v20230228.0.0) --- updated-dependencies: - dependency-name: google-closure-compiler dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [google-github-actions/deploy-appengine](https://github.com/google-github-actions/deploy-appengine) from 1.2.2 to 1.2.6. - [Release notes](https://github.com/google-github-actions/deploy-appengine/releases) - [Changelog](https://github.com/google-github-actions/deploy-appengine/blob/main/CHANGELOG.md) - [Commits](google-github-actions/deploy-appengine@v1.2.2...v1.2.6) --- updated-dependencies: - dependency-name: google-github-actions/deploy-appengine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…es and workspace comments (#6962) * chore: remove private underscores in names.ts * chore: remove private underscores in workspace comments * chore: format * chore: remove unneeded nulls
…ections (#6961) * chore: remove private underscores in connection and connection_db * chore: remove private underscores in rendererd_connection
Merge pull request #6956 from google/master
Resolves issue #6972
…oard nav and rendering (#6975) * chore: remove underscores in keyboard navigation * chore: remove private underscores from renderers
… fields (#6977) * chore: remove private underscores in field_checkbox * chore: remove private underscores from field_dropdown * chore: remove private underscores in field_image * chore: remove private underscores in field_label * chore: remove private underscores in field_number * chore: format
The 'compareDocumentPosition' call was inherited from Closure Library, in order to work with IE 8 and earlier. Use the more modern 'contains' call instead. This change was originally added here: #1991 Remove the DOCUMENT_POSITION_CONTAINED_BY constant which is not a NodeType and should never have been part of that enum. This change was originally added here: #2736
* fix: non-printable characters in XMl * fix: PR comments * chore: format * chore: move to module-level parser and serializer * chore: reorganize textToDom * chore: add dummy implementations of domParser and xmlSerializer * chore: properly check classes before constructing * chore: fix tests * chore: PR comments * chore: remove null char from tests * chore: docs!
* refactor(blocks): Auto-migration of blocks/lists.js to ts * fix(blocks): Manually migrate & fix types in lists.ts * chore(blocks): format lists.ts Not running clang-format on this as for some reason it decides half way through the file to indent everything after that by an extra four spaces (and then has to re-wrap a bunch of lines that are consequently too long). * refactor(blocks): Improve types in lists.ts It turns out that the way I originally specified the types for the mixins meant that they were all 'any', which is a bit useless. Change them so that tsc actually typechecks properties (including method calls) on the mixed-in blocks, and then fix the numerous additional type errors which doing this revealed. (By "fix", I mean apply "as" casts and "!"s as required to suppress type errors from tsc. Actually fixing the code in a way that makes the blocks meaningfully more bulletproof is left as an exercise to the reader - sorry, I mean: will be dealt with in a future PR.) * fix(blocks): Additional fixes for comments PR #6902
* refactor(blocks): Auto-migration of blocks/loops.js to ts * fix(blocks): Manually migrate types and fix imports in loops.ts * chore: respond to PR comments
* feat: add promise to render queue system * chore: update docs for variables * chore: add export of render management * chore: add tests for resolving render management promises * fix: modify insertion marker manager to use render management promises * chore: format * chore: remove callback from afterQueuedRenders * chore: don't store resolver * chore: rename afterQueuedRenders -> finishQueuedRenders * chore: fix tests
* chore: add top-level inline docs to bubbles icons and inputs * chore: fixup for PR comments
* fix: bubble exports * chore: delete the old bubble
* refactor(blocks): Auto-migration of blocks/procedures.js to ts * fix(blocks): Revert obvious automigration fails in blocks/procedures.js * fix(blocks): Manually migrate & fix types in procecures.ts * fix(blocks): Remove lint * chore(blocks): Format * fix(7192): Corrections for PR #7192
* refactor(blocks): Auto-migration of blocks/blocks.js to ts * fix(blocks): Manually migrate & fix types in blocks.ts * fix(build): Update location of blocks/blocks.ts exports object * fix(blocks): Remove lint * chore(blocks): Format
Migrate the two remaining uses of goog.require in the mocha tests from goog.require to import.
* fix: refactor getCommentIcon to getIcon and remove warning * format & lint (please squash) * revert changes to block_svg.ts until v11
* fix: export the IIcon interface * fix: export ISerializable interface * fix: export IHasBubble interface
* chore: deprecate the minimalist renderer * chore: add renamings
Update the BlockFactory block generator function stub generator to apply recent changes in generator function best practices: - Use languageGenarator instead of Blockly.Language. - Put generator functions in .forBlock dictionary. - Accept (and use) a second argument that is the calling CodeGenerator object. - User Order.ATOMIC enum instead of ORDER_ATOMIC. Also: - Prefix (e.g.) javascriptGenerator and Order with "javascript.". - Use template literals where useful. - DRY up all the non-special field stub code generation.
This is mostly just chore updating to the new import names (e.g. BlocklyJavaScript -> javascript.javascriptGenerator), but the change to Code.checkAllGeneratorFunctionsDefined is a necessary fix due to the breaking change in PR #7150, implementing the .forBlock dictionary.
* chore: add setVisible * chore: format
* chore(messages): npm run messages This is the raw changes made by `npm run messages`, without any manual reverts / backporting. * fix(messages): Backport TranslateWiki hints (with edits) Backport changes made to qqq.json by TranslateWiki editors to messages.json, with some modifications. See https://translatewiki.net/wiki/Template:Optional for details of how the {{Optional}} template works. * chore(messages): Apply backported messages.js changes to qqq.json Also manually revert deletion of translation credits.
* chore: update renamings file for new release * chore: update renamings file for new release * chore: update renamings file for new release
ericblackmonGoogle
requested review from
cpcallen
and removed request for
a team
June 28, 2023 19:30
maribethb
approved these changes
Jun 28, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The basics
npm run format
andnpm run lint
The details
Reason for Changes
Roll-up release of Blocky containing recent changes from develop.