diff --git a/docs/compatibility.asciidoc b/docs/compatibility.asciidoc index 331b8acc851..b481605f786 100644 --- a/docs/compatibility.asciidoc +++ b/docs/compatibility.asciidoc @@ -15,7 +15,6 @@ image::https://raw.githubusercontent.com/nodejs/Release/master/schedule.png[] Some versions of Node.js contain bugs or issues that limit our ability to instrument them correctly. The following versions of Node.js are known to not be fully instrumented: -- v10.x - Async/Await in Node.js 10 is currently buggy and can therefore not be supported (https://github.com/nodejs/node/issues/20516:[nodejs/node#20516]) - v8.1.x - Recommended solution: Upgrade to v8.2.0 or higher to get full support - v8.0.x - Recommended solution: Upgrade to v8.2.0 or higher to get full support diff --git a/test/instrumentation/modules/hapi.js b/test/instrumentation/modules/hapi.js index 3deaf7d75f8..ed7010f6fbf 100644 --- a/test/instrumentation/modules/hapi.js +++ b/test/instrumentation/modules/hapi.js @@ -13,9 +13,6 @@ var semver = require('semver') // hapi 17+ requires Node.js 8.9.0 or higher if (semver.lt(process.version, '8.9.0') && semver.gte(pkg.version, '17.0.0')) process.exit() -// hapi does not work on Node.js 10 because of https://github.com/nodejs/node/issues/20516 -if (semver.gte(process.version, '10.0.0-rc')) process.exit() - var http = require('http') var Hapi = require('hapi')