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

build(deps): bump the npm group across 1 directory with 6 updates #120

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 2, 2025

Bumps the npm group with 6 updates in the / directory:

Package From To
node-addon-api 7.1.1 8.3.0
node-gyp-build 4.8.2 4.8.4
@commitlint/cli 19.2.2 19.6.1
@commitlint/config-conventional 19.2.2 19.6.0
tree-sitter-cli 0.22.5 0.25.1
web-tree-sitter 0.22.5 0.25.1

Updates node-addon-api from 7.1.1 to 8.3.0

Release notes

Sourced from node-addon-api's releases.

node-addon-api: v8.1.0

8.1.0 (2024-07-05)

Features

Bug Fixes

  • fix compilation for Visual Studio 2022 (#1492) (e011720)
  • restore ability to run under NAPI_EXPERIMENTAL (#1409) (40bcb09)
Changelog

Sourced from node-addon-api's changelog.

8.3.0 (2024-11-29)

Features

8.2.2 (2024-11-07)

Bug Fixes

  • mark external memory and version APIs as basic (#1597) (78da4fa)
  • missing napi_delete_reference on ObjectWrap ref (#1607) (98aae33)

8.2.1 (2024-10-09)

Bug Fixes

8.2.0 (2024-09-19)

Features

  • add support for nogc types via BasicEnv (#1514) (b4aeecb)
  • add support for requiring basic finalizers (#1568) (7bcb826)

Bug Fixes

  • call base basic finalizer if none defined (#1574) (294a43f)

8.1.0 (2024-07-05)

Features

Bug Fixes

  • fix compilation for Visual Studio 2022 (#1492) (e011720)
  • restore ability to run under NAPI_EXPERIMENTAL (#1409) (40bcb09)

... (truncated)

Commits

Updates node-gyp-build from 4.8.2 to 4.8.4

Commits

Updates @commitlint/cli from 19.2.2 to 19.6.1

Release notes

Sourced from @​commitlint/cli's releases.

v19.6.1

19.6.1 (2024-12-15)

Bug Fixes

Chore & docs

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.6.0...v19.6.1

v19.6.0

19.6.0 (2024-11-19)

Features

Chore, Docs, etc

Full Changelog: conventional-changelog/commitlint@v19.5.0...v19.6.0

New Contributors

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

19.6.0 (2024-11-19)

Note: Version bump only for package @​commitlint/cli

19.5.0 (2024-09-11)

Features

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/cli

19.4.0 (2024-08-07)

Features

19.3.0 (2024-04-23)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 19.2.2 to 19.6.0

Release notes

Sourced from @​commitlint/config-conventional's releases.

v19.6.0

19.6.0 (2024-11-19)

Features

Chore, Docs, etc

Full Changelog: conventional-changelog/commitlint@v19.5.0...v19.6.0

New Contributors

v19.5.0

19.5.0 (2024-09-11)

Features

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.4.1...v19.5.0

v19.4.1

... (truncated)

Changelog

Sourced from @​commitlint/config-conventional's changelog.

19.6.0 (2024-11-19)

Note: Version bump only for package @​commitlint/config-conventional

19.5.0 (2024-09-11)

Note: Version bump only for package @​commitlint/config-conventional

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates tree-sitter-cli from 0.22.5 to 0.25.1

Release notes

Sourced from tree-sitter-cli's releases.

v0.25.1

No release notes provided.

v0.25.0

Changelog

[0.25.0] — 2025-02-01

Notices

This is a large release. As such, a few major changes and how to adapt to them are outlined below:

  • web-tree-sitter was rewritten in TypeScript. With that, we also now publish the sourcemaps, and debug builds for the library. We also publish both CommonJS and ESM modules.
  • The internal ABI was bumped to 15. The main benefits this brings is that the language name, version, supertype info, and reserved words are added to the parsers. To use ABI 15, you must have a tree-sitter.json file in your repository, since the version information for the parser is pulled from this file.
  • Parsing and Querying should be cancelled using the "progress callback", rather than setting a timeout or a cancellation flag, which are now deprecated. To do so, use the "parse/query with options" function in the bindings you choose to use, in the next release the old way of timing out parsing will be removed, which allows us to get rid of our dependency on the time.h headers in the core library.
  • MISSING nodes can now be queried, and queries involving supertypes are properly validated now.
  • The ts_node_child_containing_descendant function was removed; use ts_node_child_with_descendant instead (which has nearly the same behavior but can also return descendant.)
  • TSInput now includes a (mandatory) new field DecodeFunction, which allows passing a custom decode function. To use the builtin function, pass NULL.
  • In the DSL, there is now a RustRegex function, which takes in a Rust regex as a string. All of the capabilities of Rust's regex engine are available here, which allows for some nice features that aren't possible with JavaScript regexes.
  • We've migrated our documentation to mdBook, and greatly improved the docs.

Breaking

Features

... (truncated)

Commits
  • f5afe47 build: bump version to 0.25.1
  • f20d4b0 docs: correct build steps for WASM files
  • 05d443a style(rust): correct doc comments
  • eed662d fix(bindings): correct Zig bindings to expose a language function
  • 9ad096e fix(lib): prevent finished_tree assertion failure
  • ac8a4ba ci: use ubuntu-22.04 for x64 builds
  • c2221f2 feat(cli): specify abi version via env var
  • 16aaed7 build: update authors
  • a115e51 feat(web): include C source files for debugging
  • 060e69e build(web): relocate source files in WASM sourcemap
  • Additional commits viewable in compare view

Updates web-tree-sitter from 0.22.5 to 0.25.1

Release notes

Sourced from web-tree-sitter's releases.

v0.25.1

No release notes provided.

v0.25.0

Changelog

[0.25.0] — 2025-02-01

Notices

This is a large release. As such, a few major changes and how to adapt to them are outlined below:

  • web-tree-sitter was rewritten in TypeScript. With that, we also now publish the sourcemaps, and debug builds for the library. We also publish both CommonJS and ESM modules.
  • The internal ABI was bumped to 15. The main benefits this brings is that the language name, version, supertype info, and reserved words are added to the parsers. To use ABI 15, you must have a tree-sitter.json file in your repository, since the version information for the parser is pulled from this file.
  • Parsing and Querying should be cancelled using the "progress callback", rather than setting a timeout or a cancellation flag, which are now deprecated. To do so, use the "parse/query with options" function in the bindings you choose to use, in the next release the old way of timing out parsing will be removed, which allows us to get rid of our dependency on the time.h headers in the core library.
  • MISSING nodes can now be queried, and queries involving supertypes are properly validated now.
  • The ts_node_child_containing_descendant function was removed; use ts_node_child_with_descendant instead (which has nearly the same behavior but can also return descendant.)
  • TSInput now includes a (mandatory) new field DecodeFunction, which allows passing a custom decode function. To use the builtin function, pass NULL.
  • In the DSL, there is now a RustRegex function, which takes in a Rust regex as a string. All of the capabilities of Rust's regex engine are available here, which allows for some nice features that aren't possible with JavaScript regexes.
  • We've migrated our documentation to mdBook, and greatly improved the docs.

Breaking

Features

... (truncated)

Commits
  • f5afe47 build: bump version to 0.25.1
  • f20d4b0 docs: correct build steps for WASM files
  • 05d443a style(rust): correct doc comments
  • eed662d fix(bindings): correct Zig bindings to expose a language function
  • 9ad096e fix(lib): prevent finished_tree assertion failure
  • ac8a4ba ci: use ubuntu-22.04 for x64 builds
  • c2221f2 feat(cli): specify abi version via env var
  • 16aaed7 build: update authors
  • a115e51 feat(web): include C source files for debugging
  • 060e69e build(web): relocate source files in WASM sourcemap
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [node-addon-api](https://github.com/nodejs/node-addon-api) | `7.1.1` | `8.3.0` |
| [node-gyp-build](https://github.com/prebuild/node-gyp-build) | `4.8.2` | `4.8.4` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.2.2` | `19.6.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.2.2` | `19.6.0` |
| [tree-sitter-cli](https://github.com/tree-sitter/tree-sitter) | `0.22.5` | `0.25.1` |
| [web-tree-sitter](https://github.com/tree-sitter/tree-sitter) | `0.22.5` | `0.25.1` |



Updates `node-addon-api` from 7.1.1 to 8.3.0
- [Release notes](https://github.com/nodejs/node-addon-api/releases)
- [Changelog](https://github.com/nodejs/node-addon-api/blob/main/CHANGELOG.md)
- [Commits](nodejs/node-addon-api@v7.1.1...v8.3.0)

Updates `node-gyp-build` from 4.8.2 to 4.8.4
- [Commits](prebuild/node-gyp-build@v4.8.2...v4.8.4)

Updates `@commitlint/cli` from 19.2.2 to 19.6.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.6.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 19.2.2 to 19.6.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.6.0/@commitlint/config-conventional)

Updates `tree-sitter-cli` from 0.22.5 to 0.25.1
- [Release notes](https://github.com/tree-sitter/tree-sitter/releases)
- [Commits](tree-sitter/tree-sitter@v0.22.5...v0.25.1)

Updates `web-tree-sitter` from 0.22.5 to 0.25.1
- [Release notes](https://github.com/tree-sitter/tree-sitter/releases)
- [Commits](tree-sitter/tree-sitter@v0.22.5...v0.25.1)

---
updated-dependencies:
- dependency-name: node-addon-api
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: node-gyp-build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: tree-sitter-cli
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: web-tree-sitter
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 2, 2025

The following labels could not be found: dependencies.

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