Comparing version 6.3.5 to 7.0.0
@@ -1,10 +0,21 @@ | ||
# Changelog | ||
# [7.0.0](https://github.com/Brooooooklyn/snappy/compare/v1.0.2...v7.0.0) (2021-08-04) | ||
## v6 | ||
- Drop support for 0.10 & 0.12 | ||
- update snappy version | ||
Change package name to `snappy` [#16](https://github.com/Brooooooklyn/snappy/issues/16) . | ||
## v5 | ||
## [1.0.2](https://github.com/Brooooooklyn/snappy/compare/v1.0.1...v1.0.2) (2021-07-22) | ||
- Drop support for iojs & node 0.8 | ||
- bugfixes | ||
### Bug Fixes | ||
- linux aarch64 musl build ([1a9a475](https://github.com/Brooooooklyn/snappy/commit/1a9a475c2aef170abfd9e1e4d8eeb4d955384fa0)) | ||
## [1.0.1](https://github.com/Brooooooklyn/snappy/compare/v1.0.0...v1.0.1) (2021-06-10) | ||
### Performance Improvements | ||
- mimalloc as global allocator ([3fbab59](https://github.com/Brooooooklyn/snappy/commit/3fbab59ba2c095bb1b2a819eb3445ca06fc743c4)) | ||
# [1.0.0](https://github.com/Brooooooklyn/snappy/compare/df2ccd289ca2418504aff3a8fd65cc75c34ce6d8...v1.0.0) (2021-06-10) | ||
### Features | ||
- implement compress and uncompress ([df2ccd2](https://github.com/Brooooooklyn/snappy/commit/df2ccd289ca2418504aff3a8fd65cc75c34ce6d8)) |
162
package.json
{ | ||
"author": "David Björklund <david.bjorklund@gmail.com>", | ||
"name": "snappy", | ||
"description": "Nodejs bindings to Google's Snappy compression library", | ||
"version": "6.3.5", | ||
"homepage": "https://github.com/kesla/node-snappy", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/kesla/node-snappy.git" | ||
"version": "7.0.0", | ||
"description": "Fastest Snappy compression library in Node.js", | ||
"main": "index.js", | ||
"repository": "https://github.com/Brooooooklyn/snappy", | ||
"license": "MIT", | ||
"keywords": [ | ||
"snappy", | ||
"snap", | ||
"compression", | ||
"compress", | ||
"napi-rs", | ||
"NAPI", | ||
"N-API", | ||
"Rust", | ||
"Node-API", | ||
"node-addon", | ||
"node-addon-api" | ||
], | ||
"files": [ | ||
"index.d.ts", | ||
"index.js" | ||
], | ||
"napi": { | ||
"name": "snappy", | ||
"triples": { | ||
"defaults": true, | ||
"additional": [ | ||
"x86_64-unknown-linux-musl", | ||
"aarch64-unknown-linux-gnu", | ||
"i686-pc-windows-msvc", | ||
"armv7-unknown-linux-gnueabihf", | ||
"aarch64-apple-darwin", | ||
"aarch64-linux-android", | ||
"x86_64-unknown-freebsd", | ||
"aarch64-unknown-linux-musl", | ||
"aarch64-pc-windows-msvc" | ||
] | ||
} | ||
}, | ||
"main": "snappy.js", | ||
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org/", | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"pretest": "node-gyp rebuild", | ||
"test": "nyc ava test.js && semistandard | snazzy && prebuild-ci", | ||
"install": "prebuild-install || node-gyp rebuild", | ||
"rebuild": "prebuild --compile", | ||
"prebuild": "prebuild --all --strip --verbose", | ||
"prepublishOnly": "tsc" | ||
"artifacts": "napi artifacts", | ||
"bench": "node -r @swc-node/register benchmark/bench.ts", | ||
"build": "napi build --platform --release", | ||
"build:debug": "napi build --platform", | ||
"format": "run-p format:md format:json format:yaml format:source format:rs", | ||
"format:md": "prettier --parser markdown --write \"./**/*.md\"", | ||
"format:json": "prettier --parser json --write \"./**/*.json\"", | ||
"format:rs": "cargo fmt", | ||
"format:source": "prettier --config ./package.json --write \"./**/*.{js,ts}\"", | ||
"format:yaml": "prettier --parser yaml --write \"./**/*.{yml,yaml}\"", | ||
"lint": "eslint -c ./.eslintrc.yml .", | ||
"prepublishOnly": "napi prepublish -t npm && node ./rename-optional-deps.js", | ||
"test": "ava", | ||
"version": "napi version && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md" | ||
}, | ||
"devDependencies": { | ||
"@napi-rs/cli": "^1.1.0", | ||
"@swc-node/register": "^1.3.3", | ||
"@typescript-eslint/eslint-plugin": "^4.29.0", | ||
"@typescript-eslint/parser": "^4.29.0", | ||
"ava": "^3.15.0", | ||
"benny": "^3.6.15", | ||
"chalk": "^4.1.2", | ||
"conventional-changelog-cli": "^2.1.1", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-prettier": "^3.4.0", | ||
"eslint-plugin-sonarjs": "^0.9.1", | ||
"husky": "^7.0.1", | ||
"lint-staged": "^11.1.1", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.3.2", | ||
"typescript": "^4.3.5" | ||
}, | ||
"dependencies": { | ||
"bindings": "^1.3.1", | ||
"nan": "^2.14.1", | ||
"prebuild-install": "5.3.0" | ||
"@node-rs/helper": "^1.2.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^13.13.1", | ||
"ava": "^0.25.0", | ||
"bluebird": "^3.5.3", | ||
"nyc": "^11.9.0", | ||
"prebuild": "^8.2.1", | ||
"prebuild-ci": "^2.3.0", | ||
"semistandard": "^11.0.0", | ||
"snazzy": "^7.1.1" | ||
"lint-staged": { | ||
"*.@(js|ts|tsx)": [ | ||
"prettier --write", | ||
"eslint -c .eslintrc.yml --fix" | ||
], | ||
"*.@(yml|yaml)": [ | ||
"prettier --parser yaml --write" | ||
], | ||
"*.md": [ | ||
"prettier --parser markdown --write" | ||
], | ||
"*.json": [ | ||
"prettier --parser json --write" | ||
] | ||
}, | ||
"gypfile": true, | ||
"bugs": { | ||
"url": "https://github.com/kesla/node-snappy/issues" | ||
"ava": { | ||
"require": [ | ||
"@swc-node/register" | ||
], | ||
"extensions": [ | ||
"ts" | ||
], | ||
"environmentVariables": { | ||
"TS_NODE_PROJECT": "./tsconfig.json" | ||
} | ||
}, | ||
"license": "MIT" | ||
} | ||
"prettier": { | ||
"printWidth": 120, | ||
"semi": false, | ||
"trailingComma": "all", | ||
"singleQuote": true, | ||
"arrowParens": "always", | ||
"parser": "typescript" | ||
}, | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/Brooooooklyn" | ||
}, | ||
"optionalDependencies": { | ||
"@napi-rs/snappy-win32-x64-msvc": "^7.0.0", | ||
"@napi-rs/snappy-darwin-x64": "^7.0.0", | ||
"@napi-rs/snappy-linux-x64-gnu": "^7.0.0", | ||
"@napi-rs/snappy-linux-x64-musl": "^7.0.0", | ||
"@napi-rs/snappy-linux-arm64-gnu": "^7.0.0", | ||
"@napi-rs/snappy-win32-ia32-msvc": "^7.0.0", | ||
"@napi-rs/snappy-linux-arm-gnueabihf": "^7.0.0", | ||
"@napi-rs/snappy-darwin-arm64": "^7.0.0", | ||
"@napi-rs/snappy-android-arm64": "^7.0.0", | ||
"@napi-rs/snappy-freebsd-x64": "^7.0.0", | ||
"@napi-rs/snappy-linux-arm64-musl": "^7.0.0", | ||
"@napi-rs/snappy-win32-arm64-msvc": "^7.0.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
0
9679
13
18
310795
6
21
2
1
107
1
2
+ Added@node-rs/helper@^1.2.1
+ Added@napi-rs/snappy-android-arm64@7.2.2(transitive)
+ Added@napi-rs/snappy-darwin-arm64@7.2.2(transitive)
+ Added@napi-rs/snappy-darwin-x64@7.2.2(transitive)
+ Added@napi-rs/snappy-freebsd-x64@7.2.2(transitive)
+ Added@napi-rs/snappy-linux-arm-gnueabihf@7.2.2(transitive)
+ Added@napi-rs/snappy-linux-arm64-gnu@7.2.2(transitive)
+ Added@napi-rs/snappy-linux-arm64-musl@7.2.2(transitive)
+ Added@napi-rs/snappy-linux-x64-gnu@7.2.2(transitive)
+ Added@napi-rs/snappy-linux-x64-musl@7.2.2(transitive)
+ Added@napi-rs/snappy-win32-arm64-msvc@7.2.2(transitive)
+ Added@napi-rs/snappy-win32-ia32-msvc@7.2.2(transitive)
+ Added@napi-rs/snappy-win32-x64-msvc@7.2.2(transitive)
+ Added@napi-rs/triples@1.2.0(transitive)
+ Added@node-rs/helper@1.6.0(transitive)
- Removedbindings@^1.3.1
- Removednan@^2.14.1
- Removedprebuild-install@5.3.0
- Removedansi-regex@2.1.1(transitive)
- Removedaproba@1.2.0(transitive)
- Removedare-we-there-yet@1.1.7(transitive)
- Removedbindings@1.5.0(transitive)
- Removedbl@1.2.3(transitive)
- Removedbuffer-alloc@1.2.0(transitive)
- Removedbuffer-alloc-unsafe@1.1.0(transitive)
- Removedbuffer-fill@1.0.0(transitive)
- Removedchownr@1.1.4(transitive)
- Removedcode-point-at@1.1.0(transitive)
- Removedconsole-control-strings@1.1.0(transitive)
- Removedcore-util-is@1.0.3(transitive)
- Removeddecompress-response@3.3.0(transitive)
- Removeddeep-extend@0.6.0(transitive)
- Removeddelegates@1.0.0(transitive)
- Removeddetect-libc@1.0.3(transitive)
- Removedend-of-stream@1.4.4(transitive)
- Removedexpand-template@2.0.3(transitive)
- Removedfile-uri-to-path@1.0.0(transitive)
- Removedfs-constants@1.0.0(transitive)
- Removedgauge@2.7.4(transitive)
- Removedgithub-from-package@0.0.0(transitive)
- Removedhas-unicode@2.0.1(transitive)
- Removedinherits@2.0.4(transitive)
- Removedini@1.3.8(transitive)
- Removedis-fullwidth-code-point@1.0.0(transitive)
- Removedisarray@1.0.0(transitive)
- Removedmimic-response@1.0.1(transitive)
- Removedminimist@1.2.8(transitive)
- Removedmkdirp@0.5.6(transitive)
- Removednan@2.22.0(transitive)
- Removednapi-build-utils@1.0.2(transitive)
- Removednode-abi@2.30.1(transitive)
- Removednoop-logger@0.1.1(transitive)
- Removednpmlog@4.1.2(transitive)
- Removednumber-is-nan@1.0.1(transitive)
- Removedobject-assign@4.1.1(transitive)
- Removedonce@1.4.0(transitive)
- Removedos-homedir@1.0.2(transitive)
- Removedprebuild-install@5.3.0(transitive)
- Removedprocess-nextick-args@2.0.1(transitive)
- Removedpump@1.0.32.0.1(transitive)
- Removedrc@1.2.8(transitive)
- Removedreadable-stream@2.3.8(transitive)
- Removedsafe-buffer@5.1.2(transitive)
- Removedsemver@5.7.2(transitive)
- Removedset-blocking@2.0.0(transitive)
- Removedsignal-exit@3.0.7(transitive)
- Removedsimple-concat@1.0.1(transitive)
- Removedsimple-get@2.8.2(transitive)
- Removedstring-width@1.0.2(transitive)
- Removedstring_decoder@1.1.1(transitive)
- Removedstrip-ansi@3.0.1(transitive)
- Removedstrip-json-comments@2.0.1(transitive)
- Removedtar-fs@1.16.3(transitive)
- Removedtar-stream@1.6.2(transitive)
- Removedto-buffer@1.1.1(transitive)
- Removedtunnel-agent@0.6.0(transitive)
- Removedutil-deprecate@1.0.2(transitive)
- Removedwhich-pm-runs@1.1.0(transitive)
- Removedwide-align@1.1.5(transitive)
- Removedwrappy@1.0.2(transitive)
- Removedxtend@4.0.2(transitive)