CHANGELOG.md in plezi-0.14.2 vs CHANGELOG.md in plezi-0.14.3
- old
+ new
@@ -1,8 +1,20 @@
#Change Log
***
+Change log v.0.14.3
+
+**Dependencies**: added the missing `bundler` and `rack >= 2.0.0` dependencies. Since the bundler gem is often installed by default, it took me a while to realize it was missing from the dependency list. Rack was also easy to miss (being as common).
+
+**Update**: minor tweaks to the cookie jar, allowing a unified `to_s` method and unified `keys`/`values` methods.
+
+**Update**: added an Iodine worker process default to prevent auto-forking unless Redis is used for Websocket scaling. Plezi will default to a single process even though Iodine will default to the number of CPU cores / 2.
+
+**minor fix**: fixed small issues with the app template (old text was updated).
+
+***
+
Change log v.0.14.2
**Dependencies**: updates to dependency version requirements.
**Performance**: minor performance updates, i.e.: in the router, moved a `case` statement from the live (app is running) stage to the prep (app is initializing) stage and saved the `call` method extraction result for faster middleware mode performance.