Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Changelog
---------
- **v4.2.3**
- **v4.2.5**
- **Security**: removed all eval calls from the core. jsonFromStr now uses a safe manual parser; microTpl runs inside an isolated vm context; replace_calc returns content without executing it.
- **Robustness**: removed all internal process.exit calls. Build, plugin, and child-process errors are now propagated or logged without killing the Node process.
- **Performance**: replaced the file watcher from polling (setInterval + fs.statSync) to event-driven fs.watch, with a lightweight periodic refresh for new files.
Expand Down
2 changes: 1 addition & 1 deletion src/malta.js
Original file line number Diff line number Diff line change
Expand Up @@ -1372,6 +1372,6 @@ Malta.prototype.shut = function () {

// be sure to call malta stop when the user CTRL+C
//
process.on('SIGINT', () => { Malta.stop('SIGINT'); });
process.on('SIGINT', () => { Malta.stop('SIGINT'); process.exit(0); });

module.exports = Malta;
Loading