@serialport/binding-abstract
Advanced tools
Comparing version 8.0.4 to 8.0.6
105
CHANGELOG.md
@@ -6,107 +6,4 @@ # Change Log | ||
## [8.0.4](https://github.com/serialport/node-serialport/compare/v8.0.3...v8.0.4) (2019-10-27) | ||
## [8.0.6](https://github.com/serialport/node-serialport/compare/v8.0.5...v8.0.6) (2019-12-25) | ||
### Bug Fixes | ||
* learn now needs the package-lock.json files ([4b8fc24](https://github.com/serialport/node-serialport/commit/4b8fc248778b69f7afde17ab9ef791ef8867c4a5)) | ||
* npmignore should ignore .DS_Store files ([#1954](https://github.com/serialport/node-serialport/issues/1954)) ([eb6b57b](https://github.com/serialport/node-serialport/commit/eb6b57bffe33c9bc7775bb6b0fdf1081db86ebcc)) | ||
## [8.0.3](https://github.com/serialport/node-serialport/compare/v8.0.2...v8.0.3) (2019-10-03) | ||
### Bug Fixes | ||
* enabling disabled tests rename all pkgs to lib ([#1941](https://github.com/serialport/node-serialport/issues/1941)) ([b1cc840](https://github.com/serialport/node-serialport/commit/b1cc840)) | ||
## [8.0.1](https://github.com/serialport/node-serialport/compare/v6.2.2...v8.0.1) (2019-09-18) | ||
### Bug Fixes | ||
* bindings now error when closed during empty writes ([#1872](https://github.com/serialport/node-serialport/issues/1872)) ([9d01492](https://github.com/serialport/node-serialport/commit/9d01492)) | ||
* stream read not working past 1 read ([#1925](https://github.com/serialport/node-serialport/issues/1925)) ([3a13279](https://github.com/serialport/node-serialport/commit/3a13279)) | ||
### chore | ||
* remove node6 support and upgrade codebase ([#1851](https://github.com/serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/serialport/node-serialport/commit/d4f15c0)) | ||
### BREAKING CHANGES | ||
* bindings now use async functions so they’ll never throw, only reject | ||
# [3.0.0](https://github.com/serialport/node-serialport/compare/@serialport/binding-abstract@2.0.5...@serialport/binding-abstract@3.0.0) (2019-05-16) | ||
### chore | ||
* remove node6 support and upgrade codebase ([#1851](https://github.com/serialport/node-serialport/issues/1851)) ([d4f15c0](https://github.com/serialport/node-serialport/commit/d4f15c0)) | ||
### BREAKING CHANGES | ||
* bindings now use async functions so they’ll never throw, only reject | ||
## [2.0.5](https://github.com/serialport/node-serialport/compare/@serialport/binding-abstract@2.0.4...@serialport/binding-abstract@2.0.5) (2019-04-27) | ||
**Note:** Version bump only for package @serialport/binding-abstract | ||
## [2.0.4](https://github.com/serialport/node-serialport/compare/@serialport/binding-abstract@2.0.3...@serialport/binding-abstract@2.0.4) (2019-01-08) | ||
**Note:** Version bump only for package @serialport/binding-abstract | ||
## [2.0.3](https://github.com/serialport/node-serialport/compare/@serialport/binding-abstract@2.0.2...@serialport/binding-abstract@2.0.3) (2018-12-19) | ||
**Note:** Version bump only for package @serialport/binding-abstract | ||
## [2.0.2](https://github.com/serialport/node-serialport/compare/@serialport/binding-abstract@2.0.1...@serialport/binding-abstract@2.0.2) (2018-11-27) | ||
**Note:** Version bump only for package @serialport/binding-abstract | ||
<a name="2.0.1"></a> | ||
## [2.0.1](https://github.com/serialport/node-serialport/compare/@serialport/binding-abstract@2.0.0...@serialport/binding-abstract@2.0.1) (2018-08-29) | ||
**Note:** Version bump only for package @serialport/binding-abstract | ||
<a name="2.0.0"></a> | ||
# 2.0.0 (2018-08-26) | ||
**Note:** Version bump only for package @serialport/binding-abstract |
@@ -32,3 +32,3 @@ const debug = require('debug')('serialport/binding-abstract') | ||
constructor(opt) { | ||
constructor(opt = {}) { | ||
if (typeof opt !== 'object') { | ||
@@ -35,0 +35,0 @@ throw new TypeError('"options" is not an object') |
{ | ||
"name": "@serialport/binding-abstract", | ||
"version": "8.0.4", | ||
"version": "8.0.6", | ||
"main": "lib", | ||
@@ -22,3 +22,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "db21188f86f958cb53b39e753c5cf019965e0695" | ||
"gitHead": "1a087da8a6d4321745dd805945694446afd14637" | ||
} |
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
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
10488