Skip to content

Commit

Permalink
Merge pull request #766 from dbt-labs/release-0.202.0
Browse files Browse the repository at this point in the history
Release PR for MetricFlow 0.202.0
  • Loading branch information
tlento authored Sep 6, 2023
2 parents a26a412 + d42b8c8 commit bd4a236
Show file tree
Hide file tree
Showing 10 changed files with 692 additions and 146 deletions.
21 changes: 21 additions & 0 deletions .changes/0.202.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## MetricFlow 0.202.0 - September 06, 2023

### Features

- Adds the option for users to specify group by parameters with object syntax matching the where/filter expressions. ([#717](https://github.com/dbt-labs/metricflow/pull/717))
- Expose measures for metrics on MFEngine with agg_time_dimension ([#735](https://github.com/dbt-labs/metricflow/issues/735))

### Fixes

- Update dataflow plan to support different granularities with time offset metrics ([#726](https://github.com/dbt-labs/metricflow/issues/726))
- Removes unneeded JoinOverTimeRangeNode step from dataflow plan. ([#743](https://github.com/dbt-labs/metricflow/issues/743))
- Update BigQuery YEAR granularity truncation to use January 1st instead of ISOYEAR start ([#755](https://github.com/dbt-labs/metricflow/issues/755))

### Dependencies

- Allow tabulate versions >= 0.8.9 ([#762](https://github.com/dbt-labs/metricflow/pull/762))

### Contributors
- [@DevonFulcher](https://github.com/DevonFulcher) ([#717](https://github.com/dbt-labs/metricflow/pull/717))
- [@courtneyholcomb](https://github.com/courtneyholcomb) ([#735](https://github.com/dbt-labs/metricflow/issues/735), [#726](https://github.com/dbt-labs/metricflow/issues/726), [#743](https://github.com/dbt-labs/metricflow/issues/743))
- [@tlento](https://github.com/tlento) ([#755](https://github.com/dbt-labs/metricflow/issues/755), [#762](https://github.com/dbt-labs/metricflow/pull/762))
6 changes: 0 additions & 6 deletions .changes/unreleased/Dependencies-20230905-164614.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/unreleased/Features-20230817-100659.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/Features-20230823-131738.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/Fixes-20230815-181153.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/Fixes-20230828-165332.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/unreleased/Fixes-20230830-154233.yaml

This file was deleted.

22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version.
- Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie). For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/metricflow/blob/main/CONTRIBUTING.md)

## MetricFlow 0.202.0 - September 06, 2023

### Features

- Adds the option for users to specify group by parameters with object syntax matching the where/filter expressions. ([#717](https://github.com/dbt-labs/metricflow/pull/717))
- Expose measures for metrics on MFEngine with agg_time_dimension ([#735](https://github.com/dbt-labs/metricflow/issues/735))

### Fixes

- Update dataflow plan to support different granularities with time offset metrics ([#726](https://github.com/dbt-labs/metricflow/issues/726))
- Removes unneeded JoinOverTimeRangeNode step from dataflow plan. ([#743](https://github.com/dbt-labs/metricflow/issues/743))
- Update BigQuery YEAR granularity truncation to use January 1st instead of ISOYEAR start ([#755](https://github.com/dbt-labs/metricflow/issues/755))

### Dependencies

- Allow tabulate versions >= 0.8.9 ([#762](https://github.com/dbt-labs/metricflow/pull/762))

### Contributors
- [@DevonFulcher](https://github.com/DevonFulcher) ([#717](https://github.com/dbt-labs/metricflow/pull/717))
- [@courtneyholcomb](https://github.com/courtneyholcomb) ([#735](https://github.com/dbt-labs/metricflow/issues/735), [#726](https://github.com/dbt-labs/metricflow/issues/726), [#743](https://github.com/dbt-labs/metricflow/issues/743))
- [@tlento](https://github.com/tlento) ([#755](https://github.com/dbt-labs/metricflow/issues/755), [#762](https://github.com/dbt-labs/metricflow/pull/762))

## MetricFlow 0.201.0 - August 17, 2023

### Features
Expand Down
755 changes: 648 additions & 107 deletions attribution.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "metricflow"
version = "0.202.0.dev3"
version = "0.202.0"
description = "Translates a simple metric definition into reusable SQL and executes it against the SQL engine of your choice."
readme = "README.md"
requires-python = ">=3.8,<3.12"
Expand Down

0 comments on commit bd4a236

Please sign in to comment.