# Make sure the commit 1234567 is in the release branch history $ git branch --contains 1234567 # If the commit is not in the branch history it means that either: # - you use a different branch than the one your release from before # - or the commit sha has been rewritten (with git rebase) # In both cases you need to configure your repository to have the last release commit in the history of the release branch # List the tags for the commit 1234567 $ git tag --contains 1234567 # If v1.1.0 is not in the list you add it with $ git tag v1.1.0 1234567 $ git push origin v1.1.0
Added new event to $browser: - forward popstate event if available - forward hashchange event if popstate not available - do polling when neither popstate nor hashchange available
Breaks $browser.onHashChange, which was removed (use onUrlChange instead)
scope: { myAttr: '@', myBind: '@', myExpression: '&', // myEval - usually not useful, but in cases where the expression is assignable, you can use '=' myAccessor: '=' // in directive's template change myAccessor() to myAccessor }
The removed `inject` wasn't generaly useful for directives so there should be no code using it.
fix
1 2 3 4 5 6 7 8
fix($compile): couple of unit tests for IE9
Older IEs serialize html uppercased, but IE9 does not... Would be better to expect case insensitive, unfortunately jasmine does not allow to user regexps for throw expectations.
Closes #392 Breaks foo.bar api, foo.baz should be used instead
1 2
fix(package): update read-pkg-up to version 7.0.0 fix: clarify message for EGITNOPERMISSION error
docs: fix grammar docs: corrections and further clarifications docs: update broken link docs(README): update version number docs(README): place badge docs(inputs): remove redundant defaults