Skip to content

Releases: calogica/dbt-date

dbt-date 0.5.1

13 Jan 20:52
a6a967a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.0...0.5.1

dbt-date 0.5.0

05 Dec 17:05
cf9b6d6
Compare
Choose a tag to compare

What's Changed

This release is NOT backwards-compatible with versions of dbt < 1.0.0. Please use 0.4.2 if you're not yet ready to upgrade to dbt v1.

Full Changelog: 0.4.2...0.5.0

dbt-date 0.4.2

05 Dec 16:40
c9bad71
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.4.1...0.4.2

dbt-date 0.4.1

04 Oct 22:09
4668505
Compare
Choose a tag to compare

dbt-date v0.4.1

What's Changed

New Contributors

Full Changelog: 0.4.0...0.4.1

dbt-date 0.4.0

13 Jul 17:27
bd70945
Compare
Choose a tag to compare

dbt-date v0.40

Breaking Changes

Under the hood

  • Adds tests for timestamp and timezone macros (previously untested, new dbt version highlighted that)

dbt-date 0.3.1

14 Jun 15:18
c64f07a
Compare
Choose a tag to compare

dbt-date v0.3.1

Patch release

Fixes

  • Fixed a bug in snowflake__from_unixtimestamp that prevented the core functionaility from being called (#38 by @swanderz)

Under the hood

  • Simplified join syntax (#36)

dbt-date 0.3.0

07 Jun 00:06
a6b7df4
Compare
Choose a tag to compare

dbt-date v0.3.0

Breaking Changes

  • Switched day_of_week column in get_date_dimension from ISO to not ISO to align with the rest of the package. #33 (@davesgonechina)

Features

  • Added day_of_week_iso column to get_date_dimension #33 (@davesgonechina)

  • Added prior_year_iso_week_of_year column to get_date_dimension

Fixes

  • Refactored Snowflake's day_name to not be ISO dependent #33 (@davesgonechina)

  • Fixed data types for day_of_* attributes in Redshift (#28 by @sparcs)

  • Fixed / added support for date parts other than day in get_base_dates (#30)

Under the hood

  • Making it easier to shim macros for other platforms (#27 by @swanderz)

dbt-date 0.2.6

04 May 15:17
9047404
Compare
Choose a tag to compare

Removes dependency on spark-utils.

Users running this package on non-core (Snowflake, BigQuery, Redshift, Postgres) platforms, will need to use a package like spark_utils to shim macros.

For example, in packages.yml, you will need to include the relevant package:

  - package: fishtown-analytics/spark_utils
    version: <latest or range>

And reference in the dispatch list for dbt_utils in dbt_project.yml:

vars:
    dbt_utils_dispatch_list: [spark_utils]

dbt-date 0.2.5

03 Apr 23:45
e58387d
Compare
Choose a tag to compare

dbt-date 0.2.4

26 Mar 13:37
cb1a934
Compare
Choose a tag to compare
  • Updates get_base_dates macro to work better across platforms (thanks @b-per!)