This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Dotenv/CHANGELOG.md

25 lines
628 B
Markdown
Raw Normal View History

2017-01-11 00:13:23 +00:00
CHANGELOG
=========
5.0.0
-----
* using `putenv()` is disabled by default
4.3.0
-----
2019-04-10 21:28:30 +01:00
* deprecated use of `putenv()` by default. This feature will be opted-in with a constructor argument to `Dotenv`
4.2.0
-----
* added `Dotenv::overload()` and `$overrideExistingVars` as optional parameter of `Dotenv::populate()`
* added `Dotenv::loadEnv()` to load a .env file and its corresponding .env.local, .env.$env and .env.$env.local files if they exist
2017-01-11 00:13:23 +00:00
3.3.0
-----
2017-09-03 18:54:53 +01:00
* [BC BREAK] Since v3.3.7, the latest Dotenv files override the previous ones. Real env vars are not affected and are not overridden.
2017-01-11 00:13:23 +00:00
* added the component