Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

106 lines
2.7 KiB

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