Sakthipriyan Vairamani
Sakthipriyan Vairamani
@getify I agree that the spec is actually in its early stage. But "There is no specification" is not entirely true, right? Would you be okay with changing just that...
I also agree with @aruneshchandra. We already have people working in different timezones. So this will really give us a chance to get opinion from most of us.
There is no substitute for `Agent`s, right? How are we planning to fix this?
@silverwind PTAL at #13. I proposed a possible solution to this problem.
Could someone please change @caitp's test plan, a check-list? We can tick them whenever tests land.
Hmmm, proxies and web servers might log the URL. I am not sure if exposing the csrf tokens like that is a good idea. -1 from me.
@Trott Looks like its a bug in npm. Ideally `4.0.0-rc.1` is GTE `0.8.x`.
I feel that this is a bug in `semver` module. It simply says the `4.0.0-rc.1` doesn't satisfy `>=0.8.x` just because `>=0.8.x` doesn't have pre-release tags. But pre-release versions should be...
The section responsible for this decision is https://github.com/npm/node-semver/blob/v5.0.1/semver.js#L1062-L1083 ``` js if (version.prerelease.length) { // Find the set of versions that are allowed to have prereleases // For example, ^1.2.3-pr.1 desugars...
In this case, `version` is `4.0.0-rc.1` and `set` is an array of length 1, with `set[0]` being ``. `set[i].semver.prerelease` is an empty array. So, we skip the `for` and return...