web 3d图形渲染器
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.

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