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.

743 lines
37 KiB

  1. ### v1.4.29 (2015-10-29):
  2. #### THINGS ARE HAPPENING IN LTS LAND
  3. In a special one-off release as part of the [strategy to get a version of npm
  4. into Node LTS that works with the current
  5. registry](https://github.com/nodejs/LTS/issues/37), modify npm to print out
  6. this deprecation banner literally every time npm is invoked to do anything:
  7. ```
  8. npm WARN deprecated This version of npm lacks support for important features,
  9. npm WARN deprecated such as scoped packages, offered by the primary npm
  10. npm WARN deprecated registry. Consider upgrading to at least npm@2, if not the
  11. npm WARN deprecated latest stable version. To upgrade to npm@2, run:
  12. npm WARN deprecated
  13. npm WARN deprecated npm -g install npm@latest-2
  14. npm WARN deprecated
  15. npm WARN deprecated To upgrade to the latest stable version, run:
  16. npm WARN deprecated
  17. npm WARN deprecated npm -g install npm@latest
  18. npm WARN deprecated
  19. npm WARN deprecated (Depending on how Node.js was installed on your system, you
  20. npm WARN deprecated may need to prefix the preceding commands with `sudo`, or if
  21. npm WARN deprecated on Windows, run them from an Administrator prompt.)
  22. npm WARN deprecated
  23. npm WARN deprecated If you're running the version of npm bundled with
  24. npm WARN deprecated Node.js 0.10 LTS, be aware that the next version of 0.10 LTS
  25. npm WARN deprecated will be bundled with a version of npm@2, which has some small
  26. npm WARN deprecated backwards-incompatible changes made to `npm run-script` and
  27. npm WARN deprecated semver behavior.
  28. ```
  29. The message basically tells the tale: Node 0.10 will finally be getting
  30. `npm@2`, so those of you who haven't upgraded your build systems to deal with
  31. its (relatively small) breaking changes should do so now.
  32. Also, this version doesn't even pretend that it can deal with scoped packages,
  33. which, given the confusing behavior of older versions of `npm@1.4`, where it
  34. would sometimes try to install packages from GitHub, is a distinct improvement.
  35. There is no good reason for you as an end user to upgrade to this version of
  36. npm yourself.
  37. * [`709e9b4`](https://github.com/npm/npm/commit/709e9b44f5df9817a1c4babfbf26a2329bd265fb)
  38. Print 20-line deprecation banner on all command invocations.
  39. ([@othiym23](https://github.com/othiym23))
  40. * [`0c29d09`](https://github.com/npm/npm/commit/0c29d0906608e8e174bd30a7a245e19795326051)
  41. Crash out immediately with an exhortation to upgrade on attempts to use
  42. scoped packages. ([@othiym23](https://github.com/othiym23))
  43. ### v1.5.0-alpha-4 (2014-07-18):
  44. * fall back to `_auth` config as default auth when using default registry
  45. ([@isaacs](https://github.com/isaacs))
  46. * support for 'init.version' for those who don't want to deal with semver 0.0.x
  47. oddities ([@rvagg](https://github.com/rvagg))
  48. * [`be06213`](https://github.com/npm/npm/commit/be06213415f2d51a50d2c792b4cd0d3412a9a7b1)
  49. remove residual support for `win` log level
  50. ([@aterris](https://github.com/aterris))
  51. ### v1.5.0-alpha-3 (2014-07-17):
  52. * [`a3a85dd`](https://github.com/npm/npm/commit/a3a85dd004c9245a71ad2f0213bd1a9a90d64cd6)
  53. `--save` scoped packages correctly ([@othiym23](https://github.com/othiym23))
  54. * [`18a3385`](https://github.com/npm/npm/commit/18a3385bcf8bfb8312239216afbffb7eec759150)
  55. `npm-registry-client@3.0.2` ([@othiym23](https://github.com/othiym23))
  56. * [`375988b`](https://github.com/npm/npm/commit/375988b9bf5aa5170f06a790d624d31b1eb32c6d)
  57. invalid package names are an early error for optional deps
  58. ([@othiym23](https://github.com/othiym23))
  59. * consistently use `node-package-arg` instead of arbitrary package spec
  60. splitting ([@othiym23](https://github.com/othiym23))
  61. ### v1.5.0-alpha-2 (2014-07-01):
  62. * [`54cf625`](https://github.com/npm/npm/commit/54cf62534e3331e3f454e609e44f0b944e819283)
  63. fix handling for 301s in `npm-registry-client@3.0.1`
  64. ([@Raynos](https://github.com/Raynos))
  65. * [`e410861`](https://github.com/npm/npm/commit/e410861c69a3799c1874614cb5b87af8124ff98d)
  66. don't crash if no username set on `whoami`
  67. ([@isaacs](https://github.com/isaacs))
  68. * [`0353dde`](https://github.com/npm/npm/commit/0353ddeaca8171aa7dbdd8102b7e2eb581a86406)
  69. respect `--json` for output ([@isaacs](https://github.com/isaacs))
  70. * [`b3d112a`](https://github.com/npm/npm/commit/b3d112ae190b984cc1779b9e6de92218f22380c6)
  71. outdated: Don't show headings if there's nothing to output
  72. ([@isaacs](https://github.com/isaacs))
  73. * [`bb4b90c`](https://github.com/npm/npm/commit/bb4b90c80dbf906a1cb26d85bc0625dc2758acc3)
  74. outdated: Default to `latest` rather than `*` for unspecified deps
  75. ([@isaacs](https://github.com/isaacs))
  76. ### v1.5.0-alpha-1 (2014-07-01):
  77. * [`eef4884`](https://github.com/npm/npm/commit/eef4884d6487ee029813e60a5f9c54e67925d9fa)
  78. use the correct piece of the spec for GitHub shortcuts
  79. ([@othiym23](https://github.com/othiym23))
  80. ### v1.5.0-alpha-0 (2014-07-01):
  81. * [`7f55057`](https://github.com/npm/npm/commit/7f55057807cfdd9ceaf6331968e666424f48116c)
  82. install scoped packages ([#5239](https://github.com/npm/npm/issues/5239))
  83. ([@othiym23](https://github.com/othiym23))
  84. * [`0df7e16`](https://github.com/npm/npm/commit/0df7e16c0232d8f4d036ebf4ec3563215517caac)
  85. publish scoped packages ([#5239](https://github.com/npm/npm/issues/5239))
  86. ([@othiym23](https://github.com/othiym23))
  87. * [`0689ba2`](https://github.com/npm/npm/commit/0689ba249b92b4c6279a26804c96af6f92b3a501)
  88. support (and save) --scope=@s config
  89. ([@othiym23](https://github.com/othiym23))
  90. * [`f34878f`](https://github.com/npm/npm/commit/f34878fc4cee29901e4daf7bace94be01e25cad7)
  91. scope credentials to registry ([@othiym23](https://github.com/othiym23))
  92. * [`0ac7ca2`](https://github.com/npm/npm/commit/0ac7ca233f7a69751fe4386af6c4daa3ee9fc0da)
  93. capture and store bearer tokens when sent by registry
  94. ([@othiym23](https://github.com/othiym23))
  95. * [`63c3277`](https://github.com/npm/npm/commit/63c3277f089b2c4417e922826bdc313ac854cad6)
  96. only delete files that are created by npm
  97. ([@othiym23](https://github.com/othiym23))
  98. * [`4f54043`](https://github.com/npm/npm/commit/4f540437091d1cbca3915cd20c2da83c2a88bb8e)
  99. `npm-package-arg@2.0.0` ([@othiym23](https://github.com/othiym23))
  100. * [`9e1460e`](https://github.com/npm/npm/commit/9e1460e6ac9433019758481ec031358f4af4cd44)
  101. `read-package-json@1.2.3` ([@othiym23](https://github.com/othiym23))
  102. * [`719d8ad`](https://github.com/npm/npm/commit/719d8adb9082401f905ff4207ede494661f8a554)
  103. `fs-vacuum@1.2.1` ([@othiym23](https://github.com/othiym23))
  104. * [`9ef8fe4`](https://github.com/npm/npm/commit/9ef8fe4d6ead3acb3e88c712000e2d3a9480ebec)
  105. `async-some@1.0.0` ([@othiym23](https://github.com/othiym23))
  106. * [`a964f65`](https://github.com/npm/npm/commit/a964f65ab662107b62a4ca58535ce817e8cca331)
  107. `npmconf@2.0.1` ([@othiym23](https://github.com/othiym23))
  108. * [`113765b`](https://github.com/npm/npm/commit/113765bfb7d3801917c1d9f124b8b3d942bec89a)
  109. `npm-registry-client@3.0.0` ([@othiym23](https://github.com/othiym23))
  110. ### v1.4.28 (2014-09-12):
  111. * [`f4540b6`](https://github.com/npm/npm/commit/f4540b6537a87e653d7495a9ddcf72949fdd4d14)
  112. [#6043](https://github.com/npm/npm/issues/6043) defer rollbacks until just
  113. before the CLI exits ([@isaacs](https://github.com/isaacs))
  114. * [`1eabfd5`](https://github.com/npm/npm/commit/1eabfd5c03f33c2bd28823714ff02059eeee3899)
  115. [#6043](https://github.com/npm/npm/issues/6043) `slide@1.1.6`: wait until all
  116. callbacks have finished before proceeding
  117. ([@othiym23](https://github.com/othiym23))
  118. ### v1.4.27 (2014-09-04):
  119. * [`4cf3c8f`](https://github.com/npm/npm/commit/4cf3c8fd78c9e2693a5f899f50c28f4823c88e2e)
  120. [#6007](https://github.com/npm/npm/issues/6007) request@2.42.0: properly set
  121. headers on proxy requests ([@isaacs](https://github.com/isaacs))
  122. * [`403cb52`](https://github.com/npm/npm/commit/403cb526be1472bb7545fa8e62d4976382cdbbe5)
  123. [#6055](https://github.com/npm/npm/issues/6055) npmconf@1.1.8: restore
  124. case-insensitivity of environmental config
  125. ([@iarna](https://github.com/iarna))
  126. ### v1.4.26 (2014-08-28):
  127. * [`eceea95`](https://github.com/npm/npm/commit/eceea95c804fa15b18e91c52c0beb08d42a3e77d)
  128. `github-url-from-git@1.4.0`: add support for git+https and git+ssh
  129. ([@stefanbuck](https://github.com/stefanbuck))
  130. * [`e561758`](https://github.com/npm/npm/commit/e5617587e7d7ab686192391ce55357dbc7fed0a3)
  131. `columnify@1.2.1` ([@othiym23](https://github.com/othiym23))
  132. * [`0c4fab3`](https://github.com/npm/npm/commit/0c4fab372ee76eab01dda83b6749429a8564902e)
  133. `cmd-shim@2.0.0`: upgrade to graceful-fs 3
  134. ([@ForbesLindesay](https://github.com/ForbesLindesay))
  135. * [`2d69e4d`](https://github.com/npm/npm/commit/2d69e4d95777671958b5e08d3b2f5844109d73e4)
  136. `github-url-from-username-repo@1.0.0`: accept slashes in branch names
  137. ([@robertkowalski](https://github.com/robertkowalski))
  138. * [`81f9b2b`](https://github.com/npm/npm/commit/81f9b2bac9d34c223ea093281ba3c495f23f10d1)
  139. ensure lifecycle spawn errors caught properly
  140. ([@isaacs](https://github.com/isaacs))
  141. * [`bfaab8c`](https://github.com/npm/npm/commit/bfaab8c6e0942382a96b250634ded22454c36b5a)
  142. `npm-registry-client@2.0.7`: properly encode % in passwords
  143. ([@isaacs](https://github.com/isaacs))
  144. * [`91cfb58`](https://github.com/npm/npm/commit/91cfb58dda851377ec604782263519f01fd96ad8)
  145. doc: Fix 'npm help index' ([@isaacs](https://github.com/isaacs))
  146. ### v1.4.25 (2014-08-21):
  147. * [`64c0ec2`](https://github.com/npm/npm/commit/64c0ec241ef5d83761ca8de54acb3c41b079956e)
  148. `npm-registry-client@2.0.6`: Print the notification header returned by the
  149. registry, and make sure status codes are printed without gratuitous quotes
  150. around them.
  151. ([@othiym23](https://github.com/othiym23))
  152. * [`a8ed12b`](https://github.com/npm/npm/commit/a8ed12b) `tar@1.0.1`:
  153. Add test for removing an extract target immediately after unpacking.
  154. ([@isaacs](https://github.com/isaacs))
  155. * [`70fd11d`](https://github.com/npm/npm/commit/70fd11d)
  156. `lockfile@1.0.0`: Fix incorrect interaction between `wait`, `stale`,
  157. and `retries` options. Part 2 of race condition leading to `ENOENT`
  158. errors.
  159. ([@isaacs](https://github.com/isaacs))
  160. * [`0072c4d`](https://github.com/npm/npm/commit/0072c4d)
  161. `fstream@1.0.2`: Fix a double-finish call which can result in excess
  162. FS operations after the `close` event. Part 2 of race condition
  163. leading to `ENOENT` errors.
  164. ([@isaacs](https://github.com/isaacs))
  165. ### v1.4.24 (2014-08-14):
  166. * [`9344bd9`](https://github.com/npm/npm/commit/9344bd9b2929b5c399a0e0e0b34d45bce7bc24bb)
  167. doc: add new changelog ([@othiym23](https://github.com/othiym23))
  168. * [`4be76fd`](https://github.com/npm/npm/commit/4be76fd65e895883c337a99f275ccc8c801adda3)
  169. doc: update version doc to include `pre-*` increment args
  170. ([@isaacs](https://github.com/isaacs))
  171. * [`e4f2620`](https://github.com/npm/npm/commit/e4f262036080a282ad60e236a9aeebd39fde9fe4)
  172. build: add `make tag` to tag current release as `latest`
  173. ([@isaacs](https://github.com/isaacs))
  174. * [`ec2596a`](https://github.com/npm/npm/commit/ec2596a7cb626772780b25b0a94a7e547a812bd5)
  175. build: publish with `--tag=v1.4-next` ([@isaacs](https://github.com/isaacs))
  176. * [`9ee55f8`](https://github.com/npm/npm/commit/9ee55f892b8b473032a43c59912c5684fd1b39e6)
  177. build: add script to output `v1.4-next` publish tag
  178. ([@isaacs](https://github.com/isaacs))
  179. * [`aecb56f`](https://github.com/npm/npm/commit/aecb56f95a84687ea46920a0b98aaa587fee1568)
  180. build: remove outdated `docpublish` make target
  181. ([@isaacs](https://github.com/isaacs))
  182. * [`b57a9b7`](https://github.com/npm/npm/commit/b57a9b7ccd13e6b38831ed63595c8ea5763da247)
  183. build: remove unpublish step from `make publish`
  184. ([@isaacs](https://github.com/isaacs))
  185. * [`2c6acb9`](https://github.com/npm/npm/commit/2c6acb96c71c16106965d5cd829b67195dd673c7)
  186. install: rename `.gitignore` when unpacking foreign tarballs
  187. ([@isaacs](https://github.com/isaacs))
  188. * [`22f3681`](https://github.com/npm/npm/commit/22f3681923e993a47fc1769ba735bfa3dd138082)
  189. cache: detect non-gzipped tar files more reliably
  190. ([@isaacs](https://github.com/isaacs))
  191. ### v1.4.23 (2014-07-31):
  192. * [`8dd11d1`](https://github.com/npm/npm/commit/8dd11d1) update several
  193. dependencies to avoid using `semver`s starting with 0.
  194. ### v1.4.22 (2014-07-31):
  195. * [`d9a9e84`](https://github.com/npm/npm/commit/d9a9e84) `read-package-json@1.2.4`
  196. ([@isaacs](https://github.com/isaacs))
  197. * [`86f0340`](https://github.com/npm/npm/commit/86f0340)
  198. `github-url-from-git@1.2.0` ([@isaacs](https://github.com/isaacs))
  199. * [`a94136a`](https://github.com/npm/npm/commit/a94136a) `fstream@0.1.29`
  200. ([@isaacs](https://github.com/isaacs))
  201. * [`bb82d18`](https://github.com/npm/npm/commit/bb82d18) `glob@4.0.5`
  202. ([@isaacs](https://github.com/isaacs))
  203. * [`5b6bcf4`](https://github.com/npm/npm/commit/5b6bcf4) `cmd-shim@1.1.2`
  204. ([@isaacs](https://github.com/isaacs))
  205. * [`c2aa8b3`](https://github.com/npm/npm/commit/c2aa8b3) license: Cleaned up
  206. legalese with actual lawyer ([@isaacs](https://github.com/isaacs))
  207. * [`63fe0ee`](https://github.com/npm/npm/commit/63fe0ee) `init-package-json@1.0.0`
  208. ([@isaacs](https://github.com/isaacs))
  209. ### v1.4.21 (2014-07-14):
  210. * [`88f51aa`](https://github.com/npm/npm/commit/88f51aa27eb9a958d1fa7ec50fee5cfdedd05110)
  211. fix handling for 301s in `npm-registry-client@2.0.3`
  212. ([@Raynos](https://github.com/Raynos))
  213. ### v1.4.20 (2014-07-02):
  214. * [`0353dde`](https://github.com/npm/npm/commit/0353ddeaca8171aa7dbdd8102b7e2eb581a86406)
  215. respect `--json` for output ([@isaacs](https://github.com/isaacs))
  216. * [`b3d112a`](https://github.com/npm/npm/commit/b3d112ae190b984cc1779b9e6de92218f22380c6)
  217. outdated: Don't show headings if there's nothing to output
  218. ([@isaacs](https://github.com/isaacs))
  219. * [`bb4b90c`](https://github.com/npm/npm/commit/bb4b90c80dbf906a1cb26d85bc0625dc2758acc3)
  220. outdated: Default to `latest` rather than `*` for unspecified deps
  221. ([@isaacs](https://github.com/isaacs))
  222. ### v1.4.19 (2014-07-01):
  223. * [`f687433`](https://github.com/npm/npm/commit/f687433) relative URLS for
  224. working non-root registry URLS ([@othiym23](https://github.com/othiym23))
  225. * [`bea190c`](https://github.com/npm/npm/commit/bea190c)
  226. [#5591](https://github.com/npm/npm/issues/5591) bump nopt and npmconf
  227. ([@isaacs](https://github.com/isaacs))
  228. ### v1.4.18 (2014-06-29):
  229. * Bump glob dependency from 4.0.2 to 4.0.3. It now uses graceful-fs when
  230. available, increasing resilience to [various filesystem
  231. errors](https://github.com/isaacs/node-graceful-fs#improvements-over-fs-module).
  232. ([@isaacs](https://github.com/isaacs))
  233. ### v1.4.17 (2014-06-27):
  234. * replace escape codes with ansicolors
  235. ([@othiym23](https://github.com/othiym23))
  236. * Allow to build all the docs OOTB. ([@GeJ](https://github.com/GeJ))
  237. * Use core.longpaths on win32 git - fixes
  238. [#5525](https://github.com/npm/npm/issues/5525) ([@bmeck](https://github.com/bmeck))
  239. * `npmconf@1.1.2` ([@isaacs](https://github.com/isaacs))
  240. * Consolidate color sniffing in config/log loading process
  241. ([@isaacs](https://github.com/isaacs))
  242. * add verbose log when project config file is ignored
  243. ([@isaacs](https://github.com/isaacs))
  244. * npmconf: Float patch to remove 'scope' from config defs
  245. ([@isaacs](https://github.com/isaacs))
  246. * doc: npm-explore can't handle a version
  247. ([@robertkowalski](https://github.com/robertkowalski))
  248. * Add user-friendly errors for ENOSPC and EROFS.
  249. ([@voodootikigod](https://github.com/voodootikigod))
  250. * bump tar and fstream deps ([@isaacs](https://github.com/isaacs))
  251. * Run the npm-registry-couchapp tests along with npm tests
  252. ([@isaacs](https://github.com/isaacs))
  253. ### v1.2.8000 (2014-06-17):
  254. * Same as v1.4.16, but with the spinner disabled, and a version number that
  255. starts with v1.2.
  256. ### v1.4.16 (2014-06-17):
  257. * `npm-registry-client@2.0.2` ([@isaacs](https://github.com/isaacs))
  258. * `fstream@0.1.27` ([@isaacs](https://github.com/isaacs))
  259. * `sha@1.2.4` ([@isaacs](https://github.com/isaacs))
  260. * `rimraf@2.2.8` ([@isaacs](https://github.com/isaacs))
  261. * `npmlog@1.0.1` ([@isaacs](https://github.com/isaacs))
  262. * `npm-registry-client@2.0.1` ([@isaacs](https://github.com/isaacs))
  263. * removed redundant dependency ([@othiym23](https://github.com/othiym23))
  264. * `npmconf@1.0.5` ([@isaacs](https://github.com/isaacs))
  265. * Properly handle errors that can occur in the config-loading process
  266. ([@isaacs](https://github.com/isaacs))
  267. ### v1.4.15 (2014-06-10):
  268. * cache: atomic de-race-ified package.json writing
  269. ([@isaacs](https://github.com/isaacs))
  270. * `fstream@0.1.26` ([@isaacs](https://github.com/isaacs))
  271. * `graceful-fs@3.0.2` ([@isaacs](https://github.com/isaacs))
  272. * `osenv@0.1.0` ([@isaacs](https://github.com/isaacs))
  273. * Only spin the spinner when we're fetching stuff
  274. ([@isaacs](https://github.com/isaacs))
  275. * Update `osenv@0.1.0` which removes ~/tmp as possible tmp-folder
  276. ([@robertkowalski](https://github.com/robertkowalski))
  277. * `ini@1.2.1` ([@isaacs](https://github.com/isaacs))
  278. * `graceful-fs@3` ([@isaacs](https://github.com/isaacs))
  279. * Update glob and things depending on glob
  280. ([@isaacs](https://github.com/isaacs))
  281. * github-url-from-username-repo and read-package-json updates
  282. ([@isaacs](https://github.com/isaacs))
  283. * `editor@0.1.0` ([@isaacs](https://github.com/isaacs))
  284. * `columnify@1.1.0` ([@isaacs](https://github.com/isaacs))
  285. * bump ansi and associated deps ([@isaacs](https://github.com/isaacs))
  286. ### v1.4.14 (2014-06-05):
  287. * char-spinner: update to not bork windows
  288. ([@isaacs](https://github.com/isaacs))
  289. ### v1.4.13 (2014-05-23):
  290. * Fix `npm install` on a tarball.
  291. ([`ed3abf1`](https://github.com/npm/npm/commit/ed3abf1aa10000f0f687330e976d78d1955557f6),
  292. [#5330](https://github.com/npm/npm/issues/5330),
  293. [@othiym23](https://github.com/othiym23))
  294. * Fix an issue with the spinner on Node 0.8.
  295. ([`9f00306`](https://github.com/npm/npm/commit/9f003067909440390198c0b8f92560d84da37762),
  296. [@isaacs](https://github.com/isaacs))
  297. * Re-add `npm.commands.cache.clean` and `npm.commands.cache.read` APIs, and
  298. document `npm.commands.cache.*` as npm-cache(3).
  299. ([`e06799e`](https://github.com/npm/npm/commit/e06799e77e60c1fc51869619083a25e074d368b3),
  300. [@isaacs](https://github.com/isaacs))
  301. ### v1.4.12 (2014-05-23):
  302. * remove normalize-package-data from top level, de-^-ify inflight dep
  303. ([@isaacs](https://github.com/isaacs))
  304. * Always sort saved bundleDependencies ([@isaacs](https://github.com/isaacs))
  305. * add inflight to bundledDependencies
  306. ([@othiym23](https://github.com/othiym23))
  307. ### v1.4.11 (2014-05-22):
  308. * fix `npm ls` labeling issue
  309. * `node-gyp@0.13.1`
  310. * default repository to https:// instead of git://
  311. * addLocalTarball: Remove extraneous unpack
  312. ([@isaacs](https://github.com/isaacs))
  313. * Massive cache folder refactor ([@othiym23](https://github.com/othiym23) and
  314. [@isaacs](https://github.com/isaacs))
  315. * Busy Spinner, no http noise ([@isaacs](https://github.com/isaacs))
  316. * Per-project .npmrc file support ([@isaacs](https://github.com/isaacs))
  317. * `npmconf@1.0.0`, Refactor config/uid/prefix loading process
  318. ([@isaacs](https://github.com/isaacs))
  319. * Allow once-disallowed characters in passwords
  320. ([@isaacs](https://github.com/isaacs))
  321. * Send npm version as 'version' header ([@isaacs](https://github.com/isaacs))
  322. * fix cygwin encoding issue (Karsten Tinnefeld)
  323. * Allow non-github repositories with `npm repo`
  324. ([@evanlucas](https://github.com/evanlucas))
  325. * Allow peer deps to be satisfied by grandparent
  326. * Stop optional deps moving into deps on `update --save`
  327. ([@timoxley](https://github.com/timoxley))
  328. * Ensure only matching deps update with `update --save*`
  329. ([@timoxley](https://github.com/timoxley))
  330. * Add support for `prerelease`, `preminor`, `prepatch` to `npm version`
  331. ### v1.4.10 (2014-05-05):
  332. * Don't set referer if already set
  333. * fetch: Send referer and npm-session headers
  334. * `run-script`: Support `--parseable` and `--json`
  335. * list runnable scripts ([@evanlucas](https://github.com/evanlucas))
  336. * Use marked instead of ronn for html docs
  337. ### v1.4.9 (2014-05-01):
  338. * Send referer header (with any potentially private stuff redacted)
  339. * Fix critical typo bug in previous npm release
  340. ### v1.4.8 (2014-05-01):
  341. * Check SHA before using files from cache
  342. * adduser: allow change of the saved password
  343. * Make `npm install` respect `config.unicode`
  344. * Fix lifecycle to pass `Infinity` for config env value
  345. * Don't return 0 exit code on invalid command
  346. * cache: Handle 404s and other HTTP errors as errors
  347. * Resolve ~ in path configs to env.HOME
  348. * Include npm version in default user-agent conf
  349. * npm init: Use ISC as default license, use save-prefix for deps
  350. * Many test and doc fixes
  351. ### v1.4.7 (2014-04-15):
  352. * Add `--save-prefix` option that can be used to override the default of `^`
  353. when using `npm install --save` and its counterparts.
  354. ([`64eefdf`](https://github.com/npm/npm/commit/64eefdfe26bb27db8dc90e3ab5d27a5ef18a4470),
  355. [@thlorenz](https://github.com/thlorenz))
  356. * Allow `--silent` to silence the echoing of commands that occurs with `npm
  357. run`.
  358. ([`c95cf08`](https://github.com/npm/npm/commit/c95cf086e5b97dbb48ff95a72517b203a8f29eab),
  359. [@Raynos](https://github.com/Raynos))
  360. * Some speed improvements to the cache, which should improve install times.
  361. ([`cb94310`](https://github.com/npm/npm/commit/cb94310a6adb18cb7b881eacb8d67171eda8b744),
  362. [`3b0870f`](https://github.com/npm/npm/commit/3b0870fb2f40358b3051abdab6be4319d196b99d),
  363. [`120f5a9`](https://github.com/npm/npm/commit/120f5a93437bbbea9249801574a2f33e44e81c33),
  364. [@isaacs](https://github.com/isaacs))
  365. * Improve ability to retry registry requests when a subset of the registry
  366. servers are down.
  367. ([`4a5257d`](https://github.com/npm/npm/commit/4a5257de3870ac3dafa39667379f19f6dcd6093e),
  368. https://github.com/npm/npm-registry-client/commit/7686d02cb0b844626d6a401e58c0755ef3bc8432,
  369. [@isaacs](https://github.com/isaacs))
  370. * Fix marking of peer dependencies as extraneous.
  371. ([`779b164`](https://github.com/npm/npm/commit/779b1649764607b062c031c7e5c972151b4a1754),
  372. https://github.com/npm/read-installed/commit/6680ba6ef235b1ca3273a00b70869798ad662ddc,
  373. [@isaacs](https://github.com/isaacs))
  374. * Fix npm crashing when doing `npm shrinkwrap` in the presence of a
  375. `package.json` with no dependencies.
  376. ([`a9d9fa5`](https://github.com/npm/npm/commit/a9d9fa5ad3b8c925a589422b7be28d2735f320b0),
  377. [@kislyuk](https://github.com/kislyuk))
  378. * Fix error when using `npm view` on packages that have no versions or have
  379. been unpublished.
  380. ([`94df2f5`](https://github.com/npm/npm/commit/94df2f56d684b35d1df043660180fc321b743dc8),
  381. [@juliangruber](https://github.com/juliangruber);
  382. [`2241a09`](https://github.com/npm/npm/commit/2241a09c843669c70633c399ce698cec3add40b3),
  383. [@isaacs](https://github.com/isaacs))
  384. ### v1.4.6 (2014-03-19):
  385. * Fix extraneous package detection to work in more cases.
  386. ([`f671286`](https://github.com/npm/npm/commit/f671286), npm/read-installed#20,
  387. [@LaurentVB](https://github.com/LaurentVB))
  388. ### v1.4.5 (2014-03-18):
  389. * Sort dependencies in `package.json` when doing `npm install --save` and all
  390. its variants.
  391. ([`6fd6ff7`](https://github.com/npm/npm/commit/6fd6ff7e536ea6acd33037b1878d4eca1f931985),
  392. [@domenic](https://github.com/domenic))
  393. * Add `--save-exact` option, usable alongside `--save` and its variants, which
  394. will write the exact version number into `package.json` instead of the
  395. appropriate semver-compatibility range.
  396. ([`17f07df`](https://github.com/npm/npm/commit/17f07df8ad8e594304c2445bf7489cb53346f2c5),
  397. [@timoxley](https://github.com/timoxley))
  398. * Accept gzipped content from the registry to speed up downloads and save
  399. bandwidth.
  400. ([`a3762de`](https://github.com/npm/npm/commit/a3762de843b842be8fa0ab57cdcd6b164f145942),
  401. npm/npm-registry-client#40, [@fengmk2](https://github.com/fengmk2))
  402. * Fix `npm ls`'s `--depth` and `--log` options.
  403. ([`1d29b17`](https://github.com/npm/npm/commit/1d29b17f5193d52a5c4faa412a95313dcf41ed91),
  404. npm/read-installed#13, [@zertosh](https://github.com/zertosh))
  405. * Fix "Adding a cache directory to the cache will make the world implode" in
  406. certain cases.
  407. ([`9a4b2c4`](https://github.com/npm/npm/commit/9a4b2c4667c2b1e0054e3d5611ab86acb1760834),
  408. domenic/path-is-inside#1, [@pmarques](https://github.com/pmarques))
  409. * Fix readmes not being uploaded in certain rare cases.
  410. ([`527b72c`](https://github.com/npm/npm/commit/527b72cca6c55762b51e592c48a9f28cc7e2ff8b),
  411. [@isaacs](https://github.com/isaacs))
  412. ### v1.4.4 (2014-02-20):
  413. * Add `npm t` as an alias for `npm test` (which is itself an alias for `npm run
  414. test`, or even `npm run-script test`). We like making running your tests
  415. easy. ([`14e650b`](https://github.com/npm/npm/commit/14e650bce0bfebba10094c961ac104a61417a5de), [@isaacs](https://github.com/isaacs))
  416. ### v1.4.3 (2014-02-16):
  417. * Add back `npm prune --production`, which was removed in 1.3.24.
  418. ([`acc4d02`](https://github.com/npm/npm/commit/acc4d023c57d07704b20a0955e4bf10ee91bdc83),
  419. [@davglass](https://github.com/davglass))
  420. * Default `npm install --save` and its counterparts to use the `^` version
  421. specifier, instead of `~`.
  422. ([`0a3151c`](https://github.com/npm/npm/commit/0a3151c9cbeb50c1c65895685c2eabdc7e2608dc),
  423. [@mikolalysenko](https://github.com/mikolalysenko))
  424. * Make `npm shrinkwrap` output dependencies in a sorted order, so that diffs
  425. between shrinkwrap files should be saner now.
  426. ([`059b2bf`](https://github.com/npm/npm/commit/059b2bfd06ae775205a37257dca80142596a0113),
  427. [@Raynos](https://github.com/Raynos))
  428. * Fix `npm dedupe` not correctly respecting dependency constraints.
  429. ([`86028e9`](https://github.com/npm/npm/commit/86028e9fd8524d5e520ce01ba2ebab5a030103fc),
  430. [@rafeca](https://github.com/rafeca))
  431. * Fix `npm ls` giving spurious warnings when you used `"latest"` as a version
  432. specifier.
  433. (https://github.com/npm/read-installed/commit/d2956400e0386931c926e0f30c334840e0938f14,
  434. [@bajtos](https://github.com/bajtos))
  435. * Fixed a bug where using `npm link` on packages without a `name` value could
  436. cause npm to delete itself.
  437. ([`401a642`](https://github.com/npm/npm/commit/401a64286aa6665a94d1d2f13604f7014c5fce87),
  438. [@isaacs](https://github.com/isaacs))
  439. * Fixed `npm install ./pkg@1.2.3` to actually install the directory at
  440. `pkg@1.2.3`; before it would try to find version `1.2.3` of the package
  441. `./pkg` in the npm registry.
  442. ([`46d8768`](https://github.com/npm/npm/commit/46d876821d1dd94c050d5ebc86444bed12c56739),
  443. [@rlidwka](https://github.com/rlidwka); see also
  444. [`f851b79`](https://github.com/npm/npm/commit/f851b79a71d9a5f5125aa85877c94faaf91bea5f))
  445. * Fix `npm outdated` to respect the `color` configuration option.
  446. ([`d4f6f3f`](https://github.com/npm/npm/commit/d4f6f3ff83bd14fb60d3ac6392cb8eb6b1c55ce1),
  447. [@timoxley](https://github.com/timoxley))
  448. * Fix `npm outdated --parseable`.
  449. ([`9575a23`](https://github.com/npm/npm/commit/9575a23f955ce3e75b509c89504ef0bd707c8cf6),
  450. [@yhpark](https://github.com/yhpark))
  451. * Fix a lockfile-related errors when using certain Git URLs.
  452. ([`164b97e`](https://github.com/npm/npm/commit/164b97e6089f64e686db7a9a24016f245effc37f),
  453. [@nigelzor](https://github.com/nigelzor))
  454. ### v1.4.2 (2014-02-13):
  455. * Fixed an issue related to mid-publish GET requests made against the registry.
  456. (https://github.com/npm/npm-registry-client/commit/acbec48372bc1816c67c9e7cbf814cf50437ff93,
  457. [@isaacs](https://github.com/isaacs))
  458. ### v1.4.1 (2014-02-13):
  459. * Fix `npm shrinkwrap` forgetting to shrinkwrap dependencies that were also
  460. development dependencies.
  461. ([`9c575c5`](https://github.com/npm/npm/commit/9c575c56efa9b0c8b0d4a17cb9c1de3833004bcd),
  462. [@diwu1989](https://github.com/diwu1989))
  463. * Fixed publishing of pre-existing packages with uppercase characters in their
  464. name.
  465. (https://github.com/npm/npm-registry-client/commit/9345d3b6c3d8510dd5c4418f27ee1fce59acebad,
  466. [@isaacs](https://github.com/isaacs))
  467. ### v1.4.0 (2014-02-12):
  468. * Remove `npm publish --force`. See
  469. https://github.com/npm/npmjs.org/issues/148.
  470. ([@isaacs](https://github.com/isaacs),
  471. npm/npm-registry-client@2c8dba990de6a59af6545b75cc00a6dc12777c2a)
  472. * Other changes to the registry client related to saved configs and couch
  473. logins. ([@isaacs](https://github.com/isaacs);
  474. npm/npm-registry-client@25e2b019a1588155e5f87d035c27e79963b75951,
  475. npm/npm-registry-client@9e41e9101b68036e0f078398785f618575f3cdde,
  476. npm/npm-registry-client@2c8dba990de6a59af6545b75cc00a6dc12777c2a)
  477. * Show an error to the user when doing `npm update` and the `package.json`
  478. specifies a version that does not exist.
  479. ([@evanlucas](https://github.com/evanlucas),
  480. [`027a33a`](https://github.com/npm/npm/commit/027a33a5c594124cc1d82ddec5aee2c18bc8dc32))
  481. * Fix some issues with cache ownership in certain installation configurations.
  482. ([@outcoldman](https://github.com/outcoldman),
  483. [`a132690`](https://github.com/npm/npm/commit/a132690a2876cda5dcd1e4ca751f21dfcb11cb9e))
  484. * Fix issues where GitHub shorthand dependencies `user/repo` were not always
  485. treated the same as full Git URLs.
  486. ([@robertkowalski](https://github.com/robertkowalski),
  487. https://github.com/meryn/normalize-package-data/commit/005d0b637aec1895117fcb4e3b49185eebf9e240)
  488. ### v1.3.26 (2014-02-02):
  489. * Fixes and updates to publishing code
  490. ([`735427a`](https://github.com/npm/npm/commit/735427a69ba4fe92aafa2d88f202aaa42920a9e2)
  491. and
  492. [`c0ac832`](https://github.com/npm/npm/commit/c0ac83224d49aa62e55577f8f27d53bbfd640dc5),
  493. [@isaacs](https://github.com/isaacs))
  494. * Fix `npm bugs` with no arguments.
  495. ([`b99d465`](https://github.com/npm/npm/commit/b99d465221ac03bca30976cbf4d62ca80ab34091),
  496. [@Hoops](https://github.com/Hoops))
  497. ### v1.3.25 (2014-01-25):
  498. * Remove gubblebum blocky font from documentation headers.
  499. ([`6940c9a`](https://github.com/npm/npm/commit/6940c9a100160056dc6be8f54a7ad7fa8ceda7e2),
  500. [@isaacs](https://github.com/isaacs))
  501. ### v1.3.24 (2014-01-19):
  502. * Make the search output prettier, with nice truncated columns, and a `--long`
  503. option to create wrapping columns.
  504. ([`20439b2`](https://github.com/npm/npm/commit/20439b2) and
  505. [`3a6942d`](https://github.com/npm/npm/commit/3a6942d),
  506. [@timoxley](https://github.com/timoxley))
  507. * Support multiple packagenames in `npm docs`.
  508. ([`823010b`](https://github.com/npm/npm/commit/823010b),
  509. [@timoxley](https://github.com/timoxley))
  510. * Fix the `npm adduser` bug regarding "Error: default value must be string or
  511. number" again. ([`b9b4248`](https://github.com/npm/npm/commit/b9b4248),
  512. [@isaacs](https://github.com/isaacs))
  513. * Fix `scripts` entries containing whitespaces on Windows.
  514. ([`80282ed`](https://github.com/npm/npm/commit/80282ed),
  515. [@robertkowalski](https://github.com/robertkowalski))
  516. * Fix `npm update` for Git URLs that have credentials in them
  517. ([`93fc364`](https://github.com/npm/npm/commit/93fc364),
  518. [@danielsantiago](https://github.com/danielsantiago))
  519. * Fix `npm install` overwriting `npm link`-ed dependencies when they are tagged
  520. Git dependencies. ([`af9bbd9`](https://github.com/npm/npm/commit/af9bbd9),
  521. [@evanlucas](https://github.com/evanlucas))
  522. * Remove `npm prune --production` since it buggily removed some dependencies
  523. that were necessary for production; see
  524. [#4509](https://github.com/npm/npm/issues/4509). Hopefully it can make its
  525. triumphant return, one day.
  526. ([`1101b6a`](https://github.com/npm/npm/commit/1101b6a),
  527. [@isaacs](https://github.com/isaacs))
  528. Dependency updates:
  529. * [`909cccf`](https://github.com/npm/npm/commit/909cccf) `read-package-json@1.1.6`
  530. * [`a3891b6`](https://github.com/npm/npm/commit/a3891b6) `rimraf@2.2.6`
  531. * [`ac6efbc`](https://github.com/npm/npm/commit/ac6efbc) `sha@1.2.3`
  532. * [`dd30038`](https://github.com/npm/npm/commit/dd30038) `node-gyp@0.12.2`
  533. * [`c8c3ebe`](https://github.com/npm/npm/commit/c8c3ebe) `npm-registry-client@0.3.3`
  534. * [`4315286`](https://github.com/npm/npm/commit/4315286) `npmconf@0.1.12`
  535. ### v1.3.23 (2014-01-03):
  536. * Properly handle installations that contained a certain class of circular
  537. dependencies.
  538. ([`5dc93e8`](https://github.com/npm/npm/commit/5dc93e8c82604c45b6067b1acf1c768e0bfce754),
  539. [@substack](https://github.com/substack))
  540. ### v1.3.22 (2013-12-25):
  541. * Fix a critical bug in `npm adduser` that would manifest in the error message
  542. "Error: default value must be string or number."
  543. ([`fba4bd2`](https://github.com/npm/npm/commit/fba4bd24bc2ab00ccfeda2043aa53af7d75ef7ce),
  544. [@isaacs](https://github.com/isaacs))
  545. * Allow `npm bugs` in the current directory to open the current package's bugs
  546. URL.
  547. ([`d04cf64`](https://github.com/npm/npm/commit/d04cf6483932c693452f3f778c2fa90f6153a4af),
  548. [@evanlucas](https://github.com/evanlucas))
  549. * Several fixes to various error messages to include more useful or updated
  550. information.
  551. ([`1e6f2a7`](https://github.com/npm/npm/commit/1e6f2a72ca058335f9f5e7ca22d01e1a8bb0f9f7),
  552. [`ff46366`](https://github.com/npm/npm/commit/ff46366bd40ff0ef33c7bac8400bc912c56201d1),
  553. [`8b4bb48`](https://github.com/npm/npm/commit/8b4bb4815d80a3612186dc5549d698e7b988eb03);
  554. [@rlidwka](https://github.com/rlidwka),
  555. [@evanlucas](https://github.com/evanlucas))
  556. ### v1.3.21 (2013-12-17):
  557. * Fix a critical bug that prevented publishing due to incorrect hash
  558. calculation.
  559. ([`4ca4a2c`](https://github.com/npm/npm-registry-client/commit/4ca4a2c6333144299428be6b572e2691aa59852e),
  560. [@dominictarr](https://github.com/dominictarr))
  561. ### v1.3.20 (2013-12-17):
  562. * Fixes a critical bug in v1.3.19. Thankfully, due to that bug, no one could
  563. install npm v1.3.19 :)
  564. ### v1.3.19 (2013-12-16):
  565. * Adds atomic PUTs for publishing packages, which should result in far fewer
  566. requests and less room for replication errors on the server-side.
  567. ### v1.3.18 (2013-12-16):
  568. * Added an `--ignore-scripts` option, which will prevent `package.json` scripts
  569. from being run. Most notably, this will work on `npm install`, so e.g. `npm
  570. install --ignore-scripts` will not run preinstall and prepublish scripts.
  571. ([`d7e67bf`](https://github.com/npm/npm/commit/d7e67bf0d94b085652ec1c87d595afa6f650a8f6),
  572. [@sqs](https://github.com/sqs))
  573. * Fixed a bug introduced in 1.3.16 that would manifest with certain cache
  574. configurations, by causing spurious errors saying "Adding a cache directory
  575. to the cache will make the world implode."
  576. ([`966373f`](https://github.com/npm/npm/commit/966373fad8d741637f9744882bde9f6e94000865),
  577. [@domenic](https://github.com/domenic))
  578. * Re-fixed the multiple download of URL dependencies, whose fix was reverted in
  579. 1.3.17.
  580. ([`a362c3f`](https://github.com/npm/npm/commit/a362c3f1919987419ed8a37c8defa19d2e6697b0),
  581. [@spmason](https://github.com/spmason))
  582. ### v1.3.17 (2013-12-11):
  583. * This release reverts
  584. [`644c2ff`](https://github.com/npm/npm/commit/644c2ff3e3d9c93764f7045762477f48864d64a7),
  585. which avoided re-downloading URL and shinkwrap dependencies when doing `npm
  586. install`. You can see the in-depth reasoning in
  587. [`d8c907e`](https://github.com/npm/npm/commit/d8c907edc2019b75cff0f53467e34e0ffd7e5fba);
  588. the problem was, that the patch changed the behavior of `npm install -f` to
  589. reinstall all dependencies.
  590. * A new version of the no-re-downloading fix has been submitted as
  591. [#4303](https://github.com/npm/npm/issues/4303) and will hopefully be
  592. included in the next release.
  593. ### v1.3.16 (2013-12-11):
  594. * Git URL dependencies are now updated on `npm install`, fixing a two-year old
  595. bug
  596. ([`5829ecf`](https://github.com/npm/npm/commit/5829ecf032b392d2133bd351f53d3c644961396b),
  597. [@robertkowalski](https://github.com/robertkowalski)). Additional progress on
  598. reducing the resulting Git-related I/O is tracked as
  599. [#4191](https://github.com/npm/npm/issues/4191), but for now, this will be a
  600. big improvement.
  601. * Added a `--json` mode to `npm outdated` to give a parseable output.
  602. ([`0b6c9b7`](https://github.com/npm/npm/commit/0b6c9b7c8c5579f4d7d37a0c24d9b7a12ccbe5fe),
  603. [@yyx990803](https://github.com/yyx990803))
  604. * Made `npm outdated` much prettier and more useful. It now outputs a
  605. color-coded and easy-to-read table.
  606. ([`fd3017f`](https://github.com/npm/npm/commit/fd3017fc3e9d42acf6394a5285122edb4dc16106),
  607. [@quimcalpe](https://github.com/quimcalpe))
  608. * Added the `--depth` option to `npm outdated`, so that e.g. you can do `npm
  609. outdated --depth=0` to show only top-level outdated dependencies.
  610. ([`1d184ef`](https://github.com/npm/npm/commit/1d184ef3f4b4bc309d38e9128732e3e6fb46d49c),
  611. [@yyx990803](https://github.com/yyx990803))
  612. * Added a `--no-git-tag-version` option to `npm version`, for doing the usual
  613. job of `npm version` minus the Git tagging. This could be useful if you need
  614. to increase the version in other related files before actually adding the
  615. tag.
  616. ([`59ca984`](https://github.com/npm/npm/commit/59ca9841ba4f4b2f11b8e72533f385c77ae9f8bd),
  617. [@evanlucas](https://github.com/evanlucas))
  618. * Made `npm repo` and `npm docs` work without any arguments, adding them to the
  619. list of npm commands that work on the package in the current directory when
  620. invoked without arguments.
  621. ([`bf9048e`](https://github.com/npm/npm/commit/bf9048e2fa16d43fbc4b328d162b0a194ca484e8),
  622. [@robertkowalski](https://github.com/robertkowalski);
  623. [`07600d0`](https://github.com/npm/npm/commit/07600d006c652507cb04ac0dae9780e35073dd67),
  624. [@wilmoore](https://github.com/wilmoore)). There are a few other commands we
  625. still want to implement this for; see
  626. [#4204](https://github.com/npm/npm/issues/4204).
  627. * Pass through the `GIT_SSL_NO_VERIFY` environment variable to Git, if it is
  628. set; we currently do this with a few other environment variables, but we
  629. missed that one.
  630. ([`c625de9`](https://github.com/npm/npm/commit/c625de91770df24c189c77d2e4bc821f2265efa8),
  631. [@arikon](https://github.com/arikon))
  632. * Fixed `npm dedupe` on Windows due to incorrect path separators being used
  633. ([`7677de4`](https://github.com/npm/npm/commit/7677de4583100bc39407093ecc6bc13715bf8161),
  634. [@mcolyer](https://github.com/mcolyer)).
  635. * Fixed the `npm help` command when multiple words were searched for; it
  636. previously gave a `ReferenceError`.
  637. ([`6a28dd1`](https://github.com/npm/npm/commit/6a28dd147c6957a93db12b1081c6e0da44fe5e3c),
  638. [@dereckson](https://github.com/dereckson))
  639. * Stopped re-downloading URL and shrinkwrap dependencies, as demonstrated in
  640. [#3463](https://github.com/npm/npm/issues/3463)
  641. ([`644c2ff`](https://github.com/isaacs/npm/commit/644c2ff3e3d9c93764f7045762477f48864d64a7),
  642. [@spmason](https://github.com/spmason)). You can use the `--force` option to
  643. force re-download and installation of all dependencies.