Skip to content

Releases: data-mie/dbt-profiler

0.5.2

25 Nov 15:34
641567c
Compare
Choose a tag to compare

What's Changed

  • Feature: add is_logical_dtype and average for bool column by @xtutran in #60

New Contributors

Full Changelog: 0.5.1...0.5.2

0.5.1

15 Nov 16:25
48497d9
Compare
Choose a tag to compare

What's Changed

  • Add where_clause argument to macros by @dweaver33 in #57
  • Fix profile_where_clause tests and profile_over_time in BigQuery + Snowflake by @stumelius in #58

New Contributors

Full Changelog: 0.5.0...0.5.1

0.5.0

17 Oct 17:06
4b837ea
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.4.1...0.5.0

0.4.1

17 May 15:47
03036db
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.4.0...0.4.1

0.4.0

17 May 14:26
fa5efc5
Compare
Choose a tag to compare

What's Changed

  • Replace Github Actions with CircleCI by @stumelius in #46
  • Add include_columns and exclude_columns arguments to profiling macros by @stumelius in #47

Full Changelog: 0.3.2...0.4.0

dbt-profiler 0.3.2

01 Apr 14:46
ff029c4
Compare
Choose a tag to compare

What's Changed

  • Add database identifier to bigquery__information_schema macro by @stumelius in #43

Full Changelog: 0.3.1...0.3.2

dbt-profiler 0.3.1

10 Mar 09:19
a765eaf
Compare
Choose a tag to compare

What's Changed

  • Fix #37 Error when profiling integer after date after string columns,… by @mdutoo in #38
  • Fix/int date str profile by @stumelius in #39
  • Add exclude_measures macro argument for excluding measures from profiles by @stumelius in #42

New Contributors

Full Changelog: 0.3.0...0.3.1

dbt-profiler 0.3.0

13 Jan 10:36
1748905
Compare
Choose a tag to compare

Added new profile measures:

  • row_count
  • min (numeric, date and time columns only)
  • max (numeric, date and time columns only)
  • avg (numeric columns only)
  • std_dev_population (numeric columns only)
  • stg_dev_sample (numeric columns only)

Changes:

  • get_profile macro no longer executes during parse time
  • get_profile macro now asserts that the relation exists before calculating the profile

dbt-profiler 0.2.0

25 Nov 17:18
7fc757b
Compare
Choose a tag to compare
  • Change get_profile macro now returns a SQL query that can used in a dbt model (handy for previewing profiles in dbt Cloud!)
  • Change the print macros now require either relation or relation_name as argument
  • Add get_profile_table that returns a relation profile as an agate.Table
  • Add get_relation utility macro

dbt-profiler 0.1.6

31 Oct 10:31
aaa0de3
Compare
Choose a tag to compare
  • Add Redshift support