Skip to content

Bump @udecode/plate-core and tinacms#52

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/multi-dcc178778b
Open

Bump @udecode/plate-core and tinacms#52
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/multi-dcc178778b

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 20, 2024

Bumps @udecode/plate-core to 21.5.1 and updates ancestor dependency tinacms. These dependencies need to be updated together.

Updates @udecode/plate-core from 14.4.2 to 21.5.1

Changelog

Sourced from @​udecode/plate-core's changelog.

@​udecode/plate-core

38.0.6

Patch Changes

  • d30471cb19577e53c20944ab66eab2a7ef3b3ad2 by @​12joan – Mitigate XSS in element.attributes by requiring all attribute names to be allowlisted in the node.dangerouslyAllowAttributes plugin configuration option.

    Migration:

    For each plugin that needs to support passing DOM attributes using element.attributes, add the list of allowed attributes to the node.dangerouslyAllowAttributes option of the plugin.

    const ImagePlugin = createPlatePlugin({
      key: 'image',
      node: {
        isElement: true,
        isVoid: true,
        dangerouslyAllowAttributes: ['alt'],
      },
    });

    To modify existing plugins, use the extend method as follows:

    const MyImagePlugin = ImagePlugin.extend({
      node: {
        dangerouslyAllowAttributes: ['alt'],
      },
    });

    WARNING: Improper use of dangerouslyAllowAttributes WILL make your application vulnerable to cross-site scripting (XSS) or information exposure attacks. Ensure you carefully research the security implications of any attribute before adding it. For example, the src and href attributes will allow attackers to execute arbitrary code, and the style and background attributes will allow attackers to leak users' IP addresses.

38.0.4

38.0.3

38.0.2

Patch Changes

38.0.1

Patch Changes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by 12joan, a new releaser for @​udecode/plate-core since your current version.


Updates tinacms from 1.1.2 to 1.6.7

Changelog

Sourced from tinacms's changelog.

1.6.7

Patch Changes

  • 82ab066: upgrade vulnerable packages in example project, test project and peer dependency packages

1.6.6

Patch Changes

  • a9b461c: updated 'file has changes' indicator ui
  • 3034430: Make padding between collection list page and singular pages consistent. Ensure navigation bar padding does not overlap with the burger icon on collection singular pages
  • 171f5a5: Fix collections body not working with smaller screens
  • fd216f3: updated TinaCloud auth modal text
  • d004af2: improve error message by adding emoji
  • 20f972a: Fix collections header styling for smaller screens
  • 2a36b65: Remove unnecessary usage of @​react-hook/window-size
  • f26b40d: Allow customization of accepted media types in media manager
  • Updated dependencies [f26b40d]
    • @​tinacms/schema-tools@​1.4.18
    • @​tinacms/mdx@​1.3.27
    • @​tinacms/search@​1.0.22

1.6.5

Patch Changes

  • 04f0bf3: CMS - Fix broken link in error message of CMS startup. Broken link was replaced by https://tina.io/docs/tina-cloud/overview
  • 0503072: update ts, remove rimraf, fix types
  • 1104006: Update tailwind to v3.4.4 + fix media manager height overflow on mobile screens
  • Updated dependencies [0503072]
  • Updated dependencies [dffa355]
    • @​tinacms/mdx@​1.3.26
    • @​tinacms/schema-tools@​1.4.17
    • @​tinacms/search@​1.0.21
    • @​tinacms/sharedctx@​1.0.3

1.6.4

Patch Changes

  • 2e3393ef5: Implement Create folder feature for tinacms.
  • Updated dependencies [2e3393ef5]
    • @​tinacms/schema-tools@​1.4.16
    • @​tinacms/mdx@​1.3.25
    • @​tinacms/search@​1.0.20
    • @​tinacms/sharedctx@​1.0.2

1.6.3

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [@udecode/plate-core](https://github.com/udecode/plate/tree/HEAD/packages/core) to 21.5.1 and updates ancestor dependency [tinacms](https://github.com/tinacms/tinacms/tree/HEAD/packages/tinacms). These dependencies need to be updated together.


Updates `@udecode/plate-core` from 14.4.2 to 21.5.1
- [Release notes](https://github.com/udecode/plate/releases)
- [Changelog](https://github.com/udecode/plate/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/udecode/plate/commits/HEAD/packages/core)

Updates `tinacms` from 1.1.2 to 1.6.7
- [Release notes](https://github.com/tinacms/tinacms/releases)
- [Changelog](https://github.com/tinacms/tinacms/blob/main/packages/tinacms/CHANGELOG.md)
- [Commits](https://github.com/tinacms/tinacms/commits/HEAD/packages/tinacms)

---
updated-dependencies:
- dependency-name: "@udecode/plate-core"
  dependency-type: indirect
- dependency-name: tinacms
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 20, 2024
@netlify
Copy link

netlify bot commented Sep 20, 2024

Deploy Preview for gaeblog failed. Why did it fail? →

Name Link
🔨 Latest commit ecd1661
🔍 Latest deploy log https://app.netlify.com/sites/gaeblog/deploys/66ed89ff552df8000874c044

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

Comments