Slick 3.1.0-RC1
September 11 2015
We have just released Slick 3.1.0-RC1, the first release candidate for Slick 3.1.0. You can find the source code here: https://github.com/slick/slick/tree/3.1.0-RC1. Builds for Scala 2.10 and 2.11 are available from Maven Central, as usual.
These are the major new features since 3.0:
- New query compiler back-end. The main goal is to avoid subqueries wherever possible.
- Improved support for monadic joins in the query compiler. In particular, whenever a monadic join cannot be translated into an applicative join (as required for SQL), the query compiler will fail with a useful error message instead of producing invalid code.
- Improved configuration of database connections via Typesafe Config: You can now configure arbitrary DataSource classes with Java Bean semantics when running without a connection pool (similar to what was already supported by HikariCP).
- Configurable class loading when resolving Slick drivers: In containers which separate
parts of an application into different ClassLoaders (e.g. Play, OSGi), the previous
approach of using
Class.forName
did not work in all cases. You can now provide a custom ClassLoader, and Slick will fall back to the context ClassLoader in other cases. - Support for HikariCP is now in a separate module which makes it easier to depend on the correct, binary compatible version of HikariCP.
- Database connections can be configured through a DATABASE_URL syntax as used on PaaS platforms like Heroku.
- New query operators “distinct” and “distinctOn”.
- Performance improvements in the query compiler. Query compilation is now more than 2.5 times as fast as it was in 3.0.
None of the standard Activator templates are available at the moment. They will be ported to 3.1 before the final release. You can find details about upgrading from Slick 3.0 in the Migration Guide. The commercial Slick Extensions package with additional database drivers is also available for this RC. See the manual for details on adding it to your build.
Please provide feedback on the stability of this RC if you encounter any problems.
Here is a complete list of changes since 3.0.0
9c0d371
Release 3.1.0-RC1d2e50d4
Remove dependent types for.delete
and.findby
extension methods.5cbabf6
Add documentation for default string type changesebfb344
Ensure non-empty “select” clauses in mergeToComprehensions:f82a8fe
Better integration of expandConditionals into expandSums07cd37a
Allow selective translation for Take or Drop in removeTakeDrop:dc1c551
Correctly propagate a Driver object to DriverDataSource6cb62b8
Integrate expandConditionals into expandSumsd286c17
Selectively skip compiler phases:9d8bbee
AddQuery.distinct
andQuery.distinctOn
operators04ca00d
codegen: schema: Handle case of no tables53cb788
codegen: Test case of no tables (schema has invalid syntax)bc90afe
A simpler and faster implementation of assignUniqueSymbols969ec5f
Use correct discriminator checks under three-valued logice6acabf
Some type-related fixes and improvements from tmp/globaltypes2bcdeeaa
Prevent retry of lazy Connection acquisition attempt in BaseSession:1634965
More intelligent handling of String types on MySQLda7aaa9
Create correct syntax for casts on MySQLc9bdcb1
More micro-optimizations and streamlining of ConstArray use2adb7c3
Use a custom collection implementation in the AST:b48115a
Profiling settings plus small performance improvements8ac4298
Only set Hikari dataSourceClassName or driverClassName but not both8dac76f
Add two more expr customization for pgcurrent_date
andcurrent_time
1c9469f
Scalar optimization & better discriminator column picking:b01e539
More query compiler performance improvements:b87c994
Eliminate explicit outer join discriminator columns where possible34bf73f
Set Slick Extensions version in the manual independent of Slick version3bd24cc
Some small query compiler performance optimizations:a71aff4
AdddetectRebuild
option to mark rebuilt leaf nodes after each phase:ed2af9b
Add a benchmark for the query compiler.7333bd9
More consistent Query.length (“COUNT(*)”) semantics:16be008
Fix docs and simplify (no binary compatibility constraints for 3.1)c197fdb
Move HikariCPJdbcDataSource into a separate moduleb651a62
Clean up the build file764b405
Avoid subqueries around zipWithIndex operations7514666
Database.forConfig uses provided config paramsnumThreads
andqueueSize
5ca0e5c
Add tests for theremoveTakeDrop
phase:a30d5df
Fixed a mistake in the docs markupe957544
Fix the implicit conversions for Compiled queries.ea15636
Workaround SI-7139 caused by eponymous type alias and objectc762b55
Improve code generationaaf2a22
Early hoisting of client-side operations:99c2737
add one more parametertypeName
tojdbcTypeToScala
ffee22c
Improve subquery fusion for Union operationsfbd2289
Add the correct scala-sbt repo for resolving sbt-testng.plugin31672a2
Remove deprecated APIs2ae5320
Added documentation for DatabaseUrlDataSource7fcd722
Add a test for DatabaseUrlDataSourcef637d52
Revised DatabaseUrlDataSource to have a no-arg cstr. Moved extractUrl to instance method9cfd03e
Added a DatabaseUrlDataSource for use with DATABASE_URL79d2e67
Support Typesafe Config-based configuration of DataSource beans4565f09
Clean up the ClassLoader support from #1152:95dad0a
Set hikariCP validationTimeout from config or 1000ms9b58a50
Pin HikariCP at version 2.3.7 to match play-slick5ef94f8
Remove AccessDrivercce3b95
Remove the Direct Embedding (deprecated in 3.0)4b7262e
Add test for resolving reference.conf in OSGi contexta9dd9a8
Fix OSGi tests (did not run due to duplicate slf4j on classpath)ff264c9
Bump version numbersb9861f1
Remove obsolete code36d5552
Improve Take, Drop and zip join translationf170783
Fix type bugs and enforce correct types in the query compiler:85df538
Codegen: Suppress output of schema.create if ddlEnabled is false4fd654f
Add Gitter badgee26a7d0
Remove TypedNode:1c2d5db
AST simplifications3470fa0
Compiler improvements:8baa079
New Query Compiler Back-End2b14139
Early transformation of monadic joins into applicative joins.f53f06e
Move createResultSetMapping down after forceOuterBinds1d55c69
Fix view source for scaladoc and edit this file on github for docs325f200
Improve tree loggingae7e4d8
Improve logging:1abf753
Allow classloader to be specified for classloading0cab15e
Add docs about DBIO composition.
Past News Items
Aug 16 2022
If you use Slick, please try 3.4.0-RC3 by changing the version in your build. After a week, if no regressions have been reported we will G-d willing release 3.4.0 (final)....
Apr 23 2021
Slick is community-maintained. Planning for future releases,
including for Scala 3, is in progress. Please help if you can!
For details, visit [this ticket](https://github.com/slick/slick/issues/2198).
Sep 09 2020
We have just released Slick 3.3.3 You can find the source code here: . Builds for Scala 2.11, 2.12 and 2.13 are available from Maven Central, as usual. ## Highlights...
Jan 30 2019
We have just released Slick 3.3.0 You can find the source code here: . Builds for Scala 2.11 and 2.12 are available from Maven Central, as usual. ## These are...
Mar 23 2018
We have just released Slick 3.2.3. You can find the source code here: . Builds for Scala 2.11 and 2.12 are available from Maven Central, as usual. From 3.2.0 on,...
Mar 06 2018
We have just released Slick 3.2.2. You can find the source code here: . Builds for Scala 2.11 and 2.12 are available from Maven Central, as usual. From 3.2.0 on,...
Jul 20 2017
We have just released Slick 3.2.1. You can find the source code here: . Builds for Scala 2.11 and 2.12 are available from Maven Central, as usual. From 3.2.0 on,...
Feb 24 2017
We have just released Slick 3.2.0. You can find the source code here: . Builds for Scala 2.11 and 2.12 are available from Maven Central, as usual. From this release...