Skip to content

Commit

Permalink
Upgrade default Glue version to 5.0 (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
moomindani authored Dec 12, 2024
1 parent 85f0104 commit 0d22e14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Adds a helper function to retrieve the Iceberg catalog namespace from the profile.yaml file.
- Adds merge_exclude_columns and incremental_predicates features.
- Drop Python 3.8 support
- Upgrade default Glue version to 5.0

## v1.8.6
- Fix session provisioning timeout and delay handling
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/glue/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class GlueCredentials(Credentials):
extra_jars: Optional[str] = None
idle_timeout: int = 10
query_timeout_in_minutes: int = 300
glue_version: Optional[str] = "4.0"
glue_version: Optional[str] = "5.0"
security_configuration: Optional[str] = None
connections: Optional[str] = None
conf: Optional[str] = None
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ def test_credentials(self) -> None:
)
assert credentials.schema == "tests"
assert credentials.database is None
assert credentials.glue_version == "4.0" # default Glue version is 4.0
assert credentials.glue_version == "5.0" # default Glue version is 5.0
assert credentials.custom_iceberg_catalog_namespace == "glue_catalog"

0 comments on commit 0d22e14

Please sign in to comment.