Skip to content

Commit

Permalink
Bumping version to 1.1.0 and generate changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
FishtownBuildBot committed May 1, 2024
1 parent 5fa2b67 commit b43892b
Show file tree
Hide file tree
Showing 18 changed files with 21 additions and 110 deletions.
12 changes: 0 additions & 12 deletions .changes/1.1.0-rc1.md

This file was deleted.

11 changes: 10 additions & 1 deletion .changes/1.1.0-rc2.md → .changes/1.1.0.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## dbt-adapter 1.1.0-rc2 - April 29, 2024
## dbt-adapter 1.1.0 - May 01, 2024

### Features

* Debug log when `type_code` fails to convert to a `data_type`
* Introduce TableLastModifiedMetadataBatch and implement BaseAdapter.calculate_freshness_from_metadata_batch
* Support for sql fixtures in unit testing
* Cross-database `cast` macro
* Allow adapters to opt out of aliasing the subquery generated by render_limited
* subquery alias generated by render_limited now includes the relation name to mitigate duplicate aliasing
Expand All @@ -10,8 +13,14 @@

* Fix adapter-specific cast handling for constraint enforcement

### Docs

* Use `dbt-adapters` throughout the contributing guide

### Under the Hood

* Add the option to set the log level of the AdapterRegistered event
* Update dependabot config to cover GHA
* Validate that dbt-core and dbt-adapters remain de-coupled
* remove dbt_version from query comment test fixture

Expand Down
6 changes: 0 additions & 6 deletions .changes/1.1.0/Dependencies-20240424-140142.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Features-20240323-160251.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Features-20240325-180611.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Features-20240409-084844.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Features-20240412-192040.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Features-20240418-155123.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/1.1.0/Features-20240418-155531.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Fixes-20240411-185203.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Under the Hood-20240329-093307.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Under the Hood-20240410-184109.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Under the Hood-20240417-192843.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/1.1.0/Under the Hood-20240423-094843.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .changes/1.8.0-b2.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/Docs-20240323-182010.yaml

This file was deleted.

26 changes: 10 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).

## dbt-adapter 1.8.0-b2 - April 29, 2024

## dbt-adapter 1.1.0-rc2 - April 29, 2024
## dbt-adapter 1.1.0 - May 01, 2024

### Features

* Debug log when `type_code` fails to convert to a `data_type`
* Introduce TableLastModifiedMetadataBatch and implement BaseAdapter.calculate_freshness_from_metadata_batch
* Support for sql fixtures in unit testing
* Cross-database `cast` macro
* Allow adapters to opt out of aliasing the subquery generated by render_limited
* subquery alias generated by render_limited now includes the relation name to mitigate duplicate aliasing
Expand All @@ -19,28 +20,21 @@ and is generated by [Changie](https://github.com/miniscruff/changie).

* Fix adapter-specific cast handling for constraint enforcement

### Docs

* Use `dbt-adapters` throughout the contributing guide

### Under the Hood

* Add the option to set the log level of the AdapterRegistered event
* Update dependabot config to cover GHA
* Validate that dbt-core and dbt-adapters remain de-coupled
* remove dbt_version from query comment test fixture

### Dependencies

* add support for py3.12

## dbt-adapter 1.1.0-rc1 - April 17, 2024

### Features

* Debug log when `type_code` fails to convert to a `data_type`
* Introduce TableLastModifiedMetadataBatch and implement BaseAdapter.calculate_freshness_from_metadata_batch
* Support for sql fixtures in unit testing

### Under the Hood

* Add the option to set the log level of the AdapterRegistered event
* Update dependabot config to cover GHA

## dbt-adapter 1.0.0 - April 01, 2024

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.1.0rc2"
version = "1.1.0"

0 comments on commit b43892b

Please sign in to comment.