You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+26-10
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,14 @@
1
1
# Change Log
2
-
All notable changes to this project will be documented in this file.
3
-
This project adheres to [Semantic Versioning](http://semver.org/).
4
2
5
-
## [Unreleased]
3
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
- Drop support for Node v6 (#392) ([2e9636a](https://github.com/motdotla/dotenv/commit/2e9636a)), closes [#392](https://github.com/motdotla/dotenv/issues/392)
8
+
9
+
### BREAKING CHANGES
10
+
11
+
- dropping Node v6 support because end-of-life
6
12
7
13
## [7.0.0] - 2019-03-12
8
14
@@ -30,7 +36,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
30
36
31
37
### Changed
32
38
33
-
-*Breaking:* drop support for Node v4 ([#304](https://github.com/motdotla/dotenv/pull/304))
39
+
-_Breaking:_ drop support for Node v4 ([#304](https://github.com/motdotla/dotenv/pull/304))
34
40
35
41
## [5.0.0] - 2018-01-29
36
42
@@ -42,27 +48,26 @@ This project adheres to [Semantic Versioning](http://semver.org/).
42
48
43
49
### Changed
44
50
45
-
-*Breaking*: default `path` is now `path.resolve(process.cwd(), '.env')`
46
-
-*Breaking*: does not write over keys already in `process.env` if the key has a falsy value
51
+
-_Breaking_: default `path` is now `path.resolve(process.cwd(), '.env')`
52
+
-_Breaking_: does not write over keys already in `process.env` if the key has a falsy value
47
53
- using `const` and `let` instead of `var`
48
54
49
55
### Removed
50
56
51
57
- Testing against Node v7
52
58
53
-
54
59
## [4.0.0] - 2016-12-23
60
+
55
61
### Changed
56
62
57
63
- Return Object with parsed content or error instead of false ([#165](https://github.com/motdotla/dotenv/pull/165)).
58
64
59
-
60
65
### Removed
61
66
62
67
-`verbose` option removed in favor of returning result.
63
68
64
-
65
69
## [3.0.0] - 2016-12-20
70
+
66
71
### Added
67
72
68
73
-`verbose` option will log any error messages. Off by default.
@@ -83,38 +88,49 @@ This project adheres to [Semantic Versioning](http://semver.org/).
83
88
-`silent` option removed in favor of `verbose`
84
89
85
90
## [2.0.0] - 2016-01-20
91
+
86
92
### Added
93
+
87
94
- 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
88
95
- LICENSE to be more explicit about what was defined in `package.json`. Linked to from README
89
96
- Testing nodejs v4 on travis-ci
90
97
- added examples of how to use dotenv in different ways
91
98
- return parsed object on success rather than boolean true
92
99
93
100
### Changed
101
+
94
102
- README has shorter description not referencing ruby gem since we don't have or want feature parity
95
103
96
104
### Removed
105
+
97
106
- Variable expansion and escaping so environment variables are encouraged to be fully orthogonal
98
107
99
108
## [1.2.0] - 2015-06-20
109
+
100
110
### Added
111
+
101
112
- Preload hook to require dotenv without including it in your code
102
113
103
114
### Changed
115
+
104
116
- clarified license to be "BSD-2-Clause" in `package.json`
105
117
106
118
### Fixed
119
+
107
120
- retain spaces in string vars
108
121
109
122
## [1.1.0] - 2015-03-31
123
+
110
124
### Added
125
+
111
126
- Silent option to silence `console.log` when `.env` missing
112
127
113
128
## [1.0.0] - 2015-03-13
129
+
114
130
### Removed
131
+
115
132
- support for multiple `.env` files. should always use one `.env` file for the current environment
0 commit comments