This repository has been archived by the owner on May 30, 2021. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
~1.1.7
->~3.1.1
Release Notes
alallier/reload
v3.1.1
Compare Source
v3.1.0
Compare Source
passphrase
option fromhttps.p12.passphrase
tohttps.passphrase
so it can be used for certAndKey configurations as well - See: Move https.p12.passphrase to https.passphrase alallier/reload#251v3.0.6
Compare Source
v3.0.5
Compare Source
v3.0.4
Compare Source
v3.0.3
Compare Source
v3.0.2
Compare Source
.npmignore
. See: Usefiles
instead of.npmignore
alallier/reload#209v3.0.1
Compare Source
Added
Fixed
Updated
3.0.0 / 2019-04-07
v3.0.0
Compare Source
Consult Migration Guide for help with updating from Version 2.x to 3.x
Breaking/Removed
Breaking/Added
closerServer
startWebSocketServer
Added
reload.js
filenpm ci install
for CI alallier/reload#158)Changed
Closed these issues
npm ci install
for CI alallier/reload#1582.4.0 / 2018-12-02
-f
or--fallback
command-line flag. See: MR Add optional --fallback CLI option alallier/reload#167. Issue: Is there a way to force the index.html to always be what is reloaded in that case of a single page app? alallier/reload#164.html
. See: MR Add optional --fallback CLI option alallier/reload#167. Issue: urls must explicitly end with .html in order to work alallier/reload#1662.3.1 / 2018-08-06
2.3.0 / 2018-06-11
~1.0.3
to~1.1.1
. See: Update deps to fix some vulnerability issues alallier/reload#154~1.12.3
to1.13.2
. See: Update deps to fix some vulnerability issues alallier/reload#154~3.0.0
to~5.2.0
. See: alallier/reload@3310a66^10.0.2
to^11.0.1
. See: alallier/reload@073e91b2.2.2 / 2017-08-20
Fixed bug that caused HTML files to not be served when using directory flag (reload command line). See: alallier/reload#139
2.2.1 / 2017-08-05
Fixed regression causing reload command line to only serve HTML files. See: alallier/reload#134
2.2.0 / 2017-07-27
2.1.0 / 2017-07-25
webSocketServerWaitStart
parameter) See: Added socket server wait to start option alallier/reload#1302.0.1 / 2017-07-20
2.0.0 / 2017-07-09
See V2.0.0 PR alallier/reload#118
Added
Modified
reload.js
source file. This is to abstract the reload command line calling with a third argument that is now private and not apart of the public API (PR #117)Removed
API Breaking Changes
This version makes breaking changes to the reload API. The only required argument to reload now is
app
. This makes reload a lot easier to use. Reload takes a maximum of two argumentsapp
and anopts
(options) object with the following optional parameters,port
,route
, andverbose
. Reload runs on default port9856
unless otherwise specified in theopts
object.How to upgrade from Version 1 to Version 2
Before Version 2 reload always attached to your server's port by passing the server in a argument to reload. We have now dropped support for server and reload runs on ports only. Reload now has one required parameter
app
and one optional parameteropts
an object of reload options. Below are two upgrade examples for the only two possible 1.x configurations.Upgrade with required arguments:
reload(server, app)
becomesreload(app)
Upgrade with both required arguments and the one optional argument:
reload(server, app, true)
becomesreload(app, {verbose: true})
It is important to note that reload only uses ports now. So upgrading using the examples above will have reload run on it's default port
9856
. If you want to run reload on a different port you need to specify a port in theopts
object like:reload(app, {port: 9852})
Most people can just use the default settings, allowing
reload(app)
to work in most cases.Please refer to the full API in the README.
1.1.7 / 2017-06-28
Repository ownership was transfered from jprichardson to alallier
1.1.6 / 2017-06-18
Add Mac building in Travis. See alallier/reload#98
1.1.5 / 2017-05-13
Fixed standard call so that our bin file also got tested. See alallier/reload#85
1.1.4 / 2017-05-13
Added AppVeyor to build our tests in an Windows environment. See alallier/reload#92
1.1.3 / 2017-04-28
Upgrade Standard to
~10.0.2
in order for the build to pass node0.1
and0.12
Also removed depricated
fs.exists
and replaced withfs.access
See: alallier/reload#75
1.1.2 / 2017-04-16
Fix multiple websockets at once when using reload.reload(); See: alallier/reload#57
1.1.1 / 2017-01-28
Fixed undefined error log on send message. See: alallier/reload#59
1.1.0 / 2016-11-12
Added client end web socket support for https. See: alallier/reload#54
1.0.2 / 2016-10-31
Added error handling to websocket send. See: alallier/reload#49
1.0.1 / 2016-07-15
Fixed onbeforeunload event not firing in reload-client See: alallier/reload#46
1.0.0 / 2016-06-24
Added
Modified
Removed
See: alallier/reload#41
0.8.2 / 2016-06-24
0.8.1 / 2016-06-05
0.8.0 / 2015-12-21
hostname
flag. See: Changing -h hostname flag to -n alallier/reload#34exts
from command line. See: use exts command line option alallier/reload#320.7.0 / 2015-10-21
wait
flag: Fixing node.js mode not evaluating wait flag properly alallier/reload#270.6.0 / 2015-10-12
hostname/ -h
flag. See: Specify Custom URL instead of Localhost alallier/reload#14 and Added -h (--hostname) flag (Closes Issue #14) alallier/reload#280.5.0 / 2015-09-28
delay
flag toreloadDelay
. See: Fixed flags, added a new flag, and updated documentation. alallier/reload#26wait
flag. See: Fixed flags, added a new flag, and updated documentation. alallier/reload#260.4.0 / 2015-08-17
true
option todelay
so that it waits indefinitely until server is up Changed timeout_millis to delay, allowing reload to wait until the server is up alallier/reload#210.3.0 / 2015-07-17
0.2.0 / 2015-06-29
0.1.0 / 2013-09-30
reload
bin that is useful for browser/html development0.0.2 / 2013-03-14
0.0.1 / 2013-03-13
v2.4.0
Compare Source
-f
or--fallback
command-line flag. See: MR Add optional --fallback CLI option alallier/reload#167. Issue: Is there a way to force the index.html to always be what is reloaded in that case of a single page app? alallier/reload#164.html
. See: MR Add optional --fallback CLI option alallier/reload#167. Issue: urls must explicitly end with .html in order to work alallier/reload#166v2.3.1
Compare Source
v2.3.0
Compare Source
~1.0.3
to~1.1.1
. See: Update deps to fix some vulnerability issues alallier/reload#154~1.12.3
to1.13.2
. See: Update deps to fix some vulnerability issues alallier/reload#154~3.0.0
to~5.2.0
. See: alallier/reload@3310a66^10.0.2
to^11.0.1
. See: alallier/reload@073e91bv2.2.2
Compare Source
Fixed bug that caused HTML files to not be served when using directory flag (reload command line). See: alallier/reload#139
v2.2.1
Compare Source
Fixed regression causing reload command line to only serve HTML files. See: alallier/reload#134
v2.2.0
Compare Source
v2.1.0
Compare Source
webSocketServerWaitStart
parameter) See: Added socket server wait to start option alallier/reload#130v2.0.1
Compare Source
v2.0.0
Compare Source
See V2.0.0 PR alallier/reload#118
Added
Modified
reload.js
source file. This is to abstract the reload command line calling with a third argument that is now private and not apart of the public API (PR #117)Removed
API Breaking Changes
This version makes breaking changes to the reload API. The only required argument to reload now is
app
. This makes reload a lot easier to use. Reload takes a maximum of two argumentsapp
and anopts
(options) object with the following optional parameters,port
,route
, andverbose
. Reload runs on default port9856
unless otherwise specified in theopts
object.How to upgrade from Version 1 to Version 2
Before Version 2 reload always attached to your server's port by passing the server in a argument to reload. We have now dropped support for server and reload runs on ports only. Reload now has one required parameter
app
and one optional parameteropts
an object of reload options. Below are two upgrade examples for the only two possible 1.x configurations.Upgrade with required arguments:
reload(server, app)
becomesreload(app)
Upgrade with both required arguments and the one optional argument:
reload(server, app, true)
becomesreload(app, {verbose: true})
It is important to note that reload only uses ports now. So upgrading using the examples above will have reload run on it's default port
9856
. If you want to run reload on a different port you need to specify a port in theopts
object like:reload(app, {port: 9852})
Most people can just use the default settings, allowing
reload(app)
to work in most cases.Please refer to the full API in the README.
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.