Updated the list of whats changed.
[jquery.git] / newandnoteworthy.txt
index cf8dcd5..10ab7ea 100644 (file)
@@ -5,6 +5,10 @@ New and Noteworthy
 -----
 
  - Massive speed-ups (4x-10x) in the selector engine 
+ - jQuery is no longer destructive. Doing var a = $("a"); a.find("span"); does not change the original "a" variable.
+ - Removed .oneEvent() and .unEvent() helper methods.
+ - Added new .one( "type", fn ) method
+ - Performming .click(), .blur(), .focus(), .submit() will actually trigger the browsers default action for those events.
  - Fixed synchronous requests
  - $.get, $.getIfModified, $.post, $.getScript and $.getJSON now all pass through the XMLHttpRequest as returned by $.ajax
  - Improved AJAX docs (eg. more examples for $.ajax)
@@ -12,6 +16,7 @@ New and Noteworthy
  - Fixed ID with context selectors (eg. div #id doesn't ignore "div" anymore)
  - Fixed nth-child selectors to start on the right number
  - Improved jQuery.merge to avoid unnecessary loops
+ - Removed the (undocumented) .find( "selector", fn ) for all destructive methods.
  - Fixed docs for html(): Now mentions that is not available for XML documents
  - Improved docs for blur() and focus(), mentioning the difference between calling the jQuery method and the DOM method
  - Implemented a better error handling for ajax requests. Exceptions caused by dropping connections are now handled, too.
@@ -19,6 +24,7 @@ New and Noteworthy
  - You can now unbind event handlers from within themselves
  - Documented filter(Function)
  - Improved docs for FX module, merging method descriptions and marking optional arguments
+ - Improved docs for append, prepend, before and after, merging the three pairs into one
 
 1.0.4
 -----