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

chore(deps): update dependency @remirror/core to v3 #239

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@remirror/core (source) ^2.0.19 -> ^3.0.1 age adoption passing confidence

Release Notes

remirror/remirror (@​remirror/core)

v3.0.1

2024-08-01

Patch Changes
  • 38f997d: Expose the previous versions of Remirror's decorators with a legacy prefix, so users who are unable to use Stage 3 decorators are not blocked updating to Remirror v3.

v3.0.0

2024-07-30

Major Changes
  • f6185b9: Remove deprecated command dry run function isEnabled, use enabled instead.

    const { toggleBold } = useCommands();
    
    const handleClick = useCallback(() => {
      if (toggleBold.isEnabled()) {
        toggleBold();
      }
    }, [toggleBold]);
    const { toggleBold } = useCommands();
    
    const handleClick = useCallback(() => {
    -  if (toggleBold.isEnabled()) {
    +  if (toggleBold.enabled()) {
        toggleBold();
      }
    }, [toggleBold]);
  • f6185b9: Based on community feedback, we have decided to decouple the core of Remirror from Lingui, an internationalisation (a.k.a. i18n) library.

    Thereby making it possible to use any i18n solution with Remirror 🙌🙌🙌.

    N.B. To use the translatable strings provided by Remirror, the i18n library you use needs to support ICU message formatting.

    This change aims to make it easier to use Remirror in existing applications, by not imposing our architectural decisions on to you.

    There are example integrations with many different i18n libraries in our Storybook.

NOTE: "Out-of-the-box" editors unaffected

If you are using editors provided by the @remirror/react-editors package, you are unaffected by these changes. These editors have been updated to keep existing behaviour.


Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

Copy link

changeset-bot bot commented Jan 1, 2025

⚠️ No Changeset found

Latest commit: fd2fad5

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants