Skip to content

Commit

Permalink
Preparing for Release v1.9.0 (#482)
Browse files Browse the repository at this point in the history
* Upgrade dependencies: dbt-core 1.9.0 and dbt-spark 1.9.0
  • Loading branch information
moomindani authored Dec 12, 2024
1 parent f3f3f1a commit d8259f9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## New version
## v1.9.0
- Allow to load big seed files
- Migrates the PySpark code for the Iceberg file format at a macro level, making the impl.py file more readable.
- Fixes the get_columns_in_relation function to work for both Iceberg and non-Iceberg tables without hard-coding the catalog name.
Expand All @@ -7,6 +7,7 @@
- Adds merge_exclude_columns and incremental_predicates features.
- Drop Python 3.8 support
- Upgrade default Glue version to 5.0
- Upgrade dependencies: dbt-core 1.9.0 and dbt-spark 1.9.0

## v1.8.6
- Fix session provisioning timeout and delay handling
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/glue/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.8.6"
version = "1.9.0"
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ moto~=5.0.9
pyparsing
pyarrow

dbt-core~=1.8.8
dbt-spark~=1.8.0
dbt-core~=1.9.0
dbt-spark~=1.9.0
dbt-common>=1.0.4,<2.0
dbt-adapters>=1.1.1,<2.0
dbt-tests-adapter~=1.10.2
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ def get_version(rel_path):

package_name = "dbt-glue"
package_version = get_version("dbt/adapters/glue/__version__.py")
dbt_version = "1.8.6"
dbt_spark_version = "1.8.0"
description = """dbt (data build tool) adapter for Aws Glue"""
dbt_version = "1.9.0"
dbt_spark_version = "1.9.0"
description = """dbt adapter for AWS Glue"""
long_description = read('README.md')
setup(
name=package_name,
version=package_version,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author="moshirm,menuetb,mamallem,segnina",
author_email="moshirm@amazon.fr, menuetb@amazon.fr, mamallem@amazon.fr, segnina@amazon.fr ",
author="moshirm,segnina,sekiyama",
author_email="moshirm@amazon.fr, segnina@amazon.fr, sekiyama@amazon.com",
url='https://github.com/aws-samples/dbt-glue',
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
package_data={
Expand Down

0 comments on commit d8259f9

Please sign in to comment.