MINOR: Updated beta3 changelog

This commit is contained in:
Sam Minnee 2012-05-28 13:33:15 +12:00
parent 867b9a37d2
commit 1709a1dd6b
2 changed files with 63 additions and 2 deletions

View File

@ -4,6 +4,7 @@
### CMS ###
* Media insertion from the web, including YouTube, Vimeo, Flickr, and more, via oEmbed.
* Lots of smaller usability changes resulting from our tests
* More user friendly editing of page URLs, through explicit "edit" button
* Changed tab paths in `SiteTree->getCMSFields()` (see [upgrade notes](/changelogs/3.0.0#tab-paths)
@ -31,6 +32,9 @@ See [3.0.0](/changelogs/3.0.0) for previous details.
### API Changes
* 2012-05-24 [c7e0cee](https://github.com/silverstripe/sapphire/commit/c7e0cee) Add Form->getController() and use this instead of Controller::curr() in FileIFrameField API CHANGE Add Form->getName() and deprecate Form->Name(), use getName() instead. (Sean Harvey)
* 2012-05-23 [60c72c4](https://github.com/silverstripe/sapphire/commit/60c72c4) Use of the DropdownField $emptyString argument is now properly deprecated (has been marked as deprecated since 2.3). Please use setEmptyString() on the DropdownField instance instead. (Sean Harvey)
* 2012-05-23 [f7f67d9](https://github.com/silverstripe/sapphire/commit/f7f67d9) Static functions Director::redirect(), Director::redirectBack(), Director::set_status_code(), Director::get_status_code() and Director::redirected_to() are now deprecated. Use Controller->redirect(), Controller->redirectBack(), Controller->getResponse()->setStatusCode(), Controller->getResponse()->getStatusCode() and Controller->redirectedTo() respectively. (Sean Harvey)
* 2012-05-19 [94f50f5](https://github.com/silverstripe/sapphire/commit/94f50f5) Changes to make Director rules set through the new config system. Includes the addition of a new AdminRootController to take over handling of routing /admin/* routes to the correct LeftAndMain panel. (Hamish Friedlander)
* 2012-05-18 [1025524](https://github.com/silverstripe/sapphire/commit/1025524) Added $insertBefore argument to GridFiedlConfig::addComponent() (Sam Minnee)
* 2012-05-18 [7201f06](https://github.com/silverstripe/sapphire/commit/7201f06) Added new config option Money.default_currency. (Sam Minnee)
@ -56,6 +60,18 @@ See [3.0.0](/changelogs/3.0.0) for previous details.
### Features and Enhancements
* 2012-05-28 [0952df4](https://github.com/silverstripe/sapphire/commit/0952df4) Allow calling setButtonName() on a GridFieldAddNewButton to customise the button name (Sean Harvey)
* 2012-05-24 [5b84524](https://github.com/silverstripe/sapphire/commit/5b84524) add test to Oembed (Mateusz Uzdowski)
* 2012-05-23 [ecf847b](https://github.com/silverstripe/sapphire/commit/ecf847b) Re-instate pinging every 5 minutes in the CMS as a measure to keep sessions alive. Moved Security/ping to admin/security/ping (Sean Harvey)
* 2012-05-22 [9a7980e](https://github.com/silverstripe/sapphire/commit/9a7980e) Design fixes in insert media pop-up (Naomi Guyer)
* 2012-05-22 [28e43bd](https://github.com/silverstripe/sapphire/commit/28e43bd) File/Image UI fixes (Naomi Guyer)
* 2012-05-22 [bb29ff3](https://github.com/silverstripe/sapphire/commit/bb29ff3) Allow adding media to the CMS using oEmbed (Simon Welsh)
* 2012-05-22 [d522b81](https://github.com/silverstripe/sapphire/commit/d522b81) gridfield styling improvements, asset admin style improvements (Paul Clarke)
* 2012-05-21 [a9cbea3](https://github.com/silverstripe/sapphire/commit/a9cbea3) gridfield colours simplified to use base colours, css tidy up around actions & icons (Paul Clarke)
* 2012-05-21 [16982ba](https://github.com/silverstripe/sapphire/commit/16982ba) Make GridFieldAddNewButton Content more specific (Naomi Guyer)
* 2012-05-21 [1747298](https://github.com/silverstripe/sapphire/commit/1747298) Make GridFieldButtonRow more adaptable (Naomi Guyer)
* 2012-05-21 [84bf5e2](https://github.com/silverstripe/sapphire/commit/84bf5e2) tabs text-shadow direction change, improve visibility for IE (Paul Clarke)
* 2012-05-21 [5edf447](https://github.com/silverstripe/sapphire/commit/5edf447) visual enhancements, cms tabs, main menu drop shadow adjusted, actions panel top gradient replaced (Paul Clarke)
* 2012-05-18 [aa7bc23](https://github.com/silverstripe/silverstripe-cms/commit/aa7bc23) refactoring template "control" loops into "loop" and "with" to fit with the new template syntax (Julian Seidenberg)
* 2012-05-18 [5290b81](https://github.com/silverstripe/sapphire/commit/5290b81) don't show the paginating elements in the paginator when only one page, and keep 'view 1 - 5 of 5' there (Normann Lou)
* 2012-05-16 [458171f](https://github.com/silverstripe/sapphire/commit/458171f) Gridfield usability (fixes 7215) (Naomi Guyer)
@ -114,6 +130,32 @@ See [3.0.0](/changelogs/3.0.0) for previous details.
### Bugfixes
* 2012-05-28 [7968013](https://github.com/silverstripe/sapphire/commit/7968013) SecurityAdmin shows incorrect breadcrumbs for viewing Roles GridField. Partially reverts 16982ba17c. (Sean Harvey)
* 2012-05-28 [74d444c](https://github.com/silverstripe/sapphire/commit/74d444c) Ensure "Add [modelClass]" is shown instead of using the field name of the GridField, partially reverts 16982ba17c which broke breadcrumbs in SecurityAdmin (Sean Harvey)
* 2012-05-27 [b7ce610](https://github.com/silverstripe/sapphire/commit/b7ce610) Fixed ModelAdmin not working when managed models was defined as an array. (Andrew Short)
* 2012-05-25 [b6ca328](https://github.com/silverstripe/silverstripe-cms/commit/b6ca328) Fixed add page context menu, replacing references to .pagetype with .ssclass. (#7398) (Sam Minnee)
* 2012-05-25 [d8fdda7](https://github.com/silverstripe/sapphire/commit/d8fdda7) Add comments and fix IE problems (class is a reserver JS word). (Mateusz Uzdowski)
* 2012-05-24 [30ecb9f](https://github.com/silverstripe/sapphire/commit/30ecb9f) Provide a default width and height of 100px for those endpoints that don't provide one. (Simon Welsh)
* 2012-05-24 [32817b4](https://github.com/silverstripe/sapphire/commit/32817b4) replace foreach loop with a core function call (Mateusz Uzdowski)
* 2012-05-24 [1c8d39b](https://github.com/silverstripe/sapphire/commit/1c8d39b) add comments, make the code more readable (Mateusz Uzdowski)
* 2012-05-24 [808819e](https://github.com/silverstripe/silverstripe-cms/commit/808819e) Themes dropdown in SiteConfig::getCMSFields() should use setEmptyString() as the $emptyString argument is now deprecated. (Sean Harvey)
* 2012-05-24 [63ed0cb](https://github.com/silverstripe/sapphire/commit/63ed0cb) return a meaningful translatable string when resource is invalid (Mateusz Uzdowski)
* 2012-05-24 [9074f52](https://github.com/silverstripe/sapphire/commit/9074f52) Fixing regression in Boolean::scaffoldSearchField() (Sean Harvey)
* 2012-05-23 [a172a2e](https://github.com/silverstripe/sapphire/commit/a172a2e) Handle consecutive shortcodes. (Simon Welsh)
* 2012-05-23 [be2c811](https://github.com/silverstripe/silverstripe-cms/commit/be2c811) Adding missing onunmatch in AssetAdmin.DragDrop (Sean Harvey)
* 2012-05-23 [bbb08df](https://github.com/silverstripe/sapphire/commit/bbb08df) cater for elements without href (Mateusz Uzdowski)
* 2012-05-23 [50cbef7](https://github.com/silverstripe/silverstripe-cms/commit/50cbef7) remove unnecessary class that breaks the tab opening. (Mateusz Uzdowski)
* 2012-05-23 [77dbcee](https://github.com/silverstripe/sapphire/commit/77dbcee) i18n::include_by_locale() doesn't include a fallback language, _t() instead will include the language if it's not available. This fixes en_GB translations not being picked up. i18n::get_translators() will always have a fallback of "en" language without the region, and "en_US" as the locale. (Sean Harvey)
* 2012-05-22 [7ed0991](https://github.com/silverstripe/silverstripe-cms/commit/7ed0991) Fixing incorrect URL to edit canonical page on VirtualPage (Sean Harvey)
* 2012-05-22 [ae1a106](https://github.com/silverstripe/sapphire/commit/ae1a106) Ensure that CMSMain rule doesn't override the CMSPagesController rule in AdminRootController::add_rule_for_controller() (Sean Harvey)
* 2012-05-22 [0d4f7a0](https://github.com/silverstripe/sapphire/commit/0d4f7a0) Fixing incorrect arguments to submitForm() in LeftAndMain.AddForm.js (Sean Harvey)
* 2012-05-22 [ce7a96b](https://github.com/silverstripe/sapphire/commit/ce7a96b) Fixed missing comma in LeftAndMain.AddForm (Sean Harvey)
* 2012-05-22 [78b7836](https://github.com/silverstripe/sapphire/commit/78b7836) add missing onunmatch (Mateusz Uzdowski)
* 2012-05-22 [b0a026b](https://github.com/silverstripe/silverstripe-cms/commit/b0a026b) Fixed url_segment undefined error in CMSMain.EditForm, assuming *all* title fields have a URLSegment field associated with them, which they don't. (Sean Harvey)
* 2012-05-22 [5eaca34](https://github.com/silverstripe/sapphire/commit/5eaca34) Versioned's constructor doesn't provide suitable defaults. Previously a bug/feature in singleton, where it would pass null,true as params to strong_create, which would then get passed through as params to Versioned's constructor, meant that the code still executed fine (as was set to something that wasn't an array, so the null and true were instead taken as args). The fact that the usage of singleton(Versioned) never really used the classes code, purely for value lookup, meant that this never propagated errors. I've now switched singleton() to use the injector for retrieving values, which means these dud values are no longer passed through (Marcus Nyeholt)
* 2012-05-22 [b2468eb](https://github.com/silverstripe/silverstripe-cms/commit/b2468eb) add missing selectors and namespace qualifiers (Mateusz Uzdowski)
* 2012-05-22 [ac25677](https://github.com/silverstripe/sapphire/commit/ac25677) add missing selectors and namespace qualifiers (Mateusz Uzdowski)
* 2012-05-21 [2f4a033](https://github.com/silverstripe/sapphire/commit/2f4a033) CMS tabs were hidden in ie7, changed css to make them appear far right (Paul Clarke)
* 2012-05-20 [dd924f1](https://github.com/silverstripe/sapphire/commit/dd924f1) Removed duplicate 'change' event trigger from TreeDropdownField.js (fixes #7329) (Ingo Schommer)
* 2012-05-20 [fedb337](https://github.com/silverstripe/sapphire/commit/fedb337) Less strict checks for relative URL normalization in SS_HTTPRequest (regression from recent security fixes to Director::is_absolute_url()) (fixes #7359) (Ingo Schommer)
* 2012-05-19 [f410ccf](https://github.com/silverstripe/silverstripe-cms/commit/f410ccf) Make Page panel the default again after the recent addition of AdminRootController (Hamish Friedlander)
@ -237,6 +279,26 @@ See [3.0.0](/changelogs/3.0.0) for previous details.
### Minor changes
* 2012-05-28 [ddd2d3a](https://github.com/silverstripe/sapphire/commit/ddd2d3a) Fixing broken i18nTest (Sean Harvey)
* 2012-05-28 [7994b73](https://github.com/silverstripe/sapphire/commit/7994b73) Added i18n to Delete action (Sam Minnee)
* 2012-05-28 [e3dee85](https://github.com/silverstripe/sapphire/commit/e3dee85) Fix broken test (Sean Harvey)
* 2012-05-25 [e017813](https://github.com/silverstripe/sapphire/commit/e017813) Updated en langfile (Sam Minnee)
* 2012-05-25 [9592b28](https://github.com/silverstripe/silverstripe-cms/commit/9592b28) Updated en langfile (Sam Minnee)
* 2012-05-25 [48212aa](https://github.com/silverstripe/sapphire/commit/48212aa) Adding upgrade docs on deprecated Director::redirect() and Director::redirectBack() (Sean Harvey)
* 2012-05-25 [fb7cd32](https://github.com/silverstripe/sapphire/commit/fb7cd32) Fixed field naming in SecurityAdminTest (recently changed alongside new GridFieldAddButton commit) (Ingo Schommer)
* 2012-05-24 [5b07349](https://github.com/silverstripe/sapphire/commit/5b07349) Fixed GridFieldAddNewButton label (Ingo Schommer)
* 2012-05-24 [15a5dab](https://github.com/silverstripe/sapphire/commit/15a5dab) Add a fallback thumbnail image for oEmbed inserts (Simon Welsh)
* 2012-05-24 [b325fea](https://github.com/silverstripe/sapphire/commit/b325fea) Fixing "No current controller available" error when TestSession::__destruct() is called (Sean Harvey)
* 2012-05-24 [a84ef8d](https://github.com/silverstripe/sapphire/commit/a84ef8d) Don't use template method Actions internally in Form (Sean Harvey)
* 2012-05-23 [d9ee61c](https://github.com/silverstripe/silverstripe-cms/commit/d9ee61c) Use of DropdownField in CMS should call setEmptyString instead of use the $emptyString argument, as it's deprecated. (Sean Harvey)
* 2012-05-23 [542d727](https://github.com/silverstripe/silverstripe-cms/commit/542d727) Don't use deprecated extraStatics when adding extra statics with DataExtension (Sean Harvey)
* 2012-05-23 [77c2365](https://github.com/silverstripe/sapphire/commit/77c2365) Replacing deprecated static function calls to Director with current Controller instance replacements. (Sean Harvey)
* 2012-05-23 [ec3ebc9](https://github.com/silverstripe/silverstripe-cms/commit/ec3ebc9) Use instance methods on current Controller instance for redirect() instead of static Director functions (Sean Harvey)
* 2012-05-22 [0515555](https://github.com/silverstripe/silverstripe-cms/commit/0515555) Fixing CMSMainTest using old code, updating to new CMS admin/pages URL (Sean Harvey)
* 2012-05-22 [3ed9c5f](https://github.com/silverstripe/sapphire/commit/3ed9c5f) Removed getitem allowed action, this method no longer exists in LeftAndMain (Sean Harvey)
* 2012-05-22 [2cb89ed](https://github.com/silverstripe/silverstripe-cms/commit/2cb89ed) Fixing invalid URL (Sean Harvey)
* 2012-05-22 [f446547](https://github.com/silverstripe/sapphire/commit/f446547) Using Config system instead of Director::addRules() in tests (Sean Harvey)
* 2012-05-21 [bc4bf9d](https://github.com/silverstripe/sapphire/commit/bc4bf9d) Added 3.0.0-beta3 changelog (Ingo Schommer)
* 2012-05-21 [063f6bc](https://github.com/silverstripe/sapphire/commit/063f6bc) Updated language master (Ingo Schommer)
* 2012-05-20 [1614bc4](https://github.com/silverstripe/silverstripe-cms/commit/1614bc4) Removed unknown "cancel draft" button icon (fixes #7333) (Ingo Schommer)
* 2012-05-20 [69fbdad](https://github.com/silverstripe/sapphire/commit/69fbdad) Removed non-functional "close popup" link from profile editing in CMS (fixes #7343) (Ingo Schommer)
@ -304,8 +366,6 @@ See [3.0.0](/changelogs/3.0.0) for previous details.
* 2012-05-10 [7f4c6e3](https://github.com/silverstripe/sapphire/commit/7f4c6e3) Fixed small button styles (now used in URLSegment "edit" button etc.) (Ingo Schommer)
* 2012-05-10 [c9900b7](https://github.com/silverstripe/sapphire/commit/c9900b7) Upgrade jQuery UI dependency to 1.8.20 (Sean Harvey)
* 2012-05-10 [1e8a89d](https://github.com/silverstripe/sapphire/commit/1e8a89d) Upgrade jQuery dependency to 1.7.2 (Sean Harvey)
* 2012-05-10 [56e75b4](https://github.com/silverstripe/sapphire/commit/56e75b4) Revert changes for 5.4 (Sean Harvey)
* 2012-05-10 [7dcfdb0](https://github.com/silverstripe/sapphire/commit/7dcfdb0) Fixing broken test on PHP 5.4 (Sean Harvey)
* 2012-05-10 [68c5066](https://github.com/silverstripe/sapphire/commit/68c5066) Remove old _ALL_CLASSES from old manifest builder (has been replaced since) (Sean Harvey)
* 2012-05-09 [6655830](https://github.com/silverstripe/sapphire/commit/6655830) Upgrading notes around tab rewrites (Ingo Schommer)
* 2012-05-09 [c72bae3](https://github.com/silverstripe/silverstripe-cms/commit/c72bae3) Fixing assertType() assertions with assertInstanceOf() (Sean Harvey)

View File

@ -45,6 +45,7 @@ For information on how to upgrade to newer versions consult the [upgrading](/ins
## Alpha/beta/release candidate ##
* [3.0.0-beta2](beta/3.0.0-beta3) - 28 May 2012
* [3.0.0-beta2](beta/3.0.0-beta2) - 20 April 2012
* [3.0.0-beta1](beta/3.0.0-beta1) - 12 March 2012
* [3.0.0-alpha2](alpha/3.0.0-alpha2) - 12 January 2012