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 all dependencies #407

Closed
wants to merge 1 commit into from
Closed

Conversation

ggrossetie
Copy link
Member

@ggrossetie ggrossetie commented Mar 27, 2023

This PR contains the following updates:

Package Type Update Change
@asciidoctor/core peerDependencies major ~2.2 -> ~3.0.0
@asciidoctor/core devDependencies major ^2.2 -> ^3.0.0
chai (source) devDependencies patch 4.3.7 -> 4.3.8
mkdirp dependencies major 2.1.3 -> 3.0.1
node volta major 16.20.1 -> 18.17.1
puppeteer devDependencies major 20.8.0 -> 21.1.1
ruby (source) patch 3.2.0 -> 3.2.2

Release Notes

asciidoctor/asciidoctor.js

v3.0.2

Compare Source

Summary

This release is based on Asciidoctor 2.0.20 and Opal 1.7.3.

Release meta

Released on: 2023-06-24
Released by: @​Mogztter
Published by: GitHub Actions

Logs: full diff

Changelog

Breaking Changes
  • Remove Asciidoctor namespace in TypeScript:

    import asciidoctor, { Document } from '@​asciidoctor/core'
    
    const Asciidoctor = asciidoctor()
    Asciidoctor.convert('Hello _world_')
  • Publish @asciidoctor/core as an ES6 module

Bug Fixes
  • Strip alternate BOM that uses char code 65279 when input passes through a Buffer (#​1344)
  • Map Document.append (#​1681)
  • Bridge converter pass as option (#​1666)
  • Add getSectionNumeral() function by @​benjaminleonard (#​1659)
  • Fix getDocinfo and findBy type definition (#​1621)
  • Bridge common Ruby object methods (#​1491)
  • parseContent now calls toHash on attrs (#​1519)
Improvements
  • Map this.super.<method> to call the parent function (#​1682)

  • Map AbstractBlock.getContentModel and AbstractBlock.setContentModel (#​1680)

  • Map Document.getSyntaxHighlighter (#​1667)

  • Map CompositeConverter#convert (#​1649)

  • Simplify table option checks by @​mojavelinux (#​1656)

  • Support Stream.Writable as to_file (#​1624)

    const data = []
    const writableStream = new Writable({
      write (chunk, encoding, callback) {
        data.push(chunk.toString())
        callback()
      }
    })
    const doc = Asciidoctor.convert(text, { to_file: writableStream, safe: safe })
    const html = data.join('')
Infrastructure
Documentation

New Contributors

v3.0.1

Compare Source

v3.0.0

Compare Source

chaijs/chai

v4.3.8

Compare Source

What's Changed
New Contributors

Full Changelog: chaijs/chai@v4.3.7...v4.3.8

isaacs/node-mkdirp

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.1.6

Compare Source

v2.1.5

Compare Source

v2.1.4

Compare Source

nodejs/node

v18.17.1

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in August 2023 Security Releases blog post.

Commits

v18.17.0

Compare Source

Notable Changes
Ada 2.0

Node.js v18.17.0 comes with the latest version of the URL parser, Ada. This update brings significant performance improvements
to URL parsing, including enhancements to the url.domainToASCII and url.domainToUnicode functions in node:url.

Ada 2.0 has been integrated into the Node.js codebase, ensuring that all parts of the application can benefit from the
improved performance. Additionally, Ada 2.0 features a significant performance boost over its predecessor, Ada 1.0.4,
while also eliminating the need for the ICU requirement for URL hostname parsing.

Contributed by Yagiz Nizipli and Daniel Lemire in #​47339

Web Crypto API

Web Crypto API functions' arguments are now coerced and validated as per their WebIDL definitions like in other Web Crypto API implementations.
This further improves interoperability with other implementations of Web Crypto API.

Contributed by Filip Skokan in #​46067

  • crypto:
    • update root certificates to NSS 3.89 (Node.js GitHub Bot) #​47659
  • dns:
    • (SEMVER-MINOR) expose getDefaultResultOrder (btea) #​46973
  • doc:
    • add ovflowd to collaborators (Claudio Wunder) #​47844
    • add KhafraDev to collaborators (Matthew Aitken) #​47510
  • events:
    • (SEMVER-MINOR) add getMaxListeners method (Matthew Aitken) #​47039
  • fs:
    • (SEMVER-MINOR) add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) #​47084
    • (SEMVER-MINOR) add recursive option to readdir and opendir (Ethan Arrowood) #​41439
    • (SEMVER-MINOR) add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) #​47084
    • (SEMVER-MINOR) implement byob mode for readableWebStream() (Debadree Chatterjee) #​46933
  • http:
    • (SEMVER-MINOR) prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) #​47732
    • (SEMVER-MINOR) remove internal error in assignSocket (Matteo Collina) #​47723
    • (SEMVER-MINOR) add highWaterMark opt in http.createServer (HinataKah0) #​47405
  • lib:
    • (SEMVER-MINOR) add webstreams to Duplex.from() (Debadree Chatterjee) #​46190
    • (SEMVER-MINOR) implement AbortSignal.any() (Chemi Atlow) #​47821
  • module:
    • change default resolver to not throw on unknown scheme (Gil Tayar) #​47824
  • node-api:
    • (SEMVER-MINOR) define version 9 (Chengzhong Wu) #​48151
    • (SEMVER-MINOR) deprecate napi_module_register (Vladimir Morozov) #​46319
  • stream:
    • (SEMVER-MINOR) preserve object mode in compose (Raz Luvaton) #​47413
    • (SEMVER-MINOR) add setter & getter for default highWaterMark (#​46929) (Robert Nagy) #​46929
  • test:
    • unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) #​48078
  • test_runner:
    • (SEMVER-MINOR) add shorthands to test (Chemi Atlow) #​47909
    • (SEMVER-MINOR) support combining coverage reports (Colin Ihrig) #​47686
    • (SEMVER-MINOR) execute before hook on test (Chemi Atlow) #​47586
    • (SEMVER-MINOR) expose reporter for use in run api (Chemi Atlow) #​47238
  • tools:
    • update LICENSE and license-builder.sh (Santiago Gimeno) #​48078
  • url:
    • (SEMVER-MINOR) implement URL.canParse (Matthew Aitken) #​47179
  • wasi:
    • (SEMVER-MINOR) no longer require flag to enable wasi (Michael Dawson) #​47286
Commits

Configuration

📅 Schedule: "before 3am on the first day of the month" (UTC).

🚦 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, click this checkbox.

This PR has been generated by Renovate Bot.

@ggrossetie ggrossetie force-pushed the renovate/all branch 3 times, most recently from ae78cb5 to 1251b6a Compare April 4, 2023 02:26
@ggrossetie ggrossetie force-pushed the renovate/all branch 2 times, most recently from 842b8b0 to 3b237cc Compare April 9, 2023 22:07
@ggrossetie ggrossetie force-pushed the renovate/all branch 2 times, most recently from 8d6dbfd to 3d62eb9 Compare April 18, 2023 02:21
@ggrossetie ggrossetie changed the title Update all dependencies chore(deps): update all dependencies Apr 21, 2023
@ggrossetie ggrossetie force-pushed the renovate/all branch 3 times, most recently from a7d9ccd to 7708e7a Compare April 25, 2023 02:23
@ggrossetie ggrossetie force-pushed the renovate/all branch 4 times, most recently from b8d949b to 234a83f Compare May 9, 2023 02:23
@ggrossetie ggrossetie force-pushed the renovate/all branch 2 times, most recently from b045c6f to 875ef43 Compare May 17, 2023 02:23
@ggrossetie ggrossetie force-pushed the renovate/all branch 4 times, most recently from f412c25 to ddc4a51 Compare May 26, 2023 02:27
@ggrossetie ggrossetie force-pushed the renovate/all branch 2 times, most recently from 3a436d9 to ff43023 Compare June 1, 2023 02:47
@ggrossetie ggrossetie force-pushed the renovate/all branch 3 times, most recently from f20451f to 4b66719 Compare June 17, 2023 02:26
@ggrossetie ggrossetie force-pushed the renovate/all branch 3 times, most recently from 06ff3af to a3d23ed Compare June 25, 2023 02:42
@ggrossetie ggrossetie force-pushed the renovate/all branch 3 times, most recently from f1963ba to 5ae3b95 Compare July 12, 2023 02:37
@ggrossetie ggrossetie force-pushed the renovate/all branch 3 times, most recently from 5f116cb to 489bcaf Compare July 21, 2023 02:26
@ggrossetie ggrossetie force-pushed the renovate/all branch 3 times, most recently from ef6a182 to 4abfd4b Compare August 9, 2023 02:22
@ggrossetie ggrossetie force-pushed the renovate/all branch 2 times, most recently from b09eed4 to 50b17f0 Compare August 12, 2023 02:13
@ggrossetie ggrossetie force-pushed the renovate/all branch 2 times, most recently from b670c3a to 388d18d Compare August 25, 2023 02:14
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.

1 participant