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