-
Notifications
You must be signed in to change notification settings - Fork 71
Seaside330Changelog
Johan Brichau edited this page Jun 1, 2019
·
44 revisions
Seaside 3.3 requires Grease 1.4.1
- Support for Pharo 7
- Seaside-REST now supports the OPTIONS and PATCH http verbs
- The Seaside-REST-Examples package has been added which contains examples on how to use Seaside REST
- Seaside now generates HTML-style boolean attributes instead of XML-style boolean attributes,
checked
instead ofchecked="checked"
- Many more HTML5 events are now supported
- jQuery binding was updated to 3.3.1 (see https://jquery.com/upgrade-guide/ for how to upgrade)
- jQuery-UI binding was updated to 1.12.1 (see https://jqueryui.com/upgrade-guide/1.12/ for how to upgrade)
- HTML document root now supports directly passing a style sheet or Javascript as a String
-
#initializeCache
can be sent to an application after changing the cache configuration for the changes to take effect - The MIME types for .sass and .scss are now supported
-
WAEnterpriseAuberginesStrategy
has been added which tracks session similar to Tomcat/Java EE/Servlet with a "JSESSIONID" cookie and a "jsessionid" path parameter so that existing sticky session load balancers can be used - A mapping for Prototype's
PeriodicalExecuter
has been added -
#noAutocomplete
is now also understood by input fields - Some of the icons of the Pharo development tools have been updated to vector graphics so that they should look better on high-DPI screens
- SameSite Strict is used for session cookies
- The Zinc-Seaside adaptor is now loaded from this repository instead of Zinc's main repo.
- Platform-specific optimizations are now used in the implementation of
WADynamicVariable
: it now usesGRDynamicVariable
which uses the native DynamicVariable if supported on the platform. see Grease. - The xhtml validate tool plugin has been removed (see https://github.com/SeasideSt/Seaside/issues/1024)
See the resolved issues for milestone 3.3 for a complete list of issues. Some highlights:
-
WAXmlCanvas builder
now returns a ready to use builder - Render phase continuation and
JSObject
now uses the script generator configured on the application -
WAErrorHandler
now sets the charSet attribute of the content type - The
REST
group in the Metacello baseline no longer contains theSeaside-Component
package - Expired sessions tracked with cookies should no result in an infinite redirect
- The bundled Prototype JavaScript library has been updated from 1.7.0 to 1.7.3 which fixes multi select lists
- Removed support for Pharo 1,2,3 and GemStone 2.4 (these were probably broken in 3.2 already)
- When a session has expired no longer is
#expiredRegistryKey
being sent to the response generator. Instead#handleDefault:
is now sent to the application. If you require the old behavior you should subclassWAApplication
and override#handleExpired
with the method below. See https://github.com/SeasideSt/Seaside/issues/916.
handleExpired: aRequestContext
aRequestContext responseGenerator
expiredRegistryKey;
respond
-
#initializeMemorySettingsProfileSeaside
has been removed - jQuery UI
#zIndex:
has been removed use the appendTo option instead https://jqueryui.com/upgrade-guide/1.12/#removed-zindex - jQuery binding was updated to 3.3.1 (see https://jquery.com/upgrade-guide/ for how to upgrade)
- jQuery-UI binding was updated to 1.12.1 (see https://jqueryui.com/upgrade-guide/1.12/ for how to upgrade)
- the "XHTML" validation tool int the development toolbar has been removed, it is unlikely this ever worked
- SameSite Strict is used for session cookies, that means requests from other pages, including redirects, will no longer get the session cookie. If you rely on the old behavior we implementing you own session tracking strategy.
-
JSObject >> #timeout:
has been deprecated in favour ofJSObject >> #setTimeout:
.JQAjaxSetup >> #timeout:
andJQAjax >> #timeout:
have not been deprecated. -
WAHtmlRoot
#beXhtml10Strict
,#beXhtml10Transitional
and#beXhtml11
have been deprecated in favor of#beHtml5
.
No known issues upgrading from 3.2.x
Changelogs
- (newer changelogs, see https://github.com/SeasideSt/Seaside/releases)
- 3.4.0
- 3.3.0
- 3.2.4
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.11
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 2.8
- 2.7
- Past Releases
Development
Documentation
- Configuration and Preferences
- Embedding Subcomponents
- Maintaining State
- Generating HTML
- CSS and Javascript
- Debugging Seaside Applications
- Links, Forms and Callbacks
- Development Tools
- Call and Answer
- Naming URLs
- Security Features
- Securing Seaside Applications
- Seaside-REST
- Add-On Libraries
- Persistence
- Gettext
- FileLibrary
- The Render Tree
- PDF Generation
- Long-Term Issues
- Ajaxification
- Web Components
- Big Issues
Sprints