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.

пре 3 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. ## [Unreleased]
  5. ## [5.0.0] - 2018-01-29
  6. ### Added
  7. - Testing against Node v8 and v9
  8. - Documentation on trim behavior of values
  9. - Documentation on how to use with `import`
  10. ### Changed
  11. - *Breaking*: default `path` is now `path.resolve(process.cwd(), '.env')`
  12. - *Breaking*: does not write over keys already in `process.env` if the key has a falsy value
  13. - using `const` and `let` instead of `var`
  14. ### Removed
  15. - Testing aginst Node v7
  16. ## [4.0.0] - 2016-12-23
  17. ### Changed
  18. - Return Object with parsed content or error instead of false ([#165](https://github.com/motdotla/dotenv/pull/165)).
  19. ### Removed
  20. - `verbose` option removed in favor of returning result.
  21. ## [3.0.0] - 2016-12-20
  22. ### Added
  23. - `verbose` option will log any error messages. Off by default.
  24. - parses email addresses correctly
  25. - allow importing config method directly in ES6
  26. ### Changed
  27. - Suppress error messages by default ([#154](https://github.com/motdotla/dotenv/pull/154))
  28. - Ignoring more files for NPM to make package download smaller
  29. ### Fixed
  30. - False positive test due to case-sensitive variable ([#124](https://github.com/motdotla/dotenv/pull/124))
  31. ### Removed
  32. - `silent` option removed in favor of `verbose`
  33. ## [2.0.0] - 2016-01-20
  34. ### Added
  35. - 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
  36. - LICENSE to be more explicit about what was defined in `package.json`. Linked to from README
  37. - Testing nodejs v4 on travis-ci
  38. - added examples of how to use dotenv in different ways
  39. - return parsed object on success rather than boolean true
  40. ### Changed
  41. - README has shorter description not referencing ruby gem since we don't have or want feature parity
  42. ### Removed
  43. - Variable expansion and escaping so environment variables are encouraged to be fully orthogonal
  44. ## [1.2.0] - 2015-06-20
  45. ### Added
  46. - Preload hook to require dotenv without including it in your code
  47. ### Changed
  48. - clarified license to be "BSD-2-Clause" in `package.json`
  49. ### Fixed
  50. - retain spaces in string vars
  51. ## [1.1.0] - 2015-03-31
  52. ### Added
  53. - Silent option to silence `console.log` when `.env` missing
  54. ## [1.0.0] - 2015-03-13
  55. ### Removed
  56. - support for multiple `.env` files. should always use one `.env` file for the current environment
  57. [Unreleased]: https://github.com/motdotla/dotenv/compare/v5.0.0...HEAD
  58. [5.0.0]: https://github.com/motdotla/dotenv/compare/v4.0.0...v5.0.0
  59. [4.0.0]: https://github.com/motdotla/dotenv/compare/v3.0.0...v4.0.0
  60. [3.0.0]: https://github.com/motdotla/dotenv/compare/v2.0.0...v3.0.0
  61. [2.0.0]: https://github.com/motdotla/dotenv/compare/v1.2.0...v2.0.0
  62. [1.2.0]: https://github.com/motdotla/dotenv/compare/v1.1.0...v1.2.0
  63. [1.1.0]: https://github.com/motdotla/dotenv/compare/v1.0.0...v1.1.0
  64. [1.0.0]: https://github.com/motdotla/dotenv/compare/v0.4.0...v1.0.0