16 KiB
Executable File
16 KiB
Executable File
node-pre-gyp changelog
1.0.11
- Fixes dependabot alert CVE-2021-44906
1.0.10
- Upgraded minimist to 1.2.6 to address dependabot alert CVE-2021-44906
1.0.9
- Upgraded node-fetch to 2.6.7 to address CVE-2022-0235
- Upgraded detect-libc to 2.0.0 to use non-blocking NodeJS(>=12) Report API
1.0.8
- Downgraded npmlog to maintain node v10 and v8 support (https://github.com/mapbox/node-pre-gyp/pull/624)
1.0.7
- Upgraded nyc and npmlog to address https://github.com/advisories/GHSA-93q8-gq69-wqmw
1.0.6
- Added node v17 to the internal node releases listing
- Upgraded various dependencies declared in package.json to latest major versions (node-fetch from 2.6.1 to 2.6.5, npmlog from 4.1.2 to 5.01, semver from 7.3.4 to 7.3.5, and tar from 6.1.0 to 6.1.11)
- Fixed bug in
staging_hostparameter (https://github.com/mapbox/node-pre-gyp/pull/590)
1.0.5
- Fix circular reference warning with node >= v14
1.0.4
- Added node v16 to the internal node releases listing
1.0.3
- Improved support configuring s3 uploads (solves https://github.com/mapbox/node-pre-gyp/issues/571)
- New options added in https://github.com/mapbox/node-pre-gyp/pull/576: 'bucket', 'region', and
s3ForcePathStyle
- New options added in https://github.com/mapbox/node-pre-gyp/pull/576: 'bucket', 'region', and
1.0.2
- Fixed regression in proxy support (https://github.com/mapbox/node-pre-gyp/issues/572)
1.0.1
- Switched from mkdirp@1.0.4 to make-dir@3.1.0 to avoid this bug: https://github.com/isaacs/node-mkdirp/issues/31
1.0.0
- Module is now name-spaced at
@mapbox/node-pre-gypand the originalnode-pre-gypis deprecated. - New: support for staging and production s3 targets (see README.md)
- BREAKING: no longer supporting
node_pre_gyp_accessKeyId&node_pre_gyp_secretAccessKey, useAWS_ACCESS_KEY_ID&AWS_SECRET_ACCESS_KEYinstead to authenticate against s3 forinfo,publish, andunpublishcommands. - Dropped node v6 support, added node v14 support
- Switched tests to use mapbox-owned bucket for testing
- Added coverage tracking and linting with eslint
- Added back support for symlinks inside the tarball
- Upgraded all test apps to N-API/node-addon-api
- New: support for staging and production s3 targets (see README.md)
- Added
node_pre_gyp_s3_hostenv var which has priority over the--s3_hostoption or default. - Replaced needle with node-fetch
- Added proxy support for node-fetch
- Upgraded to mkdirp@1.x
0.17.0
- Got travis + appveyor green again
- Added support for more node versions
0.16.0
- Added Node 15 support in the local database (https://github.com/mapbox/node-pre-gyp/pull/520)
0.15.0
- Bump dependency on
mkdirpfrom^0.5.1to^0.5.3(https://github.com/mapbox/node-pre-gyp/pull/492) - Bump dependency on
needlefrom^2.2.1to^2.5.0(https://github.com/mapbox/node-pre-gyp/pull/502) - Added Node 14 support in the local database (https://github.com/mapbox/node-pre-gyp/pull/501)
0.14.0
- Defer modules requires in napi.js (https://github.com/mapbox/node-pre-gyp/pull/434)
- Bump dependency on
tarfrom^4to^4.4.2(https://github.com/mapbox/node-pre-gyp/pull/454) - Support extracting compiled binary from local offline mirror (https://github.com/mapbox/node-pre-gyp/pull/459)
- Added Node 13 support in the local database (https://github.com/mapbox/node-pre-gyp/pull/483)
0.13.0
- Added Node 12 support in the local database (https://github.com/mapbox/node-pre-gyp/pull/449)
0.12.0
- Fixed double-build problem with node v10 (https://github.com/mapbox/node-pre-gyp/pull/428)
- Added node 11 support in the local database (https://github.com/mapbox/node-pre-gyp/pull/422)
0.11.0
- Fixed double-install problem with node v10
- Significant N-API improvements (https://github.com/mapbox/node-pre-gyp/pull/405)
0.10.3
- Now will use
requestoverneedleif request is installed. By defaultneedleis used forhttps. This should unbreak proxy support that regressed in v0.9.0
0.10.2
- Fixed rc/deep-extent security vulnerability
- Fixed broken reinstall script do to incorrectly named get_best_napi_version
0.10.1
- Fix needle error event (@medns)
0.10.0
- Allow for a single-level module path when packing @allenluce (https://github.com/mapbox/node-pre-gyp/pull/371)
- Log warnings instead of errors when falling back @xzyfer (https://github.com/mapbox/node-pre-gyp/pull/366)
- Add Node.js v10 support to tests (https://github.com/mapbox/node-pre-gyp/pull/372)
- Remove retire.js from CI (https://github.com/mapbox/node-pre-gyp/pull/372)
- Remove support for Node.js v4 due to EOL on April 30th, 2018
- Update appveyor tests to install default NPM version instead of NPM v2.x for all Windows builds (https://github.com/mapbox/node-pre-gyp/pull/375)
0.9.1
- Fixed regression (in v0.9.0) with support for http redirects @allenluce (https://github.com/mapbox/node-pre-gyp/pull/361)
0.9.0
- Switched from using
requesttoneedleto reduce size of module deps (https://github.com/mapbox/node-pre-gyp/pull/350)
0.8.0
- N-API support (@inspiredware)
0.7.1
- Upgraded to tar v4.x
0.7.0
- Updated request and hawk (#347)
- Dropped node v0.10.x support
0.6.40
- Improved error reporting if an install fails
0.6.39
- Support for node v9
- Support for versioning on
{libc}to allow binaries to work on non-glic linux systems like alpine linux
0.6.38
- Maintaining compatibility (for v0.6.x series) with node v0.10.x
0.6.37
- Solved one part of #276: now now deduce the node ABI from the major version for node >= 2 even when not stored in the abi_crosswalk.json
- Fixed docs to avoid mentioning the deprecated and dangerous
prepublishin package.json (#291) - Add new node versions to crosswalk
- Ported tests to use tape instead of mocha
- Got appveyor tests passing by downgrading npm and node-gyp
0.6.36
- Removed the running of
testbinaryduring install. Because this was regressed for so long, it is too dangerous to re-enable by default. Developers needing validation can callnode-pre-gyp testbinarydirectory. - Fixed regression in v0.6.35 for electron installs (now skipping binary validation which is not yet supported for electron)
0.6.35
- No longer recommending
npm lsinprepublish(#291) - Fixed testbinary command (#283) @szdavid92
0.6.34
- Added new node versions to crosswalk, including v8
- Upgraded deps to latest versions, started using
^instead of~for all deps.
0.6.33
- Improved support for yarn
0.6.32
- Honor npm configuration for CA bundles (@heikkipora)
- Add node-pre-gyp and npm versions to user agent (@addaleax)
- Updated various deps
- Add known node version for v7.x
0.6.31
- Updated various deps
0.6.30
- Update to npmlog@4.x and semver@5.3.x
- Add known node version for v6.5.0
0.6.29
- Add known node versions for v0.10.45, v0.12.14, v4.4.4, v5.11.1, and v6.1.0
0.6.28
- Now more verbose when remote binaries are not available. This is needed since npm is increasingly more quiet by default and users need to know why builds are falling back to source compiles that might then error out.
0.6.27
- Add known node version for node v6
- Stopped bundling dependencies
- Documented method for module authors to avoid bundling node-pre-gyp
- See https://github.com/mapbox/node-pre-gyp/tree/master#configuring for details
0.6.26
- Skip validation for nw runtime (https://github.com/mapbox/node-pre-gyp/pull/181) via @fleg
0.6.25
- Improved support for auto-detection of electron runtime in
node-pre-gyp.find()- Pull request from @enlight - https://github.com/mapbox/node-pre-gyp/pull/187
- Add known node version for 4.4.1 and 5.9.1
0.6.24
- Add known node version for 5.8.0, 5.9.0, and 4.4.0.
0.6.23
- Add known node version for 0.10.43, 0.12.11, 4.3.2, and 5.7.1.
0.6.22
- Add known node version for 4.3.1, and 5.7.0.
0.6.21
- Add known node version for 0.10.42, 0.12.10, 4.3.0, and 5.6.0.
0.6.20
- Add known node version for 4.2.5, 4.2.6, 5.4.0, 5.4.1,and 5.5.0.
0.6.19
- Add known node version for 4.2.4
0.6.18
- Add new known node versions for 0.10.x, 0.12.x, 4.x, and 5.x
0.6.17
- Re-tagged to fix packaging problem of
Error: Cannot find module 'isarray'
0.6.16
- Added known version in crosswalk for 5.1.0.
0.6.15
- Upgraded tar-pack (https://github.com/mapbox/node-pre-gyp/issues/182)
- Support custom binary hosting mirror (https://github.com/mapbox/node-pre-gyp/pull/170)
- Added known version in crosswalk for 4.2.2.
0.6.14
- Added node 5.x version
0.6.13
- Added more known node 4.x versions
0.6.12
- Added support for Electron. Just pass the
--runtime=electronflag when building/installing. Thanks @zcbenz
0.6.11
- Added known node and io.js versions including more 3.x and 4.x versions
0.6.10
- Added known node and io.js versions including 3.x and 4.x versions
- Upgraded
tardep
0.6.9
- Upgraded
rcdep - Updated known io.js version: v2.4.0
0.6.8
- Upgraded
semverandrimrafdeps - Updated known node and io.js versions
0.6.7
- Fixed
node_abiversions for io.js 1.1.x -> 1.8.x (should be 43, but was stored as 42) (refs https://github.com/iojs/build/issues/94)
0.6.6
- Updated with known io.js 2.0.0 version
0.6.5
- Now respecting
npm_config_node_gyp(https://github.com/npm/npm/pull/4887) - Updated to semver@4.3.2
- Updated known node v0.12.x versions and io.js 1.x versions.
0.6.4
- Improved support for
io.js(@fengmk2) - Test coverage improvements (@mikemorris)
- Fixed support for
--dist-urlthat regressed in 0.6.3
0.6.3
- Added support for passing raw options to node-gyp using
--separator. Flags passed after the--tonode-pre-gyp configurewill be passed directly to gyp while flags passed after the--will be passed directly to make/visual studio. - Added
node-pre-gyp configurecommand to be able to callnode-gyp configuredirectly - Fix issue with require validation not working on windows 7 (@edgarsilva)
0.6.2
- Support for io.js >= v1.0.2
- Deferred require of
requestandtarto help speed up command line usage ofnode-pre-gyp.
0.6.1
- Fixed bundled
tarversion
0.6.0
- BREAKING: node odd releases like v0.11.x now use
major.minor.patchfor{node_abi}instead ofNODE_MODULE_VERSION(#124) - Added support for
toolsetoption in versioning. By default is an empty string but--toolsetcan be passed to publish or install to select alternative binaries that target a custom toolset like C++11. For example to target Visual Studio 2014 modules like node-sqlite3 use--toolset=v140. - Added support for
--no-rollbackoption to request that a failed binary test does not remove the binary module leaves it in place. - Added support for
--update-binaryoption to request an existing binary be re-installed and the check for a valid local module be skipped. - Added support for passing build options from
npmthroughnode-pre-gyptonode-gyp:--nodedir,--disturl,--python, and--msvs_version
0.5.31
- Added support for deducing node_abi for node.js runtime from previous release if the series is even
- Added support for --target=0.10.33
0.5.30
- Repackaged with latest bundled deps
0.5.29
- Added support for semver
build. - Fixed support for downloading from urls that include
+.
0.5.28
- Now reporting unix style paths only in reveal command
0.5.27
- Fixed support for auto-detecting s3 bucket name when it contains
.- @taavo - Fixed support for installing when path contains a
'- @halfdan - Ported tests to mocha
0.5.26
- Fix node-webkit support when
--targetoption is not provided
0.5.25
- Fix bundling of deps
0.5.24
- Updated ABI crosswalk to incldue node v0.10.30 and v0.10.31
0.5.23
- Added
revealcommand. Pass no options to get all versioning data as json. Pass a second arg to grab a single versioned property value - Added support for
--silent(shortcut for--loglevel=silent)
0.5.22
- Fixed node-webkit versioning name (NOTE: node-webkit support still experimental)
0.5.21
- New package to fix
shasum check failederror with v0.5.20
0.5.20
- Now versioning node-webkit binaries based on major.minor.patch - assuming no compatible ABI across versions (#90)
0.5.19
- Updated to know about more node-webkit releases
0.5.18
- Updated to know about more node-webkit releases
0.5.17
- Updated to know about node v0.10.29 release
0.5.16
- Now supporting all aws-sdk configuration parameters (http://docs.aws.amazon.com/AWSJavaScriptSDK/guide/node-configuring.html) (#86)
0.5.15
- Fixed installation of windows packages sub directories on unix systems (#84)
0.5.14
- Finished support for cross building using
--target_platformoption (#82) - Now skipping binary validation on install if target arch/platform do not match the host.
- Removed multi-arch validing for OS X since it required a FAT node.js binary
0.5.13
- Fix problem in 0.5.12 whereby the wrong versions of mkdirp and semver where bundled.
0.5.12
- Improved support for node-webkit (@Mithgol)
0.5.11
- Updated target versions listing
0.5.10
- Fixed handling of
-debugflag passed directory to node-pre-gyp (#72) - Added optional second arg to
node_pre_gyp.findto customize the default versioning options used to locate the runtime binary - Failed install due to
testbinarycheck failure no longer leaves behind binary (#70)
0.5.9
- Fixed regression in
testbinarycommand causing installs to fail on windows with 0.5.7 (#60)
0.5.8
- Started bundling deps
0.5.7
- Fixed the
testbinarycheck, which is used to determine whether to re-download or source compile, to work even in complex dependency situations (#63) - Exposed the internal
testbinarycommand in node-pre-gyp command line tool - Fixed minor bug so that
fallback_to_buildoption is always respected
0.5.6
- Added support for versioning on the
namevalue inpackage.json(#57). - Moved to using streams for reading tarball when publishing (#52)
0.5.5
- Improved binary validation that also now works with node-webkit (@Mithgol)
- Upgraded test apps to work with node v0.11.x
- Improved test coverage
0.5.4
- No longer depends on external install of node-gyp for compiling builds.
0.5.3
- Reverted fix for debian/nodejs since it broke windows (#45)
0.5.2
- Support for debian systems where the node binary is named
nodejs(#45) - Added
bin/node-pre-gyp.cmdto be able to run command on windows locally (npm creates an .npm automatically when globally installed) - Updated abi-crosswalk with node v0.10.26 entry.
0.5.1
- Various minor bug fixes, several improving windows support for publishing.
0.5.0
- Changed property names in
binaryobject: now required aremodule_name,module_path, andhost. - Now
module_pathsupports versioning, which allows developers to opt-in to using a versioned install path (#18). - Added
remote_pathwhich also supports versioning. - Changed
remote_uritohost.
0.4.2
- Added support for
--targetflag to request cross-compile against a specific node/node-webkit version. - Added preliminary support for node-webkit
- Fixed support for
--target_archoption being respected in all cases.
0.4.1
- Fixed exception when only stderr is available in binary test (@bendi / #31)
0.4.0
- Enforce only
https:based remote publishing access. - Added
node-pre-gyp infocommand to display listing of published binaries - Added support for changing the directory node-pre-gyp should build in with the
-C/--directoryoption. - Added support for S3 prefixes.
0.3.1
- Added
unpublishcommand. - Fixed module path construction in tests.
- Added ability to disable falling back to build behavior via
npm install --fallback-to-build=falsewhich overrides setting in a depedencies package.jsoninstalltarget.
0.3.0
- Support for packaging all files in
module_pathdirectory - seeapp4for example - Added
testpackagecommand. - Changed
cleancommand to only delete.nodenot entirebuilddirectory since node-gyp will handle that. .nodemodules must be in a folder of there own since tar-pack will remove everything when it unpacks.