http://open-source-security-software.net/project/pm2/releases.atom Recent releases for pm2 2024-05-17T10:51:05.182557+00:00 python-feedgen pm2 1.0.0 pm2 1.0.0 2016-01-04T13:13:32+00:00 Here we are PM2 1.0 with embedded module system RT: https://twitter.com/keymetrics_io/status/683999496745922560 - [#1844][#1845][#1850] Load configuration in /etc/default/pm2 + add ulimit -n override - [#1810] Add --kill-timeout <number> option (delay before process receive a final SIGKILL) - [#1830] Add tests for PM2_KILL_TIMEOUT (SIGKILL delay) + default SIGINT to any kind of procs - [#1825] Process management commands (start/restart/stop/delete) can take multiple arguments - [#1822] Add new method pm2.sendDataToProcessId(type|data|id) to send data to processes - [#1819] Send SIGINT signal to process instead of SIGTERM - [#1819][#1794][#1765] Avoid writing on std err/out when process is disconnected - Add default attribute in schema.json to allow to configure default value when passing a JSON - JSON and CLI starts are now consistent in terms of option size, attribute number - pm2.restart(json_data, function(err, data) now returns an array of process instead of simple object (success:true)) - Now pm2 restart process.json --env <X>, refresh environment variable on each restart depending of the X environment - prepareJSON method in PM2 code (God.js) removed - partition Common.prepareAppConf (duplicate with verifyConfs) - Change signature of Common.prepareAppConf - Centralize Interpreter resolution via Common.sink.resolveInterpreter(app) in Common.js - Better meta information when process restart/reload/stop (signal + exit code) - Upgrade pm2-axon, cron, should, mocha, coffee-script, chokidar, semver NPM packages - Show process configuration option when describing process - Add --no-automation flag - Fix when starting application with illegal names (#1764) - Fix management of app starting with numerics in the filename (#1769) - Fix versiong system (reset to default on resurrect/prepare) - Increase buffer size for versioning meta parsing 2016-01-04T13:13:32+00:00 pm2 1.0.1 pm2 1.0.1 2016-02-13T16:08:05+00:00 - [#1895] pm2 id : output array of ids for app_name @soyuka - [#1800] pm2 show : now also display node.js version @soyuka - Fix typos - Upgrade moment to secure version and shelljs modules 2016-02-13T16:08:05+00:00 pm2 1.0.2 pm2 1.0.2 2016-03-05T14:00:10+00:00 [#1035 #1055] Deactivate automatic dump on startup scripts [#1980] Add Javascript source map resolution when exceptions occurs Documentation [#1937] Allow to act on application having numerics as app name [#1945] Fix post_update commands section when file contains Javascript [#624] --only to act only on specified app name in json app declaration 0.6.1 PMX upgrade 2016-03-05T14:00:10+00:00 pm2 1.1.0 pm2 1.1.0 2016-04-04T11:45:53+00:00 This release is about PM2's internals refactoring, homogenization in action commands (in terms of behavior and outputs). Some interesting features has been added, as YAML file support (for application declaration) and better support for other languages (Python,Perl...). The Keymetrics agent has been enhanced, dividing by two the memory usage and avoiding any possible leak in any potential scenarios. Reconnection system has been refactored too. **Keymetrics users**: a lot of benefits brought to you to do this upgrade This version has been heavily tested in testing, production environments and deeply monitored in terms of CPU and Memory usage. Tests have been hardened. - [#133 #1568] Allow to rename a process via pm2 restart app --name "new-name" - [#2002 #1921 #1366] Fix CLI/JSON arguments update on restart (args, node_args, name, max-memory) - [#578] Add YAML support for application configuration file (in extent to JSON and JSON5 support) - [Keymetrics agent refactoring] TCP wait, memory consumption divided by two, reconnection refactoring, keep alive ping system - [Keymetrics agent refactoring] Fix random no response from pm2 link and pm2 unlink - [#2061] Kill ESRCH of processes in cluster mode with SIGINT catcher fixed - [#2012 #1650 #1743] CLI/JSON arguments update on reload - [#1613] Reload all reload ALL applications (stopped, errored...) - [#1961] Fix kill timeout info log - [#1987] Fix FreeBSD startup script - [#2011] Respect process.stdout/.stderr signature - [#1602] Fix zombie process when using babel-node as interpreter - [#1283] --skip-env option to not merge update with system env - Homogeneize actions commands outputs - Option --interpreter-args added (alias of node-args) - Allow to use exactly the same option in JSON declaration and CLI (e.g. interpreter) to avoid confusion - pm2 show, now shows more commands to manage processes - Refactor programmatic system ## Update procedure PM2 CLI and internals have been frozen since the 0.14 version, so updating PM2 is totally seamless: ``` bash $ npm install pm2 -g $ pm2 update ``` ## Documentation YAML doc: http://pm2.keymetrics.io/docs/usage/application-declaration/ 2016-04-04T11:45:53+00:00 pm2 1.1.2 pm2 1.1.2 2016-04-14T09:28:28+00:00 - [#2071 #2075] Fix pm2-dev command 2016-04-14T09:28:28+00:00 pm2 1.1.3 pm2 1.1.3 2016-04-25T18:58:20+00:00 - Adapt code for Node 6.X 2016-04-25T18:58:20+00:00 pm2 2.0.12 pm2 2.0.12 2016-09-21T15:16:01+00:00 - Memory usage reduced by 40% - CPU usage in overall situations reduced by 60% - Refined pm2 logs command with --json, --format and --raw options - Faster process management with CONCURRENT_ACTIONs enabled - Faster installation (v1: ~30secs, v2: ~10secs) - Faster `pm2 update` with Keymetrics linking delayed at the end - Much better Module system with raw NPM feedback - Better Windows support - **pm2-docker** command with his official [Docker image](https://github.com/keymetrics/pm2-docker-alpine) + json output + auto exit - **rundev (pm2-dev)** command enhanced (better log output, post-exec cmd) - Watch and Reload instead of Watch and Restart - New PM2 API, backward compatible with previous PM2 versions The new PM2 API is greatly tested and well designed: ``` javascript var PM2 = require('pm2'); // Or instanciate a custom PM2 instance var pm2 = new PM2.custom({ pm2_home : // Default is the legacy $USER/.pm2. Now you can override this value cwd : // Move to CWD, daemon_mode : // Should the process stay attached to this application, independant : // Create new random instance available for current session secret_key : // Keymetrics secret key public_key : // Keymetrics public key machine_name: // Keymetrics instance name }); // Start an app pm2.start('myapp.js'); // Start an app with options pm2.start({ script : 'api.js', instances: 4 }, function(err, processes) { }); // Stop all apps pm2.stop('all'); // Bus system to detect events pm2.launchBus((err, bus) => { bus.on('log:out', (message) => { console.log(message); }); bus.on('log:err', (message) => { console.log(message); }); }); // Connect to different keymetrics bucket pm2.interact(opts, cb) // PM2 auto closes connection if no processing is done but manually: pm2.disconnect(cb) // Close connection with current pm2 instance pm2.destroy(cb) // Close and delete all pm2 related files of this session ``` - Better CLI/API code structure - PM2 isolation for multi PM2 instance management ## Bug fixes - #2093 #2092 #2059 #1906 #1758 #1696 replace optionnal git module with tgz one - #2077 fix calling pm2.restart inside pm2 - #2261 GRACEFUL_LISTEN_TIMEOUT for app reload configurable via --listen-timeout - #2256 fix deploy command for yaml files - #2105 alias pm2 logs with pm2 log - Extra module display http://pm2.keymetrics.io/docs/advanced/pm2-module-system/#extra-display - Yamljs + Chokidar Security fixes - pm2 update / pm2 resurrect is now faster on Node > 4.0 - keymetrics linking after pm2 update is done once all apps are started - pm2 list processes are now sorted by name instead id - #2248 livescript support added in development mode - The client/server file called Satan.js does not exists anymore. It has been replaced by the file combo ./lib/Client.js and ./lib/Daemon.js - PM2 --no-daemon is better now ## Breaking Change - Default Coffeescript support has been dropped you now have to enable it by doing: ``` bash $ pm2 install coffeescript ``` 2016-09-21T15:16:01+00:00 pm2 2.0.15 pm2 2.0.15 2016-09-21T16:33:09+00:00 - process.on('unhandledRejection'): allow to catch promise error that have not been catched - upgrade fclone and pidusage (faster windows CPU/Mem monitoring) - allow to call pm2 CLI from bash script managed by pm2 - #2394 fix pm2 id command - #2385 ts-node upgraded to latest - #2381 autocompletion fix 2016-09-21T16:33:09+00:00 pm2 v2.0.18 pm2 v2.0.18 2016-09-29T09:13:01+00:00 - #2400 Create log/pid default folder even if the root folder is already created - #2395 CRON feature now call PM2 for app to be killed (allow to use SIGINT) - #2413 #2405 #2406 do not exit on unhandledRejection auto catch - pidusage upgrade to 1.0.8 to avoid util exception on windows when wmic fail - Do no display error when pidusage try to monitor an unknow PID (modules) 2016-09-29T09:13:01+00:00 pm2 v2.1.4 pm2 v2.1.4 2016-11-07T10:21:57+00:00 ## 2.1.4 - #2333 #2478 #1732 #1346 #1311 #1101 Fix GracefulShutdown SIGINT output + Better Stop process flow - Faster CLI load time, reduce load time by 1/4 (downgrade cli-table2 -> cli-table) - #2353 --wait-ready will wait that the application sends 'ready' event process.send('ready') - #2486 add --web option to pm2-docker command to expose web process api - #2425 allow to specify node.js version to be used or installed via interpreter 'node@VERSION' - #2471 Make app environment immutable on application restart/reload by default for CLI actions - #2451 Config file can be javascript files - #2484 fix pm2 kill on windows - #2101 pm2 ecosystem now generates a javascript configuration file - #2422 allow to pass none to exec_interpreter - Do not use disconnect() anymore on cluster processes - Better Stop process flow: Upgrade TreeKill system + Wait for check - Fix deploy issue with Windows - Expose -i <instances> to pm2-docker - Drop npm-shrinkwrap - Upgrade chokidar (fix symlink), cron, fclone, shelljs 2016-11-07T10:21:57+00:00 pm2 2.1.5 pm2 2.1.5 2016-11-11T13:37:18+00:00 - #2502 fix SIGTERM signal catch on pm2-docker - #2498 #2500 global log rotation 2016-11-11T13:37:18+00:00 pm2 2.1.6 pm2 2.1.6 2016-11-28T12:47:57+00:00 - #2509 Trigger functions inside Node.js application from the PM2 CLI - #2474 Resolve home path in configuration file - #2526 Expose .launchAll() method to API - #2351 inner pm2 actions - drop autorestart and node_args options - #2530 Make sure all processes are killed on system signal to PM2 - #281 allow to combine PM2_SILENT + pm2 jlist to avoid extra data - Alias attributes error_file to err_file + err_log + err, alias out_file to out, out_log - Do not ask for pass for set/multiset from KM 2016-11-28T12:47:57+00:00 pm2 2.2.1 pm2 2.2.1 2016-12-14T14:52:16+00:00 ### New Startup System New startup system. Supported init system: **systemd**, **upstart**, **launchd**, **rcd** Documentation: [http://pm2.keymetrics.io/docs/usage/startup/](http://pm2.keymetrics.io/docs/usage/startup/) ``` bash $ pm2 startup # Auto detect available init system + Setup init scripts $ pm2 unstartup # Disable and Remove init scripts ``` ### Install PM2 via APT! New way to install PM2 on Debian based system: ``` $ wget -O - http://apt.pm2.io/ubuntu/apt.pm2.io.gpg.key | sudo apt-key add - $ echo "deb http://apt.pm2.io/ubuntu xenial main" | sudo tee /etc/apt/sources.list.d/pm2.list $ sudo apt-get update $ sudo apt-get install pm2 ``` ### Responsive PM2 list Now when PM2 detects a small terminal, the list get shrinked automatically: ![responsive](https://cloud.githubusercontent.com/assets/757747/21186503/2cfa182e-c215-11e6-8bc6-b1945cbae235.png) ### Various fix - #1090 pm2 resurrect does not respawn the same processes - #2544 Attach logs to exception - #2545 Right exit code via pm2 api - #2543 Fix module pid/mem monitoring - #2537 Remove duplicated code in Configuration subsystem - If not TTY do not print ascii table - #2509 Trigger functions inside Node.js application from the PM2 CLI - Rename pm2.triggerCustomAction() by pm2.trigger(<app_id>, <action_name>, [params], [cb]) 2016-12-14T14:52:16+00:00 pm2 2.4.0 pm2 2.4.0 2017-02-06T15:41:50+00:00 # 2.4.0 - #2631 new pm2 monit command (blessed dashboard!) - #2670 allow to expose a folder over http via `pm2 serve <path> <port>` - #2617 fix startup script generation on macosx (launchd) - #2650 new option to append env name to app name (used to allow the same app to be launched in different environement w/o name conflict) - #2671 allow to pass a delay to pm2-docker (`pm2-docker process.json --delay 10`) - `pm2 ecosystem simple` to generate a simple ecosystem file - aliasing: `pm2-dev <script>` <=> `pm2-dev start <script>` - fix git parsing when using cwd - #2663 allow to directly output json when logging (via log_type for JSON and --log-type via CLI) - #2675 fix path when installing language module like typescript - #2674 increase restart timeout for systemd startup - #2564 allow to operate process (restart/reload/stop/delete) with regex 2017-02-06T15:41:50+00:00 pm2 2.4.1 pm2 2.4.1 2017-02-27T16:19:03+00:00 ## Potentially breaking changes All services used by the init-system of your platform will now use the following name : `pm2-<user>`, take care that if you previously rely on the service name being `pm2` - #2720 multi user startup script ## Features - #2266 start and tail logs via `pm2 start app.js --attach` - #2706 install pm2 modules via yarn if available - [KM] Error reporting: add context (-B3 -A3 code lines) ## Fix - #2699 add back previous termcaps interface via `pm2 imonit` - #2681 fix log folder create - #2724 make sure process is stopped even if there is a restart_delay - #2719 show 15 logs line by default - #2703 allow custom timestamp with pm2-docker - #2698 fix unicode on pm2 monit - #2715 handle treekill edge case bug - Optimize CPU usage of pm2 monit command ## Enchancements - [KM] URL web access dashboard - [KM] Auto install pm2-server-monit on keymetrics linking - [KM] Transaction Tracer: reset routes on app restart / wait some time before sending 2017-02-27T16:19:03+00:00 pm2 2.4.2 pm2 2.4.2 2017-03-02T09:55:52+00:00 - Disable auto install of pm2-server-monit 2017-03-02T09:55:52+00:00 pm2 2.4.3 pm2 2.4.3 2017-03-30T15:02:05+00:00 - #2759 disable default require of vxx in pmx - #2651 always spawn pm2 daemon with `node` binary - #2745 new issue template - #2761 Make JSON log stream timestamp in consistent format - #2770 Fix trigger API never calling callback - #2796 Fix absolute path on windows - [KM] profiler installation via `pm2 install v8-profiler` or `pm2 install profiler` - [KM] Agent rescue system 2017-03-30T15:02:05+00:00 pm2 2.4.4 pm2 2.4.4 2017-04-05T03:39:07+00:00 - #2806 fix km re-connection on system reboot 2017-04-05T03:39:07+00:00 pm2 2.5.0 pm2 2.5.0 2017-06-09T10:08:32+00:00 - `pm2 register|login` to create new account / login on Keymetrics + auto link - `pm2 open` to open dashboard on browser - `pm2 monitor|unmonitor <pm_id|name|all>` for selective monitoring - #2818 alias pm2-docker to pm2-daemon - #2809 correctly resolve git/npm repo when running pm2 install - #2861 better auto exit check for docker - #2870 avoid null error when preparing app config - #2872 avoid showing useless warning - #438 allow to override daemon config paths via env (example: `PM2_PID_FILE_PATH` to override pid file of the daemon) - #2849 better gentoo template for pm2 startup - #2868 allow tailing log with `--raw` flag - #452 Add `PM2_WEB_STRIP_ENV_VARS` to remove environnement vars from `pm2 web` endpoint - #2890 Fix wait-ready for cluster mode - #2906 randomize machine name with default pm2 link - #2888 allow to use regex for pm2 logs - #2045 allow to rename NODE_APP_INSTANCE env variable - #2809 add `increment_var` options to ask for a environnement variable to be incremented for each application started - more informations when failing to deploy on custom ecosystem file - fix tests for node 8 - fix missing callback when overriding console.log - allow to rename daemon process name via `PM2_DAEMON_NAME` - few typo in the readme 2017-06-09T10:08:32+00:00 pm2 2.6.0 pm2 2.6.0 2017-07-20T09:00:00+00:00 ## 2.6.0 ### Changes - #2998 pm2 report command for automated system inspection - #2997 --disable-logs option to suppress error - #2290 allow to declare apps under "pm2" attribute (eq "apps"). Nicer in package.json - #2994 allow to specify typescript version to be installed - #2501 low memory environment pm2 setting via PM2_OPTIMIZE_MEMORY (beta) - #2968 pm2 attach <pm_id> to attach to process stdin / stdout - pm2-runtime -> drop in replacement for the node.js binary - #2951 pm2 reload command locker via timestamped lock file - #2977 pm2 reloadLogs protected - #2958 Allow to delete attribute via --attribute null - #2980 PM2_SILENT=true pm2 startup - #2690 --parallel <number> command allows to change the nb of concurrent actions (reload/restart) - expose cwd on CLI via --cwd - multiple pm2-docker enhacements - Alias pm2.link and pm2.unlink to pm2.interact and pm2._pre_interact - Allow to customize kill signal via PM2_KILL_SIGNAL - Support git+http in module installation - force reverse interaction reconnection on internet discovery - `--instances -1` when having a 1 cpu is no-longer spawning no processes #2953 - refactor the context retrieving from error - add a TTL for file cache entry - #2956 Fix listen_timeout in combination with wait_ready - #2996 respect signal order on pm2 reload (delegate ready function to reload fn) ### Breaking - Drop pm2-daemon CLI (replaced by pm2-runtime) 2017-07-20T09:00:00+00:00 pm2 2.7.0 pm2 2.7.0 2017-09-15T13:39:05+00:00 - #3150 fix watchdog on agent - #3001 dump-backup feature - #3134 edge case error handling - #3096 fix module installation - #3085 honor every pm2 args on restart - #3046 better error message if PM2 is misconfigured - #3058 pm2-docker now does not write logs by default - #3045 continue to broadcast on the bus system even if logs are disabled - [Docker] Auto Exit when no application is running - [Keymetrics] pm2 unmonitor fix - [Beta Container Support] beta pm2 start app.js --container - [Chore] upgrade modules - [Chore] enhance package.json 2017-09-15T13:39:05+00:00 pm2 2.7.1 pm2 2.7.1 2017-09-22T14:40:50+00:00 - #3117 Add required node env on cluster mode start instance (@2m0nd) - make profiler compatible with Node.js 8 2017-09-22T14:40:50+00:00 pm2 2.7.2 pm2 2.7.2 2017-10-18T10:54:03+00:00 - #3200 Associate .tsx files with ts-node (@dguo) - #3202 Add first draft of typescript definitions (@jportela) - Allow to install http url via pm2 install (@unitech) - #3204 Given --uid add all its gids automatically (@jmeit) - #3184 bugfix: try/catch around userInfo to avoid crash (@vmarchaud) - #3181 force upgrade to latest pm2-deploy 2017-10-18T10:54:03+00:00 pm2 2.9.0 pm2 2.9.0 2017-12-14T10:55:57+00:00 - #3278 --silent -s now does not print welcome message - #3345 #2871 #3233 pm2 -v will not spawn daemon anymore - #3341 update moment dependency - #3314 pm2 install <MODULE> --safe will now monitor new installation of module and will fallback to previous version if the module is failing (restart, fail on npm install) - #3314 module folder structure refactoring to keep independent dependencies for each modules - #3324 remove yarn installation of modules - #3273 pm2 --mini-list now print the right pid file - #3206 add flag to auto turn off auto exit with pm2-docker - #3036 Fix applying env PM2_CONCURRENT_ACTIONS correctly - #3346 do not chmod systemd script (was failing systemd script on orange pi) - #3347 Add --wait-ip option to override systemd initialization to wait for internet full connectivity - #3348 alias pm2-docker to pm2-runtime - #3350 Override HOME and USER when setting --uid to start module or application - #3351 alias pm2 ps to pm2 ls (docker style) 2017-12-14T10:55:57+00:00 pm2 2.9.1-beta pm2 2.9.1-beta 2017-12-14T15:56:08+00:00 2017-12-14T15:56:08+00:00 pm2 2.9.1-beta2 pm2 2.9.1-beta2 2017-12-14T16:04:39+00:00 2017-12-14T16:04:39+00:00 pm2 2.9.1 pm2 2.9.1 2017-12-14T23:40:01+00:00 Fix startup script, anyone having used `pm2 startup` on the 2.9.0 version (published 10hours ago) must run: ``` $ npm install pm2 -g $ pm2 update $ pm2 unstartup $ pm2 startup # Command to copy/paste ``` *bug introduced via PR https://github.com/Unitech/pm2/commit/0abcfc8dc6418e689b12a7c7a3af74aa08a61753#diff-cd58f2bfb244d0982b2a0bf4730733bcR294* 2017-12-14T23:40:01+00:00 pm2 2.9.2-next pm2 2.9.2-next 2017-12-21T17:00:21+00:00 2017-12-21T17:00:21+00:00 pm2 2.9.2-beta pm2 2.9.2-beta 2017-12-22T11:14:40+00:00 2017-12-22T11:14:40+00:00 pm2 2.9.2 pm2 2.9.2 2018-01-22T17:08:40+00:00 - #3364 30% faster CLI - add process._getActiveRequests() and process._getActiveHandles() custom metrics - #3402 #3360 fix bad username - #3413 check dependencies before launching tests - #3295 add sorting feature for process list (pm2 ls --sort <field_name:order>) - #3404 if no gid specified - set gid to uid - #3287 add typing for env - #3374 separate stdout and stderr for pm2-docker/pm2-runtime - #3366 improve building of rpm and deb packages - #3375 sendLineToStdin/sendDataToProcessId fix - #3365 fix report command for windows - #3367 Display an error if the process is not found when running 'pm2 logs <process-name>' - #3256 TypeError: Cannot read property 'destroy' of undefined - User: append SUDO_USER if no uid has been set and SUDO_USER present - User: check permission of agent - KM: send outliers - KM: infinite retry for km connection 2018-01-22T17:08:40+00:00 pm2 2.9.3 pm2 2.9.3 2018-02-16T10:41:10+00:00 2018-02-16T10:41:10+00:00 pm2 2.10.0 pm2 2.10.0 2018-02-19T16:47:39+00:00 ### Bug Fixes - add livescript in default modules ([a315eeb6](https://github.com/Unitech/pm2/commit/a315eeb65f04b22643a903f0cb1c0f416615ad8b)) - replace dash with underscore ([203df768](https://github.com/Unitech/pm2/commit/203df7688ca348967c00bc45289ae70fd2c4aaaa)) - make sure not pm2 is running ([bd798fd7](https://github.com/Unitech/pm2/commit/bd798fd748665e935db4bb91f9d1d66952d9842a)) - auto-exit edge case fix + pm2 no daemon mode + log in raw by default + less logs ([704ae518](https://github.com/Unitech/pm2/commit/704ae518f5d7df0a631349e518d81cef51249a58)) - impact v8 flag in fork mode also ([41bf6ef7](https://github.com/Unitech/pm2/commit/41bf6ef7d3633180b4c1e90f36eb206d82fab2b1)) - fixup! #2182 Get rid of annoying popups in Windows 10 ([3a85b59d](https://github.com/Unitech/pm2/commit/3a85b59de4a76796ad0880368d8d085a7ba55d36)) ### Hot Fixes - \#3420 ([673acf36](https://github.com/Unitech/pm2/commit/673acf36b4ca1fd65c5135a92d56081f76237a8b)) ### Features - add dependencies section into ecosystem.json file. ([828a30d0](https://github.com/Unitech/pm2/commit/828a30d0ccc88b3f6e2b66d517ccf5f2394bd08b)) - --deep-monitoring available from pm2-runtime ([99e62e3b](https://github.com/Unitech/pm2/commit/99e62e3bb808f071d6e4850c234b34f7de65b1c2)) - add deep_metrics to deep_monitoring flag ([4d1bea5e](https://github.com/Unitech/pm2/commit/4d1bea5e0bbaab1f16f75d012bca25702cdff88e)) - add flag to enable deep-monitoring ([c5418688](https://github.com/Unitech/pm2/commit/c541868837a1c4421394de5dd1029d2619b5ac82)) - allow pm2 to install a set of module as one single command and add deep-monitoring. ([9dddc80d](https://github.com/Unitech/pm2/commit/9dddc80db5e496def44d4d36716b7de54e5171cf)) - pm2 pid <app_name> command ([6687d499](https://github.com/Unitech/pm2/commit/6687d499415151bd62489fed5331f414576ec354)) - allow pm2 to install and enable event-loop-inspector data collecting ([e6b0c474](https://github.com/Unitech/pm2/commit/e6b0c47443d3e6a839bf29057ef0a80ef135c47e)) - ignore signal when running in --no-daemon ([b9c01c99](https://github.com/Unitech/pm2/commit/b9c01c99d54aba98ab790b8888500ac0f0af05c9)) - upgrade pmx to git development branch ([21be05a0](https://github.com/Unitech/pm2/commit/21be05a07bd93eacaddedde3b647c16468937473)) - allow pm2 to enable v8 data collecting from pmx ([aa180fa8](https://github.com/Unitech/pm2/commit/aa180fa8ab47f0c687d7c21854d005ad0ebf8475)) - allow pm2 to install gc-stats ([15634168](https://github.com/Unitech/pm2/commit/15634168582e4c7b3c5f47a3f58a0fcf8b732a76)) - feat add changelog generation support ([14f53fc0](https://github.com/Unitech/pm2/commit/14f53fc0c28be4084778785aeace3763ed0d827f)) - **pm2** - add pm2 init option to generate an ecosystem file ([5d56fac7](https://github.com/Unitech/pm2/commit/5d56fac7cc12590af29ee46c68ba32a82a2b813b)) - add pm2 init option to generate an ecosystem file ([a38fd199](https://github.com/Unitech/pm2/commit/a38fd199b90d27a2405f8cabab0e4f6e45c69b08)) ### Documentation - add documentation on new pm2 install command ([c90c453f](https://github.com/Unitech/pm2/commit/c90c453f85b07adb346bc55c2b685d689a2e96f7)) - add sendDataToProcessId into typescript definitions ([4a2e8d2d](https://github.com/Unitech/pm2/commit/4a2e8d2d2c4b38fe0ff2377dfe32fce9a43c8044)) ### Refactor - delete all "if" condition when installing new module, create an object with all modules and a generic installation process ([1b92a9c4](https://github.com/Unitech/pm2/commit/1b92a9c4000734367e68d8dbd60d0901009f4c56)) - deep pm2-runtime refactor #3408 #3257 #3266 ([c13b2364](https://github.com/Unitech/pm2/commit/c13b23648269529a1f998d816be10f895665861e)) - no more interactive spinner for connection to KM + change pm2 log format + remove some logs ([d1916f40](https://github.com/Unitech/pm2/commit/d1916f40962b2cc8a1866172eab7d5d89db093be)) ### Chore - pmx to 1.6.3-rc2 ([41815e0b](https://github.com/Unitech/pm2/commit/41815e0ba0298979f936b3d4badb196f8d9783d8)) - switch pmx to development ([748019d1](https://github.com/Unitech/pm2/commit/748019d1ef0cf760b5e8de9d5b6af6fee300db02)) - 2.10.0-beta ([0d2b7172](https://github.com/Unitech/pm2/commit/0d2b7172a093d0638deabb5f23383cc9eec5dda9)) - upgrade pmx to 1.6.3-next ([5a1b4343](https://github.com/Unitech/pm2/commit/5a1b4343cc1e1f5018e21451a111340351706213)) - upgrade pmx dep ([4bbeec3d](https://github.com/Unitech/pm2/commit/4bbeec3d170ba63af0c0ae0e2d07beec2ab49772)) - switch to published pmx(@next) ([859d18fb](https://github.com/Unitech/pm2/commit/859d18fbc79e2a2760fe90e9c17e71209f8177ce)) - remove --exit from mocha.opts ([36bf03e1](https://github.com/Unitech/pm2/commit/36bf03e1eed69a27e518151e2f7aa958b15db2fb)) - remove unused files ([65d233e5](https://github.com/Unitech/pm2/commit/65d233e5b5290f65796b7cf3daa20706e0f3bee6)) ### Branchs merged - Merge branch 'development' of ssh://github.com/deltasource/pm2 into hotfix/scoped-package-support ([94ea9d9e](https://github.com/Unitech/pm2/commit/94ea9d9eeff40faca8aa9f7edfc81aa29c08e740)) - Merge branch 'master' into development ([46606903](https://github.com/Unitech/pm2/commit/46606903f25d0f4d0eee226da863e20e4b396dc9)) - Merge branch 'development' of github.com:Unitech/pm2 into v8_option ([757562f7](https://github.com/Unitech/pm2/commit/757562f755b09124bbd006209ae38a096d692529)) - Merge branch 'development' of github.com:Unitech/pm2 into gc-stats ([3ed1a747](https://github.com/Unitech/pm2/commit/3ed1a7471aec7d79f7d604447ac7445720bdaced)) - Merge branch 'master' into development ([ee7651e4](https://github.com/Unitech/pm2/commit/ee7651e47e944c3c829933494c6cc765deb4bb29)) ### Pull requests merged - Merge pull request #3466 from natcl/development ([c6d7ace8](https://github.com/Unitech/pm2/commit/c6d7ace802e667def75bc68344effa4856830fb4)) - Merge pull request #3464 from andyfleming/patch-1 ([dd9ebb60](https://github.com/Unitech/pm2/commit/dd9ebb6051708ee5a13cc68dbcb8238e41860bb9)) - Merge pull request #3459 from rmonnier/master ([46948a98](https://github.com/Unitech/pm2/commit/46948a98e90c7864f7b8100db5c519fe9d37f11a)) - Merge pull request #3458 from Unitech/pm2_install_command ([f3b35726](https://github.com/Unitech/pm2/commit/f3b35726895bd82b92813f308b787d68e9df1fa4)) - Merge pull request #3453 from deltasource/hotfix/scoped-package-support ([974f9bf0](https://github.com/Unitech/pm2/commit/974f9bf0dc7a7aa7ff6860f8640da3593b802296)) - Merge pull request #3448 from Unitech/deep_monitoring_flag ([331bc741](https://github.com/Unitech/pm2/commit/331bc741d7285094738a91cd816bc9755cc76605)) - Merge pull request #3447 from Unitech/deep-monitoring ([719d328e](https://github.com/Unitech/pm2/commit/719d328e8d14871b34fd33df54fd80f4f8e7825f)) - Merge pull request #3443 from Unitech/event-loop-inspector ([77a35274](https://github.com/Unitech/pm2/commit/77a3527407f3d090c7a5fa0bedaf943a7536b5eb)) - Merge pull request #3442 from Unitech/event-loop-inspector ([dad98e6e](https://github.com/Unitech/pm2/commit/dad98e6e0738983717fee155ff0f6519955ffc1b)) - Merge pull request #3424 from Unitech/sendDataToProcessId_def ([95e85eef](https://github.com/Unitech/pm2/commit/95e85eef84510dddfb0c6b13f0ada38a7dd66cae)) - Merge pull request #3438 from Unitech/v8_option ([e46b15dc](https://github.com/Unitech/pm2/commit/e46b15dc32c18e8b24f66da0c79cc06f91cf11b5)) - Merge pull request #3437 from Unitech/gc-stats ([1a6771aa](https://github.com/Unitech/pm2/commit/1a6771aa361bb5718bafd6e33e616725f9c0d328)) - Merge pull request #3400 from toddwong/windowsHide2 ([f65e8794](https://github.com/Unitech/pm2/commit/f65e8794df6e67f4ff60dfbec7c05a37721cb6f9)) - Merge pull request #3421 from Unitech/generate_changelog ([b0690618](https://github.com/Unitech/pm2/commit/b0690618d940c11e28eeb5115c060bf363c7b62b)) - Merge pull request #3419 from Rohja/fix-build-number-deb-rpm ([b4343de2](https://github.com/Unitech/pm2/commit/b4343de2703fce03f3cf48cc303b12bc6b69b743)) 2018-02-19T16:47:39+00:00 pm2 2.10.1 pm2 2.10.1 2018-02-26T13:02:24+00:00 2018-02-26T13:02:24+00:00 pm2 2.10.2 pm2 2.10.2 2018-03-29T11:56:45+00:00 2018-03-29T11:56:45+00:00 pm2 2.10.3 pm2 2.10.3 2018-04-27T09:59:14+00:00 - upgrades for node 10 2018-04-27T09:59:14+00:00 pm2 2.10.4 pm2 2.10.4 2018-05-17T16:17:19+00:00 https://github.com/Unitech/pm2/blob/master/CHANGELOG.md#2104--thu-may-17-2018-143240-gmt0200-cest- 2018-05-17T16:17:19+00:00 pm2 3.0.0 pm2 3.0.0 2018-07-04T10:25:47+00:00 ## 3.0.0 ( Wed Jun 20 2018 11:06:21 GMT+0200 (CEST) ) ## Breaking changes - merge_logs is now activated by default if not in cluster mode. Logs will not be suffixed by the pm_id if only one app is started ([ae02adf6](https://github.com/Unitech/pm2/commit/ae02adf63f70ceb3bf101be968996ca68d9ce277)) - Drop support for node 0.12 - Drop gracefulReload command - Remove Interactor from PM2 source code - Replace pmx with [pm2-io-apm](https://github.com/keymetrics/pm2-io-apm) ## Bug Fixes - return the configuration and allow custom conf to override default values ([37dc7de1](https://github.com/Unitech/pm2/commit/37dc7de11e930aa4fce6a485e892f11ee714acd6)) - add use strict for node 4 compatibility ([ba2ee3b1](https://github.com/Unitech/pm2/commit/ba2ee3b1ea9aa5fa665e706b3d49a205eac44d53)) - #3605 fix parameters definition, don't use camelcase for properties ([c8616276](https://github.com/Unitech/pm2/commit/c8616276e4e08b4d90a742e219372e775bb81098)) - #3695 change version check method in order to make it work with alpha/beta versions ([052d6c55](https://github.com/Unitech/pm2/commit/052d6c55df0e941e1dd11430bbcbcaa34061a06e)) - deprecated warning on isbinaryfile ([db09275f](https://github.com/Unitech/pm2/commit/db09275f8e353e257c89e12fed754236b15cee74)) - #3688 test adaptation + pm2 serve --port option ([f0249684](https://github.com/Unitech/pm2/commit/f0249684bcbfdb75749a516f447c8e8d32020709)) - startup script issue 18.04 #3645 ([ff1a7f31](https://github.com/Unitech/pm2/commit/ff1a7f315bfee38eb9fd9cdd63efcc0d971585f8)) - that this - uncache node_modules ([294038d7](https://github.com/Unitech/pm2/commit/294038d76272a915e3addc67d3694717a9f7d704)) - verify default conf variable via package.json on public module ([157b106d](https://github.com/Unitech/pm2/commit/157b106df78af1d28d37bbea069b926de4dceca5)) - bug because of const ([56f05a90](https://github.com/Unitech/pm2/commit/56f05a900b03fb0c8dd635aede666c7d2f213271)) - do not run two pm2 para cmds ([3274132b](https://github.com/Unitech/pm2/commit/3274132b866ba5c93d5786e755acbada922f5f1e)) - version ([3ec178e5](https://github.com/Unitech/pm2/commit/3ec178e577e79730aae02c913301cd905ea8ce52)) - re-enable agent tests ([e6febcd7](https://github.com/Unitech/pm2/commit/e6febcd70dd0f1e68b74df8563d3046ee3b32b89)) - test/display summary ([b075e6d0](https://github.com/Unitech/pm2/commit/b075e6d09b09ff371adf045dc5079bb8ef82f1cf)) - skip interactor tests ([36c4d6bc](https://github.com/Unitech/pm2/commit/36c4d6bca7445b46afc1236dc8ab4b8bf921148b)) - remove unused tests ([234c6314](https://github.com/Unitech/pm2/commit/234c63143e723a508796bc1d323c7241979bf4c2)) - add missing libraries in travis ([88fbb845](https://github.com/Unitech/pm2/commit/88fbb84597cee7029ce33f5b7e20e45f5a815b4b)) - remove unused variable when trying to use tracing ([3aeeba02](https://github.com/Unitech/pm2/commit/3aeeba02f628bf4f19e8d5b93657fd94a6ef0ec7)) - remove useless tests from .sh ([e0be81c8](https://github.com/Unitech/pm2/commit/e0be81c86c7defb5e7a271edd5cc37f960c6aa69)) - conflict ([e13f39c9](https://github.com/Unitech/pm2/commit/e13f39c90b6a5e803c59c5424332520564703f5c)) - fix bug with interpreter args ([b26efa0d](https://github.com/Unitech/pm2/commit/b26efa0d4cd72cf04762df7b7d2eaddc4f4117d2)) - improve error message if action has failed ([d9f44f17](https://github.com/Unitech/pm2/commit/d9f44f170f115c2d6dfb6a7fe71dc31bd7fb66fb)) - use polyfill module for copySync with node 4.x ([bc07f43b](https://github.com/Unitech/pm2/commit/bc07f43b115066f6077606df8f59379777f2a917)) - improve error message if action has failed ([dacc6542](https://github.com/Unitech/pm2/commit/dacc654207cbe494af0d12a3f9f27c3b16541802)) - solve empty list when no process and try to update pm2 ([89511846](https://github.com/Unitech/pm2/commit/8951184688c720ded5b4b46bd5b393c3793f9b03)) - #3485 fix issue when there is empty dump file ([f2523f6a](https://github.com/Unitech/pm2/commit/f2523f6a6b9d8b61ba6ace7b89a0353bee76360b)) - #3456 use homedir() instead of process.env.HOME, make module installation work on windows ([1e001732](https://github.com/Unitech/pm2/commit/1e0017325fc8cf658263fb4e02c7bf8912f422b3)) ## Features - add support for openbsd rc.d init scripts ([fdeb0c32](https://github.com/Unitech/pm2/commit/fdeb0c327afd91b113b214c4c4de187848f9f1cb)) - add kill_retry_time argument ([b2cc0031](https://github.com/Unitech/pm2/commit/b2cc003114b44f1a9a31876ee4a2f4cb91e210b3)) - **bin/pm2** - improve usage ([2c310084](https://github.com/Unitech/pm2/commit/2c310084453dd7b1546957e59b1fc7ef964d425b)) ## Refactor - use @pm2/js-api for login/register on pm2.io via CLI ([cb6521ac](https://github.com/Unitech/pm2/commit/cb6521ac32f4737c42fc97fef972960bfe16c829)) - keymetrics examples ([109b331d](https://github.com/Unitech/pm2/commit/109b331ddf37e061d1890ef952f4cd167ce53f64)) - faster cli with less require ([ee5e6a06](https://github.com/Unitech/pm2/commit/ee5e6a06cbf93f2d1fa7fa022d6bdcad55a39695)) - replace fs-extra with node calls ([4576b4c9](https://github.com/Unitech/pm2/commit/4576b4c97bc685c9d774018d6b29c918abd7cb8d)) - centralize SECRET/PUBLIC/MACHINE_NAME + change some wordings ([d0a2a30e](https://github.com/Unitech/pm2/commit/d0a2a30e4110496b178199fb33e026d6402dd00d)) - remove test deported to keymetrics-agent ([299a52a2](https://github.com/Unitech/pm2/commit/299a52a253d70edcde23cbd7e0c201d492984df4)) - parallel test v1 ([08612de5](https://github.com/Unitech/pm2/commit/08612de5b7893a004ae33ed77fcb2ee3ff7b2251)) - e2e test rewrite ([2b9ffd4e](https://github.com/Unitech/pm2/commit/2b9ffd4eb493f1ff32c979e3811f4f1fedfae97d)) - drop gracefullreload ([bb57c76d](https://github.com/Unitech/pm2/commit/bb57c76d4191343925013d4353299092d80732c9)) - add node 4.x support ([d322dd00](https://github.com/Unitech/pm2/commit/d322dd00de0f527224c027b4fec5e86f12fd69ed)) - create alias method instead of modify prototype ([6d8f0dfa](https://github.com/Unitech/pm2/commit/6d8f0dfae8106deb2fee0a7ae15b6ca9802a066d)) - change safety var to const ([047aa494](https://github.com/Unitech/pm2/commit/047aa494d5c4dd4342915766b54d673db0d5cdf1)) - drop some 0.x patch ([0cab8880](https://github.com/Unitech/pm2/commit/0cab8880ffa362cf27ab7d7b6a64d6b478dce7cd)) - remove prototype from API and create method ([9552bd61](https://github.com/Unitech/pm2/commit/9552bd61b72692beb620a91765ad440cdf6abefe)) - transform API into class ([e3831f95](https://github.com/Unitech/pm2/commit/e3831f95c8d71f98e8840da37f7e883727eccd59)) - name tests well ([c3ccc651](https://github.com/Unitech/pm2/commit/c3ccc651d09ed7291090f516637b75bda99ff71c)) - refactor e2e one line parallel ([93802711](https://github.com/Unitech/pm2/commit/938027117cdb2f300ee772ab27f008cbe22a4b19)) - e2e rename ([8a7db95a](https://github.com/Unitech/pm2/commit/8a7db95aabc8437f292af0316cec81ab80ec41f5)) - change params ([282186f2](https://github.com/Unitech/pm2/commit/282186f24b19b010999f7c7c49750935ef19c190)) - parallelize bash test ([d4b4375e](https://github.com/Unitech/pm2/commit/d4b4375e16fe7ac463b252702da662d3a21bf8b4)) ## Test - adapt test to new api ([7a275e27](https://github.com/Unitech/pm2/commit/7a275e279ea01b1239e9dd8b9cf8e088e407b96d)) - refactor before/after ([b85ca3ca](https://github.com/Unitech/pm2/commit/b85ca3caa3c68e18f7ce6954cc85e90a9d33efef)) - 3 concurrent jobs ([472aba34](https://github.com/Unitech/pm2/commit/472aba3499ff2d9d0eb834e819410026b1a44503)) - move test ([9c973324](https://github.com/Unitech/pm2/commit/9c9733246dbe6afff1b488bc3ba3b6fea3877ea5)) - move test ([952b7631](https://github.com/Unitech/pm2/commit/952b7631d19e1074ea73cc7a67bbaefe20950603)) - fix test with km_link ([23fd8ecf](https://github.com/Unitech/pm2/commit/23fd8ecfea9b2bf61359f62a8e6e1a582c3b0d6e)) ## Chore - shorten ecosystem file ([992a0452](https://github.com/Unitech/pm2/commit/992a045227aed559e708ac4e6bb3f54beabe48e0)) - change motd wording ([aa183ba1](https://github.com/Unitech/pm2/commit/aa183ba19d88777d82619aa40499c2661d67879e)) - merge master in development ([0e4453d9](https://github.com/Unitech/pm2/commit/0e4453d9cc789aa08ee778ff400572337e90d2e3)) - keymetrics -> pm2 ([2c8170c2](https://github.com/Unitech/pm2/commit/2c8170c25e231eb8827bb0944b76c2f4b041d84e)) - upgrade all modules + keymetrics-agent -> pm2/agent + increase version enabling v8-compile-cache ([53ca18c1](https://github.com/Unitech/pm2/commit/53ca18c12868ab177b60a4edff2ccaa8127e301f)) - pm2.io -> @pm2/io ([ae098962](https://github.com/Unitech/pm2/commit/ae098962df35eee7f482dc0a514fd29a02a5f4ad)) - right names as pm2 maintainers ([e8cd7131](https://github.com/Unitech/pm2/commit/e8cd7131a6b9c9d497a2079bcbfc03770a753a06)) - add changelog generation into contributing.md ([d77bfbc3](https://github.com/Unitech/pm2/commit/d77bfbc3c8929851ee19ea604b2a6481d03771e3)) - cache node_modules ([81627e94](https://github.com/Unitech/pm2/commit/81627e94c72efa1f4d726e20bbf67f0bbd5c116f)) - clone last 5 commits ([dad38ed1](https://github.com/Unitech/pm2/commit/dad38ed1bae849147f66e44186cd71c4b9cb022d)) - delete old stagnating pmx inside test ([36834c2c](https://github.com/Unitech/pm2/commit/36834c2c00d496e04c38abaca30202eb650015c4)) - pmx -> pm2.io ([adcbebc3](https://github.com/Unitech/pm2/commit/adcbebc3f6419cd97c5ea99f3c3a6789585bda66)) - updgrade pmx-2 ([eeeb2988](https://github.com/Unitech/pm2/commit/eeeb2988f8886e405aea107db3b888fc1fc929f8)) - disable legacy test ([13723bd9](https://github.com/Unitech/pm2/commit/13723bd938d0e6fb1cbf35f15eabe91c52d87b58)) - remove test for pmx alert system ([c43414a6](https://github.com/Unitech/pm2/commit/c43414a63438d724b8099eb531ec72bab23b8ca2)) - sync from master ([3424ee27](https://github.com/Unitech/pm2/commit/3424ee27870feaf62fdf4509cce9015f8b1a8a2e)) - add unique id for each process ([85a5ee0f](https://github.com/Unitech/pm2/commit/85a5ee0f1fd16da9635fb4b16ddcd8d53aca8224)) - use npm install for CI as yarn has issue with npm ([52902186](https://github.com/Unitech/pm2/commit/5290218626af815f6cae8173bc78d21881a4dda8)) - remove unused dependency ([830fc15f](https://github.com/Unitech/pm2/commit/830fc15fad1aee95e65b2681482b03369f1f97d7)) - upgrade PM2 to 3.0 ([4bc2eb4c](https://github.com/Unitech/pm2/commit/4bc2eb4c9a8179b9ae38438e98ce7650a91b64db)) - remove unused console.log ([33db5084](https://github.com/Unitech/pm2/commit/33db5084814ae7940c90b7f933f9514d28008b78)) - wording on error message ([c251c8c9](https://github.com/Unitech/pm2/commit/c251c8c97e6f18aae584cac6b7f3c83cf4f2de9c)) - revert PR #3496 ([aae1d55e](https://github.com/Unitech/pm2/commit/aae1d55e410c4dcfbbca83eaabbdf1a65d55f3aa)) - fix issue with snapshot command + remove command forceGc ([97fd1010](https://github.com/Unitech/pm2/commit/97fd1010d005e59f2411042fa95891f9717fa8b7)) - wording on error message ([5f78ecbf](https://github.com/Unitech/pm2/commit/5f78ecbf90f9f46a7feb2a169968e86b0ecac91e)) - drop 0.12 test on travis ([beb6e487](https://github.com/Unitech/pm2/commit/beb6e48787c39c66569141d0fd8d090736114d23)) - downgrade promptly ([074a7a40](https://github.com/Unitech/pm2/commit/074a7a407a31b4d88442f5834d253d62f4e543b8)) - remove coffee and livescript dependencies ([13d6565c](https://github.com/Unitech/pm2/commit/13d6565c72e3596d05f87bfc8be15d3ee45fb279)) - upgrade module version and engine version ([84796956](https://github.com/Unitech/pm2/commit/84796956347ca638750fe89cb5545e2a90a0f2c2)) ## Branchs merged - Merge branch 'development' into chore/dev-cache-node-modules ([146c4e11](https://github.com/Unitech/pm2/commit/146c4e113c88e8ade17c7558c8e14cf523a3b2d6)) - Merge branch 'development' of https://github.com/Unitech/pm2 into new-agent ([3514e7fa](https://github.com/Unitech/pm2/commit/3514e7fac624bb83b4cc22651ebc05385f9c284d)) - Merge branch 'development' into master ([f5668331](https://github.com/Unitech/pm2/commit/f5668331dbe7346304258317a3b84450f421ed03)) - Merge branch 'development' into new-usage-cli ([4ae27694](https://github.com/Unitech/pm2/commit/4ae27694e34c4bc6ed389566d71fc5ec48b69652)) - Merge branch 'Eywek-improv/agent' into new-agent ([3e259dd1](https://github.com/Unitech/pm2/commit/3e259dd1d6bb96ea41897c49f3a84557c00c7dad)) - Merge branch 'ecosystem-documentation' of github.com:rmonnier/pm2 into ecosystem-documentation ([98348955](https://github.com/Unitech/pm2/commit/98348955a6eb3a9cd524b991bd1dd6ed03d2c857)) - Merge branch 'development' into ecosystem-documentation ([40157784](https://github.com/Unitech/pm2/commit/40157784a63bcb0e744d4ed56f6c687e28379fdd)) - Merge branch 'inspect_mode' of github.com:Unitech/pm2 into inspect_mode ([7e1494c7](https://github.com/Unitech/pm2/commit/7e1494c7f7971aaf1f4d00d2ee691c3c41775001)) - Merge branch 'development' of github.com:Unitech/pm2 into development ([48f81a8b](https://github.com/Unitech/pm2/commit/48f81a8b2f6f0db39edd86083fb369b74845c387)) - Merge branch 'development' into master ([47e54109](https://github.com/Unitech/pm2/commit/47e5410987ab3d824a34c062d70c24ab686e57db)) - Merge branch 'development' into module_install_windows ([7b82fb91](https://github.com/Unitech/pm2/commit/7b82fb916ed453c1c263bae43c962f6a5294d810)) - Merge branch 'development' into module_install_windows ([80b0495f](https://github.com/Unitech/pm2/commit/80b0495f63d1224b850af4b14cdeb055e3fef50b)) ## Pull requests merged - Merge pull request #3726 from soyuka/fix-list ([0255c5a6](https://github.com/Unitech/pm2/commit/0255c5a6ab1b8a8f609d2183d998695b8c42838d)) - Merge pull request #3725 from soyuka/fix-list ([a39eb4f8](https://github.com/Unitech/pm2/commit/a39eb4f806e87565f53758a19f0ee289b6489b67)) - Merge pull request #3718 from AaronM04/openbsd-init-script ([85458261](https://github.com/Unitech/pm2/commit/85458261d2673c609cb252d64ad4dfbaa466d848)) - Merge pull request #3721 from Unitech/io_conf ([70ec1f81](https://github.com/Unitech/pm2/commit/70ec1f81eae089f75e82723fde7b0b3926d0a9bc)) - Merge pull request #3716 from Unitech/io_conf ([0bc000b9](https://github.com/Unitech/pm2/commit/0bc000b9aae7dd37b456bc2d4fbc9eb4a9f047ef)) - Merge pull request #3714 from Unitech/definition ([d8cff0de](https://github.com/Unitech/pm2/commit/d8cff0dec5160a620d1512ff56726c073368d1a4)) - Merge pull request #3700 from Unitech/report_error ([4b2cad40](https://github.com/Unitech/pm2/commit/4b2cad407b76994e978074a2a3825fe70656304d)) - Merge pull request #3670 from Unitech/changelog ([4bcbcce1](https://github.com/Unitech/pm2/commit/4bcbcce16ced596f6ca2bab2b77d608a174a7c1a)) - Merge pull request #3662 from DanielRuf/chore/dev-cache-node-modules ([540590ee](https://github.com/Unitech/pm2/commit/540590ee056b44eed3b688a7b0b16ca78ec82cd9)) - Merge pull request #3663 from DanielRuf/chore/dev-clone-last-5-commits ([bdf95fc9](https://github.com/Unitech/pm2/commit/bdf95fc997f9ab2995b23668f25f11b6e98b5c47)) - Merge pull request #3584 from ngtmuzi/development ([33984b64](https://github.com/Unitech/pm2/commit/33984b64a2969ca4a3a5913f0f7da0242b6c5ec1)) - Merge pull request #3500 from Unitech/test-parallel ([da56c7af](https://github.com/Unitech/pm2/commit/da56c7aff18d3a38b3ad068b22cd75b290bac9d0)) - Merge pull request #3539 from KimSeongIl/master ([1325704d](https://github.com/Unitech/pm2/commit/1325704d95d324e56b0ebc86aed8137e0d0aa450)) - Merge pull request #3556 from N-Nagorny/logs-smart-app-name-cutting ([bfddf4fd](https://github.com/Unitech/pm2/commit/bfddf4fdef5ec293119d850cc2532ac5d6490ae3)) - Merge pull request #3553 from Unitech/fix_tracing_not_working ([9d51fe08](https://github.com/Unitech/pm2/commit/9d51fe0819182339f3a6a4aee7ea603ea3f4dd76)) - Merge pull request #3549 from Eywek/new-agent ([2f04027b](https://github.com/Unitech/pm2/commit/2f04027b536094d192b399677b3a113102f06b8e)) - Merge pull request #3548 from rmonnier/start-ecosystem-default ([55412f26](https://github.com/Unitech/pm2/commit/55412f263250395de0085144932cfe06b8c7180d)) - Merge pull request #3546 from soyuka/improve-monitor-perf ([e4e29233](https://github.com/Unitech/pm2/commit/e4e29233f99db36462a6e8f48eb8ebd3d2fd9fa5)) - Merge pull request #3534 from rmonnier/new-usage-cli ([5dfba8a4](https://github.com/Unitech/pm2/commit/5dfba8a4491f0bb83f2879915f0c4b164be2552c)) - Merge pull request #3542 from rmonnier/default-start-ecosystem ([c65595f4](https://github.com/Unitech/pm2/commit/c65595f4a70659e1e0d753e6c28a1fcedf45a91a)) - Merge pull request #3545 from rmonnier/default-ecosystem ([b3718656](https://github.com/Unitech/pm2/commit/b3718656f630aa54880343d9742534a2a508daec)) - Merge pull request #3543 from rmonnier/ecosystem-documentation ([a60580a1](https://github.com/Unitech/pm2/commit/a60580a12b4a0066c8df6620317fbc8bf599b0b6)) - Merge pull request #3541 from soyuka/development ([67e7a015](https://github.com/Unitech/pm2/commit/67e7a015cabaa7b08206a3b1bf9c0399af88f76b)) - Merge pull request #3511 from Unitech/inspect_mode ([75fb87f8](https://github.com/Unitech/pm2/commit/75fb87f8a1c46a6db8e974b421e857175e69b535)) - Merge pull request #3517 from Unitech/polyfill_fs_copy_node4 ([524f5494](https://github.com/Unitech/pm2/commit/524f54948de5080632d43bb512038d7bd7271619)) - Merge pull request #3516 from Unitech/drop_unused_feature ([9436f11a](https://github.com/Unitech/pm2/commit/9436f11aeecfc07e77aa9d6b108df4478b43402e)) - Merge pull request #3510 from Unitech/dump_refacto ([674e4469](https://github.com/Unitech/pm2/commit/674e4469554e6a765bb3d57a3c083e6ab53b20cc)) - Merge pull request #3501 from Unitech/refactor_api ([9f2c4ca4](https://github.com/Unitech/pm2/commit/9f2c4ca4c9eadf6c7730e3889c72e908cd2d8f5d)) - Merge pull request #3496 from rmonnier/master ([829cc303](https://github.com/Unitech/pm2/commit/829cc3032b2d61e20f7a2e7d1d819c0ddc0845e8)) - Merge pull request #3484 from Unitech/pull_by_name ([24d29404](https://github.com/Unitech/pm2/commit/24d294049008a0d01b2bc407b9b2b880d5843fbd)) - Merge pull request #3482 from Unitech/mjs_support ([ebe7b048](https://github.com/Unitech/pm2/commit/ebe7b0487218557858aaa98527360eca1776b140)) - Merge pull request #3495 from Unitech/module_install_windows ([e9c625d3](https://github.com/Unitech/pm2/commit/e9c625d3088c71eef4237ecd866b806957c61815)) - Merge pull request #3507 from cheapsteak/patch-1 ([a49287d6](https://github.com/Unitech/pm2/commit/a49287d6a1d22b39270e2d05dee2a17c0ed55797)) 2018-07-04T10:25:47+00:00 pm2 3.0.1 pm2 3.0.1 2018-07-24T13:00:04+00:00 ## 3.0.1 ( Mon Jul 23 2018 14:13:35 GMT+0200 (CEST) ) ## Bug Fixes - allow to set a name via pm2 link ([ebffb609](https://github.com/Unitech/pm2/commit/ebffb609cf4da195c72ee67d8341c63b78f0654e)) - disable network monitoring as long as ampq not supported ([ae1547bf](https://github.com/Unitech/pm2/commit/ae1547bfa9505b2d13e30df39ce614eee29463b0)) - display error message from pm2-deploy ([9171b810](https://github.com/Unitech/pm2/commit/9171b81024641c3e104f3eeb2e2c6eb852dbe7f4)) - protect geteuid/getegid from being called on windows #3793 ([0495bd8e](https://github.com/Unitech/pm2/commit/0495bd8e4ffaeb1db729b35fa569696145d79c5f)) - put message module at the right level ([56f5e047](https://github.com/Unitech/pm2/commit/56f5e04787da29e8b582bf4fa8325f72404a2fbe)) - do not ignore child pres folder ([10ee9987](https://github.com/Unitech/pm2/commit/10ee99876d75679723e1e8522da07413a618e48c)) - let->var ([89e2a125](https://github.com/Unitech/pm2/commit/89e2a125c22aee27014c279c86d1d9e0a0df0235)) - method renaming ([f3faa3d8](https://github.com/Unitech/pm2/commit/f3faa3d846d1e895232743dd619f5ecb15fdf7ad)) - path ([4f980550](https://github.com/Unitech/pm2/commit/4f9805508d2c1c575aabc4abbab25728f1c6a28a)) - #3791 mitigate pidusage errores ([88551b8c](https://github.com/Unitech/pm2/commit/88551b8cfe8bf8dd330d582e71b808faadfaf161)) - pm2 plus ([9bc34e56](https://github.com/Unitech/pm2/commit/9bc34e56b7ad66cbc6efbd26d4017f1e1813a720)) - #3764 ([3a582b42](https://github.com/Unitech/pm2/commit/3a582b42f9cca57779b99964c95a2cd0516efa11)) - drop coffee-script (installed via pm2 install coffeescript) ([76ceb2fd](https://github.com/Unitech/pm2/commit/76ceb2fd52a2e5acbf03deacc3fa8a120a197023)) - restore no_interaction for pm2-dev ([902e5a5a](https://github.com/Unitech/pm2/commit/902e5a5a1225d2072ab6337aa067caf9c6a7cca4)) - option -w doesn't work ([165a05c8](https://github.com/Unitech/pm2/commit/165a05c854f9b3dd1418b988c954d333f81ba88f)) - retab shell script to use space for indent consistency ([e3b4327d](https://github.com/Unitech/pm2/commit/e3b4327d9a6120c5ad589734ca926d3b49a8b706)) - set Makefile indent to tab instead of common space ([4db0ae01](https://github.com/Unitech/pm2/commit/4db0ae011c161cbfca9e250da40deff9fdc36069)) - set yaml file indent to 2 spaces instead of 3 ([e4ecb0b2](https://github.com/Unitech/pm2/commit/e4ecb0b29dbcc4c6ca2d67b6bdc7da4c0a5d17a5)) - remove trailing spaces ([5c115983](https://github.com/Unitech/pm2/commit/5c1159832680231bff5da79f1c91caf32ce3b5e0)) - fixes #3735 ([0548cb82](https://github.com/Unitech/pm2/commit/0548cb82aa1193a5725ca22e1babfc38db2e3b77)) ## Hot Fixes - fix #3767, do not consider as a command if space and slash are found ([d15a12ce](https://github.com/Unitech/pm2/commit/d15a12ceae8b0c9c27625180ae002178b0bfe5d0)) - fix #3767, do not consider as a command if space and slash are found ([f8ec1503](https://github.com/Unitech/pm2/commit/f8ec1503c3e92bc0dec10d395ac682b116e2914e)) ## Features - add inspector for node 10 and heap snapshot ([dc61bca6](https://github.com/Unitech/pm2/commit/dc61bca66828c16cf6fd04a6f749f127da697cec)) - pm2 plus xx yy now generates a name with hostname-UID ([fcf75e2c](https://github.com/Unitech/pm2/commit/fcf75e2cc321791273f6afe86c07fd147c6e8414)) - #3757 --only='app1,app2' ([bea98330](https://github.com/Unitech/pm2/commit/bea983306c4736d3a2b1090f2708b7b29c44ed03)) - pm2 plus cli ([1da6edde](https://github.com/Unitech/pm2/commit/1da6edde80e3029d99084992ec1a4ada7b2cc279)) - reload all apps after connection to pm2 plus ([35a1ed2a](https://github.com/Unitech/pm2/commit/35a1ed2a1328a859a7797ec8e22024d171599d86)) - ask to install module after connection with KM ([68e87b39](https://github.com/Unitech/pm2/commit/68e87b39ae2b57e9fbb0b0abde68112c839f05ee)) - with pm2 plus command ask to install modules ([28c61716](https://github.com/Unitech/pm2/commit/28c61716ee5e8f2402205e4b06ed7ee0a942a3cc)) ## Test - test with development packages ([d361c840](https://github.com/Unitech/pm2/commit/d361c8405db47969bd68c7b1058a54f38e8e0e52)) ## Chore - clean old snapshot method ([d064750b](https://github.com/Unitech/pm2/commit/d064750be0d437945efdcd6a5ce4e56547b1bce6)) - update version to 3.0.1 ([efbcb021](https://github.com/Unitech/pm2/commit/efbcb02180ae38dd930e43282113dbcb24288eab)) - bump to 3.0.1 ([fb8357e3](https://github.com/Unitech/pm2/commit/fb8357e32f9f015e5b6e7ed8ef150f59de382c6d)) - new ascii logo + refactor pm2 plus command ([8692a1da](https://github.com/Unitech/pm2/commit/8692a1daf7b4b7dfb8a4d6ec3363ac0cc62203a8)) - change motd.update + alias register to pm2 plus ([cdc4a767](https://github.com/Unitech/pm2/commit/cdc4a767d5f1ff5873d0466b471daa3006608604)) - btn ([319fa0dc](https://github.com/Unitech/pm2/commit/319fa0dcbea331a88a9888c207368e52665309ce)) - README button ([1c6fb68c](https://github.com/Unitech/pm2/commit/1c6fb68c758d76cf81e53c43c2423ecd742265e5)) - remove duplicate configs in .editorconfig ([86ad52b8](https://github.com/Unitech/pm2/commit/86ad52b837e23a7ec92705d21a152394c244571f)) ## Branchs merged - Merge branch 'development' into uid-gen ([5324c878](https://github.com/Unitech/pm2/commit/5324c878fd0d37e068bc25c8e37f19f73bfebf30)) - Merge branch 'master' into development ([7d04f638](https://github.com/Unitech/pm2/commit/7d04f63835845e92d32d6ad7ffab166a2954302f)) ## Pull requests merged - Merge pull request #3811 from Unitech/memory_inspector ([62018044](https://github.com/Unitech/pm2/commit/62018044d7a1ef7fd0b37fe3082da4bf05989de0)) - Merge pull request #3801 from vkotovv/grammar-fixes ([9bb37a66](https://github.com/Unitech/pm2/commit/9bb37a662a91369caaa5a1a43751541e41970a51)) - Merge pull request #3799 from Unitech/refactor-agent ([bcc4fea8](https://github.com/Unitech/pm2/commit/bcc4fea80885ce941e11b17936aab6582660fc7f)) - Merge pull request #3787 from Unitech/multi-only ([ea5d74a8](https://github.com/Unitech/pm2/commit/ea5d74a87f6911b238634419665c716bc877be10)) - Merge pull request #3788 from Unitech/uid-gen ([f70444f3](https://github.com/Unitech/pm2/commit/f70444f39b7cc8fe05faf57dac1b46fc15a2053c)) - Merge pull request #3784 from Unitech/pm2-plus-cli ([e8c13c37](https://github.com/Unitech/pm2/commit/e8c13c374dfeabf42f75af50b838adb7ac4a50aa)) - Merge pull request #3780 from Unitech/plus_modules ([466d2701](https://github.com/Unitech/pm2/commit/466d2701ca48d0c4b8466d6867135e43b22deeb5)) - Merge pull request #3768 from Unitech/spaces ([0477354b](https://github.com/Unitech/pm2/commit/0477354b502aef612012e833bd47ce1940da1a0b)) - Merge pull request #3771 from chinesedfan/patch-2 ([8de987a6](https://github.com/Unitech/pm2/commit/8de987a604679774ec39e7d5a1a905556524c53d)) - Merge pull request #3762 from shaharmor/issue-3441 ([429e455d](https://github.com/Unitech/pm2/commit/429e455db96d2a56448a11b7602333324c9bf433)) - Merge pull request #3761 from PeterDaveHello/fix-sh-indent-style ([24cddc25](https://github.com/Unitech/pm2/commit/24cddc257734beebb33ee5abac5a4107a5d86093)) - Merge pull request #3737 from morugu/add-node-env-output ([6628f163](https://github.com/Unitech/pm2/commit/6628f1637497771bbc5c4f0ba0e9423c63660e0e)) - Merge pull request #3743 from vivex/master ([06872c25](https://github.com/Unitech/pm2/commit/06872c2520f73bcabb6198a96c4dafb46706c9e9)) - Merge pull request #3748 from JimiC/support_nvm4win ([2dac235b](https://github.com/Unitech/pm2/commit/2dac235bc8956d170fee2341517739d3781048d7)) - Merge pull request #3752 from PeterDaveHello/upstart.tpl ([d4e66e3a](https://github.com/Unitech/pm2/commit/d4e66e3a9d954ab5c15d5bc35910cdfb71ba8321)) - Merge pull request #3753 from PeterDaveHello/fix-editorconfig ([d1478680](https://github.com/Unitech/pm2/commit/d1478680325822c206afbcb197a9a732318f6d64)) - Merge pull request #3754 from PeterDaveHello/remove-trailing-space ([b660f03e](https://github.com/Unitech/pm2/commit/b660f03eba71bb80a1a3d313be4525160727921f)) 2018-07-24T13:00:04+00:00 pm2 3.0.3 pm2 3.0.3 2018-07-26T15:50:25+00:00 2018-07-26T15:50:25+00:00 pm2 3.1.1 pm2 3.1.1 2018-09-10T14:21:57+00:00 2018-09-10T14:21:57+00:00 pm2 3.1.3 pm2 3.1.3 2018-09-20T08:14:51+00:00 ### Features - allow non-node application to run multiple instances without auto switch to cluster mode - allow to call `pm2 logs` even without application (#3820) - switch `pm2 link` and `pm2 plus` protocol to websocket by default instead of axon - enhance the `pm2 init` template that generates ecosystem files by adding some extra fields ### Fix - remove deprecation message for node 0.10 - pm2 login/register/monitor now hit the new oauth pm2 plus system 2018-09-20T08:14:51+00:00 pm2 3.2.0 pm2 3.2.0 2018-10-03T12:56:57+00:00 ## 3.2.0 (3/10/18) ### Features - package.json version field retrieval and display in pm2 ls, pm2 show, pm2 monit - pm2 internal configuration system via `pm2 set pm2:key value`, attached to pm2.user_conf - add the .user field (CLI + Config) to set the user to start the application with - add the .time field (CLI + Config) to enable default logs date prefix - max_memory_restart now triggers a reload - pm2 env <pm_id> command to display the environment the application is running with - exponential backoff restart delay via `--exp-backoff-restart-delay <ms>` with reset mechanism - new timing library on PM2 daemon (increase log througput, reduce CPU usage and memory usage) - better user management system with username resolution to uid - websocket default switch for pm2 plus - new module management system (`pm2 package <folder>`, `pm2 publish <folder>`, `pm2 install <tarball>`) ### Fix - @pm2/io 2.4 (restart > 10.0) - restart behavior tested - fix module version parsing - module system refactoring (TAR + NPM) - fix watch_delay in config file 2018-10-03T12:56:57+00:00 pm2 3.2.1 pm2 3.2.1 2018-10-03T16:05:59+00:00 - minor bug fix: get internal pm2 configuration after config has been initialized 2018-10-03T16:05:59+00:00 pm2 3.2.2 pm2 3.2.2 2018-10-05T15:51:36+00:00 ## 3.2.2 (5/10/18) ### Fix - minor bug: fix bug when passing -i 'max' or -i 0 https://github.com/Unitech/pm2/issues/3943 2018-10-05T15:51:36+00:00 pm2 3.2.3 pm2 3.2.3 2018-12-10T14:02:12+00:00 - medium rare bug: fix issue when acting on process file (#3987 + #3192) - concurrent action to 1 if acting on only 2 processes - fix cluster syntax - add more test on port release 2018-12-10T14:02:12+00:00 pm2 3.2.4 pm2 3.2.4 2018-12-19T21:39:04+00:00 ## 3.2.4 (19/12/18) ### Feat - display cron configuration when doing `pm2 desc <id>` - refactor test suite (benchmark/simplification) ### Fix - pm2 flush <app> flush only one app - resolve uid properly on pm2 ls / pm2 desc - keep wait_ready option on process reload - keep stringification of environment variable behavior - return an error when using pm2 api on starting json configuration if one app is errored #4080 #4079 #4074 #4069 #4039 2018-12-19T21:39:04+00:00 pm2 3.2.5 pm2 3.2.5 2019-01-09T11:31:46+00:00 ## 3.2.5 (09/01/19) - feat: enhance pm2 report - feat: support snap Ubuntu system - fix: pm2 register/monitor command - fix: consolidate spawn function on unhealthy systems to avoid pm2 crash - fix: error message if extra lang interpreter are not installed when runing tests - fix: (pm2 deploy) command line bug when passing env variables to post-deploy hook - fix: (pm2 deploy) always deploy to default branch problem - fix: (pm2 deploy) pm2 deploy <env> exec now accept multiple commands - fix: print full env + skip extra internal fields when using programmatic pm2 2019-01-09T11:31:46+00:00 pm2 3.2.7 pm2 3.2.7 2019-01-09T15:54:04+00:00 Revert fix tentative to support Node.js managed by Ubuntu snap 2019-01-09T15:54:04+00:00 pm2 3.2.9 pm2 3.2.9 2019-01-17T17:28:46+00:00 fix windows issue when spawning PM2 daemon 2019-01-17T17:28:46+00:00 pm2 3.3.0 pm2 3.3.0 2019-02-18T15:49:56+00:00 Upgrade pmx to ^3 2019-02-18T15:49:56+00:00 pm2 3.3.1 pm2 3.3.1 2019-02-19T10:17:59+00:00 - add pm2 profile:cpu [timeout] - add pm2 profile:mem [timeout] 2019-02-19T10:17:59+00:00 pm2 3.4.0 pm2 3.4.0 2019-03-11T18:07:13+00:00 ## 3.4.0 - use @pm2/io version 4 - disable @pm2/io for node.js v4 and v5 /!\ Warning, built-in custom metrics are not supported anymore on Node 4 and 5 New builtin metrics when starting a Node.js application: - Heap Size - Heap Usage - Used Heap Size - Active Requests - Active handles - Event loop latency - Event loop latency p95 - HTTP queries per minutes - HTTP Mean Latency - HTTP P95 Latency 2019-03-11T18:07:13+00:00 pm2 3.4.1 pm2 3.4.1 2019-03-26T15:48:49+00:00 - fix: allow pm2 register / pm2 monitor - fix: restore trace indicator 2019-03-26T15:48:49+00:00 pm2 3.5.0 pm2 3.5.0 2019-04-08T11:13:27+00:00 - feat: #4220 #2941 #4196 improve pm2 serve for SPA - autoredirect requests to index.html if --spa - feat: on pm2 show <app>, display metric unit and divergent environment variables - feat: #4157 tweak systemd script to auto restart PM2 in case of crash failure - fix: #4212 on pm2 show, avoid crash when versioning comment is not present - fix: #4171 fix pm2 list when small screen - fix: #4197 fix pm2 unstartup for macOS - fix: #2764 in pm2 monit, only display log of selected application - fix: #2793 pm2 monit, rolling log buffer, avoid crash and performance issues - fix: #4060 do not emit online when application is errored - chore: remove nssocket in dependencies 2019-04-08T11:13:27+00:00 pm2 4.0.0-beta-1 pm2 4.0.0-beta-1 2019-05-19T06:57:40+00:00 ## 4.0.0 ### beta 1 - feat: make pm2 fully standalone with node embedded - feat: startup, npm, node system adaptation for standalone installs - feat: system information worker - retrieve: - network I/O + latency - disk I/O + space - cpu usage + temperature - memory usage - intelligent display of information (e.g. display disks > 80% cpu usage) - feat: listing of docker container on host machine with independent pm2 list - r&d: manage container like pm2 processes - feat: intelligent display of high loaded processes in an independent pm2 list - feat: #4224 --ignore-watch now accepts globs (@vaskevich) - feat: pm2 save --force allow to force save of empty process list - fix: pm2 monit dashboard without leaks - refactor/fix: pm2 listing systems refactoring - chore: remove old legacy code for < 8 Node.js versions - chore: make the repo lighter - chore: better display when pm2-runtime is linked to on-premise 2019-05-19T06:57:40+00:00 pm2 4.0.0-beta-2 pm2 4.0.0-beta-2 2019-05-19T07:41:18+00:00 4.0.0-beta-2 2019-05-19T07:41:18+00:00 pm2 4.0.0-beta-3 pm2 4.0.0-beta-3 2019-05-20T21:21:45+00:00 4.0.0-beta-3 Add binary 2019-05-20T21:21:45+00:00 pm2 4.0.0-beta-4 pm2 4.0.0-beta-4 2019-05-21T03:24:41+00:00 Fix node and npm bin path 2019-05-21T03:24:41+00:00 pm2 3.5.1 pm2 3.5.1 2019-05-23T18:52:30+00:00 Drop external optionalDependency GKT from tgz.pm2.io 2019-05-23T18:52:30+00:00 pm2 4.0.0-beta-5 pm2 4.0.0-beta-5 2019-05-28T02:50:05+00:00 2019-05-28T02:50:05+00:00 pm2 4.0.0-beta-6 pm2 4.0.0-beta-6 2019-06-17T19:00:02+00:00 Node@12.4.0 2019-06-17T19:00:02+00:00 pm2 4.0.0-beta-7 pm2 4.0.0-beta-7 2019-07-29T15:24:16+00:00 2019-07-29T15:24:16+00:00 pm2 4.0.0-beta-8 pm2 4.0.0-beta-8 2019-08-14T14:37:22+00:00 2019-08-14T14:37:22+00:00 pm2 4.0.0-beta-9 pm2 4.0.0-beta-9 2019-09-24T12:48:36+00:00 2019-09-24T12:48:36+00:00 pm2 4.0.0-rc1 pm2 4.0.0-rc1 2019-10-08T15:30:24+00:00 2019-10-08T15:30:24+00:00 pm2 4.0.0 pm2 4.0.0 2019-10-11T09:38:01+00:00 - feat: make pm2 fully standalone with node embedded - feat: startup, npm, node system adaptation for standalone installs - feat: system information worker - retrieve: - network I/O + latency - disk I/O + space - cpu usage + temperature - memory usage - intelligent display of information (e.g. display disks > 80% cpu usage) - feat: listing of docker container on host machine with independent pm2 list - feat: upgrade of Chokidar to 3.x - Massive CPU & RAM consumption improvements for watch feature - r&d: manage container like pm2 processes - feat: intelligent display of high loaded processes in an independent pm2 list - feat: #4224 --ignore-watch now accepts globs (@vaskevich) - feat: pm2 save --force allow to force save of empty process list - fix: pm2 monit dashboard without leaks - fix: pm2 register fixed - refactor/fix: pm2 listing systems refactoring - chore: remove old legacy code for < 8 Node.js versions - chore: make the repo lighter - chore: better display when pm2-runtime is linked to on-premise - chore: pm2 CLI refactoring #4391 2019-10-11T09:38:01+00:00 pm2 4.0.1 pm2 4.0.1 2019-10-14T10:12:10+00:00 - chore: switch Systeminfo logging to debug 2019-10-14T10:12:10+00:00 pm2 4.0.2 pm2 4.0.2 2019-10-15T08:21:36+00:00 - fix: #4450 do not open sysinfo window on Windows 2019-10-15T08:21:36+00:00 pm2 4.1.0 pm2 4.1.0 2019-10-15T09:49:47+00:00 - fix: #4270 fix ANSI escape for `pm2 ls --watch` - fix: `pm2 start app.js -i 1` start app in cluster mode - fix: #4254 add HOST environment variable on pm2 serve - fix: #4267 Allow usernames in uid/gid/user again - fix: #4376 make process.send('ready') trigger sigint - fix: #4443 allow pm2-runtime to auto-exit even if modules are still running - fix: #4364 typos - fix: #4288 add 'max' type in typescript definition 2019-10-15T09:49:47+00:00 pm2 4.1.1 pm2 4.1.1 2019-10-15T10:25:34+00:00 - fix: #4452 disable network collection metric 2019-10-15T10:25:34+00:00 pm2 4.1.2 pm2 4.1.2 2019-10-25T14:23:50+00:00 2019-10-25T14:23:50+00:00 pm2 4.2.0 pm2 4.2.0 2019-11-14T10:38:39+00:00 - feature: `pm2 logs --highlight <str>` to highlight specified string when using `pm2 logs` #4013 by @bvsubhash - feature: `pm2 sysmonit` activate system wide monitoring && `pm2 sysinfos` display system informations - feature: new App Namespace feature via `namespace` attr or `pm2 start app.js --namespace <ns>` #3471 by @bvsubhash - feature: enforce message sending for Windows Graceful Shutdown via `pm2 start app.js --shutdown-with-message` to use message sending for specific process or via `PM2_KILL_USE_MESSAGE=true pm2 update` to default this behavior on PM2. #3561 #3691 #3555 #4469 #4470 #4474 by @aleksk and @8ai - feature: `pm2 ls` now display a hint when process list differ from dump file - fix: if id > 100 not shown in pm2 ls #4475 - fix: stop and delete cron immediately on deletion of a process #4492 by @bvsubhash - fix: display correct username by @bvsubhash - chore: add test on node 13.x - chore: cleanup some unused files - chore: enforce node >= 8.10.0 2019-11-14T10:38:39+00:00 pm2 4.2.1 pm2 4.2.1 2019-12-10T18:29:21+00:00 - fix: col size too small for certain app name with tracing enabled - chore: check for pm2 updates 2019-12-10T18:29:21+00:00 pm2 4.2.2 pm2 4.2.2 2020-01-20T11:51:54+00:00 - feat: Support ESM on Node 13 via .mjs file or "type":"module" in package.json #4540 - fix: Fix an error for pm2 path on Windows. #4563 2020-01-20T11:51:54+00:00 pm2 4.2.3 pm2 4.2.3 2020-01-21T14:12:21+00:00 - fix: Fix an import error on Node 9.x 2020-01-21T14:12:21+00:00 pm2 4.3.0 pm2 4.3.0 2020-04-18T08:22:43+00:00 - feature: reduce by 1/3 pm2 package size (drop moment, lodash) - feature: pm2 start app.js --filter-env NODE_ENV #4596 - feature: print logs of a particular namespace #4517 @bvsubhash - feature: trigger all the process using 'all' or trigger all processes in a particular namespace #4518 @bvsubhash - feature: support ecosystem.config.cjs #4662 @Timic3 - fix: disable log (--error /dev/null --output /dev/null) on Windows #4560 @codpot - fix: pm2 install <tar_file> adaptation #4593 @adunkey - fix: add type for pm2.reload with optional options parameter #4615 @kevindoveton - fix: add `ignore_watch` to StartOptions types #4629 @jlvcm - fix: fix --cwd CLI option description #4639 @warpdesign - fix: do not require cron if not necessary in CLI - fix: upgrade mkdirp to 1.0.4 (sec vuln) #4638 - chore: bump mocha to latest + drop mocha.opts + add .mocharc.yml - chore: pm2 init ecosyst file template changes - chore: pm2-deploy@1.0.2 (revert fix) - chore: pm2-io-apm@4.3.4 (instant trace + broadcast trace threshold + boolean metrics support) 2020-04-18T08:22:43+00:00 pm2 4.3.1 pm2 4.3.1 2020-04-22T10:25:19+00:00 - Rollback to vizion < 1.0 2020-04-22T10:25:19+00:00 pm2 4.4.0 pm2 4.4.0 2020-04-23T20:04:20+00:00 - feat: fixes for Node.js 14 2020-04-23T20:04:20+00:00 pm2 4.4.1 pm2 4.4.1 2020-08-17T08:51:45+00:00 - feature drop: autodump fixes #4763 - fix: fix starting pm2 script from inside an app #4761 (need use PM2_PROGRAMMATIC) 2020-08-17T08:51:45+00:00 pm2 4.5.0 pm2 4.5.0 2020-09-29T14:25:11+00:00 ## 4.5.0 - fix: creating log folder in sync mode. #4846 - PR #4844 by @QS20199 - fix: PM2 unable to run ESM packages: ERR_UNSUPPORTED_ESM_URL_SCHEME #4839 - PR #4841 by @ox-harris - fix: Use opts.namespace if it was passed in. Previously, it was ignored. #4778 - PR #4791 by @sbleon - fix: Prevent reloadLogs command from hanging. #4781 - PR #4782 by @mbrooks and Franck Danard - fix: backward compatibility fix for tarball modules - PR #4767 by @ykolbin - fix: Operation not permitted on call setgid #2957 - PR #4681 by @guard43ru - chore: upgrade dependencies 2020-09-29T14:25:11+00:00 pm2 4.5.1 pm2 4.5.1 2020-12-16T14:36:52+00:00 - fix: cron in cluster mode was not restarting process after one pass - fixes #4834 #4733 #4307 #4834 - fix: restore --sort <param> option on `pm2 ls` - fix #4536 - fix: fix tests with npm7 - fix: restore warning message about process list changed and not dumped - chore: alias `--cron` with `--cron-restart` - chore: test PM2 againt Node.js 15.x - chore: upgrade systeminformation and debug module to latest - PR #4892 by @AdamMajer - chore: drop Node 9.x from travis testing - chore: remove ps-list module 2020-12-16T14:36:52+00:00 pm2 4.5.2 pm2 4.5.2 2021-01-29T08:22:56+00:00 - bump @pm2/js-api (axios CVE) 2021-01-29T08:22:56+00:00 pm2 4.5.4 pm2 4.5.4 2021-01-31T14:42:31+00:00 - drop non used package - bump vizion from 0.2.13 to 2.2.1 (Snyk CVE) - bump chokidar to 3.5.1 2021-01-31T14:42:31+00:00 pm2 4.5.5 pm2 4.5.5 2021-02-25T22:18:37+00:00 - bump debug - remove systeminformation 2021-02-25T22:18:37+00:00 pm2 4.5.6 pm2 4.5.6 2021-04-01T10:20:19+00:00 - all submodules version bumped - supress all "security" warnings 2021-04-01T10:20:19+00:00 pm2 5.0.0 pm2 5.0.0 2021-06-07T13:43:59+00:00 ### System Monitoring A new local system monitoring feature has been added, allowing to monitor numerous vital server metrics. Most important metrics will be displayed when doing a pm2 ls: ```bash ┌─────┬─────────────────┬─────────────┬─────────┬─────────┬──────────┬────────┬──────┬───────────┬──────────┬──────────┬──────────┬──────────┐ │ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │ ├─────┼─────────────────┼─────────────┼─────────┼─────────┼──────────┼────────┼──────┼───────────┼──────────┼──────────┼──────────┼──────────┤ │ 4 │ app │ default │ 1.0.0 │ fork │ 164618 │ 2s │ 1670 │ online │ 0% │ 41.8mb │ unitech │ disabled │ └─────┴─────────────────┴─────────────┴─────────┴─────────┴──────────┴────────┴──────┴───────────┴──────────┴──────────┴──────────┴──────────┘ host metrics | cpu: 1.6% 42.9º | mem free: 52.0% | wlp0s20f3: ⇓ 0mb/s ⇑ 0mb/s | disk: ⇓ 0.199mb/s ⇑ 0mb/s /dev/nvme0n1p3 88.25% | ``` All server metrics will be available to pm2.io: ``` ┌─────────────────────────────┬──────────────────────────────────┐ │ PM2 CPU Usage │ 0.0 % │ │ PM2 Memory Usage │ 67.4 mb │ │ PM2 Agent CPU Usage │ 0 % │ │ PM2 Agent Memory Usage │ 0 mb │ │ CPU Usage │ 1.5 % │ │ CPUs Usage │ 0|0|0|0|2|0|0|1|0|0|0|1|0|1|2|8 │ │ CPU Temperature │ 42.9 °C │ │ RAM Total │ 15.34 gb │ │ RAM Free │ 1.18 gb │ │ RAM Active │ 7.35 gb │ │ RAM Available │ 7.99 gb │ │ RAM Usage │ 47.9 % │ │ FD Opened │ 15072 │ │ Disk Writes │ 0 mb/s │ │ Disk Reads │ 0.24 mb/s │ │ Disk Usage │ 88.25 % │ │ Disk Size │ 465.60 gb │ │ Total TX │ 0.005 mb/s │ │ Total RX │ 0.004 mb/s │ │ fs:use:/dev/nvme0n1p3 │ 88.25 % │ │ fs:size:/dev/nvme0n1p3 │ 465.60 gb │ │ net:tx_5:wlp0s20f3 │ 0.005 mb/s │ │ net:rx_5:wlp0s20f3 │ 0.004 mb/s │ │ net:rx_errors_60:wlp0s20f3 │ 0 /min │ │ net:tx_errors_60:wlp0s20f3 │ 0 /min │ │ net:rx_dropped_60:wlp0s20f3 │ 0 /min │ │ net:tx_dropped_60:wlp0s20f3 │ 0 /min │ │ graphics:mem:total │ 3878 mb │ │ graphics:mem:used │ 1260 mb │ │ graphics:temp │ 46 °C │ └─────────────────────────────┴──────────────────────────────────┘ ``` #### Disabling system monitoring ``` # Disable system monitoring pm2 set pm2:sysmonit false # Enable system monitoring pm2 set pm2:sysmonit true ``` ### PM2.io bandwidth reduction Data quantity sent from PM2 to PM2.io has been reduced by 80%, thanks for a json patch differential system. Much more data can now be exposed (metrics, actions) to PM2.io ### Other fixes - feat: added args and full script path to monitoring data - fix: regular local ip check - fix: pm2 agent watchdog has been consolidated and fixes freezing issues - fix: modules bumped 2021-06-07T13:43:59+00:00 pm2 5.0.3 pm2 5.0.3 2021-06-08T13:04:07+00:00 - fixes for system monitoring 2021-06-08T13:04:07+00:00 pm2 5.1.1 pm2 5.1.1 2021-09-02T06:39:01+00:00 - add back Node 10.x support - make pm2-sysmonit module optional - remove fast-printf and replace with sprintfjs 2021-09-02T06:39:01+00:00 pm2 5.1.2 pm2 5.1.2 2021-09-24T11:18:46+00:00 - cron-restart improvements 2021-09-24T11:18:46+00:00 pm2 5.2.0 pm2 5.2.0 2022-02-17T13:05:04+00:00 - replace node-cron by croner (#5183 #5035) - upgrade mocha deps - fix pm2 report when daemon not running - remove semver check for legacy node.js versions - update node version in setup.deb.sh by using lts (#5201) + openrc - replace legacy util._extend by Object.assign (#5239) - add missing start options types (#5242) - recursive detection of package.json (#5267) - make tarball module uninstall cross-platform (#5269) - Fix unnecessary "ENOENT" console.error when serving a spa (#5272) - fix: used env variable instead of hardcode datetime format (#5277) - copyright update (#5278) - fix: remove constants import from VersionCheck (not needed) (#5279) - Reduce async import (#5280) 2022-02-17T13:05:04+00:00 pm2 5.2.2 pm2 5.2.2 2022-10-13T08:06:28+00:00 - fix cluster error avoiding process restart (#5396) - ensure increment_var value is a number (#5435) - update dependencies - add node latest to travis testing 2022-10-13T08:06:28+00:00 pm2 5.3.0 pm2 5.3.0 2023-03-15T20:58:19+00:00 - fix: replace non-working condition that blocks flush from clearing the logs #5533 @Sailboat265 - fix: ESM script loader #5524 @BlueWater86 2023-03-15T20:58:19+00:00