<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/lib, branch v1.1.5</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(package.json): kill version.yaml in favor of package.json</title>
<updated>2013-05-21T10:39:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-05-20T23:37:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d458d7350b8a26752e649bd2b8d061137d0247de'/>
<id>d458d7350b8a26752e649bd2b8d061137d0247de</id>
<content type='text'>
all versioning info is now in package.json and that's where the build scripts read it from
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
all versioning info is now in package.json and that's where the build scripts read it from
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngdocs): support for HTML table generation from docs code</title>
<updated>2013-04-29T21:43:14+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-04-29T19:20:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b3a62b2e19b1743df52034d4d7a0405e6a65f925'/>
<id>b3a62b2e19b1743df52034d4d7a0405e6a65f925</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(Grunt): also remove \r chars when joining files</title>
<updated>2013-04-16T11:13:55+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-04-16T11:13:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=465238613b5b849bf833bdc71d3b42f15dc0e19b'/>
<id>465238613b5b849bf833bdc71d3b42f15dc0e19b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(revert): Revert accidental change to showdown</title>
<updated>2013-04-03T21:35:09+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2013-04-03T21:35:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6bca9483238df5df81c492c8700d8914c76dc76e'/>
<id>6bca9483238df5df81c492c8700d8914c76dc76e</id>
<content type='text'>
Offending SHA: 0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Offending SHA: 0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngAnimate): add support for animation</title>
<updated>2013-04-02T21:05:06+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2013-03-20T23:24:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413'/>
<id>0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: use Karma</title>
<updated>2013-04-01T19:24:27+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2013-03-21T01:57:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c2e215fab6ba73e195f8c32701cfb6e88e8e1ebd'/>
<id>c2e215fab6ba73e195f8c32701cfb6e88e8e1ebd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(Grunt): switch from Rake to Grunt</title>
<updated>2013-03-06T07:00:33+00:00</updated>
<author>
<name>Dave Geddes</name>
</author>
<published>2012-10-21T06:37:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=79b51d5b578927bd510123c81953e7cc8c72f211'/>
<id>79b51d5b578927bd510123c81953e7cc8c72f211</id>
<content type='text'>
Migrates the Angular project from Rake to Grunt.

Benefits:
- Drops Ruby dependency
- Lowers barrier to entry for contributions from JavaScript ninjas
- Simplifies the Angular project setup and build process
- Adopts industry-standard tools specific to JavaScript projects
- Support building angular.js on Windows platform (really?!? why?!?)

BREAKING CHANGE: Rake is completely replaced by Grunt. Below are the deprecated Rake tasks and their Grunt equivalents:

rake --&gt; grunt
rake package --&gt; grunt package
rake init --&gt; N/A
rake clean --&gt; grunt clean
rake concat_scenario --&gt; grunt build:scenario
rake concat --&gt; grunt build
rake concat_scenario --&gt; grunt build:scenario
rake minify --&gt; grunt minify
rake version --&gt; grunt write:version
rake docs --&gt; grunt docs
rake webserver --&gt; grunt webserver
rake test --&gt; grunt test
rake test:unit --&gt; grunt test:unit
rake test:&lt;jqlite|jquery|modules|e2e&gt; --&gt; grunt test:&lt;jqlite|jquery|modules|end2end|e2e&gt;
rake test[Firefox+Safari] --&gt; grunt test --browsers Firefox,Safari
rake test[Safari] --&gt; grunt test --browsers Safari
rake autotest --&gt; grunt autotest

NOTES:
* For convenience grunt test:e2e starts a webserver for you, while grunt test:end2end doesn't.
  Use grunt test:end2end if you already have the webserver running.
* Removes duplicate entry for Describe.js in the angularScenario section of angularFiles.js
* Updates docs/src/gen-docs.js to use #done intead of the deprecated #end
* Uses grunt-contrib-connect instead of lib/nodeserver (removed)
* Removes nodeserver.sh, travis now uses grunt webserver
* Built and minified files are identical to Rake's output, with the exception of one less
  character for git revisions (using --short) and a couple minor whitespace differences

Closes #199
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Migrates the Angular project from Rake to Grunt.

Benefits:
- Drops Ruby dependency
- Lowers barrier to entry for contributions from JavaScript ninjas
- Simplifies the Angular project setup and build process
- Adopts industry-standard tools specific to JavaScript projects
- Support building angular.js on Windows platform (really?!? why?!?)

BREAKING CHANGE: Rake is completely replaced by Grunt. Below are the deprecated Rake tasks and their Grunt equivalents:

rake --&gt; grunt
rake package --&gt; grunt package
rake init --&gt; N/A
rake clean --&gt; grunt clean
rake concat_scenario --&gt; grunt build:scenario
rake concat --&gt; grunt build
rake concat_scenario --&gt; grunt build:scenario
rake minify --&gt; grunt minify
rake version --&gt; grunt write:version
rake docs --&gt; grunt docs
rake webserver --&gt; grunt webserver
rake test --&gt; grunt test
rake test:unit --&gt; grunt test:unit
rake test:&lt;jqlite|jquery|modules|e2e&gt; --&gt; grunt test:&lt;jqlite|jquery|modules|end2end|e2e&gt;
rake test[Firefox+Safari] --&gt; grunt test --browsers Firefox,Safari
rake test[Safari] --&gt; grunt test --browsers Safari
rake autotest --&gt; grunt autotest

NOTES:
* For convenience grunt test:e2e starts a webserver for you, while grunt test:end2end doesn't.
  Use grunt test:end2end if you already have the webserver running.
* Removes duplicate entry for Describe.js in the angularScenario section of angularFiles.js
* Updates docs/src/gen-docs.js to use #done intead of the deprecated #end
* Uses grunt-contrib-connect instead of lib/nodeserver (removed)
* Removes nodeserver.sh, travis now uses grunt webserver
* Built and minified files are identical to Rake's output, with the exception of one less
  character for git revisions (using --short) and a couple minor whitespace differences

Closes #199
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(nodeserver): fix log message for 301 response</title>
<updated>2013-02-24T07:44:40+00:00</updated>
<author>
<name>Steven Davidson</name>
</author>
<published>2013-02-19T18:19:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c36933d38fcdba5d2c8da0e1804a54ed4efdf95d'/>
<id>c36933d38fcdba5d2c8da0e1804a54ed4efdf95d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(jquery): upgrade to jquery 1.8.2</title>
<updated>2012-11-26T14:45:04+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-10-31T20:46:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e249502880974cd7bc34a065d23f4d0bfdec6353'/>
<id>e249502880974cd7bc34a065d23f4d0bfdec6353</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(jasmine): remove Jasmine from our repo</title>
<updated>2012-10-18T10:14:27+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-10-18T10:14:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d938983c06896306a7629ca15162e565ee98001c'/>
<id>d938983c06896306a7629ca15162e565ee98001c</id>
<content type='text'>
it's bundled with Testacular, so we don't need it here
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
it's bundled with Testacular, so we don't need it here
</pre>
</div>
</content>
</entry>
</feed>
