版博士V2.0程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  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/v16.0.3...master)
  4. ## [16.0.3](https://github.com/motdotla/dotenv/compare/v16.0.2...v16.0.3) (2022-09-29)
  5. ### Changed
  6. - Added library version to debug logs ([#682](https://github.com/motdotla/dotenv/pull/682))
  7. ## [16.0.2](https://github.com/motdotla/dotenv/compare/v16.0.1...v16.0.2) (2022-08-30)
  8. ### Added
  9. - Export `env-options.js` and `cli-options.js` in package.json for use with downstream [dotenv-expand](https://github.com/motdotla/dotenv-expand) module
  10. ## [16.0.1](https://github.com/motdotla/dotenv/compare/v16.0.0...v16.0.1) (2022-05-10)
  11. ### Changed
  12. - Minor README clarifications
  13. - Development ONLY: updated devDependencies as recommended for development only security risks ([#658](https://github.com/motdotla/dotenv/pull/658))
  14. ## [16.0.0](https://github.com/motdotla/dotenv/compare/v15.0.1...v16.0.0) (2022-02-02)
  15. ### Added
  16. - _Breaking:_ Backtick support 🎉 ([#615](https://github.com/motdotla/dotenv/pull/615))
  17. If you had values containing the backtick character, please quote those values with either single or double quotes.
  18. ## [15.0.1](https://github.com/motdotla/dotenv/compare/v15.0.0...v15.0.1) (2022-02-02)
  19. ### Changed
  20. - Properly parse empty single or double quoted values 🐞 ([#614](https://github.com/motdotla/dotenv/pull/614))
  21. ## [15.0.0](https://github.com/motdotla/dotenv/compare/v14.3.2...v15.0.0) (2022-01-31)
  22. `v15.0.0` is a major new release with some important breaking changes.
  23. ### Added
  24. - _Breaking:_ Multiline parsing support (just works. no need for the flag.)
  25. ### Changed
  26. - _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"`).
  27. ..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.
  28. ### Removed
  29. - _Breaking:_ Remove multiline option (just works out of the box now. no need for the flag.)
  30. ## [14.3.2](https://github.com/motdotla/dotenv/compare/v14.3.1...v14.3.2) (2022-01-25)
  31. ### Changed
  32. - Preserve backwards compatibility on values containing `#` 🐞 ([#603](https://github.com/motdotla/dotenv/pull/603))
  33. ## [14.3.1](https://github.com/motdotla/dotenv/compare/v14.3.0...v14.3.1) (2022-01-25)
  34. ### Changed
  35. - Preserve backwards compatibility on exports by re-introducing the prior in-place exports 🐞 ([#606](https://github.com/motdotla/dotenv/pull/606))
  36. ## [14.3.0](https://github.com/motdotla/dotenv/compare/v14.2.0...v14.3.0) (2022-01-24)
  37. ### Added
  38. - Add `multiline` option 🎉 ([#486](https://github.com/motdotla/dotenv/pull/486))
  39. ## [14.2.0](https://github.com/motdotla/dotenv/compare/v14.1.1...v14.2.0) (2022-01-17)
  40. ### Added
  41. - Add `dotenv_config_override` cli option
  42. - Add `DOTENV_CONFIG_OVERRIDE` command line env option
  43. ## [14.1.1](https://github.com/motdotla/dotenv/compare/v14.1.0...v14.1.1) (2022-01-17)
  44. ### Added
  45. - Add React gotcha to FAQ on README
  46. ## [14.1.0](https://github.com/motdotla/dotenv/compare/v14.0.1...v14.1.0) (2022-01-17)
  47. ### Added
  48. - Add `override` option 🎉 ([#595](https://github.com/motdotla/dotenv/pull/595))
  49. ## [14.0.1](https://github.com/motdotla/dotenv/compare/v14.0.0...v14.0.1) (2022-01-16)
  50. ### Added
  51. - Log error on failure to load `.env` file ([#594](https://github.com/motdotla/dotenv/pull/594))
  52. ## [14.0.0](https://github.com/motdotla/dotenv/compare/v13.0.1...v14.0.0) (2022-01-16)
  53. ### Added
  54. - _Breaking:_ Support inline comments for the parser 🎉 ([#568](https://github.com/motdotla/dotenv/pull/568))
  55. ## [13.0.1](https://github.com/motdotla/dotenv/compare/v13.0.0...v13.0.1) (2022-01-16)
  56. ### Changed
  57. * Hide comments and newlines from debug output ([#404](https://github.com/motdotla/dotenv/pull/404))
  58. ## [13.0.0](https://github.com/motdotla/dotenv/compare/v12.0.4...v13.0.0) (2022-01-16)
  59. ### Added
  60. * _Breaking:_ Add type file for `config.js` ([#539](https://github.com/motdotla/dotenv/pull/539))
  61. ## [12.0.4](https://github.com/motdotla/dotenv/compare/v12.0.3...v12.0.4) (2022-01-16)
  62. ### Changed
  63. * README updates
  64. * Minor order adjustment to package json format
  65. ## [12.0.3](https://github.com/motdotla/dotenv/compare/v12.0.2...v12.0.3) (2022-01-15)
  66. ### Changed
  67. * Simplified jsdoc for consistency across editors
  68. ## [12.0.2](https://github.com/motdotla/dotenv/compare/v12.0.1...v12.0.2) (2022-01-15)
  69. ### Changed
  70. * Improve embedded jsdoc type documentation
  71. ## [12.0.1](https://github.com/motdotla/dotenv/compare/v12.0.0...v12.0.1) (2022-01-15)
  72. ### Changed
  73. * README updates and clarifications
  74. ## [12.0.0](https://github.com/motdotla/dotenv/compare/v11.0.0...v12.0.0) (2022-01-15)
  75. ### Removed
  76. - _Breaking:_ drop support for Flow static type checker ([#584](https://github.com/motdotla/dotenv/pull/584))
  77. ### Changed
  78. - Move types/index.d.ts to lib/main.d.ts ([#585](https://github.com/motdotla/dotenv/pull/585))
  79. - Typescript cleanup ([#587](https://github.com/motdotla/dotenv/pull/587))
  80. - Explicit typescript inclusion in package.json ([#566](https://github.com/motdotla/dotenv/pull/566))
  81. ## [11.0.0](https://github.com/motdotla/dotenv/compare/v10.0.0...v11.0.0) (2022-01-11)
  82. ### Changed
  83. - _Breaking:_ drop support for Node v10 ([#558](https://github.com/motdotla/dotenv/pull/558))
  84. - Patch debug option ([#550](https://github.com/motdotla/dotenv/pull/550))
  85. ## [10.0.0](https://github.com/motdotla/dotenv/compare/v9.0.2...v10.0.0) (2021-05-20)
  86. ### Added
  87. - Add generic support to parse function
  88. - Allow for import "dotenv/config.js"
  89. - Add support to resolve home directory in path via ~
  90. ## [9.0.2](https://github.com/motdotla/dotenv/compare/v9.0.1...v9.0.2) (2021-05-10)
  91. ### Changed
  92. - Support windows newlines with debug mode
  93. ## [9.0.1](https://github.com/motdotla/dotenv/compare/v9.0.0...v9.0.1) (2021-05-08)
  94. ### Changed
  95. - Updates to README
  96. ## [9.0.0](https://github.com/motdotla/dotenv/compare/v8.6.0...v9.0.0) (2021-05-05)
  97. ### Changed
  98. - _Breaking:_ drop support for Node v8
  99. ## [8.6.0](https://github.com/motdotla/dotenv/compare/v8.5.1...v8.6.0) (2021-05-05)
  100. ### Added
  101. - define package.json in exports
  102. ## [8.5.1](https://github.com/motdotla/dotenv/compare/v8.5.0...v8.5.1) (2021-05-05)
  103. ### Changed
  104. - updated dev dependencies via npm audit
  105. ## [8.5.0](https://github.com/motdotla/dotenv/compare/v8.4.0...v8.5.0) (2021-05-05)
  106. ### Added
  107. - allow for `import "dotenv/config"`
  108. ## [8.4.0](https://github.com/motdotla/dotenv/compare/v8.3.0...v8.4.0) (2021-05-05)
  109. ### Changed
  110. - point to exact types file to work with VS Code
  111. ## [8.3.0](https://github.com/motdotla/dotenv/compare/v8.2.0...v8.3.0) (2021-05-05)
  112. ### Changed
  113. - _Breaking:_ drop support for Node v8 (mistake to be released as minor bump. later bumped to 9.0.0. see above.)
  114. ## [8.2.0](https://github.com/motdotla/dotenv/compare/v8.1.0...v8.2.0) (2019-10-16)
  115. ### Added
  116. - TypeScript types
  117. ## [8.1.0](https://github.com/motdotla/dotenv/compare/v8.0.0...v8.1.0) (2019-08-18)
  118. ### Changed
  119. - _Breaking:_ drop support for Node v6 ([#392](https://github.com/motdotla/dotenv/issues/392))
  120. # [8.0.0](https://github.com/motdotla/dotenv/compare/v7.0.0...v8.0.0) (2019-05-02)
  121. ### Changed
  122. - _Breaking:_ drop support for Node v6 ([#302](https://github.com/motdotla/dotenv/issues/392))
  123. ## [7.0.0] - 2019-03-12
  124. ### Fixed
  125. - Fix removing unbalanced quotes ([#376](https://github.com/motdotla/dotenv/pull/376))
  126. ### Removed
  127. - Removed `load` alias for `config` for consistency throughout code and documentation.
  128. ## [6.2.0] - 2018-12-03
  129. ### Added
  130. - Support preload configuration via environment variables ([#351](https://github.com/motdotla/dotenv/issues/351))
  131. ## [6.1.0] - 2018-10-08
  132. ### Added
  133. - `debug` option for `config` and `parse` methods will turn on logging
  134. ## [6.0.0] - 2018-06-02
  135. ### Changed
  136. - _Breaking:_ drop support for Node v4 ([#304](https://github.com/motdotla/dotenv/pull/304))
  137. ## [5.0.0] - 2018-01-29
  138. ### Added
  139. - Testing against Node v8 and v9
  140. - Documentation on trim behavior of values
  141. - Documentation on how to use with `import`
  142. ### Changed
  143. - _Breaking_: default `path` is now `path.resolve(process.cwd(), '.env')`
  144. - _Breaking_: does not write over keys already in `process.env` if the key has a falsy value
  145. - using `const` and `let` instead of `var`
  146. ### Removed
  147. - Testing against Node v7
  148. ## [4.0.0] - 2016-12-23
  149. ### Changed
  150. - Return Object with parsed content or error instead of false ([#165](https://github.com/motdotla/dotenv/pull/165)).
  151. ### Removed
  152. - `verbose` option removed in favor of returning result.
  153. ## [3.0.0] - 2016-12-20
  154. ### Added
  155. - `verbose` option will log any error messages. Off by default.
  156. - parses email addresses correctly
  157. - allow importing config method directly in ES6
  158. ### Changed
  159. - Suppress error messages by default ([#154](https://github.com/motdotla/dotenv/pull/154))
  160. - Ignoring more files for NPM to make package download smaller
  161. ### Fixed
  162. - False positive test due to case-sensitive variable ([#124](https://github.com/motdotla/dotenv/pull/124))
  163. ### Removed
  164. - `silent` option removed in favor of `verbose`
  165. ## [2.0.0] - 2016-01-20
  166. ### Added
  167. - 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
  168. - LICENSE to be more explicit about what was defined in `package.json`. Linked to from README
  169. - Testing nodejs v4 on travis-ci
  170. - added examples of how to use dotenv in different ways
  171. - return parsed object on success rather than boolean true
  172. ### Changed
  173. - README has shorter description not referencing ruby gem since we don't have or want feature parity
  174. ### Removed
  175. - Variable expansion and escaping so environment variables are encouraged to be fully orthogonal
  176. ## [1.2.0] - 2015-06-20
  177. ### Added
  178. - Preload hook to require dotenv without including it in your code
  179. ### Changed
  180. - clarified license to be "BSD-2-Clause" in `package.json`
  181. ### Fixed
  182. - retain spaces in string vars
  183. ## [1.1.0] - 2015-03-31
  184. ### Added
  185. - Silent option to silence `console.log` when `.env` missing
  186. ## [1.0.0] - 2015-03-13
  187. ### Removed
  188. - support for multiple `.env` files. should always use one `.env` file for the current environment
  189. [7.0.0]: https://github.com/motdotla/dotenv/compare/v6.2.0...v7.0.0
  190. [6.2.0]: https://github.com/motdotla/dotenv/compare/v6.1.0...v6.2.0
  191. [6.1.0]: https://github.com/motdotla/dotenv/compare/v6.0.0...v6.1.0
  192. [6.0.0]: https://github.com/motdotla/dotenv/compare/v5.0.0...v6.0.0
  193. [5.0.0]: https://github.com/motdotla/dotenv/compare/v4.0.0...v5.0.0
  194. [4.0.0]: https://github.com/motdotla/dotenv/compare/v3.0.0...v4.0.0
  195. [3.0.0]: https://github.com/motdotla/dotenv/compare/v2.0.0...v3.0.0
  196. [2.0.0]: https://github.com/motdotla/dotenv/compare/v1.2.0...v2.0.0
  197. [1.2.0]: https://github.com/motdotla/dotenv/compare/v1.1.0...v1.2.0
  198. [1.1.0]: https://github.com/motdotla/dotenv/compare/v1.0.0...v1.1.0
  199. [1.0.0]: https://github.com/motdotla/dotenv/compare/v0.4.0...v1.0.0