The Lift team proudly announces the availability of Release Candidate 1 of Lift version 3.0.
Lift is the most powerful, secure and mature web framework available today. There are Seven Things that distinguish Lift from other web frameworks.
Lift applications are:
Read an overview of how Lift achieves these important goals.
Lift open source software licensed under an Apache 2.0 license.
\\
used to return a JValue.
In cases where it matched a single field directly, it would return the field's value rather than a consistent container type.
Matching multiple fields would return a JObject with the matched fields in it.
Now, \\
always returns a **JObject** with the matching fields in it, even if there is only one such field.
This may require adapting certain uses of \\
, especially in for comprehensions.
Code like for (JString(name) <- object \\ "name")
will have to be changed to something more like
for (JField(_, JString(name)) <- object \\ "name")
to work correctly.
Thanks to @eallik for reporting!
&
, you would get a lot of empty lines,
since each Noop would emit some empty lines in those cases.
Now, we ignore Noop when combining JsCmds
, which should lead to reduced noise in serialized JS output.
The most immediate impact is that page-specific JavaScript will be much more compact than it was before.
Fixes
Props.whereToLook
works
correctly again. In **3.0-M8**, we expanded the abilities of Props
to read from arbitrary sources.
Unfortunately, in the process, we broke the whereToLook
setting that allowed you to adjust the search paths
for Props
to look for named property files. This has been fixed in **RC1**.
Thanks to @serioga for reporting!
Please join the Lift Community and enjoy building awesome apps with Lift.
2018/07/21 The Lift team is proud to announce the release of Lift 3.3.0.
2018/01/27 The Lift team is proud to announce the release of Lift 3.2.0.
2017/12/16 The Lift team is proud to announce the release of Lift 3.2.0-RC1.
2017/11/16 The Lift team is proud to announce the release of Lift 3.2.0-M3.
2017/09/15 The Lift team is proud to announce the release of Lift 3.2.0-M2.
2017/07/23 The Lift team is proud to announce the release of Lift 3.2.0-M1.
2017/07/02 The Lift team is proud to announce the release of Lift 3.1.0 final.
2017/06/18 The Lift team is proud to announce the release of Lift 3.1.0-RC1.
2017/05/20 The Lift team is proud to announce the release of Lift 3.1.0-M3.
2017/04/13 The Lift team is proud to announce the release of Lift 3.1.0-M2.
Entwicklung von Web-Applikationen mit Lift und Scala by Thomas Fiedler and Christoph Knabe.
Simply Lift, by David Pollak is an open source book, available for free in both PDF and HTML versions at http://simply.liftweb.net/.
Exploring Lift, by Derek Chen-Becker, Tyler Weir, and Marius Danciu is an open source book, available for free in both PDF and HTML versions at http://exploring.liftweb.net/.
Lift In Action by Tim Perrett is available in print and eBook format.
Lift Cookbook A community question and answers book, free at cookbook.liftweb.net
Lift Web Applications How-to by Torsten Uhlmann is available in print and eBook format.
Lift Application Development Cookbook by Gilberto T. Garcia Jr. is available in print and eBook format.