Skip to content

Commit

Permalink
feat: added support for Node v22 (#1132)
Browse files Browse the repository at this point in the history
refs INSTA-2790
  • Loading branch information
kirrg001 authored Apr 30, 2024
1 parent 4ba06eb commit 6d08f43
Show file tree
Hide file tree
Showing 16 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ https://github.com/instana/nodejs/pull/529
We deliver prebuilds of native dependencies for every supported Node version in our releases.

You can find the ABI (NODE_MODULE_VERSION) [here](https://nodejs.org/en/download/releases/).
They removed the ABI versions from this page. You can read it from [this link](https://github.com/nodejs/node/blob/main/doc/abi_version_registry.json) for now.

#### shared-metrics package

Expand Down
1 change: 1 addition & 0 deletions native-dep-packs/rebuild-precompiled-addons.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ declare -A ABI_VERSIONS=( \
["108"]="18.18.2" \
["115"]="20.3.0" \
["120"]="21.2.0" \
["127"]="22.0.0" \
)

LIBC_VARIANTS=( \
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions packages/core/test/tracing/supportedVersion_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ describe('supported versions for Node.js auto tracing', () => {
expect(supportedTracingVersion('18.1.1')).to.equal(true);
expect(supportedTracingVersion('20.0.0')).to.equal(true);
expect(supportedTracingVersion('21.2.0')).to.equal(true);
expect(supportedTracingVersion('22.0.0')).to.equal(true);
});

it('must report various Node.js versions as not supported', () => {
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 6d08f43

Please sign in to comment.