Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 4 Jahren
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. # Change Log
  2. All notable changes will be documented in this file.
  3. ## [4.2.0] - 2020-07-13
  4. ### Changes
  5. - Add support for `NPM_CONFIG_USERCONFIG` environment variable (Ben Sorohan)
  6. ## [4.1.0] - 2020-01-17
  7. ### Changes
  8. - Add support for legacy auth token on the registry url (Gustav Blomér)
  9. ## [4.0.0] - 2019-06-17
  10. ### BREAKING
  11. - Minimum node.js version requirement is now v6
  12. ### Changes
  13. - Upgraded dependencies (Espen Hovlandsdal)
  14. ## [3.4.0] - 2019-03-20
  15. ### Changes
  16. - Enabled legacy auth token to be read from environment variable (Martin Flodin)
  17. ## [3.3.2] - 2018-01-26
  18. ### Changes
  19. - Support password with ENV variable tokens (Nowell Strite)
  20. ## [3.3.1] - 2017-05-02
  21. ### Fixes
  22. - Auth legacy token is basic auth (Hutson Betts)
  23. ## [3.3.0] - 2017-04-24
  24. ### Changes
  25. - Support legacy auth token config key (Zoltan Kochan)
  26. - Use safe-buffer module for backwards-compatible base64 encoding/decoding (Espen Hovlandsdal)
  27. - Change to standard.js coding style (Espen Hovlandsdal)
  28. ## [3.2.0] - 2017-04-20
  29. ### Changes
  30. - Allow passing parsed npmrc from outside (Zoltan Kochan)
  31. ## [3.1.2] - 2017-04-07
  32. ### Changes
  33. - Avoid infinite loop on invalid URL (Zoltan Kochan)
  34. ## [3.1.1] - 2017-04-06
  35. ### Changes
  36. - Nerf-dart URLs even if recursive is set to false (Espen Hovlandsdal)
  37. ## [3.1.0] - 2016-10-19
  38. ### Changes
  39. - Return the password and username for Basic authorization (Zoltan Kochan)
  40. ## [3.0.1] - 2016-08-07
  41. ### Changes
  42. - Fix recursion bug (Lukas Eipert)
  43. - Implement alternative base64 encoding/decoding implementation for Node 6 (Lukas Eipert)
  44. ## [3.0.0] - 2016-08-04
  45. ### Added
  46. - Support for Basic Authentication (username/password) (Lukas Eipert)
  47. ### Changes
  48. - The result format of the output changed from a simple string to an object which contains the token type
  49. ```js
  50. // before: returns 'tokenString'
  51. // after: returns {token: 'tokenString', type: 'Bearer'}
  52. getAuthToken()
  53. ```
  54. ## [2.1.1] - 2016-07-10
  55. ### Changes
  56. - Fix infinite loop when recursively resolving registry URLs on Windows (Espen Hovlandsdal)
  57. ## [2.1.0] - 2016-07-07
  58. ### Added
  59. - Add feature to find configured registry URL for a scope (Espen Hovlandsdal)
  60. ## [2.0.0] - 2016-06-17
  61. ### Changes
  62. - Fix tokens defined by reference to environment variables (Dan MacTough)
  63. ## [1.1.1] - 2016-04-26
  64. ### Changes
  65. - Fix for registries with port number in URL (Ryan Day)
  66. [1.1.1]: https://github.com/rexxars/registry-auth-token/compare/a5b4fe2f5ff982110eb8a813ba1b3b3c5d851af1...v1.1.1
  67. [2.0.0]: https://github.com/rexxars/registry-auth-token/compare/v1.1.1...v2.0.0
  68. [2.1.0]: https://github.com/rexxars/registry-auth-token/compare/v2.0.0...v2.1.0
  69. [2.1.1]: https://github.com/rexxars/registry-auth-token/compare/v2.1.0...v2.1.1
  70. [3.0.0]: https://github.com/rexxars/registry-auth-token/compare/v2.1.1...v3.0.0
  71. [3.0.1]: https://github.com/rexxars/registry-auth-token/compare/v3.0.0...v3.0.1
  72. [3.1.0]: https://github.com/rexxars/registry-auth-token/compare/v3.0.1...v3.1.0
  73. [3.1.1]: https://github.com/rexxars/registry-auth-token/compare/v3.1.0...v3.1.1
  74. [3.1.2]: https://github.com/rexxars/registry-auth-token/compare/v3.1.1...v3.1.2
  75. [3.2.0]: https://github.com/rexxars/registry-auth-token/compare/v3.1.2...v3.2.0
  76. [3.3.0]: https://github.com/rexxars/registry-auth-token/compare/v3.2.0...v3.3.0