UNPKG

4.6 kBMarkdownView Raw
1# Changelog
2
3All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
5## [8.2.0](https://github.com/motdotla/dotenv/compare/v8.1.0...v8.2.0) (2019-10-16)
6
7## [8.1.0](https://github.com/motdotla/dotenv/compare/v7.0.0...v8.1.0) (2019-08-18)
8
9
10### ⚠ BREAKING CHANGES
11
12* dropping Node v6 support because end-of-life
13
14* Drop support for Node v6 (#392) ([2e9636a](https://github.com/motdotla/dotenv/commit/2e9636a)), closes [#392](https://github.com/motdotla/dotenv/issues/392)
15
16# [8.0.0](https://github.com/motdotla/dotenv/compare/v7.0.0...v8.0.0) (2019-05-02)
17
18- Drop support for Node v6 (#392) ([2e9636a](https://github.com/motdotla/dotenv/commit/2e9636a)), closes [#392](https://github.com/motdotla/dotenv/issues/392)
19
20### BREAKING CHANGES
21
22- dropping Node v6 support because end-of-life
23
24## [7.0.0] - 2019-03-12
25
26### Fixed
27
28- Fix removing unbalanced quotes ([#376](https://github.com/motdotla/dotenv/pull/376))
29
30### Removed
31
32- Removed `load` alias for `config` for consistency throughout code and documentation.
33
34## [6.2.0] - 2018-12-03
35
36### Added
37
38- Support preload configuration via environment variables ([#351](https://github.com/motdotla/dotenv/issues/351))
39
40## [6.1.0] - 2018-10-08
41
42### Added
43
44- `debug` option for `config` and `parse` methods will turn on logging
45
46## [6.0.0] - 2018-06-02
47
48### Changed
49
50- _Breaking:_ drop support for Node v4 ([#304](https://github.com/motdotla/dotenv/pull/304))
51
52## [5.0.0] - 2018-01-29
53
54### Added
55
56- Testing against Node v8 and v9
57- Documentation on trim behavior of values
58- Documentation on how to use with `import`
59
60### Changed
61
62- _Breaking_: default `path` is now `path.resolve(process.cwd(), '.env')`
63- _Breaking_: does not write over keys already in `process.env` if the key has a falsy value
64- using `const` and `let` instead of `var`
65
66### Removed
67
68- Testing against Node v7
69
70## [4.0.0] - 2016-12-23
71
72### Changed
73
74- Return Object with parsed content or error instead of false ([#165](https://github.com/motdotla/dotenv/pull/165)).
75
76### Removed
77
78- `verbose` option removed in favor of returning result.
79
80## [3.0.0] - 2016-12-20
81
82### Added
83
84- `verbose` option will log any error messages. Off by default.
85- parses email addresses correctly
86- allow importing config method directly in ES6
87
88### Changed
89
90- Suppress error messages by default ([#154](https://github.com/motdotla/dotenv/pull/154))
91- Ignoring more files for NPM to make package download smaller
92
93### Fixed
94
95- False positive test due to case-sensitive variable ([#124](https://github.com/motdotla/dotenv/pull/124))
96
97### Removed
98
99- `silent` option removed in favor of `verbose`
100
101## [2.0.0] - 2016-01-20
102
103### Added
104
105- CHANGELOG to ["make it easier for users and contributors to see precisely what notable changes have been made between each release"](http://keepachangelog.com/). Linked to from README
106- LICENSE to be more explicit about what was defined in `package.json`. Linked to from README
107- Testing nodejs v4 on travis-ci
108- added examples of how to use dotenv in different ways
109- return parsed object on success rather than boolean true
110
111### Changed
112
113- README has shorter description not referencing ruby gem since we don't have or want feature parity
114
115### Removed
116
117- Variable expansion and escaping so environment variables are encouraged to be fully orthogonal
118
119## [1.2.0] - 2015-06-20
120
121### Added
122
123- Preload hook to require dotenv without including it in your code
124
125### Changed
126
127- clarified license to be "BSD-2-Clause" in `package.json`
128
129### Fixed
130
131- retain spaces in string vars
132
133## [1.1.0] - 2015-03-31
134
135### Added
136
137- Silent option to silence `console.log` when `.env` missing
138
139## [1.0.0] - 2015-03-13
140
141### Removed
142
143- support for multiple `.env` files. should always use one `.env` file for the current environment
144
145[7.0.0]: https://github.com/motdotla/dotenv/compare/v6.2.0...v7.0.0
146[6.2.0]: https://github.com/motdotla/dotenv/compare/v6.1.0...v6.2.0
147[6.1.0]: https://github.com/motdotla/dotenv/compare/v6.0.0...v6.1.0
148[6.0.0]: https://github.com/motdotla/dotenv/compare/v5.0.0...v6.0.0
149[5.0.0]: https://github.com/motdotla/dotenv/compare/v4.0.0...v5.0.0
150[4.0.0]: https://github.com/motdotla/dotenv/compare/v3.0.0...v4.0.0
151[3.0.0]: https://github.com/motdotla/dotenv/compare/v2.0.0...v3.0.0
152[2.0.0]: https://github.com/motdotla/dotenv/compare/v1.2.0...v2.0.0
153[1.2.0]: https://github.com/motdotla/dotenv/compare/v1.1.0...v1.2.0
154[1.1.0]: https://github.com/motdotla/dotenv/compare/v1.0.0...v1.1.0
155[1.0.0]: https://github.com/motdotla/dotenv/compare/v0.4.0...v1.0.0