Lift Framework 3.1.1
farmdawgnation
released this
16 Sep 04:08
·
434 commits
to main
since this release
This is a bugfix release to Lift 3.1.0 to fix a few bugs that were introduced in the 3.0.0 release and discovered only recently. The bug fixes we've shipped are described below. Please let us know if on the Mailing List if you have any issues.
Fixes
- (#1917) Consider
LiftRules.cometCreation
when building comets. ThisLiftRule
became ignored by accident during the great comet upgrade of the 3.0 release. We've added the line back that was missing, and plan to back-port this fix to the 3.0 and the 3.1 series. - (#1915) Provide context path to session reload handler. There was a subtle change in behavior in Lift 3.0 that caused bad things to happen when a Lift application was deployed under a context path in an application server (so, somewhere other than
/
) and that Lift application detected that the comet session had disappeared. In previous versions of Lift this would just reload the page. In Lift 3.0, we changed that behavior to take you to the root of your application. However,/
is not always the root of the application. Now, we'll properly consider the context path when detecting what URL to send you to. This is, as always, customizable withLiftRules.noCometSessionCmd
.