Releases: vlucas/phpdotenv
Releases · vlucas/phpdotenv
V2.6.1 (29/01/2019)
V2.6.0 (28/01/2019)
V3.3.0 (26/01/2019)
We announce the immediate availability V3.3.0.
Bug Fixes
- Rewrite parser and fix escaped quotes in multiline values (#322)
V3.2.0 (24/01/2019)
We announce the immediate availability V3.2.0.
New Features
- Support direct loading with a string (#321)
V3.1.1 (23/01/2019)
We announce the immediate availability V3.1.1.
Changes
- Allow DotenvFactory to accept an empty array of adapters (#320)
V3.1.0 (04/01/2019)
V3.0.0 (03/01/2019)
Happy new year, and happy new release! We've made some important improvements to this library since v2 (such as first-class support for multiline variables), but maintained much of the same API where possible.
New Features
- More flexibility in terms of which parts of the environment we try to read and modify (#300)
- First-class support for multiline variables (#301)
- No more trimming of values. you get them exactly as is now (#302)
- Accept a list of paths to try in order looking for the dotenv file, rather than a single path (#307)
- Stronger validation of variable names to avoid silent failures or obscure errors (#311)
Upgrading Notes
- Replace
new Dotenv(...)
withDotenv::create(...)
(#300) Loader::load()
and its callers now return an associative array of the variables loaded with their values, rather than an array of raw lines from the environment file (#306)- As mentioned in the new feature, we're no longer trimming values, so that may be a breaking change for you (#302)
Please see the upgrading guide for more detail.
V2.5.2 (30/10/2018)
We announce the immediate availability V2.5.2.
Bug Fixes
- Fixed overload falsy apache variables (#284)
V2.5.1 (29/07/2018)
We announce the immediate availability V2.5.1.
Bug Fixes
- Fixed quoted hashes being treated as comments (#277)