Releases: hilleer/kill-port-process
Releases · hilleer/kill-port-process
v3.2.1
What's Changed
- Bump @types/node from 20.6.5 to 20.8.0 by @dependabot in #75
- Bump chai from 4.3.8 to 4.3.10 by @dependabot in #72
- Bump @types/mocha from 10.0.1 to 10.0.2 by @dependabot in #73
- Bump node-fetch and @types/node-fetch by @dependabot in #74
- Bump @types/node from 20.8.0 to 20.8.3 by @dependabot in #76
- Bump @types/node from 20.8.3 to 20.8.6 by @dependabot in #77
- Bump @types/chai from 4.3.6 to 4.3.8 by @dependabot in #78
- Bump @types/node from 20.8.6 to 20.8.7 by @dependabot in #82
- Bump @types/pid-from-port from 1.1.0 to 1.1.1 by @dependabot in #81
- Bump @types/chai from 4.3.8 to 4.3.9 by @dependabot in #80
- Bump @types/mocha from 10.0.2 to 10.0.3 by @dependabot in #79
- build: codeql v2 by @hilleer in #84
- Update README.md by @hilleer in #83
- Bump @types/node from 20.8.7 to 20.8.9 by @dependabot in #85
- Bump @types/node from 20.8.9 to 20.8.10 by @dependabot in #86
- Bump @types/node from 20.8.10 to 20.9.2 by @dependabot in #91
- Bump @types/mocha from 10.0.3 to 10.0.4 by @dependabot in #87
- Bump @types/pid-from-port from 1.1.1 to 1.1.2 by @dependabot in #90
- Bump @types/chai from 4.3.9 to 4.3.10 by @dependabot in #89
Full Changelog: v3.2.0...v3.2.1
v3.2.0
What's Changed
- Update README.md by @hilleer in #33
- Create dependabot.yml by @hilleer in #34
- Bump ts-node from 10.0.0 to 10.9.1 by @dependabot in #39
- Bump @typescript-eslint/parser from 4.29.3 to 4.33.0 by @dependabot in #38
- Bump chai and @types/chai by @dependabot in #36
- Bump mocha and @types/mocha by @dependabot in #35
- Bump @types/node from 11.13.4 to 20.2.5 by @dependabot in #47
- Create CODEOWNERS by @hilleer in #49
- Bump @types/node from 20.2.5 to 20.3.0 by @dependabot in #50
- Bump @types/chai from 4.3.4 to 4.3.5 by @dependabot in #51
- Bump @types/node from 20.3.0 to 20.3.1 by @dependabot in #52
- Bump @types/node from 20.3.1 to 20.5.0 by @dependabot in #62
- Bump word-wrap from 1.2.3 to 1.2.4 by @dependabot in #57
- Bump @typescript-eslint/eslint-plugin from 4.29.3 to 4.33.0 by @dependabot in #42
- Bump minimatch from 3.0.4 to 3.1.2 by @dependabot in #40
- Bump @types/node from 20.5.0 to 20.5.7 by @dependabot in #65
- Bump chai from 4.3.7 to 4.3.8 by @dependabot in #63
- Bump @types/node from 20.5.7 to 20.5.9 by @dependabot in #66
- Bump @types/node from 20.5.9 to 20.6.0 by @dependabot in #68
- Bump @types/chai from 4.3.5 to 4.3.6 by @dependabot in #67
- Bump @types/node from 20.6.0 to 20.6.5 by @dependabot in #70
- build: node verisons by @hilleer in #71
- Bump typescript from 4.3.5 to 5.2.2 by @dependabot in #64
Full Changelog: v3.1.0...v3.2.0
v3.1.0
v3.0.1
v3.0.0
v2.3.0
Required node version >= 6.0.0
- Add required Node version in package.json
engines
to>= 6.0.0
.
Refactoring
- Refactor usage of
child_process
api, replacingexec
withspawn
.
Support node 6
- Remove
util.promisify
to add support for node 6.
export/import/require fix
- Fixed issue with commonjs having problems to import the default exported function. Instead of having to
.default
when requiring, the function is no more default-exported. Instead require like:const { killPortProcess } = require('kill-port-process');