Skip to content

Commit d8259f9

Browse files
authored
Preparing for Release v1.9.0 (#482)
* Upgrade dependencies: dbt-core 1.9.0 and dbt-spark 1.9.0
1 parent f3f3f1a commit d8259f9

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## New version
1+
## v1.9.0
22
- Allow to load big seed files
33
- Migrates the PySpark code for the Iceberg file format at a macro level, making the impl.py file more readable.
44
- Fixes the get_columns_in_relation function to work for both Iceberg and non-Iceberg tables without hard-coding the catalog name.
@@ -7,6 +7,7 @@
77
- Adds merge_exclude_columns and incremental_predicates features.
88
- Drop Python 3.8 support
99
- Upgrade default Glue version to 5.0
10+
- Upgrade dependencies: dbt-core 1.9.0 and dbt-spark 1.9.0
1011

1112
## v1.8.6
1213
- Fix session provisioning timeout and delay handling

dbt/adapters/glue/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.8.6"
1+
version = "1.9.0"

dev-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ moto~=5.0.9
2929
pyparsing
3030
pyarrow
3131

32-
dbt-core~=1.8.8
33-
dbt-spark~=1.8.0
32+
dbt-core~=1.9.0
33+
dbt-spark~=1.9.0
3434
dbt-common>=1.0.4,<2.0
3535
dbt-adapters>=1.1.1,<2.0
3636
dbt-tests-adapter~=1.10.2

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ def get_version(rel_path):
3838

3939
package_name = "dbt-glue"
4040
package_version = get_version("dbt/adapters/glue/__version__.py")
41-
dbt_version = "1.8.6"
42-
dbt_spark_version = "1.8.0"
43-
description = """dbt (data build tool) adapter for Aws Glue"""
41+
dbt_version = "1.9.0"
42+
dbt_spark_version = "1.9.0"
43+
description = """dbt adapter for AWS Glue"""
4444
long_description = read('README.md')
4545
setup(
4646
name=package_name,
4747
version=package_version,
4848
description=description,
4949
long_description=long_description,
5050
long_description_content_type='text/markdown',
51-
author="moshirm,menuetb,mamallem,segnina",
52-
author_email="[email protected], menuetb@amazon.fr, mamallem@amazon.fr, [email protected] ",
51+
author="moshirm,segnina,sekiyama",
52+
author_email="[email protected], segnina@amazon.fr, sekiyama@amazon.com",
5353
url='https://github.com/aws-samples/dbt-glue',
5454
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
5555
package_data={

0 commit comments

Comments
 (0)