Skip to content

Releases: codeforkjeff/dbt-sqlite

dbt-sqlite 1.5.0

21 Apr 17:44
1bd64e4
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.5.x

Changes since 1.4.0:

  • internal changes for compatibility with dbt-core 1.5.0 - see #51

dbt-sqlite 1.4.0

08 Feb 02:14
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.4.x

Changes since 1.3.0:

  • changed exception names to be compatible with dbt 1.4.x
  • get_default_quote_policy now expects a dataclass 'field' in policy object

There's more to be done according to #40 but this is good enough as a first release for dbt-core 1.4.0 compatibility.

dbt-sqlite 1.4.0a1

01 Feb 07:33
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.4.x

  • changed exception names to be compatible with dbt 1.4.x
  • get_default_quote_policy now expects a dataclass 'field' in policy object

dbt-sqlite 1.3.0

01 Feb 06:52
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.3.x

  • add indexes in incremental materializations
  • add new tests

dbt-sqlite 1.2.0

01 Feb 04:20
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.2.x

No changes in this release from v1.2.0a4.

Changes since dbt-sqlite v1.1.3:

  • in dbt-core 1.2.x, SQLAdapter.drop_schema() dbt-labs/dbt-core#5198, so there's no need for that in this adapter here anymore
  • drop_schema() now deletes the schema's file (the default implementation in dbt-core is a DROP SCHEMA CASCADE). This change was made to take care of post-test cleanup
  • implemented most of the cross-database macros new in dbt 1.2.0
  • two additional sqlean extensions are needed in order for certain features to work - see the README
  • fix #35: decrease batch size for seeds so larger files can be used
  • Improve column type handling: see #36

This release was delayed in the hopes of implementing several macros (listagg, lastday, date_trunc, datediff). At this point, this adapter is 2 minor releases behind the current dbt-core version (1.4.0) so I've cut this release so we can move on without those.

dbt-sqlite 1.2.0a4

17 Jan 05:09
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.2.x

  • Improve column type handling: see #36

dbt-sqlite 1.2.0a3

11 Jan 02:30
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.2.x

  • Fix #35: decrease batch size for seeds so larger files can be used

dbt-sqlite 1.2.0a2

19 Aug 15:25
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.2.x

  • Fix broken incremental models with unique_key - see #31

dbt-sqlite 1.1.3

19 Aug 04:51
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.1.x

  • Fix broken incremental models with unique_key - see #31

dbt-sqlite 1.2.0a1

02 Aug 07:48
Compare
Choose a tag to compare

NOTE: compatible with dbt-core ~= 1.2.x

This pre-release has been lightly tested and should mostly work. I wanted to get this out to give users something to work with, because the 1.1.x versions of this adapter do NOT work with dbt 1.2.0.

  • in dbt-core 1.2.x, SQLAdapter.drop_schema() commits the transaction, so there's no need for that in this adapter here anymore
  • drop_schema() now deletes the schema's file (the default implementation in dbt-core is a DROP SCHEMA CASCADE). This change was made to take care of post-test cleanup
  • implemented most of the cross-database macros new in dbt 1.2.0
  • two additional sqlean extensions are needed in order for certain features to work - see the README

I will create a 1.2.0 milestone for issues that need to be resolved before an official release.