<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js, branch v1.3.0-beta.2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(scripts): fix the versions script again</title>
<updated>2014-03-14T23:26:40+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-03-14T23:26:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9bfbb16e235767aeb8f50855b38626159fa35278'/>
<id>9bfbb16e235767aeb8f50855b38626159fa35278</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(scripts): fix the versions script</title>
<updated>2014-03-14T22:59:23+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-03-14T22:59:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2b741dc8b8568bab1a687ac14eefbae126654e97'/>
<id>2b741dc8b8568bab1a687ac14eefbae126654e97</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(scripts): disable testing seed and phonecat during a release</title>
<updated>2014-03-14T21:48:56+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-03-14T21:48:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e888dde3c569ca117380ed63c0d3d7c7ffd7071c'/>
<id>e888dde3c569ca117380ed63c0d3d7c7ffd7071c</id>
<content type='text'>
This reverts commit d5294ebfa0e762d4a891a17869b7a14f99113d5a.

It turned out to be more work and I don't wanna deal with it right now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit d5294ebfa0e762d4a891a17869b7a14f99113d5a.

It turned out to be more work and I don't wanna deal with it right now.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(scripts): test seed and phonecat during a release</title>
<updated>2014-03-14T21:24:43+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-03-14T21:24:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d5294ebfa0e762d4a891a17869b7a14f99113d5a'/>
<id>d5294ebfa0e762d4a891a17869b7a14f99113d5a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(scripts): make the release script more flexible</title>
<updated>2014-03-14T21:24:21+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-03-14T21:24:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6d6ebf7c61d8ae18175f5b08395ed25e731f03d7'/>
<id>6d6ebf7c61d8ae18175f5b08395ed25e731f03d7</id>
<content type='text'>
Now the SHA can be short/long, whateva.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now the SHA can be short/long, whateva.</pre>
</div>
</content>
</entry>
<entry>
<title>chore: update changelog for 1.3.0-beta.2</title>
<updated>2014-03-14T21:02:35+00:00</updated>
<author>
<name>Jeff Cross</name>
</author>
<published>2014-03-14T21:02:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=44b940e88ddc6483baf1907496510d1d7fba8530'/>
<id>44b940e88ddc6483baf1907496510d1d7fba8530</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($http): don't covert 0 status codes to 404 for non-file protocols</title>
<updated>2014-03-14T20:44:56+00:00</updated>
<author>
<name>Pawel Kozlowski</name>
</author>
<published>2014-03-01T11:49:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=56e73ea355c851fdfd574d6d2a9e2fcb75677945'/>
<id>56e73ea355c851fdfd574d6d2a9e2fcb75677945</id>
<content type='text'>
PR #5547 introduced conversion of all 0 status codes to 404 for cases
where no response was recieved (previously this was done for the
file:// protocol only). But this mechanism is too eager and
masks legitimate cases where status 0 should be returned. This commits
reverts to the previous mechanism of handling 0 status code for the
file:// protocol (converting 0 to 404) while retaining the returned
status code 0 for all the protocols other than file://

Fixes #6074
Fixes #6155
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR #5547 introduced conversion of all 0 status codes to 404 for cases
where no response was recieved (previously this was done for the
file:// protocol only). But this mechanism is too eager and
masks legitimate cases where status 0 should be returned. This commits
reverts to the previous mechanism of handling 0 status code for the
file:// protocol (converting 0 to 404) while retaining the returned
status code 0 for all the protocols other than file://

Fixes #6074
Fixes #6155
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: make compare-master-to-stable script more flexible</title>
<updated>2014-03-14T18:43:15+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-03-14T18:43:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=bfb6af7053f3f3949e97eb074c11d907d1534a89'/>
<id>bfb6af7053f3f3949e97eb074c11d907d1534a89</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: update compare-master-to-stable to use v1.2.x</title>
<updated>2014-03-14T18:26:30+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-03-14T18:26:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d7be9588a096aa1806620f584f9d00b74d6ac52c'/>
<id>d7be9588a096aa1806620f584f9d00b74d6ac52c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: fix compare-master-to-stable script</title>
<updated>2014-03-14T18:24:24+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-03-14T18:24:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=53e4da8eab7c3e61d489452d3aeb81bb13f4a958'/>
<id>53e4da8eab7c3e61d489452d3aeb81bb13f4a958</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
