Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #312

Merged
merged 1 commit into from
Dec 14, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 1, 2024

RicardoGEsteves all-non-major update, dependency @blocknote/core to v0.21.0

This PR contains the following updates:

Package Type Update Change OpenSSF New value Package file References
@blocknote/core dependencies minor ^0.19.0 -> ^0.21.0 OpenSSF Scorecard ^0.21.0 package.json source
@blocknote/react dependencies minor ^0.19.0 -> ^0.21.0 OpenSSF Scorecard ^0.21.0 package.json source
@radix-ui/react-avatar (source) dependencies patch 1.1.1 -> 1.1.2 OpenSSF Scorecard ^1.0.4 package.json homepage, source
@radix-ui/react-dialog (source) dependencies patch 1.1.2 -> 1.1.3 OpenSSF Scorecard ^1.0.5 package.json homepage, source
@radix-ui/react-dropdown-menu (source) dependencies patch 2.1.2 -> 2.1.3 OpenSSF Scorecard ^2.0.6 package.json homepage, source
@radix-ui/react-label (source) dependencies patch 2.1.0 -> 2.1.1 OpenSSF Scorecard ^2.0.2 package.json homepage, source
@radix-ui/react-slot (source) dependencies patch 1.1.0 -> 1.1.1 OpenSSF Scorecard ^1.0.2 package.json homepage, source
@radix-ui/react-toast (source) dependencies patch 1.2.2 -> 1.2.3 OpenSSF Scorecard ^1.1.5 package.json homepage, source
@tanstack/react-query (source) dependencies minor 5.60.5 -> 5.62.7 OpenSSF Scorecard ^5.59.19 package.json homepage, source
@types/node (source) devDependencies minor 22.9.0 -> 22.10.2 OpenSSF Scorecard 22.10.2 package.json homepage, source
@types/react (source) devDependencies patch 18.3.12 -> 18.3.16 OpenSSF Scorecard 18.3.16 package.json homepage, source
@types/react-dom (source) devDependencies patch 18.3.1 -> 18.3.5 OpenSSF Scorecard 18.3.5 package.json homepage, source
axios (source) dependencies patch 1.7.7 -> 1.7.9 OpenSSF Scorecard ^1.7.7 package.json homepage, source
class-variance-authority dependencies patch 0.7.0 -> 0.7.1 OpenSSF Scorecard ^0.7.0 package.json source
eslint-config-next (source) devDependencies minor 15.0.3 -> 15.1.0 OpenSSF Scorecard 15.1.0 package.json homepage, source
lucide-react (source) dependencies minor ^0.460.0 -> ^0.468.0 OpenSSF Scorecard ^0.468.0 package.json homepage, source
next (source) dependencies minor 15.0.3 -> 15.1.0 OpenSSF Scorecard ^15.0.2 package.json homepage, source
next-auth (source) dependencies patch 4.24.10 -> 4.24.11 OpenSSF Scorecard ^4.24.6 package.json homepage, source
react-hook-form (source) dependencies minor 7.53.2 -> 7.54.1 OpenSSF Scorecard ^7.52.0 package.json homepage, source
tailwind-merge dependencies patch 2.5.4 -> 2.5.5 OpenSSF Scorecard ^2.5.4 package.json source
tailwindcss (source) devDependencies patch 3.4.15 -> 3.4.16 OpenSSF Scorecard 3.4.16 package.json homepage, source
typescript (source) devDependencies minor 5.6.3 -> 5.7.2 OpenSSF Scorecard 5.7.2 package.json homepage, source
zod (source) dependencies minor 3.23.8 -> 3.24.1 OpenSSF Scorecard ^3.23.8 package.json homepage, source

Release Notes

TypeCellOS/BlockNote (@​blocknote/core)

v0.21.0

Compare Source

💖 Various bug fixes in this release have been sponsored by DINUM 🇫🇷 and ZenDiS 🇩🇪

This release brings new bug fixes and a few improvements to blocks. Most notably:

  • Resizing UX for images and videos has been improved, and their widths are no longer set to 0 when they're rendered outside the viewport.
  • Issues with exporting file blocks to HTML have been fixed:
    • src attribute not being set on image/video/audio elements.
    • Error when attempting to export using the ServerBlockNoteEditor.
  • The UX for links has been improved:
    • Cmd/Ctrl+K now opens the popover for creating a new link in the formatting toolbar.
    • Typing on the edges of a link will no longer extend it.
  • Pasting tables to other editors now works properly.

What's Changed

New Contributors

Full Changelog: TypeCellOS/BlockNote@v0.20.0...v0.21.0

v0.20.0

Compare Source

💖 Moving blocks as well as indentation & toolbar navigation changes have been sponsored by DINUM 🇫🇷 and ZenDiS 🇩🇪
💖 Table cell navigation changes have been sponsored by DeepOrigin💖

Moving blocks
moveBlocksUp/moveBlocksDown methods [Breaking]

The previously undocumented moveBlockUp & moveBlockDown methods have been renamed to moveBlocksUp & moveBlocksDown as they now support selections that span multiple blocks.

Additionally, their behaviour is now more inline with Notion and they now work better with "column" and "columnList" blocks from the @blocknote/xl-multi-column package.

Docs have also been added for both methods.

Keyboard shortcuts

The Cmd+Shift+Up/Cmd+Shift+Down keyboard shortcuts (Ctrl+Shift+Up/Ctrl+Shift+Down for Windows) previously used the moveBlockUp & moveBlockDown methods, which are now moveBlocksUp & moveBlocksDown. This means that all the changes mentioned above also apply to those shortcuts.

Improved Tab/Shift+Tab handling
Indentation & toolbar navigation

Previously, while the formatting or link toolbars were open, Tab & Shift+Tab was used to navigate them for keyboard accessibility. In order to use Tab/Shift+Tab to indent/unindent the selected blocks, the user would have to first hit Escape to close the toolbar(s). However, they would then immediately reopen, which would be frustrating when trying to move blocks up/down multiple nesting levels.

Now, the formatting and link toolbars remain closed after indenting/unindenting with Tab/Shift+Tab.

Additionally, setting the new tab-behaviour editor option to "prefer-indent" will cause Tab/Shift+Tab to always indent/unindent the selected blocks, regardless of any open toolbars. Note that this will make the toolbars no longer keyboard accessible.

Table cell navigation

Tab/Shift+Tab now navigate through cells when the selection is inside a table block, instead of indenting/unindenting the block.

Updated editor methods
getBlock

Previously could only get regular blocks, now also works with "column" and "columnList" blocks from the @blocknote/xl-multi-column package.

getSelection [Breaking]

Previously, getSelection().blocks would return blocks spanned by the selection at all nesting levels, meaning the returned array would contain both a block and its descendants.

Now, in most cases, only blocks are added at the lowest nesting level of those spanned, though this works slightly differently when the block in which the selection starts is nested deeper than other blocks spanned. In either case, if a block is in the returned array, none of its descendants will be.

It's recommended to play around with the selected blocks demo or check the source code to understand the changes made to getSelection in depth.

New editor methods
getPrevBlock

Docs reference

getNextBlock

Docs reference

getParentBlock

Docs reference

setSelection

Docs reference

What's Changed
New Contributors

Full Changelog: TypeCellOS/BlockNote@v0.19.2...v0.20.0

v0.19.2

Compare Source

Another bugfix release - this time focusing on UX.

What's Changed
New Contributors

Full Changelog: TypeCellOS/BlockNote@v0.19.0...v0.19.2

radix-ui/primitives (@​radix-ui/react-avatar)

v1.1.2

Compare Source

TanStack/query (@​tanstack/react-query)

v5.62.7

Compare Source

Version 5.62.7 - 12/10/24, 7:04 PM

Changes

Fix
  • query-core: respect initialData for queryClient.ensureQueryData (#​8425) (465906a) by Dominik Dorfmeister
Chore

Packages

v5.62.3

Compare Source

v5.62.2

Compare Source

Version 5.62.2 - 12/3/24, 7:29 AM

Changes

Fix
  • types: Fix type errors when using fully-typed inputs like QueryFilters<Data, Error>, and test all QueryClient methods to detect similar issues (#​8375) (175757a) by Nick Lucas

Packages

v5.62.1

Compare Source

Version 5.62.1 - 12/2/24, 6:40 PM

Changes
Fix
  • eslint-plugin-query: handle non-null at then end of var in exhaustive-deps (#​8385) (d9d2728) by Parbez
Chore
  • angular-query: update examples to typescript 5.7 (#​8374) (b7bad3d) by Arnoud
Test
  • query-core: add type check tests for queryObserver (#​8304) (12b6782) by Sol Lee
Packages

v5.62.0

Compare Source

Version 5.62.0 - 11/29/24, 1:03 PM

Changes

Feat
  • types: Include optional TError on DataTag (#​8361) (0fa1f01) by Nick Lucas
Chore
  • angular-query: update example dev containers to node 22 (#​8370) (f245792) by Arnoud

Packages

v5.61.5

Compare Source

Version 5.61.5 - 11/27/24, 8:09 AM

Changes
Fix
  • types: Add types for QueryFilters which flow down to Query<> and QueryKey/DataTag types (#​8332) (422c879) by Nick Lucas
Ci
  • disable max report age in codecov (#​8354) (d28de3c) by Leonardo Montini
Packages

v5.61.4

Compare Source

Version 5.61.4 - 11/26/24, 1:39 PM

Changes

Fix
  • QueriesObserver: fix improper sorting in QueriesObserver"s #find… (#​8351) (3b7556f) by Jonathan Toung
Chore

Packages

v5.61.3

Compare Source

v5.61.0

Compare Source

Version 5.61.0 - 11/20/24, 1:01 PM

Changes

Feat
Fix
  • types: make sure queryOptions are passable to UseQueryOptions (#​8317) (3fa4b7c) by Dominik Dorfmeister
Docs
  • angular-query: update queryOptions documentation (#​8311) (6a9edbf) by Arnoud

Packages

v5.60.6

Compare Source

Version 5.60.6 - 11/19/24, 10:17 AM

Changes

Refactor
Other

Packages

axios/axios (axios)

v1.7.9

Compare Source

Reverts
Contributors to this release

v1.7.8

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added @blocknote/core all-non-major dependencies Pull requests that update a dependency file major minor patch labels Dec 1, 2024
@renovate renovate bot enabled auto-merge (squash) December 1, 2024 01:58
@renovate renovate bot force-pushed the renovate/all-non-major branch 13 times, most recently from 3c5654a to cba1aa2 Compare December 7, 2024 02:05
@renovate renovate bot force-pushed the renovate/all-non-major branch 9 times, most recently from d9c1ffa to e83f748 Compare December 12, 2024 23:21
@renovate renovate bot force-pushed the renovate/all-non-major branch from e83f748 to 03cbd6b Compare December 13, 2024 02:18
@renovate renovate bot force-pushed the renovate/all-non-major branch from 03cbd6b to f7213b3 Compare December 13, 2024 17:01
@renovate renovate bot merged commit a5a422d into main Dec 14, 2024
2 checks passed
@renovate renovate bot deleted the renovate/all-non-major branch December 14, 2024 10:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant