Skip to content

Releases: alallier/reload

3.0.2

06 Oct 18:51
0167fbc
Compare
Choose a tag to compare

3.0.2 / 2019-10-06

  • Updated express sample app's body-parser from 1.18.3 to 1.19.0 - See: #193
  • Updated ws from ~6.2.1 to ~7.1.0 - See: #194
  • Updated nyc from 14.0.0 to 14.1.1 - See: #195
  • Updated serve-static from ~1.13.2 to ~1.14.0 - See: #196
  • Updated codecov from 3.3.0 to 3.6.1 - See: #197
  • Updated express in reload and sample from 4.16.4 to 4.17.1 - See: #198
  • Updated mocha from 6.1.4 to 6.2.1 - See: #203
  • Updated sinon from 7.3.2 to 7.5.0 - See: #204
  • Updated commander from ~2.20.0 to ~3.0.0 - See: #205
  • Updated standard from 12.0.1 to 14.3.1 - See: #206
  • Use package.json files instead of .npmignore. See: #209
  • Update CONTRIBUTING.md file for collaborators to ensure the sample app's reload version matches reload upstream. See: #210

3.0.1

20 Apr 16:32
b1a7fad
Compare
Choose a tag to compare

Version 3.0.1

Added

  • Renovate for auto dependency updating
  • Codecov for coverage reports
  • npmignore
  • Contributing Document

Fixed

  • Updated documentation to better reflect new API with promises
  • Added reload as dependency to sample app
  • Moved Mocha to dev dependencies

Updated

3.0.0

07 Apr 19:22
Compare
Choose a tag to compare

Version 3.0.0

Consult Migration Guide for help with updating from Version 2.x to 3.x

Breaking/Removed

  • Removed deprecated parameters (Reload no longer takes the server argument and will error if you provide it)
  • Removed support for Node versions 4, 5, 6, 7, 8, and 9

Breaking/Added

  • Reload now returns a promise
    • Functions in the return API also return promises
      • closerServer
      • startWebSocketServer
    • Reload returns errors in promises

Added

  • Added unit tests. (See: #42)
  • Added coverage analyzer
    • Coverage 100% on reload.js file
  • Added node 10 and 11 to the official supported list
  • Added support for HTTPS
    • Cert and Key or PFX/P12
    • Note: This was available in version 1 and then was dropped in Version 2
  • Added sample app README (See: #45)
  • Added MIGRATION_GUIDE to help with migrating across major versions of reload
  • Added force wss option
  • CI jobs now use npm ci isntall (See: #158)

Changed

  • Updates dependencies

Closed these issues

  • HTTPS - #143
  • Unit tests - #42
  • Document Fallback flag - #169
  • Drop Node 4 support - #156
  • Documentation on how to use sample app - #45
  • Use npm ci install - #158

2.4.0

02 Dec 20:01
Compare
Choose a tag to compare
  • Added new -f or --fallback command-line flag. See: MR #167. Issue: #164
  • Allow HTML pages to be routed with .html. See: MR #167. Issue: #166

2.3.1

07 Aug 01:22
Compare
Choose a tag to compare
  • Fixed url-parse vulnerability. See: #160

2.3.0

11 Jun 21:36
Compare
Choose a tag to compare
  • Added wss to return API. See: #148
  • Added watch flag to command line. See: #155
  • Security updates
    • Updated finalhandler from ~1.0.3 to ~1.1.1. See: #154
    • Replaced open with opn. See: #154
    • Updated serve-static from ~1.12.3 to 1.13.2. See: #154
    • Updated ws from ~3.0.0 to ~5.2.0. See: 3310a66
    • Updated standard from ^10.0.2 to ^11.0.1. See: 073e91b

2.2.2

20 Aug 20:37
Compare
Choose a tag to compare

Fixed bug that caused HTML files to not be served when using directory flag (reload command line). See: #139

2.2.1

06 Aug 00:37
Compare
Choose a tag to compare

Fixed regression causing reload command line to only serve HTML files. See: #134

2.2.0

27 Jul 23:46
Compare
Choose a tag to compare
  • Dropped express as a dependency (in reload command line). Reload now uses a vanilla node http server to achieve the same result. This update for the command line offers no changes to the end user and simply modifies the underlying code. See: #132

2.1.0

25 Jul 14:45
Compare
Choose a tag to compare

Added the ability to have the WebSocket server start wait. (For more information read about the webSocketServerWaitStart parameter) See: #130