- [all] Streams rewrite, node serialport is now a node stream! 🎉
- [all] Introduce a binding layer to provide a common low level interface to work with different platforms.
- [all] add
#get
to retrieve modem status flags thanks to @jgillick! - [all] Add electron precompiled binaries thanks to @Mike-Dax
- [all] Conform to NodeJS error message formats
- [all] Drop NodeJS 0.10 and 0.12 support
- [all] Fix baud rate parsing in
serialport-terminal
thanks to @radio-miskovice for reporting it! - [all] Fix memory leak during opening a port thanks to @indutny
- [all] Refactor internals to make use of es6 and promises
- [all] Remove unnecessary dependencies and polyfills thanks to @mscdex
- [all] Remove v8 deprecation warnings thanks to @indutny again
- [all] Upgrade debug and node-pre-gyp
- [all] Upgrade nan to fix compile issues on some platforms thanks to @thom-nic
- [docs] Add more installation notes on sudo, windows 10, electron and node 7
- [docs] Mark new features in 5.0.0 with the fact they started in 5.0.0
- [windows] Fix file handle leak during opens when errors occur thanks to @enami
- [windows] Refactoring of
.list
for Windows so it's significantly smaller thanks to @Zensey - [windows] Rewrite reading so it's pausable thanks to @munyirik
- [all] Fix baud rate parsing in
serialport-terminal
thanks to @radio-miskovice for reporting it! - [windows] Refactor
SerialPort.list
to be a lot smaller and pickup vendorId, productId and locationId thanks to @zensey for #877!
- [all] Upgrade nan to fix compile issues on some platforms thanks to @thom-nic
- [all] Upgrade debug and node-pre-gyp
- [windows] Fix file handle leak during opens when errors occur thanks to @enami
- [all] Fix memory leak during opening a port thanks to @indutny
- Add precompiled binaries for node 7
- [all] fixed a crash when pausing while reading thanks to @bminer and @baffo32 and others to debug and fix this
- [all] ReadLineParser has been renamed to ReadlineParser to match worldwide convention
- [windows] Fix flush behavior using PurgeComm fixing #962 via @samisaham
- [windows] Remove read and write timeouts solving #781 via @giseburt
- [docs] Electron build docs #965 via @chalkers
- [docs] Spelling fixes via @Awk34
- [docs] Update parser docs to be correct #970 via @jacobq
- [notes] buffer-indexof is now completely compliant with latest node 6 buffer.indexOf because it's nice to have and we now use it on older nodes
- [notes] dropped node 5 support, should still work but you shouldn't use it
- Switch to the lie promise library as it's smaller and mimics nodejs's promise closer
- Fix a bug that prevented reopening a port after an open error
- [unix] Fix a bug when we'd crash when pausing during a read
isOpen
is now a property #899- Allow reopening after an open error #910
- Change parsers to be transform streams #922
- port.path is now read only #898
- Remove lowercased options #898
- Switch to Lie as a promise library (smaller)
- [unix] Flush now gives errors and flushes tx and rx #900
- [linux] Do not replace the native Promise when it is available thanks to @zewish for the fix
- Requiring
serialport
now returns the SerialPort constructor function instead of a factory object.SerialPort.SerialPort
is now deprecated. SerialPort
constructor now throws on argument errors immediately..write(writeCallback)
now only calls it's callback once after the entire write operation, it used to be called for each write cycle and return the bytes written. This reduces the number of callbacks by hundreds of thousands over a megabyte at low bandwidth.- Disconnections now always attempt to close the port, and you'll always get a
close
event after adisconnect
event - All callbacks are called in the context of the port,
this
now equals the port. - Removed
openImmediately
from the constructor's api, the functionality is now namedautoOpen
on the options object. - Removed extraneous flow control settings from the
flowControl
option, use the specific options to set these flags now. - Removed undocumented callbacks from the options object
disconnectedCallback
anddataCallback
- Renamed
serialportlist
toserialport-list
- Renamed
serialportterm
toserialport-term
- Added a contributors guide
- Added our first Arduino required integration tests
- [unix]
.drain
and.set
now properly report errors - [unix] Ports are now locked by default with the new
lock
options matches windows default behavior - [windows]
.update()
now supports windows for changing baud rates - [windows] Fixed a bug where we weren't properly opening ports (provides better support virtual com ports too) thanks to @RogerHardiman
- [windows] known issue
lock: false
doesn't work (no change in behavior)
- Documentation around "Illegal Instruction" errors
- Resolve some ambiguities around publishing that was causing some issues on some versions and platforms of npm and node
- [linux] bug fix in
.list()
where we weren't filtering out non block devices that are named like serial ports - [unix] Better unix error messages
- [unix] Refactor
setBaudrate
for Unix making it easier for custom baudRate support - [unix] Update now has less memory leaks, documentation and better error messages
- [windows] Better error messages for opening ports
- fix an issue with bundled deps for node-pre-gyp on npm
- Upgrade nan and fix warnings for node 6.0
- Update the cli tools. serialport-term can now list ports, serialport-list can now output in different formats
- Change from BlueBird to es6-promise to save 9.5MB from the package size (19M -> 9.5) and 130k bundle size (186.1kb -> 55.2kb)
- Experimental node 6 support
close
anddisconnect
events no longer callremoveAllListeners
and removes your event listeners. This was particularly bad for theerror
event. This is the only change and if you didn't have a special code to deal with this behavior you should probably upgrade from v2.1.2
- Start bundling node-pre-gyp but upgrade it to the latest as the previous version doesn't install
.list
errors are consistent across platforms and no longer has blockingstatSync
calls- Stop bundling node-pre-gyp to prevent issues when it's already installed
- Internal restructuring
- Major refactor, bug fixes and docs improvements thanks to @ecksun, @fivdi, @gfcittolin, @jacobrosenthal, @mhart, @nebrius, @pabigot, @paulkaplan, @reconbot, @rodovich, @rwaldron, @sayanee, @tigoe and everyone who reported and helped debug issues!
- Fix binary paths to confirm with modern standards
- Integration tests on CI's that support it or for the folks at home with an arduino handy
- Upgrade to nan-2.2.1 for memory leak fixes and node 6 compatibility (still not supported)
- Confirm nw.js and electron compatibility
- Make the outpout of
.list
consistent between platforms and docs - Define ambiguous flow control flags and document them
- Fix support systems who provide 0 as a valid file descriptor
- Fix race conditions when opening and closing ports that led to errors while reading and writing while closing or opening the port.
- [unix] Fix a double open bug on unix that would cause opening and closing ports repetitively to error.
- [unix] Listing serialports on linux now include more ports (including bluetooth devices eg.
/dev/rfcommXX
) and have less bugs in the output - [windows] Remove deprecated BuildCommDCB for windows 10 support
- [windows] Fix a memory leak on windows
- [windows] Fix a 100% cpu and possible hang bug when ports were disconnected on windows.
- Add 5.x build to matrix, thanks @deadprogram
- Re add nmpignore, thanks @rwaldron
- Swap to upstream version of node-pre-gyp-github
- Fix linux port listing crash since 2.0.3 refactor, thanks @monkbroc
- Fix heap corruption issue affecting windows users since 2.0.0, thanks @kunalspathak
- Move node-pre-gyp binaries away from Amazon S3 to Github Releases page
- Fix for missing node-pre-gyp binaries, especially for windows users, since the 2.0.0 refactor which forced windows users to build from source -- generally failing due to lack of dependencies
- Unix port listing moved away from udev which was not available on all platforms, to whitelisting ttyS ttyACM ttyUSB ttyAMA devices, see #610
- Cleanup minor Unix gcc warnings, Thanks @rwaldron
- El Capitan Support, thanks @tmpvar
- Upgrade to NAN2 to support Node 4 support. Technically not api breaking, though NAN2 requires gcc 4.8 which for Pi Wheezy users at the very least, would be breaking. For those affected users looking to utilize serialport 2.x.x and Node 4 see https://github.com/fivdi/onoff/wiki/Node.js-v4-and-native-addons
- Fix OSX 10.10 build errors
- Fix OSX 10.10 build errors
- Fix OSX 10.10 build errors
- Fixed breaking issues in underlying code. (@voodootikigod)
- Fix for #518 and #498 If you pass to SerialPort function (constructor) the same object for argument "options", inside SerialPort will use it as internal object and adds handlers to it. That causes only one callback to work on different SerialPort instances. (@bullmastiffo)
- Update README.md #515 (@arahlf)
- Fix a memory leak in SerialportPoller::New (@jpilet)
- unix support for update baudrate #502 (@jacobrosenthal)
- set cloexec after open, possible fix for #468 (@jacobrosenthal)
- Added hang up on close option to constructor. #495 (@jbendes)
- Upgraded NAN to 1.8.4 due to complaints from io.js 2.x users. (@imyller)
- Upgraded to NAN 1.7.0
- #476 adding break signal
- Long standing issue resolved thanks to @jacobrosenthal for adding control signals into the serialport. YAY!
- Fix for #426
- Ability to return from inside loop #453
- Emits for close/disconnect. #452
- Fixed to work with io.js and node 0.11.x by upgrading to recent nan 1.6.2
- Simple bump for the binary.
- Fix for Issue #398 - Dropped sent characters on OSX and Linux
- Fix for Issue #387 - added isOpen
- removed a residual comment
- Added osx control signalling
- Fix for Issue #401
- Fix for double write callbacks.
- detect a serialport disconnect on linux.
- Emit error on serialport when explicit handler present. Fixes gh-369
- Fix for windows and Node 0.11.13 (atom-shell)
- Fix for broken Travis-CI build.
- Identified and report issue to node.js core about recent 0.11.x system.
- Removed support for 0.8.x
- Updated dependencies
- Fix for delete error.
- Merged NAN integration for Node 0.8->0.11+ compatibility (#270)
- Fixed an issue with pool handlers being global instead of instance isolation (Issue #252 and #255 thanks: foobarth !!! )
- Resolved parity error under linux as reported here: serialport#219
- Remove ATL dependency on Windows (added Visual Studio Pro requirement)
- Update build instructions
- Four small bugfixes
- Guaranteed in-order delivery of messages thanks to Jay Beavers and bnoordhuis
- Support higher baud rates in Mac OS X
- Added flush support.
- Fix for arduino firmata support on windows thanks to @jgautier.
- Fixed issue 65 - serialport#65
- Added note in readme about what is required for the system to be able to compile module, should solve 90% of issues.
- Fixed issue 59 - serialport#59
- Fixed items from Firmata
- Added flexibility for options (camelcase or all lower)
- Added Windows support thanks to Joe Ferner.
- Merged in the various underlying changes from node-serialport2 complete thanks to Joe Ferner for that!
- Verified against known installations.
- Added SetBaudRate, SetDTR; Custom Baud Rates
- New "close" listener when device being disconnected
- BufferSize fix for readstream (thanks jgautier, you rock)
- Make no port available be an exception not error emitted - Ticket #12.
- Debugging issue with IOWatcher not holding in the event loop in node.js.
- Converted to ReadStream instead of IOWatcher.
- Integrated arduino tests (rwaldron)
- Integrated options bug fix (w1nk)
- Integrated hardware flow control for crazier serial port action (w1nk)
- Something amazing that has since been lost and forgotten.
- Integrated enhanced version of arduino/readline that actually buffers the data (epeli)
- Refactored the parsing code upon data receipt, now allows for dynamic specification of how incoming data is handled.
- Revised creation interface to use named parameters as an object versions positional parameters.
- Upgraded to node v. 0.4.X compatibility
All other version are not recorded.