-
Notifications
You must be signed in to change notification settings - Fork 945
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dist doc] Version bump 0.3.1. Added CHANGELOG.md
- Loading branch information
Showing
3 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## CHANGELOG | ||
|
||
### Version 0.3.1 | ||
|
||
- Allow forever to start any script (not just node) from nodejs code (substack) | ||
- Array shortcut to set command and options (substack) | ||
- Check for scripts with fs.stat before running them (indexzero) | ||
- Improved how *.fvr and *.pid files are managed by Forever CLI (indexzero) | ||
- Ability to delete all historical logs from CLI via 'cleanlogs' (indexzero) | ||
- Ability to stop script by name -- stops ALL scripts with that name. (indexzero) | ||
- Display logfile in 'forever list'. (indexzero) | ||
- Use process.kill() instead of exec('kill'). (indexzero) | ||
- Emit 'save' event when persisting to disk. (indexzero) | ||
- Emit 'start' event when starting a forever child (indexzero) | ||
- Remove 'auto-save' feature from Forever.start() (indexzero) | ||
|
||
#### Breaking Changes | ||
|
||
- Push options hierarchy up one level. e.g. Forever.options.silent is now Forever.silent (indexzero) | ||
- Only 'error' event now emits with an error. All other events simply emit data (indexzero) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"name": "forever", | ||
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"author": "Charlie Robbins <[email protected]>", | ||
"contributors": [ | ||
{ "name": "Fedor Indutny", "email": "[email protected]" } | ||
{ "name": "Fedor Indutny", "email": "[email protected]" }, | ||
{ "name": "James Halliday", "email": "[email protected]" } | ||
], | ||
"repository": { | ||
"type": "git", | ||
|