abaa92239457d3fa5e8eb8d0762d61f7d7c3d25ec7ee520c0e151d207a88cc0c5d0ef60f11a32679bc0a4ed04acc4f5265895263d8c651589723bfecccf29f 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. ## [8.6.0](https://github.com/motdotla/dotenv/compare/v8.5.1...v8.6.0) (2021-05-05)
  4. ### Added
  5. - define package.json in exports
  6. ## [8.5.1](https://github.com/motdotla/dotenv/compare/v8.5.0...v8.5.1) (2021-05-05)
  7. ### Changed
  8. - updated dev dependencies via npm audit
  9. ## [8.5.0](https://github.com/motdotla/dotenv/compare/v8.4.0...v8.5.0) (2021-05-05)
  10. ### Added
  11. - allow for `import "dotenv/config"`
  12. ## [8.4.0](https://github.com/motdotla/dotenv/compare/v8.3.0...v8.4.0) (2021-05-05)
  13. ### Changed
  14. - point to exact types file to work with VS Code
  15. ## [8.3.0](https://github.com/motdotla/dotenv/compare/v8.2.0...v8.3.0) (2021-05-05)
  16. ### Changed
  17. - _Breaking:_ drop support for Node v8
  18. ## [8.2.0](https://github.com/motdotla/dotenv/compare/v8.1.0...v8.2.0) (2019-10-16)
  19. ### Added
  20. - TypeScript types
  21. ## [8.1.0](https://github.com/motdotla/dotenv/compare/v8.0.0...v8.1.0) (2019-08-18)
  22. ### Changed
  23. - _Breaking:_ drop support for Node v6 ([#392](https://github.com/motdotla/dotenv/issues/392))
  24. # [8.0.0](https://github.com/motdotla/dotenv/compare/v7.0.0...v8.0.0) (2019-05-02)
  25. ### Changed
  26. - _Breaking:_ drop support for Node v6 ([#302](https://github.com/motdotla/dotenv/issues/392))
  27. ## [7.0.0] - 2019-03-12
  28. ### Fixed
  29. - Fix removing unbalanced quotes ([#376](https://github.com/motdotla/dotenv/pull/376))
  30. ### Removed
  31. - Removed `load` alias for `config` for consistency throughout code and documentation.
  32. ## [6.2.0] - 2018-12-03
  33. ### Added
  34. - Support preload configuration via environment variables ([#351](https://github.com/motdotla/dotenv/issues/351))
  35. ## [6.1.0] - 2018-10-08
  36. ### Added
  37. - `debug` option for `config` and `parse` methods will turn on logging
  38. ## [6.0.0] - 2018-06-02
  39. ### Changed
  40. - _Breaking:_ drop support for Node v4 ([#304](https://github.com/motdotla/dotenv/pull/304))
  41. ## [5.0.0] - 2018-01-29
  42. ### Added
  43. - Testing against Node v8 and v9
  44. - Documentation on trim behavior of values
  45. - Documentation on how to use with `import`
  46. ### Changed
  47. - _Breaking_: default `path` is now `path.resolve(process.cwd(), '.env')`
  48. - _Breaking_: does not write over keys already in `process.env` if the key has a falsy value
  49. - using `const` and `let` instead of `var`
  50. ### Removed
  51. - Testing against Node v7
  52. ## [4.0.0] - 2016-12-23
  53. ### Changed
  54. - Return Object with parsed content or error instead of false ([#165](https://github.com/motdotla/dotenv/pull/165)).
  55. ### Removed
  56. - `verbose` option removed in favor of returning result.
  57. ## [3.0.0] - 2016-12-20
  58. ### Added
  59. - `verbose` option will log any error messages. Off by default.
  60. - parses email addresses correctly
  61. - allow importing config method directly in ES6
  62. ### Changed
  63. - Suppress error messages by default ([#154](https://github.com/motdotla/dotenv/pull/154))
  64. - Ignoring more files for NPM to make package download smaller
  65. ### Fixed
  66. - False positive test due to case-sensitive variable ([#124](https://github.com/motdotla/dotenv/pull/124))
  67. ### Removed
  68. - `silent` option removed in favor of `verbose`
  69. ## [2.0.0] - 2016-01-20
  70. ### Added
  71. - 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
  72. - LICENSE to be more explicit about what was defined in `package.json`. Linked to from README
  73. - Testing nodejs v4 on travis-ci
  74. - added examples of how to use dotenv in different ways
  75. - return parsed object on success rather than boolean true
  76. ### Changed
  77. - README has shorter description not referencing ruby gem since we don't have or want feature parity
  78. ### Removed
  79. - Variable expansion and escaping so environment variables are encouraged to be fully orthogonal
  80. ## [1.2.0] - 2015-06-20
  81. ### Added
  82. - Preload hook to require dotenv without including it in your code
  83. ### Changed
  84. - clarified license to be "BSD-2-Clause" in `package.json`
  85. ### Fixed
  86. - retain spaces in string vars
  87. ## [1.1.0] - 2015-03-31
  88. ### Added
  89. - Silent option to silence `console.log` when `.env` missing
  90. ## [1.0.0] - 2015-03-13
  91. ### Removed
  92. - support for multiple `.env` files. should always use one `.env` file for the current environment
  93. [7.0.0]: https://github.com/motdotla/dotenv/compare/v6.2.0...v7.0.0
  94. [6.2.0]: https://github.com/motdotla/dotenv/compare/v6.1.0...v6.2.0
  95. [6.1.0]: https://github.com/motdotla/dotenv/compare/v6.0.0...v6.1.0
  96. [6.0.0]: https://github.com/motdotla/dotenv/compare/v5.0.0...v6.0.0
  97. [5.0.0]: https://github.com/motdotla/dotenv/compare/v4.0.0...v5.0.0
  98. [4.0.0]: https://github.com/motdotla/dotenv/compare/v3.0.0...v4.0.0
  99. [3.0.0]: https://github.com/motdotla/dotenv/compare/v2.0.0...v3.0.0
  100. [2.0.0]: https://github.com/motdotla/dotenv/compare/v1.2.0...v2.0.0
  101. [1.2.0]: https://github.com/motdotla/dotenv/compare/v1.1.0...v1.2.0
  102. [1.1.0]: https://github.com/motdotla/dotenv/compare/v1.0.0...v1.1.0
  103. [1.0.0]: https://github.com/motdotla/dotenv/compare/v0.4.0...v1.0.0