Skip to content

Releases: underscoreio/slickless

0.3.6: Regression fix

15 Aug 05:45
@d6y d6y
da2c4af
Compare
Choose a tag to compare

This release (for Scala 2.11, 2.12, 2.13) fixes a regression reported in #42 (thanks to @nivekastoreth)

Release for Scala 2.13

03 Jul 16:36
@d6y d6y
Compare
Choose a tag to compare

Thanks to @oker1 and @scala-steward, we've build Slickless against Scala 2.13 and Slick 3.3.2

Release for Slick 3.3.0

25 Feb 09:09
@d6y d6y
Compare
Choose a tag to compare

This release updates slickness to be built against Slick 3.3.0.

Update for Shapeless 2.3.3, SBT 1, performance improvements

02 Feb 16:50
@d6y d6y
Compare
Choose a tag to compare

0.3.2: For Slick 3.2 final, Scala 2.11 and 2.12

18 Apr 08:54
@d6y d6y
Compare
Choose a tag to compare

Thanks to @StudioDev this release updates slickless for the 3.2.0 final release of Slick, and builds for Scala 2.12 and 2.11. Via #17

Slick 3.2 milestone and Scala 2.12

04 Jan 12:07
@d6y d6y
Compare
Choose a tag to compare

Thanks to @DanielaSfregola this release is for Scala 2.12, using Slick 3.2.0-M2. Via PR #13

Use mappedWith to map an HList into a case class

26 Sep 08:26
@d6y d6y
Compare
Choose a tag to compare

Addition of the mappedWith method.
This allows a user to convert an HList shape mapping to a case class shape mapping using a Generic:

case class Address(id: Long, house: Int, street: String)

class Addresss(tag: Tag) extends Table[Address](tag, "addresses") {
  def id     = column[Long]("id", O.PrimaryKey, O.AutoInc)
  def house  = column[Int]("house")
  def street = column[String]("street")

  def * = (id :: house :: street :: HNil).mappedWith(Generic[Address])
}

Thanks @davegurnell and PR 10.

Update to shapeless 2.3.1

17 May 16:35
@d6y d6y
Compare
Choose a tag to compare

This release updates the build to depend on shapeless 2.3.1.

Slick 3.1.1, shapeless 2.3.0

15 Apr 14:16
@d6y d6y
Compare
Choose a tag to compare

This release updates the build to depend on shapeless 2.3.0 and Slick 3.1.1 (thanks to @travisbrown PR #6)