Skip to content

Commit

Permalink
[Automated] Merged prep-release/1.9.0rc1_12124583988 into target 1.9.…
Browse files Browse the repository at this point in the history
…latest during release process
  • Loading branch information
FishtownBuildBot authored Dec 2, 2024
2 parents a56c527 + 976205e commit d9bfc4d
Show file tree
Hide file tree
Showing 14 changed files with 56 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.9.0b1
current_version = 1.9.0rc1
parse = (?P<major>[\d]+) # major version number
\.(?P<minor>[\d]+) # minor version number
\.(?P<patch>[\d]+) # patch version number
Expand Down
26 changes: 26 additions & 0 deletions .changes/1.9.0-rc1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## dbt-snowflake 1.9.0-rc1 - December 02, 2024

### Breaking Changes

- Drop support for Python 3.8 ([#1211](https://github.com/dbt-labs/dbt-snowflake/issues/1211))

### Features

- Allow configurable pagination on list_relations_without_caching to support users with a large number of objects per schema ([#1234](https://github.com/dbt-labs/dbt-snowflake/issues/1234))

### Fixes

- Handle non-English Snowflake error message for non-existing schemas ([#834](https://github.com/dbt-labs/dbt-snowflake/issues/834))
- Dynamic Iceberg table base_location_subpath generation fix. ([#1200](https://github.com/dbt-labs/dbt-snowflake/issues/1200))
- Performance fixes for snowflake microbatch strategy: use temp view instead of table, remove unnecessary 'using' clause ([#1228](https://github.com/dbt-labs/dbt-snowflake/issues/1228))
- Iceberg quoting ignore fix. ([#1227](https://github.com/dbt-labs/dbt-snowflake/issues/1227))
- Use timestamp_tz type in microbatch `delete` DDL ([#1256](https://github.com/dbt-labs/dbt-snowflake/issues/1256))

### Under the Hood

- Add telemetry function ([#301](https://github.com/dbt-labs/dbt-snowflake/issues/301))
- remove SnowflakeAdapterResponse in favor of updated AdapterResponse in base ([#1233](https://github.com/dbt-labs/dbt-snowflake/issues/1233))
- Add iceberg docs url to behavior flag. ([#210](https://github.com/dbt-labs/dbt-snowflake/issues/210))

### Contributors
- [@pei0804](https://github.com/pei0804) ([#834](https://github.com/dbt-labs/dbt-snowflake/issues/834))
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@
- "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/dbt-snowflake/blob/main/CONTRIBUTING.md#adding-changelog-entry)

## dbt-snowflake 1.9.0-rc1 - December 02, 2024

### Breaking Changes

- Drop support for Python 3.8 ([#1211](https://github.com/dbt-labs/dbt-snowflake/issues/1211))

### Features

- Allow configurable pagination on list_relations_without_caching to support users with a large number of objects per schema ([#1234](https://github.com/dbt-labs/dbt-snowflake/issues/1234))

### Fixes

- Handle non-English Snowflake error message for non-existing schemas ([#834](https://github.com/dbt-labs/dbt-snowflake/issues/834))
- Dynamic Iceberg table base_location_subpath generation fix. ([#1200](https://github.com/dbt-labs/dbt-snowflake/issues/1200))
- Performance fixes for snowflake microbatch strategy: use temp view instead of table, remove unnecessary 'using' clause ([#1228](https://github.com/dbt-labs/dbt-snowflake/issues/1228))
- Iceberg quoting ignore fix. ([#1227](https://github.com/dbt-labs/dbt-snowflake/issues/1227))
- Use timestamp_tz type in microbatch `delete` DDL ([#1256](https://github.com/dbt-labs/dbt-snowflake/issues/1256))

### Under the Hood

- Add telemetry function ([#301](https://github.com/dbt-labs/dbt-snowflake/issues/301))
- remove SnowflakeAdapterResponse in favor of updated AdapterResponse in base ([#1233](https://github.com/dbt-labs/dbt-snowflake/issues/1233))
- Add iceberg docs url to behavior flag. ([#210](https://github.com/dbt-labs/dbt-snowflake/issues/210))

### Contributors
- [@pei0804](https://github.com/pei0804) ([#834](https://github.com/dbt-labs/dbt-snowflake/issues/834))


## dbt-snowflake 1.9.0-b1 - October 01, 2024

### Features
Expand Down Expand Up @@ -67,7 +95,6 @@
- [@llam15](https://github.com/llam15) ([#1079](https://github.com/dbt-labs/dbt-snowflake/issues/1079), [#726](https://github.com/dbt-labs/dbt-snowflake/issues/726))
- [@mikealfare,](https://github.com/mikealfare,) ([#851](https://github.com/dbt-labs/dbt-snowflake/issues/851))


## Previous Releases
For information on prior major and minor releases, see their changelogs:
- [1.6](https://github.com/dbt-labs/dbt-snowflake/blob/1.6.latest/CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/snowflake/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.9.0b1"
version = "1.9.0rc1"

0 comments on commit d9bfc4d

Please sign in to comment.