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

Update unified (major) #2855

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

Update unified (major) #2855

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
hast-util-to-string (source) 2.0.0 -> 3.0.0 age adoption passing confidence
hastscript 7.2.0 -> 9.0.0 age adoption passing confidence
react-markdown 8.0.7 -> 9.0.1 age adoption passing confidence
rehype-parse 8.0.5 -> 9.0.0 age adoption passing confidence
rehype-raw 6.1.1 -> 7.0.0 age adoption passing confidence
rehype-slug 5.1.0 -> 6.0.0 age adoption passing confidence
remark-gfm 3.0.1 -> 4.0.0 age adoption passing confidence
unified (source) 10.1.2 -> 11.0.4 age adoption passing confidence

Release Notes

rehypejs/rehype-minify (hast-util-to-string)

v3.0.0

Compare Source

syntax-tree/hastscript (hastscript)

v9.0.0

Compare Source

Breaking
  • 8a5f97e Add better custom element support by tightening overload detection
    (tiny chance of breaking, you’re most likely fine)

v8.0.0

Compare Source

change
  • 04a40a5 Update @types/hast, utilities
    migrate: update too
  • 234405b Change to require Node.js 16
    migrate: update too
  • 7e27d65 Remove hastscript/html (auto runtime) from exports
    migrate: use hastscript
  • 6976cbb Remove hastscript/html, hastscript/svg from exports
    migrate: use hastscript

Full Changelog: syntax-tree/hastscript@7.2.0...8.0.0

remarkjs/react-markdown (react-markdown)

v9.0.1

Compare Source

  • d8e3787 Fix double encoding in new url transform
  • 55d8d83 Refactor docs to use createRoot

Full Changelog: remarkjs/react-markdown@9.0.0...9.0.1

v9.0.0

Compare Source

  • b67d714
    Change to require Node.js 16
    migrate: update too
  • ec2b134
    Change to require React 18
    migrate: update too
  • bf5824f
    Change to use exports
    migrate: don’t use private APIs
  • c383a45
    Update @types/hast, utilities, plugins, etc
    migrate: update too
  • eca5e6b
    08ead9e
    Replace transformImageUri, transformLinkUri w/ urlTransform
    migrate: see “Add urlTransform” below
  • de29396
    Remove linkTarget option
    migrate: see “Remove linkTarget” below
  • 4346276
    Remove support for passing custom props to components
    migrate: see “Remove includeElementIndex”, “Remove rawSourcePos”,
    “Remove sourcePos”, “Remove extra props passed to certain components”
    below
  • c0dfbd6
    Remove UMD bundle from package
    migrate: use esm.sh or a CDN or so
  • e12b5e9
    Remove prop-types
    migrate: use TypeScript
  • 4eb7aa0
    Change to throw errors for removed props
    migrate: don’t pass options that don’t do things
  • 8aabf74
    Change to improve error messages
    migrate: expect better messages
Add urlTransform

The transformImageUri and transformLinkUri were removed.
Having two functions is a bit much, particularly because there are more URLs
you might want to change (or which might be unsafe so we make them safe).
And their name and APIs were a bit weird.
You can use the new urlTransform prop instead to change all your URLs.

Remove linkTarget

The linkTarget option was removed; you should likely not set targets.
If you want to, use
rehype-external-links.

Remove includeElementIndex

The includeElementIndex option was removed, so index is never passed to
components.
Write a plugin to pass index:

Show example of plugin
import {visit} from 'unist-util-visit'

function rehypePluginAddingIndex() {
  /**
   * @​param {import('hast').Root} tree
   * @​returns {undefined}
   */
  return function (tree) {
    visit(tree, function (node, index) {
      if (node.type === 'element' && typeof index === 'number') {
        node.properties === index
      }
    })
  }
}
Remove rawSourcePos

The rawSourcePos option was removed, so sourcePos is never passed to
components.
All components are passed node, so you can get node.position from them.

Remove sourcePos

The sourcePos option was removed, so data-sourcepos is never passed to
elements.
Write a plugin to pass index:

Show example of plugin
import {stringifyPosition} from 'unist-util-stringify-position'
import {visit} from 'unist-util-visit'

function rehypePluginAddingIndex() {
  /**
   * @​param {import('hast').Root} tree
   * @​returns {undefined}
   */
  return function (tree) {
    visit(tree, function (node) {
      if (node.type === 'element') {
        node.properties.dataSourcepos = stringifyPosition(node.position)
      }
    })
  }
}
Remove extra props passed to certain components

When overwriting components, these props are no longer passed:

  • inline on code
    — create a plugin or use pre for the block
  • level on h1, h2, h3, h4, h5, h6
    — check node.tagName instead
  • checked on li
    — check task-list-item class or check props.children
  • index on li
    — create a plugin
  • ordered on li
    — create a plugin or check the parent
  • depth on ol, ul
    — create a plugin
  • ordered on ol, ul
    — check node.tagName instead
  • isHeader on td, th
    — check node.tagName instead
  • isHeader on tr
    — create a plugin or check children
rehypejs/rehype (rehype-parse)

v9.0.0

Compare Source

(see 13.0.0)

rehypejs/rehype-raw (rehype-raw)

v7.0.0

Compare Source

Change
  • cdbb980 Update hast-util-raw, @types/hast
    migrate: update too
  • 9a794bb Change to require Node.js 16
    migrate: update too
  • cd34249 Change to use exports
    migrate: don’t use private APIs

Full Changelog: rehypejs/rehype-raw@6.1.1...7.0.0

rehypejs/rehype-slug (rehype-slug)

v6.0.0

Compare Source

Change
  • 295ac26 Update @types/hast, unified, utilities, etc
    migrate: update too
  • 12f76f8 Change to require Node.js 16
    migrate: update too
  • 6855bcc Change to use exports
    migrate: don’t use private APIs

Full Changelog: rehypejs/rehype-slug@5.1.0...6.0.0

remarkjs/remark-gfm (remark-gfm)

v4.0.0

Compare Source

Change
  • b8cc334 Update @types/mdast, unified, utilities
    migrate: update too
  • 9eb0f54 Change to use exports
    migrate: don’t use private APIs
  • 5715c93 Change to require Node.js 16
    migrate: update too

Full Changelog: remarkjs/remark-gfm@3.0.1...4.0.0

unifiedjs/unified (unified)

v11.0.4

Compare Source

Types

Full Changelog: unifiedjs/unified@11.0.3...11.0.4

v11.0.3

Compare Source

Fix
  • 8dee2ab Fix support for functions in data

Full Changelog: unifiedjs/unified@11.0.2...11.0.3

v11.0.2

Compare Source

  • cea788b Fix type of settings if nothing is registered yet

Full Changelog: unifiedjs/unified@11.0.1...11.0.2

v11.0.1

Compare Source

  • d1a915d Fix incorrect type of settings in presets

Full Changelog: unifiedjs/unified@11.0.0...11.0.1

v11.0.0

Compare Source

Change
  • baf80b2 Change to require Node.js 16
    migrate: update too
  • dd9834a Update @types/unist
    migrate: update too
  • 620ccf9 Update vfile
    migrate: update too
Change (unlikey to affect you)
  • a44db46 Add Data, Settings types to augment shared data
    migrate: if you deal with data, type it, see commit for info
  • fb49556 Change to replace Buffer with Uint8Array
    migrate: you’re probably fine unless you use weird encodings, see commit for details if so
  • f3e71a8 Remove Attacher type
    migrate: use Plugin instead
  • cc53bb6 Remove FrozenProcessor type
    migrate: use Processor instead
  • 1aa3494 Change to yield undefined, not null
    migrate: expect undefined
  • 932c140 Change to use exports
    migrate: don’t use private APIs
  • 8e57478 Remove support for classes as compilers, parsers
    migrate: if you love classes, see commit message
  • 4676814 Remove support for compilers returning nullish
    migrate: nobody did that
  • 807ffb9 Add improved types
    migrate: it’s probably just better if anything changed at all
  • b35afe0 Add useful error on empty presets
    by @​wooorm in https://github.com/unifiedjs/unified/pull/202
  • 6f068a0 Fix to deep clone preset settings
  • 56ee288 Fix non-first parameter merging when reconfiguring plugins
Misc

Full Changelog: unifiedjs/unified@10.1.2...11.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

👻 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 has been generated by Mend Renovate. View repository job log here.

@changeset-bot
Copy link

changeset-bot bot commented Sep 20, 2023

⚠️ No Changeset found

Latest commit: 0ab7a02

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

@codesandbox-ci
Copy link

codesandbox-ci bot commented Sep 20, 2023

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

@vercel
Copy link

vercel bot commented Sep 26, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
ariakit ✅ Ready (Inspect) Visit Preview Dec 6, 2023 8:32pm
1 Ignored Deployment
Name Status Preview Updated (UTC)
reakit ⬜️ Ignored (Inspect) Visit Preview Dec 6, 2023 8:32pm

@renovate renovate bot force-pushed the renovate/major-unified branch from bba61c7 to 2652301 Compare May 14, 2024 16:23
@renovate renovate bot force-pushed the renovate/major-unified branch from 2652301 to fa41ec9 Compare May 14, 2024 21:24
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.

None yet

0 participants