aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
AgeCommit message (Collapse)Author
2010-12-06preparations for the 0.9.7 sonic-scream iterationIgor Minar
2010-12-06fixing release notesIgor Minar
2010-12-06updating release notes for the 0.9.6 releaseIgor Minar
2010-11-29preparing the 0.9.6 night-vision iterationIgor Minar
2010-11-25updating the release notes for 0.9.5Igor Minar
2010-11-18preparation for the 0.9.5 turkey-blast iterationIgor Minar
2010-11-18updated release notes for the 0.9.4 total-recall releaseIgor Minar
2010-11-12fix code name in the change logIgor Minar
2010-11-11preparations for 0.9.4 total-recall iterationIgor Minar
2010-11-10updating the release notes for 0.9.3 releaseIgor Minar
2010-11-08make angular.String.toDate consider all time fractions as optionalIgor Minar
2010-11-08Support ISO 8601 extended datetime format troughout angular.Igor Minar
Support ISO 8601 extended format datetime strings (YYYY-MM-DDTHH:mm:ss.SSSZ) as defined in EcmaScript 5 throughout angular. This means that the following apis switched from YYYY-MM-DDTHH:mm:ssZ to YYYY-MM-DDTHH:mm:ss.SSSZ (note the added millis) when representing dates: - angular.Date.toString - angular.String.toDate - JSON serialization and deserialization (used by json filter, $xhr and $resource)
2010-11-08date filter should accept ISO 8601 formatted string as inputIgor Minar
Closes #125
2010-11-03preparations for the 0.9.3 cold-resistance iterationIgor Minar
2010-11-03updating release notesIgor Minar
2010-11-03adding textarea() DSL for scenario runnerIgor Minar
2010-11-03adding regular expressions support for binding() DSLIgor Minar
2010-11-01Provide browser DSL with location() to expect the iframe URL parts. Also ↵Elliott Sprehn
move navigateTo() under the browser DSL.
2010-10-26start new release 0.9.2 faunal-mimicryMisko Hevery
2010-10-26updating CHANGELOG.md for the 0.9.1 releaseIgor Minar
2010-10-26create HTML sanitizer to allow inclusion of untrusted HTML in safe manner.Misko Hevery
Sanitization works in two phases: 1) We parse the HTML into sax-like events (start, end, chars). HTML parsing is very complex, and so it may very well be that what most browser consider valid HTML may not pares properly here, but we do best effort. We treat this parser as untrusted. 2) We have safe sanitizeWriter which treats its input (start, end, chars) as untrusted content and escapes everything. It only allows elements in the whitelist and only allows attributes which are whitelisted. Any attribute value must not start with 'javascript:'. This check is performed after escaping for entity (&xAB; etc..) and ignoring any whitespace. - Correct linky filter to use safeHtmlWriter - Correct html filter to use safeHtmlWriter Close #33; Close #34
2010-10-23$cookieStore should not be a global serviceIgor Minar
you must use $inject to $inject it as any other non-global service
2010-10-20adding CHANGELOG.md with 0.9.0 release notesIgor Minar