市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

598 lines
21 KiB

  1. # Changelog
  2. 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.
  3. ## [Unreleased](https://github.com/motdotla/dotenv/compare/v17.2.3...master)
  4. ## [17.2.3](https://github.com/motdotla/dotenv/compare/v17.2.2...v17.2.3) (2025-09-29)
  5. ### Changed
  6. * Fixed typescript error definition ([#912](https://github.com/motdotla/dotenv/pull/912))
  7. ## [17.2.2](https://github.com/motdotla/dotenv/compare/v17.2.1...v17.2.2) (2025-09-02)
  8. ### Added
  9. - 🙏 A big thank you to new sponsor [Tuple.app](https://tuple.app/dotenv) - *the premier screen sharing app for developers on macOS and Windows.* Go check them out. It's wonderful and generous of them to give back to open source by sponsoring dotenv. Give them some love back.
  10. ## [17.2.1](https://github.com/motdotla/dotenv/compare/v17.2.0...v17.2.1) (2025-07-24)
  11. ### Changed
  12. * Fix clickable tip links by removing parentheses ([#897](https://github.com/motdotla/dotenv/pull/897))
  13. ## [17.2.0](https://github.com/motdotla/dotenv/compare/v17.1.0...v17.2.0) (2025-07-09)
  14. ### Added
  15. * Optionally specify `DOTENV_CONFIG_QUIET=true` in your environment or `.env` file to quiet the runtime log ([#889](https://github.com/motdotla/dotenv/pull/889))
  16. * Just like dotenv any `DOTENV_CONFIG_` environment variables take precedence over any code set options like `({quiet: false})`
  17. ```ini
  18. # .env
  19. DOTENV_CONFIG_QUIET=true
  20. HELLO="World"
  21. ```
  22. ```js
  23. // index.js
  24. require('dotenv').config()
  25. console.log(`Hello ${process.env.HELLO}`)
  26. ```
  27. ```sh
  28. $ node index.js
  29. Hello World
  30. or
  31. $ DOTENV_CONFIG_QUIET=true node index.js
  32. ```
  33. ## [17.1.0](https://github.com/motdotla/dotenv/compare/v17.0.1...v17.1.0) (2025-07-07)
  34. ### Added
  35. * Add additional security and configuration tips to the runtime log ([#884](https://github.com/motdotla/dotenv/pull/884))
  36. * Dim the tips text from the main injection information text
  37. ```js
  38. const TIPS = [
  39. '🔐 encrypt with dotenvx: https://dotenvx.com',
  40. '🔐 prevent committing .env to code: https://dotenvx.com/precommit',
  41. '🔐 prevent building .env in docker: https://dotenvx.com/prebuild',
  42. '🛠️ run anywhere with `dotenvx run -- yourcommand`',
  43. '⚙️ specify custom .env file path with { path: \'/custom/path/.env\' }',
  44. '⚙️ enable debug logging with { debug: true }',
  45. '⚙️ override existing env vars with { override: true }',
  46. '⚙️ suppress all logs with { quiet: true }',
  47. '⚙️ write to custom object with { processEnv: myObject }',
  48. '⚙️ load multiple .env files with { path: [\'.env.local\', \'.env\'] }'
  49. ]
  50. ```
  51. ## [17.0.1](https://github.com/motdotla/dotenv/compare/v17.0.0...v17.0.1) (2025-07-01)
  52. ### Changed
  53. * Patched injected log to count only populated/set keys to process.env ([#879](https://github.com/motdotla/dotenv/pull/879))
  54. ## [17.0.0](https://github.com/motdotla/dotenv/compare/v16.6.1...v17.0.0) (2025-06-27)
  55. ### Changed
  56. - Default `quiet` to false - informational (file and keys count) runtime log message shows by default ([#875](https://github.com/motdotla/dotenv/pull/875))
  57. ## [16.6.1](https://github.com/motdotla/dotenv/compare/v16.6.0...v16.6.1) (2025-06-27)
  58. ### Changed
  59. - Default `quiet` to true – hiding the runtime log message ([#874](https://github.com/motdotla/dotenv/pull/874))
  60. - NOTICE: 17.0.0 will be released with quiet defaulting to false. Use `config({ quiet: true })` to suppress.
  61. - And check out the new [dotenvx](https://github.com/dotenvx/dotenvx). As coding workflows evolve and agents increasingly handle secrets, encrypted .env files offer a much safer way to deploy both agents and code together with secure secrets. Simply switch `require('dotenv').config()` for `require('@dotenvx/dotenvx').config()`.
  62. ## [16.6.0](https://github.com/motdotla/dotenv/compare/v16.5.0...v16.6.0) (2025-06-26)
  63. ### Added
  64. - Default log helpful message `[dotenv@16.6.0] injecting env (1) from .env` ([#870](https://github.com/motdotla/dotenv/pull/870))
  65. - Use `{ quiet: true }` to suppress
  66. - Aligns dotenv more closely with [dotenvx](https://github.com/dotenvx/dotenvx).
  67. ## [16.5.0](https://github.com/motdotla/dotenv/compare/v16.4.7...v16.5.0) (2025-04-07)
  68. ### Added
  69. - 🎉 Added new sponsor [Graphite](https://graphite.dev/?utm_source=github&utm_medium=repo&utm_campaign=dotenv) - *the AI developer productivity platform helping teams on GitHub ship higher quality software, faster*.
  70. > [!TIP]
  71. > **[Become a sponsor](https://github.com/sponsors/motdotla)**
  72. >
  73. > The dotenvx README is viewed thousands of times DAILY on GitHub and NPM.
  74. > Sponsoring dotenv is a great way to get in front of developers and give back to the developer community at the same time.
  75. ### Changed
  76. - Remove `_log` method. Use `_debug` [#862](https://github.com/motdotla/dotenv/pull/862)
  77. ## [16.4.7](https://github.com/motdotla/dotenv/compare/v16.4.6...v16.4.7) (2024-12-03)
  78. ### Changed
  79. - Ignore `.tap` folder when publishing. (oops, sorry about that everyone. - @motdotla) [#848](https://github.com/motdotla/dotenv/pull/848)
  80. ## [16.4.6](https://github.com/motdotla/dotenv/compare/v16.4.5...v16.4.6) (2024-12-02)
  81. ### Changed
  82. - Clean up stale dev dependencies [#847](https://github.com/motdotla/dotenv/pull/847)
  83. - Various README updates clarifying usage and alternative solutions using [dotenvx](https://github.com/dotenvx/dotenvx)
  84. ## [16.4.5](https://github.com/motdotla/dotenv/compare/v16.4.4...v16.4.5) (2024-02-19)
  85. ### Changed
  86. - 🐞 Fix recent regression when using `path` option. return to historical behavior: do not attempt to auto find `.env` if `path` set. (regression was introduced in `16.4.3`) [#814](https://github.com/motdotla/dotenv/pull/814)
  87. ## [16.4.4](https://github.com/motdotla/dotenv/compare/v16.4.3...v16.4.4) (2024-02-13)
  88. ### Changed
  89. - 🐞 Replaced chaining operator `?.` with old school `&&` (fixing node 12 failures) [#812](https://github.com/motdotla/dotenv/pull/812)
  90. ## [16.4.3](https://github.com/motdotla/dotenv/compare/v16.4.2...v16.4.3) (2024-02-12)
  91. ### Changed
  92. - Fixed processing of multiple files in `options.path` [#805](https://github.com/motdotla/dotenv/pull/805)
  93. ## [16.4.2](https://github.com/motdotla/dotenv/compare/v16.4.1...v16.4.2) (2024-02-10)
  94. ### Changed
  95. - Changed funding link in package.json to [`dotenvx.com`](https://dotenvx.com)
  96. ## [16.4.1](https://github.com/motdotla/dotenv/compare/v16.4.0...v16.4.1) (2024-01-24)
  97. - Patch support for array as `path` option [#797](https://github.com/motdotla/dotenv/pull/797)
  98. ## [16.4.0](https://github.com/motdotla/dotenv/compare/v16.3.2...v16.4.0) (2024-01-23)
  99. - Add `error.code` to error messages around `.env.vault` decryption handling [#795](https://github.com/motdotla/dotenv/pull/795)
  100. - Add ability to find `.env.vault` file when filename(s) passed as an array [#784](https://github.com/motdotla/dotenv/pull/784)
  101. ## [16.3.2](https://github.com/motdotla/dotenv/compare/v16.3.1...v16.3.2) (2024-01-18)
  102. ### Added
  103. - Add debug message when no encoding set [#735](https://github.com/motdotla/dotenv/pull/735)
  104. ### Changed
  105. - Fix output typing for `populate` [#792](https://github.com/motdotla/dotenv/pull/792)
  106. - Use subarray instead of slice [#793](https://github.com/motdotla/dotenv/pull/793)
  107. ## [16.3.1](https://github.com/motdotla/dotenv/compare/v16.3.0...v16.3.1) (2023-06-17)
  108. ### Added
  109. - Add missing type definitions for `processEnv` and `DOTENV_KEY` options. [#756](https://github.com/motdotla/dotenv/pull/756)
  110. ## [16.3.0](https://github.com/motdotla/dotenv/compare/v16.2.0...v16.3.0) (2023-06-16)
  111. ### Added
  112. - Optionally pass `DOTENV_KEY` to options rather than relying on `process.env.DOTENV_KEY`. Defaults to `process.env.DOTENV_KEY` [#754](https://github.com/motdotla/dotenv/pull/754)
  113. ## [16.2.0](https://github.com/motdotla/dotenv/compare/v16.1.4...v16.2.0) (2023-06-15)
  114. ### Added
  115. - Optionally write to your own target object rather than `process.env`. Defaults to `process.env`. [#753](https://github.com/motdotla/dotenv/pull/753)
  116. - Add import type URL to types file [#751](https://github.com/motdotla/dotenv/pull/751)
  117. ## [16.1.4](https://github.com/motdotla/dotenv/compare/v16.1.3...v16.1.4) (2023-06-04)
  118. ### Added
  119. - Added `.github/` to `.npmignore` [#747](https://github.com/motdotla/dotenv/pull/747)
  120. ## [16.1.3](https://github.com/motdotla/dotenv/compare/v16.1.2...v16.1.3) (2023-05-31)
  121. ### Removed
  122. - Removed `browser` keys for `path`, `os`, and `crypto` in package.json. These were set to false incorrectly as of 16.1. Instead, if using dotenv on the front-end make sure to include polyfills for `path`, `os`, and `crypto`. [node-polyfill-webpack-plugin](https://github.com/Richienb/node-polyfill-webpack-plugin) provides these.
  123. ## [16.1.2](https://github.com/motdotla/dotenv/compare/v16.1.1...v16.1.2) (2023-05-31)
  124. ### Changed
  125. - Exposed private function `_configDotenv` as `configDotenv`. [#744](https://github.com/motdotla/dotenv/pull/744)
  126. ## [16.1.1](https://github.com/motdotla/dotenv/compare/v16.1.0...v16.1.1) (2023-05-30)
  127. ### Added
  128. - Added type definition for `decrypt` function
  129. ### Changed
  130. - Fixed `{crypto: false}` in `packageJson.browser`
  131. ## [16.1.0](https://github.com/motdotla/dotenv/compare/v16.0.3...v16.1.0) (2023-05-30)
  132. ### Added
  133. - Add `populate` convenience method [#733](https://github.com/motdotla/dotenv/pull/733)
  134. - Accept URL as path option [#720](https://github.com/motdotla/dotenv/pull/720)
  135. - Add dotenv to `npm fund` command
  136. - Spanish language README [#698](https://github.com/motdotla/dotenv/pull/698)
  137. - Add `.env.vault` support. 🎉 ([#730](https://github.com/motdotla/dotenv/pull/730))
  138. ℹ️ `.env.vault` extends the `.env` file format standard with a localized encrypted vault file. Package it securely with your production code deploys. It's cloud agnostic so that you can deploy your secrets anywhere – without [risky third-party integrations](https://techcrunch.com/2023/01/05/circleci-breach/). [read more](https://github.com/motdotla/dotenv#-deploying)
  139. ### Changed
  140. - Fixed "cannot resolve 'fs'" error on tools like Replit [#693](https://github.com/motdotla/dotenv/pull/693)
  141. ## [16.0.3](https://github.com/motdotla/dotenv/compare/v16.0.2...v16.0.3) (2022-09-29)
  142. ### Changed
  143. - Added library version to debug logs ([#682](https://github.com/motdotla/dotenv/pull/682))
  144. ## [16.0.2](https://github.com/motdotla/dotenv/compare/v16.0.1...v16.0.2) (2022-08-30)
  145. ### Added
  146. - Export `env-options.js` and `cli-options.js` in package.json for use with downstream [dotenv-expand](https://github.com/motdotla/dotenv-expand) module
  147. ## [16.0.1](https://github.com/motdotla/dotenv/compare/v16.0.0...v16.0.1) (2022-05-10)
  148. ### Changed
  149. - Minor README clarifications
  150. - Development ONLY: updated devDependencies as recommended for development only security risks ([#658](https://github.com/motdotla/dotenv/pull/658))
  151. ## [16.0.0](https://github.com/motdotla/dotenv/compare/v15.0.1...v16.0.0) (2022-02-02)
  152. ### Added
  153. - _Breaking:_ Backtick support 🎉 ([#615](https://github.com/motdotla/dotenv/pull/615))
  154. If you had values containing the backtick character, please quote those values with either single or double quotes.
  155. ## [15.0.1](https://github.com/motdotla/dotenv/compare/v15.0.0...v15.0.1) (2022-02-02)
  156. ### Changed
  157. - Properly parse empty single or double quoted values 🐞 ([#614](https://github.com/motdotla/dotenv/pull/614))
  158. ## [15.0.0](https://github.com/motdotla/dotenv/compare/v14.3.2...v15.0.0) (2022-01-31)
  159. `v15.0.0` is a major new release with some important breaking changes.
  160. ### Added
  161. - _Breaking:_ Multiline parsing support (just works. no need for the flag.)
  162. ### Changed
  163. - _Breaking:_ `#` marks the beginning of a comment (UNLESS the value is wrapped in quotes. Please update your `.env` files to wrap in quotes any values containing `#`. For example: `SECRET_HASH="something-with-a-#-hash"`).
  164. ..Understandably, (as some teams have noted) this is tedious to do across the entire team. To make it less tedious, we recommend using [dotenv cli](https://github.com/dotenv-org/cli) going forward. It's an optional plugin that will keep your `.env` files in sync between machines, environments, or team members.
  165. ### Removed
  166. - _Breaking:_ Remove multiline option (just works out of the box now. no need for the flag.)
  167. ## [14.3.2](https://github.com/motdotla/dotenv/compare/v14.3.1...v14.3.2) (2022-01-25)
  168. ### Changed
  169. - Preserve backwards compatibility on values containing `#` 🐞 ([#603](https://github.com/motdotla/dotenv/pull/603))
  170. ## [14.3.1](https://github.com/motdotla/dotenv/compare/v14.3.0...v14.3.1) (2022-01-25)
  171. ### Changed
  172. - Preserve backwards compatibility on exports by re-introducing the prior in-place exports 🐞 ([#606](https://github.com/motdotla/dotenv/pull/606))
  173. ## [14.3.0](https://github.com/motdotla/dotenv/compare/v14.2.0...v14.3.0) (2022-01-24)
  174. ### Added
  175. - Add `multiline` option 🎉 ([#486](https://github.com/motdotla/dotenv/pull/486))
  176. ## [14.2.0](https://github.com/motdotla/dotenv/compare/v14.1.1...v14.2.0) (2022-01-17)
  177. ### Added
  178. - Add `dotenv_config_override` cli option
  179. - Add `DOTENV_CONFIG_OVERRIDE` command line env option
  180. ## [14.1.1](https://github.com/motdotla/dotenv/compare/v14.1.0...v14.1.1) (2022-01-17)
  181. ### Added
  182. - Add React gotcha to FAQ on README
  183. ## [14.1.0](https://github.com/motdotla/dotenv/compare/v14.0.1...v14.1.0) (2022-01-17)
  184. ### Added
  185. - Add `override` option 🎉 ([#595](https://github.com/motdotla/dotenv/pull/595))
  186. ## [14.0.1](https://github.com/motdotla/dotenv/compare/v14.0.0...v14.0.1) (2022-01-16)
  187. ### Added
  188. - Log error on failure to load `.env` file ([#594](https://github.com/motdotla/dotenv/pull/594))
  189. ## [14.0.0](https://github.com/motdotla/dotenv/compare/v13.0.1...v14.0.0) (2022-01-16)
  190. ### Added
  191. - _Breaking:_ Support inline comments for the parser 🎉 ([#568](https://github.com/motdotla/dotenv/pull/568))
  192. ## [13.0.1](https://github.com/motdotla/dotenv/compare/v13.0.0...v13.0.1) (2022-01-16)
  193. ### Changed
  194. * Hide comments and newlines from debug output ([#404](https://github.com/motdotla/dotenv/pull/404))
  195. ## [13.0.0](https://github.com/motdotla/dotenv/compare/v12.0.4...v13.0.0) (2022-01-16)
  196. ### Added
  197. * _Breaking:_ Add type file for `config.js` ([#539](https://github.com/motdotla/dotenv/pull/539))
  198. ## [12.0.4](https://github.com/motdotla/dotenv/compare/v12.0.3...v12.0.4) (2022-01-16)
  199. ### Changed
  200. * README updates
  201. * Minor order adjustment to package json format
  202. ## [12.0.3](https://github.com/motdotla/dotenv/compare/v12.0.2...v12.0.3) (2022-01-15)
  203. ### Changed
  204. * Simplified jsdoc for consistency across editors
  205. ## [12.0.2](https://github.com/motdotla/dotenv/compare/v12.0.1...v12.0.2) (2022-01-15)
  206. ### Changed
  207. * Improve embedded jsdoc type documentation
  208. ## [12.0.1](https://github.com/motdotla/dotenv/compare/v12.0.0...v12.0.1) (2022-01-15)
  209. ### Changed
  210. * README updates and clarifications
  211. ## [12.0.0](https://github.com/motdotla/dotenv/compare/v11.0.0...v12.0.0) (2022-01-15)
  212. ### Removed
  213. - _Breaking:_ drop support for Flow static type checker ([#584](https://github.com/motdotla/dotenv/pull/584))
  214. ### Changed
  215. - Move types/index.d.ts to lib/main.d.ts ([#585](https://github.com/motdotla/dotenv/pull/585))
  216. - Typescript cleanup ([#587](https://github.com/motdotla/dotenv/pull/587))
  217. - Explicit typescript inclusion in package.json ([#566](https://github.com/motdotla/dotenv/pull/566))
  218. ## [11.0.0](https://github.com/motdotla/dotenv/compare/v10.0.0...v11.0.0) (2022-01-11)
  219. ### Changed
  220. - _Breaking:_ drop support for Node v10 ([#558](https://github.com/motdotla/dotenv/pull/558))
  221. - Patch debug option ([#550](https://github.com/motdotla/dotenv/pull/550))
  222. ## [10.0.0](https://github.com/motdotla/dotenv/compare/v9.0.2...v10.0.0) (2021-05-20)
  223. ### Added
  224. - Add generic support to parse function
  225. - Allow for import "dotenv/config.js"
  226. - Add support to resolve home directory in path via ~
  227. ## [9.0.2](https://github.com/motdotla/dotenv/compare/v9.0.1...v9.0.2) (2021-05-10)
  228. ### Changed
  229. - Support windows newlines with debug mode
  230. ## [9.0.1](https://github.com/motdotla/dotenv/compare/v9.0.0...v9.0.1) (2021-05-08)
  231. ### Changed
  232. - Updates to README
  233. ## [9.0.0](https://github.com/motdotla/dotenv/compare/v8.6.0...v9.0.0) (2021-05-05)
  234. ### Changed
  235. - _Breaking:_ drop support for Node v8
  236. ## [8.6.0](https://github.com/motdotla/dotenv/compare/v8.5.1...v8.6.0) (2021-05-05)
  237. ### Added
  238. - define package.json in exports
  239. ## [8.5.1](https://github.com/motdotla/dotenv/compare/v8.5.0...v8.5.1) (2021-05-05)
  240. ### Changed
  241. - updated dev dependencies via npm audit
  242. ## [8.5.0](https://github.com/motdotla/dotenv/compare/v8.4.0...v8.5.0) (2021-05-05)
  243. ### Added
  244. - allow for `import "dotenv/config"`
  245. ## [8.4.0](https://github.com/motdotla/dotenv/compare/v8.3.0...v8.4.0) (2021-05-05)
  246. ### Changed
  247. - point to exact types file to work with VS Code
  248. ## [8.3.0](https://github.com/motdotla/dotenv/compare/v8.2.0...v8.3.0) (2021-05-05)
  249. ### Changed
  250. - _Breaking:_ drop support for Node v8 (mistake to be released as minor bump. later bumped to 9.0.0. see above.)
  251. ## [8.2.0](https://github.com/motdotla/dotenv/compare/v8.1.0...v8.2.0) (2019-10-16)
  252. ### Added
  253. - TypeScript types
  254. ## [8.1.0](https://github.com/motdotla/dotenv/compare/v8.0.0...v8.1.0) (2019-08-18)
  255. ### Changed
  256. - _Breaking:_ drop support for Node v6 ([#392](https://github.com/motdotla/dotenv/issues/392))
  257. # [8.0.0](https://github.com/motdotla/dotenv/compare/v7.0.0...v8.0.0) (2019-05-02)
  258. ### Changed
  259. - _Breaking:_ drop support for Node v6 ([#302](https://github.com/motdotla/dotenv/issues/392))
  260. ## [7.0.0] - 2019-03-12
  261. ### Fixed
  262. - Fix removing unbalanced quotes ([#376](https://github.com/motdotla/dotenv/pull/376))
  263. ### Removed
  264. - Removed `load` alias for `config` for consistency throughout code and documentation.
  265. ## [6.2.0] - 2018-12-03
  266. ### Added
  267. - Support preload configuration via environment variables ([#351](https://github.com/motdotla/dotenv/issues/351))
  268. ## [6.1.0] - 2018-10-08
  269. ### Added
  270. - `debug` option for `config` and `parse` methods will turn on logging
  271. ## [6.0.0] - 2018-06-02
  272. ### Changed
  273. - _Breaking:_ drop support for Node v4 ([#304](https://github.com/motdotla/dotenv/pull/304))
  274. ## [5.0.0] - 2018-01-29
  275. ### Added
  276. - Testing against Node v8 and v9
  277. - Documentation on trim behavior of values
  278. - Documentation on how to use with `import`
  279. ### Changed
  280. - _Breaking_: default `path` is now `path.resolve(process.cwd(), '.env')`
  281. - _Breaking_: does not write over keys already in `process.env` if the key has a falsy value
  282. - using `const` and `let` instead of `var`
  283. ### Removed
  284. - Testing against Node v7
  285. ## [4.0.0] - 2016-12-23
  286. ### Changed
  287. - Return Object with parsed content or error instead of false ([#165](https://github.com/motdotla/dotenv/pull/165)).
  288. ### Removed
  289. - `verbose` option removed in favor of returning result.
  290. ## [3.0.0] - 2016-12-20
  291. ### Added
  292. - `verbose` option will log any error messages. Off by default.
  293. - parses email addresses correctly
  294. - allow importing config method directly in ES6
  295. ### Changed
  296. - Suppress error messages by default ([#154](https://github.com/motdotla/dotenv/pull/154))
  297. - Ignoring more files for NPM to make package download smaller
  298. ### Fixed
  299. - False positive test due to case-sensitive variable ([#124](https://github.com/motdotla/dotenv/pull/124))
  300. ### Removed
  301. - `silent` option removed in favor of `verbose`
  302. ## [2.0.0] - 2016-01-20
  303. ### Added
  304. - 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
  305. - LICENSE to be more explicit about what was defined in `package.json`. Linked to from README
  306. - Testing nodejs v4 on travis-ci
  307. - added examples of how to use dotenv in different ways
  308. - return parsed object on success rather than boolean true
  309. ### Changed
  310. - README has shorter description not referencing ruby gem since we don't have or want feature parity
  311. ### Removed
  312. - Variable expansion and escaping so environment variables are encouraged to be fully orthogonal
  313. ## [1.2.0] - 2015-06-20
  314. ### Added
  315. - Preload hook to require dotenv without including it in your code
  316. ### Changed
  317. - clarified license to be "BSD-2-Clause" in `package.json`
  318. ### Fixed
  319. - retain spaces in string vars
  320. ## [1.1.0] - 2015-03-31
  321. ### Added
  322. - Silent option to silence `console.log` when `.env` missing
  323. ## [1.0.0] - 2015-03-13
  324. ### Removed
  325. - support for multiple `.env` files. should always use one `.env` file for the current environment
  326. [7.0.0]: https://github.com/motdotla/dotenv/compare/v6.2.0...v7.0.0
  327. [6.2.0]: https://github.com/motdotla/dotenv/compare/v6.1.0...v6.2.0
  328. [6.1.0]: https://github.com/motdotla/dotenv/compare/v6.0.0...v6.1.0
  329. [6.0.0]: https://github.com/motdotla/dotenv/compare/v5.0.0...v6.0.0
  330. [5.0.0]: https://github.com/motdotla/dotenv/compare/v4.0.0...v5.0.0
  331. [4.0.0]: https://github.com/motdotla/dotenv/compare/v3.0.0...v4.0.0
  332. [3.0.0]: https://github.com/motdotla/dotenv/compare/v2.0.0...v3.0.0
  333. [2.0.0]: https://github.com/motdotla/dotenv/compare/v1.2.0...v2.0.0
  334. [1.2.0]: https://github.com/motdotla/dotenv/compare/v1.1.0...v1.2.0
  335. [1.1.0]: https://github.com/motdotla/dotenv/compare/v1.0.0...v1.1.0
  336. [1.0.0]: https://github.com/motdotla/dotenv/compare/v0.4.0...v1.0.0