Skip to content

Latest commit

 

History

History
371 lines (214 loc) · 11.6 KB

CHANGELOG.md

File metadata and controls

371 lines (214 loc) · 11.6 KB

11.0.0 (2020-1-10)

  • Updated dependencies
  • BREAKING CHANGE: dropped support for end-of-lifed versions of Node.js, so this now only supports Node 10, 12, and 13

10.0.4 (2019-10-5)

  • Added arm64 to the cpu field in package.json for installing on 64-bit Raspberry Pis

10.0.3 (2019-9-12)

  • Fixed a bug where serial wasn't being disabled on the RPi 4

10.0.2 (2019-4-15)

  • Fixed a bug where GPIO pins were not marked as PWM pins correctly

10.0.1 (2019-2-21)

  • Brought in an updated dependency

10.0.0 (2019-2-21)

  • BREAKING CHANGE: Under the hood we now use the PWM clock instead of the PCM clock for software PWM.
    • You can no longer use hardware PWM with Raspi IO (which Raspi IO itself does not support)
    • You now can use I2S in conjunction with Raspi IO
  • BREAKING CHANGE: there is no longer a default export. Instead use const Raspi = require('raspi-io').RaspiIO or import { RaspiIO as Raspi } from 'raspi-io'; to get the old behavior to work
  • Added a new constructor property enableI2C that allows users to programatically enable or disable I2C
  • BREAKING CHANGE: The name property of this module now returns "Raspi IO" instead of "RasperryPi-IO" to conform with naming conventions elsewhere
  • BREAKING CHANGE: removed the enableSoftPwm and switched to using software PWM by default for all pins
    • Note: this means that hardware PWM is not used on the pins that support hardware PWM, we still use software PWM
  • BREAKING CHANGE: digital-read-${pin} event names are now normalized. If, for example, you called digitalRead("GPIO18", () => {}) on the Raspberry Pi, before the event name would be digital-read-GPIO18, but now it's digital-read-1

Under the hood, I switched from raspi-io-core@2.x.x to j5-io@3.x.x. Note: J5 IO is a major rewrite of Raspi IO Core. Check out J5 IO's changelog for details. Note that many of those breaking changes are not surfaced in Raspi IO, and all breaking changes are listed above.

9.0.1 (2018-12-10)

  • Updated raspi-board to the latest version, which includes breaking changes. These changes are not surfaced by Raspi IO.

9.0.0 (2018-4-21)

  • Updated dependencies
  • BREAKING CHANGE: Dropped support for Node.js 4

8.1.1 (2018-4-02)

  • Pulled in latest version of raspi-io-core to switch servo methods to using range instead of degrees

8.1.0 (2017-9-12)

  • Enforced support for Node.js < 4.0.0 via package.json "engines" field.
    • This does not change the actual supported platforms for Raspi IO, just makes it more explicit
  • Dropped support for attempting to install on non-arm platforms via package.json's "cpu" field.
    • Attempting to install this on a non-Raspberry Pi platform before gave a bunch of obtuse errors, so this doesn't actually change the ability to install raspi-io, but does make it fail earlier, harder, and more obviously
  • Updated dependencies that had breaking changes in prep for adding 1-wire support.
    • The breaking changes in dependencies are not surfaced as breaking changes in Raspi IO itself.

8.0.1(2017-4-29)

  • Pulled in a dependency change that fixes a bug in servo duty cycle calculation

8.0.0 (2017-4-23)

  • Updated dependencies that gets rid of Wiring Pi in favor of pigpio.
    • POTENTIALLY BREAKING CHANGE: there are no known breakages with this update, but there are a lot of under the hood changes, and better safe than sorry.
  • Disabled serial on the Raspberry Pi Zero W by default because it suffers from the same serial limitations as the Raspberry Pi 3

7.4.0 (2017-4-19)

  • Added proper Raspberry Pi Zero W support, which sets enableSerial to false

7.3.1 (2017-4-7)

  • Dependency bump

7.3.0 (2017-4-7)

  • Added enableSerial property to get around crashing on the Raspberry Pi 3

7.2.4 (2017-2-17)

  • Updated raspi-io-core to bring in better error messaging around pin modes

7.2.3 (2017-22-1)

  • Publishing a new version to update the README on npmjs.com
  • Removed outdated and broken unit tests, they weren't even remotely comprehensive anyways.

7.2.2 (2017-1-9)

  • Updated dependencies to pull in a bug fix

7.2.1 (2017-1-5)

  • Bumped the raspi-gpio dependency. There is a potentially breaking change in raspi-gpio, but because of how this module uses it, there is no breaking change here.

7.2.0 (2016-12-30)

  • Split off almost all functionality of this module into Raspi IO Core
    • Note: there should be no functionality change from this package, but giving it a minor version bump anyways
    • By splitting this off, it should be possible to create variants of raspi-io that target different OSes and configurations, e.g. Windows 10 IoT Core

7.1.0 (2016-11-29)

  • Added support for software-based PWM

7.0.0 (2016-11-25)

  • Fixed a bug where writing 0 to GPIO pins on startup wasn't actually writing 0
  • Updated dependencies
    • POTENTIALLY BREAKING CHANGE: removed dependency on raspi-wiringpi because Raspbian now ships with Wiring Pi by default. This may break other OSes
    • POTENTIALLY BREAKING CHANGE: I2C introduced a breaking change around write size limits, see the raspi-i2c changelog for more info.

6.2.0 (2016-11-22)

  • Added the ability to specify pins to include or exclude in initialization

6.1.1 (2016-10-29)

  • Updated dependencies to bring in new functionality
  • Fixed a bug where i2cConfig treated the delay as milliseconds instead of seconds
  • Added support for enabling pull down resistors

6.1.0 (2016-7-7)

  • Switched dependency ranges to ^
  • Bumped dependencies to bring in support for a new Raspberry Pi Zero revision

6.0.1 (2016-3-20)

  • Fixed a bug where unknown pins threw the error 'Unknown pin "null"', which wasn't very helpful

6.0.0 (2016-3-20)

  • Added support for the serial* methods
    • BREAKING CHANGE: GPIO14 and GPIO15 are no longer accessible from raspi-io
  • Removed the Symbol shim
    • BREAKING CHANGE: Node 0.10 is no longer supported
  • Fixed a bug where I2C reads emitted the wrong event name
    • It was I2C-reply${address}-${register}, but is now i2c-reply-${address}-${register}
  • Fixed a bug where the built-in LED no longer worked

5.4.1 (2016-3-7)

  • Dependency update to add missing Raspberry Pi 3 Model B revision

5.4.0 (2016-3-4)

  • Updated dependencies to add Raspberry Pi 3 Model B support

5.3.0 (2016-2-19)

  • Added support for the servoConfig and servoWrite methods
  • Stubbed out the serialWrite, serialRead, and serialConfig
    • For now, they throw a "not implemented" error

5.2.0 (2016-1-6)

  • Added support for enabling pull up resistors by writing HIGH to the pin while in INPUT mode
  • Updated dependencies to add Ubuntu support

5.1.0 (2015-12-8)

  • Updated dependencies to add Raspberry Pi Zero support

5.0.0 (2015-10-27)

4.1.0 (2015-10-13)

  • Updated dependencies and build systems to fix a few bugs

4.0.0 (2015-9-4)

  • Updated the default pin mode to be output instead of unknown
  • Reworked the I2C pins so that they CANNOT be used for GPIO.
    • This is to work around an issue where we can't change the pin mode back to I2C once we change it to GPIO
  • WARNING: BOTH OF THESE CHANGES ARE POTENTIALLY BREAKING!

3.4.0 (2015-9-1)

  • Updated the i2cConfig method to take a config option as well as number

3.3.5 (2015-8-12)

  • Updated dependencies to fix a crash on Node 0.10
  • Internal code cleanup

3.3.4 (2015-7-18)

  • Updated dependencies

3.3.3 (2015-7-14)

  • Updated the repository links to point to their new location

3.3.2 (2015-7-14)

  • Updated raspi-board dependency to pull in fix for overclocked board detection

3.3.1 (2015-7-13)

  • Added missing es6-symbol shim
  • Marked certain unimplemented methods as won't implement
  • Added a contributing guide
  • Added code linter
  • Update code style to use newer best practices

3.3.0 (2015-7-2)

  • Added pingRead stub. It's currently unimplemented, but will at least throw a nice error.

3.2.2 (2015-6-1)

  • Added a shim for Symbol to get raspi-io working on Node.js 0.10 again

3.2.1 (2015-5-26)

  • Updated I2C dependency to pull in the latest raspi-i2c

3.2.0 (2015-5-18)

  • Updated I2C dependency to pull in the latest raspi-i2c
  • Added support for controlling the status LED (set as the default LED)

3.1.1 (2015-3-25)

  • I2C support!!!

3.0.1 (2015-3-17)

  • Dependency update to fix a bug with destroying peripherals

3.0.0 (2015-3-9)

  • POTENTIALLY BREAKING CHANGE. Changed the default mode for each pin from INPUT to UNKNOWN
    • This is a necessary change for incorporating I2C support, which is coming very soon

2.2.3 (2015-3-8)

  • Added pin normalization to all instance lookups

2.2.2 (2015-2-28)

  • Fixed a method name typo, causing new five.Pin(1) to crash

2.2.1 (2015-2-21)

  • Fixed a bug with board.pins[mypin].mode not reporting the correct value

2.2.0 (2015-2-21)

  • Switched from traceur to babel for ES6->ES5 compilation

2.1.0 (2015-2-20)

  • Upgraded dependencies to add support for Node 0.12

2.0.7 (2015-2-17)

  • Fixed a pin normalization bug with pinMode
  • Updated dependencies

2.0.6 (2015-2-12)

  • Fixed a bug with pin numbering on the B+/A+

2.0.5 (2015-2-11)

  • Refactored raspi-core usage to match the new name
  • README updates

2.0.4 (2015-2-8)

  • Relaxed restrictions on calling methods with mismatched modes.

2.0.3 (2015-1-7)

  • Fixed a bug with mode checking in digitalRead

2.0.2 (2014-2-30)

  • Added error checking to the normalize method to make exceptions more readable

2.0.1 (2014-12-8)

  • Added support for the capability queries

2.0.0 (2014-12-6)

  • Total rewrite! Now uses wiringPi under the hood
  • PWM support included
  • New pin mapping scheme, see README. The pin numbering scheme has CHANGED!

1.0.3 (2014-11-14)

  • Cleaned up the README

1.0.1-1.0.2 (2014-10-06)

  • Migrated repo to GitHub

1.0.0 (2014-08-20)

0.1.14 (2014-07-25)

  • Added proper API documentation

0.1.12 (2014-07-16)

  • Fleshed out default LED access from Johnny Five

0.1.11 (2014-07-14)

  • Fixed a bug with LEDs on Arch Linux

0.1.10 (2014-07-14)

  • Fixed a super embarrassing typo

0.1.9 (2014-06-09)

  • Fixed a bug where if you passed in a number as an alias, it caused a crash

0.1.8 (2014-05-22)

  • Added support for normalize() and defautLed

0.1.7 (2014-05-15)

  • Re-added the root user check, but this time left it as a warning, not a hard error

Note: there was an error publishing 0.1.6 which prevented using that version number

0.1.5 (2014-05-15)

  • Removed the root user check because it's causing resin.io to break. Will fix later.

0.1.4 (2014-05-13)

  • Fixed a publishing problem (functionality same as 0.1.3)

0.1.3 (2014-05-13)

  • Added a check for superuser access

0.1.2 (2014-05-12)

  • Fleshed out error messaging for initial inclusion in Johnny-Five

0.1.1 (2014-05-04)

  • API compatibility fixes
    • Reading values while in OUTPUT mode
    • data-read-# event added

0.1.0 (2014-05-03)

  • Initial release including support for GPIO