AlexRogalskiy / typescript-tools

Collection of TypeScript tools & utilities
GNU General Public License v3.0
2 stars 0 forks source link

:arrow_up: Updates remark-html to v16 - autoclosed #2331

Closed renovate[bot] closed 9 months ago

renovate[bot] commented 11 months ago

Mend Renovate logo banner

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
remark-html ^13.0.1 -> ^16.0.0 age adoption passing confidence

Release Notes

remarkjs/remark-html (remark-html) ### [`v16.0.1`](https://togithub.com/remarkjs/remark-html/releases/tag/16.0.1) [Compare Source](https://togithub.com/remarkjs/remark-html/compare/16.0.0...16.0.1) - [`e507e9d`](https://togithub.com/remarkjs/remark-html/commit/e507e9d) Fix to add misclassified dependency **Full Changelog**: https://github.com/remarkjs/remark-html/compare/16.0.0...16.0.1 ### [`v16.0.0`](https://togithub.com/remarkjs/remark-html/releases/tag/16.0.0) [Compare Source](https://togithub.com/remarkjs/remark-html/compare/15.0.2...16.0.0) ##### Change - [`c726e74`](https://togithub.com/remarkjs/remark-html/commit/c726e74) Change to require Node.js 16 **migrate**: update too - [`80482a5`](https://togithub.com/remarkjs/remark-html/commit/80482a5) Change to use `exports` **migrate**: don’t use private APIs - [`1946cf3`](https://togithub.com/remarkjs/remark-html/commit/1946cf3) Update `@types/mdast`, utilities, etc **migrate**: update too [`hast-util-sanitize@5`](https://togithub.com/syntax-tree/hast-util-sanitize/releases/tag/5.0.0): everything’s safe, GH is safe, but make sure to check if you’re super worried [`hast-util-to-html@9`](https://togithub.com/syntax-tree/hast-util-to-html/releases/tag/9.0.0): `options.entities` -> `options.characterReferences` [`mdast-util-to-hast@13`](https://togithub.com/syntax-tree/mdast-util-to-hast/releases/tag/13.0.0): handlers are different, if you pass those, see the changelog **Full Changelog**: https://github.com/remarkjs/remark-html/compare/15.0.2...16.0.0 ### [`v15.0.2`](https://togithub.com/remarkjs/remark-html/releases/tag/15.0.2) [Compare Source](https://togithub.com/remarkjs/remark-html/compare/15.0.1...15.0.2) ##### Fix - [`e24b8bd`](https://togithub.com/remarkjs/remark-html/commit/e24b8bd) Fix types for TS 4.9, regenerate them **Full Changelog**: https://github.com/remarkjs/remark-html/compare/15.0.1...15.0.2 ### [`v15.0.1`](https://togithub.com/remarkjs/remark-html/releases/tag/15.0.1) [Compare Source](https://togithub.com/remarkjs/remark-html/compare/15.0.0...15.0.1) - [`ab28821`](https://togithub.com/remarkjs/remark-html/commit/ab28821) Add improved docs by [@​wooorm](https://togithub.com/wooorm) in [https://github.com/remarkjs/remark-html/pull/38](https://togithub.com/remarkjs/remark-html/pull/38) **Full Changelog**: https://github.com/remarkjs/remark-html/compare/15.0.0...15.0.1 ### [`v15.0.0`](https://togithub.com/remarkjs/remark-html/releases/tag/15.0.0) [Compare Source](https://togithub.com/remarkjs/remark-html/compare/14.0.1...15.0.0) - [`995b427`](https://togithub.com/remarkjs/remark-html/commit/995b427) Change footnotes to match [how GitHub renders them](https://github.blog/changelog/2021-09-30-footnotes-now-supported-in-markdown-fields/) - remove `remark-footnotes` if you were using that, and instead use `remark-gfm` - more options available if you switch to `remark-rehype` instead of this plugin `remark-html` **Full Changelog**: https://github.com/remarkjs/remark-html/compare/14.0.1...15.0.0 ### [`v14.0.1`](https://togithub.com/remarkjs/remark-html/releases/tag/14.0.1) [Compare Source](https://togithub.com/remarkjs/remark-html/compare/14.0.0...14.0.1) - [`b75c9dd`](https://togithub.com/remarkjs/remark-html/commit/b75c9dd) **Security**: Fix to sanitize by default The docs have always said `remark-html` is safe by default. It wasn’t and this patches that. If you do want to be unsafe, use `remark-html` with `sanitize: false`: ```diff - .use(remarkHtml) + .use(remarkHtml, {sanitize: false}) ``` **Full Changelog**: https://github.com/remarkjs/remark-html/compare/14.0.0...14.0.1 ### [`v14.0.0`](https://togithub.com/remarkjs/remark-html/releases/tag/14.0.0) [Compare Source](https://togithub.com/remarkjs/remark-html/compare/13.0.2...14.0.0) - [`7ae15b5`](https://togithub.com/remarkjs/remark-html/commit/7ae15b5) Use ESM ```js // From CommonJS var remarkHtml = require('remark-html') // To ESM import remarkHtml from 'remark-html' ``` Learn [more about ESM in this guide](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) - [`7dbad66`](https://togithub.com/remarkjs/remark-html/commit/7dbad66) Add JSDoc based types

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/Moscow, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

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



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 11 months ago

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


changelogg[bot] commented 11 months ago

Hey! Changelogs info seems to be missing or might be in incorrect format. Please use the below template in PR description to ensure Changelogg can detect your changes:

    - (tag) changelog_text
or
```
- tag: changelog_text
```
**OR**
You can add tag in PR header or while doing a commit too
```    
(tag) PR header
```
or
```
tag: PR header
```
Valid tags: **added** / **feat**, **changed**, **deprecated**, **fixed** / **fix**, **removed**, **security**, **build**, **ci**, **chore**, **docs**, **perf**, **refactor**, **revert**, **style**, **test**
Thanks!
For more info, check out [changelogg docs](https://docs.changelogg.io/)
viezly[bot] commented 11 months ago

Pull request by bot. No need to analyze

github-actions[bot] commented 11 months ago

Thanks for opening an issue! Make sure you've followed CONTRIBUTING.md.

github-actions[bot] commented 11 months ago

Hello from PR Helper

Is your PR ready for review and processing? Mark the PR ready by including #pr-ready in a comment.

If you still have work to do, even after marking this ready. Put the PR on hold by including #pr-onhold in a comment.

github-actions[bot] commented 11 months ago

Thanks for the PR!

This section of the codebase is owner by https://github.com/AlexRogalskiy/ - if they write a comment saying "LGTM" then it will be merged.

socket-security[bot] commented 11 months ago

Updated dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
remark-html 13.0.2...16.0.0 None +6/-12 149 kB wooorm