Slick 3.5.0-M4: A Prerelease for Scala 3
Slick, a popular database query and access library for Scala, has released its first prerelease version for Scala 3. This update brings support for the latest version of Scala, offering developers the opportunity to leverage the new features and improvements introduced in Scala 3.
The prerelease version, 3.5.0-M4, includes several highlights, chores, and other changes. Developers can refer to the full changelog to get a comprehensive overview of the updates.
To provide feedback or report issues, users can take advantage of the feedback channels provided by the Slick community. The maintainers actively engage with the community and consider their input seriously.
With this release, Slick demonstrates its commitment to staying up-to-date with the latest advancements in the Scala ecosystem. Developers can now explore the new possibilities offered by Scala 3 while leveraging the power and flexibility of Slick for their database operations.
// Example code snippet
import slick.jdbc.H2Profile.api._
val db = Database.forConfig("myDatabase")
val users = TableQuery[Users]
val query = users.filter(_.age > 18).result
db.run(query).map(println)
Stay tuned for more updates from the Slick team as they continue to enhance the library and provide valuable resources for Scala developers.
Insert Link
Footer Footer navigation