From c2d224ca3800f43bcffdc940bb1112f5f0b79e82 Mon Sep 17 00:00:00 2001 From: hyj1991 Date: Sat, 22 Oct 2022 12:42:03 +0800 Subject: [PATCH] Release 2.3.0 Commits: - [2f700fd] docs: update readme (#207) - [f4eb960] feat: support node-v19.x (#206) - [333593e] chore: make test more reliable (#205) - [c574ca2] feat: save Elf BuildId in corefile. (#204) - [b779aa2] feat: support finish profiling before process exit (#203) - [6a1701f] refactor: replace dump actions static storages with EnvironmentData (#202) - [7608a86] fix: ignore clean error (#200) - [2a6eaba] chore: static dispatch on dumpaction (#199) - [7d3fbb2] optimize: take action (#198) PR-URL: https://github.com/X-Profiler/xprofiler/pull/208 --- package.json | 8 ++++---- scripts/versions.js | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 060d586..36bf190 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xprofiler", - "version": "2.2.0", + "version": "2.3.0", "description": "node.js addon to output runtime logs", "bin": { "xprofctl": "bin/xprofctl" @@ -59,17 +59,17 @@ "moment": "^2.29.4", "nan": "^2.17.0", "uuid": "^9.0.0", - "yargs": "^17.5.1" + "yargs": "^17.6.0" }, "devDependencies": { "@istanbuljs/schema": "^0.1.3", "autod": "^3.1.2", "clang-format": "^1.8.0", "codecov": "^3.8.3", - "eslint": "^8.23.1", + "eslint": "^8.26.0", "expect.js": "^0.3.1", "mm": "^3.2.0", - "mocha": "^10.0.0", + "mocha": "^10.1.0", "nyc": "^15.1.0" }, "xctlIpcPath": { diff --git a/scripts/versions.js b/scripts/versions.js index eaace8f..780fb3e 100644 --- a/scripts/versions.js +++ b/scripts/versions.js @@ -5,10 +5,11 @@ exports.os7u = [ 'node-v13.14.0', 'node-v14.20.1', 'node-v15.14.0', - 'node-v16.17.1', + 'node-v16.18.0', 'node-v17.9.1', ]; exports.os8u = [ - 'node-v18.10.0', + 'node-v18.11.0', + 'node-v19.0.0', ];