dvt-adapters 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dvt_adapters-0.1.0/.gitignore +29 -0
- dvt_adapters-0.1.0/CHANGELOG.md +555 -0
- dvt_adapters-0.1.0/LICENSE +201 -0
- dvt_adapters-0.1.0/PKG-INFO +124 -0
- dvt_adapters-0.1.0/README.md +92 -0
- dvt_adapters-0.1.0/hatch.toml +15 -0
- dvt_adapters-0.1.0/pyproject.toml +49 -0
- dvt_adapters-0.1.0/src/dvt/__init__.py +33 -0
- dvt_adapters-0.1.0/src/dvt/adapters/__about__.py +1 -0
- dvt_adapters-0.1.0/src/dvt/adapters/__init__.py +15 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/README.md +13 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/__init__.py +17 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/column.py +173 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/connections.py +429 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/impl.py +2049 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/meta.py +150 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/plugin.py +32 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/query_headers.py +106 -0
- dvt_adapters-0.1.0/src/dvt/adapters/base/relation.py +648 -0
- dvt_adapters-0.1.0/src/dvt/adapters/cache.py +521 -0
- dvt_adapters-0.1.0/src/dvt/adapters/capability.py +63 -0
- dvt_adapters-0.1.0/src/dvt/adapters/catalogs/__init__.py +14 -0
- dvt_adapters-0.1.0/src/dvt/adapters/catalogs/_client.py +54 -0
- dvt_adapters-0.1.0/src/dvt/adapters/catalogs/_constants.py +1 -0
- dvt_adapters-0.1.0/src/dvt/adapters/catalogs/_exceptions.py +39 -0
- dvt_adapters-0.1.0/src/dvt/adapters/catalogs/_integration.py +113 -0
- dvt_adapters-0.1.0/src/dvt/adapters/clients/__init__.py +0 -0
- dvt_adapters-0.1.0/src/dvt/adapters/clients/jinja.py +24 -0
- dvt_adapters-0.1.0/src/dvt/adapters/contracts/__init__.py +0 -0
- dvt_adapters-0.1.0/src/dvt/adapters/contracts/connection.py +229 -0
- dvt_adapters-0.1.0/src/dvt/adapters/contracts/macros.py +11 -0
- dvt_adapters-0.1.0/src/dvt/adapters/contracts/relation.py +160 -0
- dvt_adapters-0.1.0/src/dvt/adapters/events/README.md +51 -0
- dvt_adapters-0.1.0/src/dvt/adapters/events/__init__.py +0 -0
- dvt_adapters-0.1.0/src/dvt/adapters/events/adapter_types_pb2.py +2 -0
- dvt_adapters-0.1.0/src/dvt/adapters/events/base_types.py +36 -0
- dvt_adapters-0.1.0/src/dvt/adapters/events/logging.py +83 -0
- dvt_adapters-0.1.0/src/dvt/adapters/events/types.py +436 -0
- dvt_adapters-0.1.0/src/dvt/adapters/exceptions/__init__.py +40 -0
- dvt_adapters-0.1.0/src/dvt/adapters/exceptions/alias.py +24 -0
- dvt_adapters-0.1.0/src/dvt/adapters/exceptions/cache.py +68 -0
- dvt_adapters-0.1.0/src/dvt/adapters/exceptions/compilation.py +269 -0
- dvt_adapters-0.1.0/src/dvt/adapters/exceptions/connection.py +16 -0
- dvt_adapters-0.1.0/src/dvt/adapters/exceptions/database.py +51 -0
- dvt_adapters-0.1.0/src/dvt/adapters/factory.py +264 -0
- dvt_adapters-0.1.0/src/dvt/adapters/protocol.py +150 -0
- dvt_adapters-0.1.0/src/dvt/adapters/py.typed +0 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/__init__.py +2 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/base.py +323 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/cursor/cursor.py +69 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/cursor/description.py +37 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/cursor/execute.py +39 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/cursor/fetchall.py +69 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/cursor/fetchmany.py +23 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/cursor/fetchone.py +23 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/cursor/rowcount.py +23 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/handle.py +55 -0
- dvt_adapters-0.1.0/src/dvt/adapters/record/serialization.py +115 -0
- dvt_adapters-0.1.0/src/dvt/adapters/reference_keys.py +39 -0
- dvt_adapters-0.1.0/src/dvt/adapters/relation_configs/README.md +25 -0
- dvt_adapters-0.1.0/src/dvt/adapters/relation_configs/__init__.py +12 -0
- dvt_adapters-0.1.0/src/dvt/adapters/relation_configs/config_base.py +46 -0
- dvt_adapters-0.1.0/src/dvt/adapters/relation_configs/config_change.py +26 -0
- dvt_adapters-0.1.0/src/dvt/adapters/relation_configs/config_validation.py +57 -0
- dvt_adapters-0.1.0/src/dvt/adapters/sql/__init__.py +2 -0
- dvt_adapters-0.1.0/src/dvt/adapters/sql/connections.py +263 -0
- dvt_adapters-0.1.0/src/dvt/adapters/sql/impl.py +286 -0
- dvt_adapters-0.1.0/src/dvt/adapters/utils.py +69 -0
- dvt_adapters-0.1.0/src/dvt/include/__init__.py +3 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/__init__.py +4 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/dbt_project.yml +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/docs/overview.md +43 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/apply_grants.sql +167 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/columns.sql +144 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/freshness.sql +32 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/indexes.sql +41 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/metadata.sql +105 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/persist_docs.sql +33 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/relation.sql +84 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/schema.sql +20 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/show.sql +26 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/timestamps.sql +52 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/adapters/validate_sql.sql +10 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/etc/datetime.sql +62 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/etc/statement.sql +52 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/generic_test_sql/accepted_values.sql +27 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/generic_test_sql/not_null.sql +9 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/generic_test_sql/relationships.sql +23 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/generic_test_sql/unique.sql +12 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/get_custom_name/get_custom_alias.sql +36 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/get_custom_name/get_custom_database.sql +32 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/get_custom_name/get_custom_schema.sql +60 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/configs.sql +21 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/functions/aggregate.sql +65 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/functions/function.sql +20 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/functions/helpers.sql +20 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/functions/scalar.sql +69 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/hooks.sql +35 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/clone/can_clone_table.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/clone/clone.sql +67 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/clone/create_or_replace_clone.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/incremental/column_helpers.sql +83 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/incremental/incremental.sql +99 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/incremental/is_incremental.sql +13 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/incremental/merge.sql +120 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/incremental/on_schema_change.sql +159 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/incremental/strategies.sql +92 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/materialized_view.sql +121 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/table.sql +64 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/models/view.sql +72 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/seeds/helpers.sql +128 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/seeds/seed.sql +60 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/snapshots/helpers.sql +345 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/snapshots/snapshot.sql +109 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/snapshots/snapshot_merge.sql +34 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/snapshots/strategies.sql +184 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/tests/helpers.sql +44 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/tests/test.sql +66 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/tests/unit.sql +40 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/materializations/tests/where_subquery.sql +15 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/python_model/python.sql +132 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/column/columns_spec_ddl.sql +89 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/create.sql +23 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/create_backup.sql +17 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/create_intermediate.sql +17 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/drop.sql +41 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/drop_backup.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/materialized_view/alter.sql +55 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/materialized_view/create.sql +10 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/materialized_view/drop.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/materialized_view/refresh.sql +9 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/materialized_view/rename.sql +10 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/materialized_view/replace.sql +10 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/rename.sql +35 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/rename_intermediate.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/replace.sql +50 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/schema.sql +8 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/table/create.sql +60 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/table/drop.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/table/rename.sql +10 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/table/replace.sql +10 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/view/create.sql +27 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/view/drop.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/view/rename.sql +10 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/relations/view/replace.sql +66 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/unit_test_sql/get_fixture_sql.sql +107 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/any_value.sql +9 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/array_append.sql +8 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/array_concat.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/array_construct.sql +12 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/bool_or.sql +9 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/cast.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/cast_bool_to_text.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/concat.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/data_types.sql +129 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/date.sql +10 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/date_spine.sql +75 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/date_trunc.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/dateadd.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/datediff.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/equals.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/escape_single_quotes.sql +8 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/except.sql +9 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/generate_series.sql +53 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/hash.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/intersect.sql +9 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/last_day.sql +15 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/length.sql +11 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/listagg.sql +30 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/literal.sql +7 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/position.sql +11 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/replace.sql +14 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/right.sql +12 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/safe_cast.sql +9 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/macros/utils/split_part.sql +26 -0
- dvt_adapters-0.1.0/src/dvt/include/global_project/tests/generic/builtin.sql +30 -0
- dvt_adapters-0.1.0/src/dvt/include/py.typed +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# Distribution / packaging
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
*.egg
|
|
11
|
+
|
|
12
|
+
# Virtual environments
|
|
13
|
+
.venv/
|
|
14
|
+
venv/
|
|
15
|
+
ENV/
|
|
16
|
+
|
|
17
|
+
# IDE
|
|
18
|
+
.idea/
|
|
19
|
+
.vscode/
|
|
20
|
+
*.swp
|
|
21
|
+
*.swo
|
|
22
|
+
*~
|
|
23
|
+
|
|
24
|
+
# OS
|
|
25
|
+
.DS_Store
|
|
26
|
+
Thumbs.db
|
|
27
|
+
|
|
28
|
+
# Hatch
|
|
29
|
+
.hatch/
|
|
@@ -0,0 +1,555 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
- This file provides a full account of all changes to `dbt-adapters`
|
|
4
|
+
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
6
|
+
and is generated by [Changie](https://github.com/miniscruff/changie)
|
|
7
|
+
- Changes are listed under the (pre-)release in which they first appear
|
|
8
|
+
- Subsequent releases include changes from previous releases
|
|
9
|
+
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version
|
|
10
|
+
- Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie)
|
|
11
|
+
- For details on how to document a change, see the [contributing guide](/CONTRIBUTING.md#changelog-entry)
|
|
12
|
+
|
|
13
|
+
## dbt-adapters 1.22.6 - February 17, 2026
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- Add runtime implementation for `dbt.config.meta_get()` in Python models ([#1595](https://github.com/dbt-labs/dbt-adapters/issues/1595))
|
|
18
|
+
- Improve duplicate macro in package error message ([#10387](https://github.com/dbt-labs/dbt-adapters/issues/10387))
|
|
19
|
+
- Improve duplicate macro in package error message ([#1648](https://github.com/dbt-labs/dbt-adapters/issues/1648))
|
|
20
|
+
|
|
21
|
+
### Contributors
|
|
22
|
+
- [@venkaa28](https://github.com/venkaa28) ([#1595](https://github.com/dbt-labs/dbt-adapters/issues/1595))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## dbt-adapters 1.22.5 - January 14, 2026
|
|
26
|
+
|
|
27
|
+
## dbt-adapters 1.22.4 - January 08, 2026
|
|
28
|
+
|
|
29
|
+
### Under the Hood
|
|
30
|
+
|
|
31
|
+
- Update diff_column_data_types to allow for dispatch ([#1527](https://github.com/dbt-labs/dbt-adapters/issues/1527))
|
|
32
|
+
|
|
33
|
+
## dbt-adapters 1.22.2 - December 19, 2025
|
|
34
|
+
|
|
35
|
+
### Under the Hood
|
|
36
|
+
|
|
37
|
+
- Add an `expanded_data_type` field to support extra type info needed when altering a column type ([#1510](https://github.com/dbt-labs/dbt-adapters/issues/1510))
|
|
38
|
+
|
|
39
|
+
## dbt-adapters 1.22.1 - December 17, 2025
|
|
40
|
+
|
|
41
|
+
### Fixes
|
|
42
|
+
|
|
43
|
+
- Fix volatility specificaiton for python aggregate functions ([#1504](https://github.com/dbt-labs/dbt-adapters/issues/1504))
|
|
44
|
+
|
|
45
|
+
### Under the Hood
|
|
46
|
+
|
|
47
|
+
- Breakdown schema synchronization macros to enable more detailed operations like nested structures schema modifications ([#599](https://github.com/dbt-labs/dbt-adapters/issues/599))
|
|
48
|
+
|
|
49
|
+
### Contributors
|
|
50
|
+
- [@Kayrnt](https://github.com/Kayrnt) ([#599](https://github.com/dbt-labs/dbt-adapters/issues/599))
|
|
51
|
+
|
|
52
|
+
## dbt-adapters 1.22.0 - December 09, 2025
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
- Add support for py3.13 ([#1475](https://github.com/dbt-labs/dbt-adapters/issues/1475))
|
|
57
|
+
|
|
58
|
+
## dbt-adapters 1.20.1 - November 21, 2025
|
|
59
|
+
|
|
60
|
+
### Fixes
|
|
61
|
+
|
|
62
|
+
- safe comparison of Recorder.record_row_limit ([#1461](https://github.com/dbt-labs/dbt-adapters/issues/1461))
|
|
63
|
+
- Fix serializing recorded agate tables and column schemas ([#1462](https://github.com/dbt-labs/dbt-adapters/issues/1462))
|
|
64
|
+
|
|
65
|
+
## dbt-adapters 1.20.0 - November 18, 2025
|
|
66
|
+
|
|
67
|
+
### Features
|
|
68
|
+
|
|
69
|
+
- Create default signature handling macro for aggregate functions ([#1432](https://github.com/dbt-labs/dbt-adapters/issues/1432))
|
|
70
|
+
|
|
71
|
+
## dbt-adapters 1.19.0 - November 07, 2025
|
|
72
|
+
|
|
73
|
+
### Features
|
|
74
|
+
|
|
75
|
+
- Add utilities to support adapter implementations to support python UDFs ([#1410](https://github.com/dbt-labs/dbt-adapters/issues/1410))
|
|
76
|
+
- Begin looking up function macro by function type and language ([#1409](https://github.com/dbt-labs/dbt-adapters/issues/1409))
|
|
77
|
+
|
|
78
|
+
### Under the Hood
|
|
79
|
+
|
|
80
|
+
- Use Recorder.record_row_limit if available when serializing agate.Table in record-mode ([#1424](https://github.com/dbt-labs/dbt-adapters/issues/1424))
|
|
81
|
+
|
|
82
|
+
### Dependencies
|
|
83
|
+
|
|
84
|
+
- Bump minimum dbt-common to 1.36.0 ([#1424](https://github.com/dbt-labs/dbt-adapters/pull/1424))
|
|
85
|
+
|
|
86
|
+
## dbt-adapters 1.18.0 - November 04, 2025
|
|
87
|
+
|
|
88
|
+
### Features
|
|
89
|
+
|
|
90
|
+
- Add default macros for interpolating the volatility of sql UDFs ([#1345](https://github.com/dbt-labs/dbt-adapters/issues/1345))
|
|
91
|
+
- Begin looking up function macro by function type ([#1344](https://github.com/dbt-labs/dbt-adapters/issues/1344))
|
|
92
|
+
|
|
93
|
+
### Dependencies
|
|
94
|
+
|
|
95
|
+
- Drop support for python 3.9 ([#1412](https://github.com/dbt-labs/dbt-adapters/pull/1412))
|
|
96
|
+
|
|
97
|
+
## dbt-adapters 1.17.3 - October 20, 2025
|
|
98
|
+
|
|
99
|
+
### Under the Hood
|
|
100
|
+
|
|
101
|
+
- Remove `catalog` from `RelationConfig` protocol and update base build_catalog_relation to obtain catalog_name from node config ([#1376](https://github.com/dbt-labs/dbt-adapters/issues/1376))
|
|
102
|
+
- Record all fields in subclasses of BaseColumns when recording adapter.get_columns_in_relation ([#1383](https://github.com/dbt-labs/dbt-adapters/issues/1383))
|
|
103
|
+
|
|
104
|
+
## dbt-adapters 1.17.2 - October 02, 2025
|
|
105
|
+
|
|
106
|
+
### Fixes
|
|
107
|
+
|
|
108
|
+
- Fix referenced function property names in function macros ([#1365](https://github.com/dbt-labs/dbt-adapters/issues/1365))
|
|
109
|
+
|
|
110
|
+
## dbt-adapters 1.17.1 - October 01, 2025
|
|
111
|
+
|
|
112
|
+
### Fixes
|
|
113
|
+
|
|
114
|
+
- Drop extraneous `;` from scalar function macro ([#N/A](https://github.com/dbt-labs/dbt-adapters/issues/N/A))
|
|
115
|
+
|
|
116
|
+
## dbt-adapters 1.17.0 - September 29, 2025
|
|
117
|
+
|
|
118
|
+
### Features
|
|
119
|
+
|
|
120
|
+
- Initial framework for UDF support ([#1268](https://github.com/dbt-labs/dbt-adapters/issues/1268))
|
|
121
|
+
|
|
122
|
+
### Fixes
|
|
123
|
+
|
|
124
|
+
- Fix duplicates when hard_deletes new_record is used with custom dbt_valid_to_current ([#1240](https://github.com/dbt-labs/dbt-adapters/issues/1240))
|
|
125
|
+
- Update function related global macros to use `default__` naming scheme ([#1356](https://github.com/dbt-labs/dbt-adapters/issues/1356))
|
|
126
|
+
|
|
127
|
+
### Contributors
|
|
128
|
+
- [@jeremyyeo](https://github.com/jeremyyeo) ([#1240](https://github.com/dbt-labs/dbt-adapters/issues/1240))
|
|
129
|
+
|
|
130
|
+
## dbt-adapters 1.16.6 - September 03, 2025
|
|
131
|
+
|
|
132
|
+
### Under the Hood
|
|
133
|
+
|
|
134
|
+
- Record adapter.add_query as Available record ([#1285](https://github.com/dbt-labs/dbt-adapters/issues/1285))
|
|
135
|
+
- Record adapter.list_relations_without_caching as Available record ([#1308](https://github.com/dbt-labs/dbt-adapters/issues/1308))
|
|
136
|
+
|
|
137
|
+
### Contributors
|
|
138
|
+
- [@jasonlin45](https://github.com/jasonlin45) ([#1308](https://github.com/dbt-labs/dbt-adapters/issues/1308))
|
|
139
|
+
|
|
140
|
+
## dbt-adapters 1.16.5 - August 19, 2025
|
|
141
|
+
|
|
142
|
+
### Fixes
|
|
143
|
+
|
|
144
|
+
- Correct column mapping lookup in unit test macro ([#1273](https://github.com/dbt-labs/dbt-adapters/issues/1273))
|
|
145
|
+
|
|
146
|
+
## dbt-adapters 1.16.4 - August 15, 2025
|
|
147
|
+
|
|
148
|
+
### Fixes
|
|
149
|
+
|
|
150
|
+
- Apply column quoting to unit tests ([#205](https://github.com/dbt-labs/dbt-adapters/issues/205))
|
|
151
|
+
|
|
152
|
+
### Dependencies
|
|
153
|
+
|
|
154
|
+
- upgrade protobuf to 6.0 ([#1259](https://github.com/dbt-labs/dbt-adapters/pull/1259))
|
|
155
|
+
|
|
156
|
+
### Contributors
|
|
157
|
+
- [@mpatek](https://github.com/mpatek) ([#205](https://github.com/dbt-labs/dbt-adapters/issues/205))
|
|
158
|
+
|
|
159
|
+
## dbt-adapters 1.16.3 - July 21, 2025
|
|
160
|
+
|
|
161
|
+
### Fixes
|
|
162
|
+
|
|
163
|
+
- Update dbt snapshot staging table creation to handle new source columns when using hard_deletes == 'new_record' ([#852](https://github.com/dbt-labs/dbt-adapters/issues/852))
|
|
164
|
+
- update alter_relation_add_remove_columns to quote column names ([#63](https://github.com/dbt-labs/dbt-adapters/issues/63))
|
|
165
|
+
|
|
166
|
+
### Under the Hood
|
|
167
|
+
|
|
168
|
+
- gracefully handle null database in _catalog_filter_schemas ([#1216](https://github.com/dbt-labs/dbt-adapters/issues/1216))
|
|
169
|
+
|
|
170
|
+
## dbt-adapters 1.16.2 - July 14, 2025
|
|
171
|
+
|
|
172
|
+
### Fixes
|
|
173
|
+
|
|
174
|
+
- Fixed hard-coded quoting issue in snapshots. ([#1118](https://github.com/dbt-labs/dbt-adapters/issues/1118))
|
|
175
|
+
- Skip cloning objects if the target and defferal are the same ([#1198](https://github.com/dbt-labs/dbt-adapters/issues/1198))
|
|
176
|
+
|
|
177
|
+
### Contributors
|
|
178
|
+
- [@stevetracvc](https://github.com/stevetracvc) ([#1118](https://github.com/dbt-labs/dbt-adapters/issues/1118))
|
|
179
|
+
|
|
180
|
+
## dbt-adapters 1.16.1 - July 10, 2025
|
|
181
|
+
|
|
182
|
+
### Fixes
|
|
183
|
+
|
|
184
|
+
- Fix Snapshot to avoid inserting redundant entries for records already marked as deleted ([#654](https://github.com/dbt-labs/dbt-adapters/issues/654))
|
|
185
|
+
|
|
186
|
+
### Contributors
|
|
187
|
+
- [@lpillmann](https://github.com/lpillmann) ([#654](https://github.com/dbt-labs/dbt-adapters/issues/654))
|
|
188
|
+
|
|
189
|
+
## dbt-adapters 1.16.0 - June 04, 2025
|
|
190
|
+
|
|
191
|
+
### Features
|
|
192
|
+
|
|
193
|
+
- Add constant defining name of logical catalog in model config ([#1134](https://github.com/dbt-labs/dbt-adapters/issues/1134))
|
|
194
|
+
|
|
195
|
+
### Fixes
|
|
196
|
+
|
|
197
|
+
- Fix casing issue in snapshot target validation. ([#1101](https://github.com/dbt-labs/dbt-adapters/issues/1101))
|
|
198
|
+
|
|
199
|
+
### Under the Hood
|
|
200
|
+
|
|
201
|
+
- populate file_format from top level integration config field ([#1129](https://github.com/dbt-labs/dbt-adapters/issues/1129))
|
|
202
|
+
|
|
203
|
+
## dbt-adapters 1.15.3 - May 20, 2025
|
|
204
|
+
|
|
205
|
+
## dbt-adapters 1.15.2 - May 19, 2025
|
|
206
|
+
|
|
207
|
+
### Under the Hood
|
|
208
|
+
|
|
209
|
+
- bump dbt-common pin to >=2.0,<3.0 ([#1104](https://github.com/dbt-labs/dbt-adapters/issues/1104))
|
|
210
|
+
|
|
211
|
+
## dbt-adapters 1.15.1 - May 19, 2025
|
|
212
|
+
|
|
213
|
+
## dbt-adapters 1.15 - May 19, 2025
|
|
214
|
+
|
|
215
|
+
### Features
|
|
216
|
+
|
|
217
|
+
- Overridable default query comment append behavior ([#1065](https://github.com/dbt-labs/dbt-adapters/issues/1065))
|
|
218
|
+
|
|
219
|
+
### Fixes
|
|
220
|
+
|
|
221
|
+
- Respect the `limit` config when storing test failures ([#373](https://github.com/dbt-labs/dbt-adapters/issues/373))
|
|
222
|
+
- Keep `limit` as a required parameter in `get_test_sql` ([#1051](https://github.com/dbt-labs/dbt-adapters/issues/1051))
|
|
223
|
+
- Fix an issue with snapshots in new_record mode when check columns are used. ([#1068](https://github.com/dbt-labs/dbt-adapters/issues/1068))
|
|
224
|
+
|
|
225
|
+
### Under the Hood
|
|
226
|
+
|
|
227
|
+
- Keep table and column metadata as strings ([#1056](https://github.com/dbt-labs/dbt-adapters/issues/1056))
|
|
228
|
+
|
|
229
|
+
## dbt-adapters 1.14.8 - April 25, 2025
|
|
230
|
+
|
|
231
|
+
## dbt-adapters 1.14.7 - April 24, 2025
|
|
232
|
+
|
|
233
|
+
### Features
|
|
234
|
+
|
|
235
|
+
- Add "pointer_table" as a global relation type ([#1012](https://github.com/dbt-labs/dbt-adapters/issues/1012))
|
|
236
|
+
|
|
237
|
+
## dbt-adapters 1.14.6 - April 14, 2025
|
|
238
|
+
|
|
239
|
+
### Under the Hood
|
|
240
|
+
|
|
241
|
+
- Add more robust operation forwarding to record/replay wrappers. ([#990](https://github.com/dbt-labs/dbt-adapters/issues/990))
|
|
242
|
+
|
|
243
|
+
## dbt-adapters 1.14.5 - April 07, 2025
|
|
244
|
+
|
|
245
|
+
### Fixes
|
|
246
|
+
|
|
247
|
+
- Create indexes on the intermediate relation before the swap ([#966](https://github.com/dbt-labs/dbt-adapters/issues/966))
|
|
248
|
+
- Create indexes on the intermediate relation before the swap for incremental models ([#966](https://github.com/dbt-labs/dbt-adapters/issues/966))
|
|
249
|
+
|
|
250
|
+
### Contributors
|
|
251
|
+
- [@etx121](https://github.com/etx121) ([#966](https://github.com/dbt-labs/dbt-adapters/issues/966), [#966](https://github.com/dbt-labs/dbt-adapters/issues/966))
|
|
252
|
+
|
|
253
|
+
## dbt-adapters 1.14.4 - March 31, 2025
|
|
254
|
+
|
|
255
|
+
### Features
|
|
256
|
+
|
|
257
|
+
- Make source and target tables able to be referenced via DBT_INTERNAL_DEST and DBT_INTERNAL_SOURCE for the delete/insert incremental strategy ([#910](https://github.com/dbt-labs/dbt-adapters/issues/910))
|
|
258
|
+
|
|
259
|
+
### Fixes
|
|
260
|
+
|
|
261
|
+
- Fix the python model empty/sample mode fix to not break when the ref macro has been overridden ([#953](https://github.com/dbt-labs/dbt-adapters/issues/953))
|
|
262
|
+
|
|
263
|
+
## dbt-adapters 1.14.3 - March 19, 2025
|
|
264
|
+
|
|
265
|
+
### Features
|
|
266
|
+
|
|
267
|
+
- Add Base Adapter implementation of Catalog Integration support. ([#790](https://github.com/dbt-labs/dbt-adapters/issues/790))
|
|
268
|
+
|
|
269
|
+
### Fixes
|
|
270
|
+
|
|
271
|
+
- Run python models normally instead of breaking when run with `--sample` or `--empty` ([#906](https://github.com/dbt-labs/dbt-adapters/issues/906))
|
|
272
|
+
|
|
273
|
+
### Under the Hood
|
|
274
|
+
|
|
275
|
+
- Add node_checksum to NodeInfo in structured logs ([#883](https://github.com/dbt-labs/dbt-adapters/issues/883))
|
|
276
|
+
- Make use of new record/replay features to enable recording "available" functions ([#761](https://github.com/dbt-labs/dbt-adapters/issues/761))
|
|
277
|
+
|
|
278
|
+
## dbt-adapters 1.14.1 - March 04, 2025
|
|
279
|
+
|
|
280
|
+
### Fixes
|
|
281
|
+
|
|
282
|
+
- Fix incremental delete+insert SQL ([#150,](https://github.com/dbt-labs/dbt-adapters/issues/150,), [#364](https://github.com/dbt-labs/dbt-adapters/issues/364))
|
|
283
|
+
|
|
284
|
+
### Contributors
|
|
285
|
+
- [@ataft,](https://github.com/ataft,) ([#150,](https://github.com/dbt-labs/dbt-adapters/issues/150,), [#364](https://github.com/dbt-labs/dbt-adapters/issues/364))
|
|
286
|
+
|
|
287
|
+
## dbt-adapters 1.14.0 - February 07, 2025
|
|
288
|
+
|
|
289
|
+
## dbt-adapters 1.13.2 - January 22, 2025
|
|
290
|
+
|
|
291
|
+
## dbt-adapters 1.13.1 - January 10, 2025
|
|
292
|
+
|
|
293
|
+
### Fixes
|
|
294
|
+
|
|
295
|
+
- Fix is_replaceable check with wrong variable ([#187](https://github.com/dbt-labs/dbt-adapters/issues/187))
|
|
296
|
+
- Fix the snapshot merge query for several adapters in new_record mode. ([#385](https://github.com/dbt-labs/dbt-adapters/issues/385))
|
|
297
|
+
|
|
298
|
+
### Contributors
|
|
299
|
+
- [@rongfengliang](https://github.com/rongfengliang) ([#187](https://github.com/dbt-labs/dbt-adapters/issues/187))
|
|
300
|
+
|
|
301
|
+
## dbt-adapters 1.13.0 - December 19, 2024
|
|
302
|
+
|
|
303
|
+
### Features
|
|
304
|
+
|
|
305
|
+
- Add function to run custom sql for getting freshness info ([#8797](https://github.com/dbt-labs/dbt-adapters/issues/8797))
|
|
306
|
+
|
|
307
|
+
### Fixes
|
|
308
|
+
|
|
309
|
+
- Use `sql` instead of `compiled_code` within the default `get_limit_sql` macro ([#372](https://github.com/dbt-labs/dbt-adapters/issues/372))
|
|
310
|
+
|
|
311
|
+
### Under the Hood
|
|
312
|
+
|
|
313
|
+
- Adapter tests for new snapshot configs ([#380](https://github.com/dbt-labs/dbt-adapters/issues/380))
|
|
314
|
+
|
|
315
|
+
## dbt-adapters 1.12.0 - December 18, 2024
|
|
316
|
+
|
|
317
|
+
## dbt-adapters 1.11.0 - December 17, 2024
|
|
318
|
+
|
|
319
|
+
### Features
|
|
320
|
+
|
|
321
|
+
- Add new hard_deletes="new_record" mode for snapshots. ([#317](https://github.com/dbt-labs/dbt-adapters/issues/317))
|
|
322
|
+
- Introduce new Capability for MicrobatchConcurrency support ([#359](https://github.com/dbt-labs/dbt-adapters/issues/359))
|
|
323
|
+
|
|
324
|
+
### Under the Hood
|
|
325
|
+
|
|
326
|
+
- Add retry logic for retryable exceptions. ([#368](https://github.com/dbt-labs/dbt-adapters/issues/368))
|
|
327
|
+
|
|
328
|
+
## dbt-adapters 1.10.4 - November 11, 2024
|
|
329
|
+
|
|
330
|
+
### Features
|
|
331
|
+
|
|
332
|
+
- Use a behavior flag to gate microbatch functionality (instead of an environment variable) ([#327](https://github.com/dbt-labs/dbt-adapters/issues/327))
|
|
333
|
+
|
|
334
|
+
### Under the Hood
|
|
335
|
+
|
|
336
|
+
- Add `query_id` to SQLQueryStatus ([#342](https://github.com/dbt-labs/dbt-adapters/issues/342))
|
|
337
|
+
|
|
338
|
+
### Contributors
|
|
339
|
+
- [@cmcarthur](https://github.com/cmcarthur) ([#342](https://github.com/dbt-labs/dbt-adapters/issues/342))
|
|
340
|
+
|
|
341
|
+
## dbt-adapters 1.10.3 - October 29, 2024
|
|
342
|
+
|
|
343
|
+
## dbt-adapters 1.10.2 - October 01, 2024
|
|
344
|
+
|
|
345
|
+
### Under the Hood
|
|
346
|
+
|
|
347
|
+
- dbt-tests-adapters: Add required begin to microbatch model config to BaseMicrobatch test ([#315](https://github.com/dbt-labs/dbt-adapters/issues/315))
|
|
348
|
+
|
|
349
|
+
## dbt-adapters 1.10.1 - September 16, 2024
|
|
350
|
+
|
|
351
|
+
## dbt-adapters 1.10.0 - September 12, 2024
|
|
352
|
+
|
|
353
|
+
## dbt-adapters 1.9.0 - November 13, 2024
|
|
354
|
+
|
|
355
|
+
### Fixes
|
|
356
|
+
|
|
357
|
+
- Negate the check for microbatch behavior flag in determining builtins ([#349](https://github.com/dbt-labs/dbt-adapters/issues/349))
|
|
358
|
+
- Move require_batched_execution_for_custom_microbatch_strategy flag to global ([#351](https://github.com/dbt-labs/dbt-adapters/issues/351))
|
|
359
|
+
|
|
360
|
+
## dbt-adapters 1.8.0 - October 29, 2024
|
|
361
|
+
|
|
362
|
+
### Fixes
|
|
363
|
+
|
|
364
|
+
- Always make behavior flags available for evaluation ([#338](https://github.com/dbt-labs/dbt-adapters/issues/338))
|
|
365
|
+
|
|
366
|
+
### Under the Hood
|
|
367
|
+
|
|
368
|
+
- Add adapter telemetry. ([#301](https://github.com/dbt-labs/dbt-adapters/issues/301))
|
|
369
|
+
|
|
370
|
+
## dbt-adapters 1.7.2 - October 21, 2024
|
|
371
|
+
|
|
372
|
+
### Breaking Changes
|
|
373
|
+
|
|
374
|
+
- Drop support for Python 3.8 ([#332](https://github.com/dbt-labs/dbt-adapters/issues/332))
|
|
375
|
+
|
|
376
|
+
### Features
|
|
377
|
+
|
|
378
|
+
- Allows unique_key for snapshots to take a list ([#181](https://github.com/dbt-labs/dbt-adapters/issues/181))
|
|
379
|
+
|
|
380
|
+
### Fixes
|
|
381
|
+
|
|
382
|
+
- Always validate an incremental model's `incremental_strategy` ([#330](https://github.com/dbt-labs/dbt-adapters/issues/330))
|
|
383
|
+
|
|
384
|
+
### Contributors
|
|
385
|
+
- [@agpapa](https://github.com/agpapa) ([#181](https://github.com/dbt-labs/dbt-adapters/issues/181))
|
|
386
|
+
|
|
387
|
+
## dbt-adapters 1.7.1 - October 15, 2024
|
|
388
|
+
|
|
389
|
+
### Features
|
|
390
|
+
|
|
391
|
+
- Enable setting current value of dbt_valid_to ([#320](https://github.com/dbt-labs/dbt-adapters/issues/320))
|
|
392
|
+
|
|
393
|
+
## dbt-adapters 1.7.0 - September 19, 2024
|
|
394
|
+
|
|
395
|
+
### Features
|
|
396
|
+
|
|
397
|
+
- Allow configuring of snapshot column names ([#289](https://github.com/dbt-labs/dbt-adapters/issues/289))
|
|
398
|
+
|
|
399
|
+
## dbt-adapters 1.6.1 - September 16, 2024
|
|
400
|
+
|
|
401
|
+
## dbt-adapters 1.6.0 - September 12, 2024
|
|
402
|
+
|
|
403
|
+
### Features
|
|
404
|
+
|
|
405
|
+
- Default microbatch strategy implementation and base tests ([#302](https://github.com/dbt-labs/dbt-adapters/issues/302))
|
|
406
|
+
|
|
407
|
+
## dbt-adapters 1.5.0 - September 10, 2024
|
|
408
|
+
|
|
409
|
+
### Features
|
|
410
|
+
|
|
411
|
+
- Compare 'snapshot_get_time' and snapshot 'updated_at' data types ([#242](https://github.com/dbt-labs/dbt-adapters/issues/242))
|
|
412
|
+
- Add Behavior Flag framework ([#281](https://github.com/dbt-labs/dbt-adapters/issues/281))
|
|
413
|
+
- Add EventTimeFilter to BaseRelation, which renders a filtered relation when start or end is set ([#294](https://github.com/dbt-labs/dbt-adapters/issues/294))
|
|
414
|
+
|
|
415
|
+
### Dependencies
|
|
416
|
+
|
|
417
|
+
- Update dbt-common pin to >=1.8 ([#299](https://github.com/dbt-labs/dbt-adapters/pull/299))
|
|
418
|
+
|
|
419
|
+
## dbt-adapters 1.4.1 - August 09, 2024
|
|
420
|
+
|
|
421
|
+
### Fixes
|
|
422
|
+
|
|
423
|
+
- Use model alias for the CTE identifier generated during ephemeral materialization ([#5273](https://github.com/dbt-labs/dbt-adapters/issues/5273))
|
|
424
|
+
|
|
425
|
+
### Under the Hood
|
|
426
|
+
|
|
427
|
+
- Updating changie.yaml to add contributors and PR links ([#219](https://github.com/dbt-labs/dbt-adapters/issues/219))
|
|
428
|
+
|
|
429
|
+
### Contributors
|
|
430
|
+
- [@jeancochrane](https://github.com/jeancochrane) ([#5273](https://github.com/dbt-labs/dbt-adapters/issues/5273))
|
|
431
|
+
- [@leahwicz](https://github.com/leahwicz) ([#219](https://github.com/dbt-labs/dbt-adapters/issues/219))
|
|
432
|
+
|
|
433
|
+
## dbt-adapters 1.4.0 - July 30, 2024
|
|
434
|
+
|
|
435
|
+
### Features
|
|
436
|
+
|
|
437
|
+
- render 'to' and 'to_columns' fields on foreign key constraints, and bump dbt-common lower bound to 1.6 ([#271](https://github.com/dbt-labs/dbt-adapters/issues/271))
|
|
438
|
+
|
|
439
|
+
### Fixes
|
|
440
|
+
|
|
441
|
+
- Incremental table varchar column definition changed ([#276](https://github.com/dbt-labs/dbt-adapters/issues/276))
|
|
442
|
+
|
|
443
|
+
### Under the Hood
|
|
444
|
+
|
|
445
|
+
- Rework record/replay to record at the database connection level. ([#244](https://github.com/dbt-labs/dbt-adapters/issues/244))
|
|
446
|
+
|
|
447
|
+
## dbt-adapters 1.3.3 - July 09, 2024
|
|
448
|
+
|
|
449
|
+
### Fixes
|
|
450
|
+
|
|
451
|
+
* Fix scenario where using the `--empty` flag causes metadata queries to contain limit clauses ([#213](https://github.com/dbt-labs/dbt-adapters/issues/213))
|
|
452
|
+
|
|
453
|
+
### Under the Hood
|
|
454
|
+
|
|
455
|
+
* --limit flag no longer subshells the query. This resolves the dbt Cloud experience issue where limit prevents ordering elements.. ([#207](https://github.com/dbt-labs/dbt-adapters/issues/207))
|
|
456
|
+
|
|
457
|
+
## dbt-adapters 1.3.2 - July 02, 2024
|
|
458
|
+
|
|
459
|
+
### Under the Hood
|
|
460
|
+
|
|
461
|
+
* Fix query timer resolution ([#246](https://github.com/dbt-labs/dbt-adapters/issues/246))
|
|
462
|
+
* Add optional release_connection parameter to connection_named method ([#247](https://github.com/dbt-labs/dbt-adapters/issues/247))
|
|
463
|
+
|
|
464
|
+
## dbt-adapters 1.3.1 - June 20, 2024
|
|
465
|
+
|
|
466
|
+
## dbt-adapters 1.3.0 - June 18, 2024
|
|
467
|
+
|
|
468
|
+
### Features
|
|
469
|
+
|
|
470
|
+
* Add get_catalog_for_single_relation macro and capability to enable adapters to optimize catalog generation ([#231](https://github.com/dbt-labs/dbt-adapters/issues/231))
|
|
471
|
+
|
|
472
|
+
## dbt-adapters 1.2.1 - May 21, 2024
|
|
473
|
+
|
|
474
|
+
### Features
|
|
475
|
+
|
|
476
|
+
* Improvement of the compile error message in the get_fixture-sql.sql when the relation or the model not exist ([#203](https://github.com/dbt-labs/dbt-adapters/issues/203))
|
|
477
|
+
* Cross-database `date` macro ([#191](https://github.com/dbt-labs/dbt-adapters/issues/191))
|
|
478
|
+
|
|
479
|
+
### Fixes
|
|
480
|
+
|
|
481
|
+
* Update Clone test to reflect core change removing `deferred` attribute from nodes ([#194](https://github.com/dbt-labs/dbt-adapters/issues/194))
|
|
482
|
+
|
|
483
|
+
### Under the Hood
|
|
484
|
+
|
|
485
|
+
* Add query recording for adapters which use SQLConnectionManager ([#195](https://github.com/dbt-labs/dbt-adapters/issues/195))
|
|
486
|
+
* Improve memory efficiency of process_results() ([#217](https://github.com/dbt-labs/dbt-adapters/issues/217))
|
|
487
|
+
|
|
488
|
+
## dbt-adapters 1.1.1 - May 07, 2024
|
|
489
|
+
|
|
490
|
+
### Features
|
|
491
|
+
|
|
492
|
+
* Enable serialization contexts ([#197](https://github.com/dbt-labs/dbt-adapters/issues/197))
|
|
493
|
+
|
|
494
|
+
## dbt-adapters 1.1.0 - May 01, 2024
|
|
495
|
+
|
|
496
|
+
### Features
|
|
497
|
+
|
|
498
|
+
* Debug log when `type_code` fails to convert to a `data_type` ([#135](https://github.com/dbt-labs/dbt-adapters/issues/135))
|
|
499
|
+
* Introduce TableLastModifiedMetadataBatch and implement BaseAdapter.calculate_freshness_from_metadata_batch ([#127](https://github.com/dbt-labs/dbt-adapters/issues/127))
|
|
500
|
+
* Support for sql fixtures in unit testing ([#146](https://github.com/dbt-labs/dbt-adapters/issues/146))
|
|
501
|
+
* Cross-database `cast` macro ([#173](https://github.com/dbt-labs/dbt-adapters/issues/173))
|
|
502
|
+
* Allow adapters to opt out of aliasing the subquery generated by render_limited ([#179](https://github.com/dbt-labs/dbt-adapters/issues/179))
|
|
503
|
+
* subquery alias generated by render_limited now includes the relation name to mitigate duplicate aliasing ([#179](https://github.com/dbt-labs/dbt-adapters/issues/179))
|
|
504
|
+
|
|
505
|
+
### Fixes
|
|
506
|
+
|
|
507
|
+
* Fix adapter-specific cast handling for constraint enforcement ([#165](https://github.com/dbt-labs/dbt-adapters/issues/165))
|
|
508
|
+
|
|
509
|
+
### Docs
|
|
510
|
+
|
|
511
|
+
* Use `dbt-adapters` throughout the contributing guide ([#137](https://github.com/dbt-labs/dbt-adapters/issues/137))
|
|
512
|
+
|
|
513
|
+
### Under the Hood
|
|
514
|
+
|
|
515
|
+
* Add the option to set the log level of the AdapterRegistered event ([#141](https://github.com/dbt-labs/dbt-adapters/issues/141))
|
|
516
|
+
* Update dependabot config to cover GHA ([#161](https://github.com/dbt-labs/dbt-adapters/issues/161))
|
|
517
|
+
* Validate that dbt-core and dbt-adapters remain de-coupled ([#174](https://github.com/dbt-labs/dbt-adapters/issues/174))
|
|
518
|
+
* remove dbt_version from query comment test fixture ([#184](https://github.com/dbt-labs/dbt-adapters/issues/184))
|
|
519
|
+
|
|
520
|
+
### Dependencies
|
|
521
|
+
|
|
522
|
+
* add support for py3.12 ([#185](https://github.com/dbt-labs/dbt-adapters/issues/185))
|
|
523
|
+
|
|
524
|
+
## dbt-adapters 1.0.0 - April 01, 2024
|
|
525
|
+
|
|
526
|
+
### Features
|
|
527
|
+
|
|
528
|
+
* Update RelationConfig to capture all fields used by adapters ([#30](https://github.com/dbt-labs/dbt-adapters/issues/30))
|
|
529
|
+
|
|
530
|
+
### Fixes
|
|
531
|
+
|
|
532
|
+
* Add field wrapper to BaseRelation members that were missing it. ([#108](https://github.com/dbt-labs/dbt-adapters/issues/108))
|
|
533
|
+
* Add "description" and "meta" fields to RelationConfig protocol ([#119](https://github.com/dbt-labs/dbt-adapters/issues/119))
|
|
534
|
+
* Ignore adapter-level support warnings for 'custom' constraints ([#90](https://github.com/dbt-labs/dbt-adapters/issues/90))
|
|
535
|
+
* Make all adapter zone tests importable by removing "Test" prefix ([#93](https://github.com/dbt-labs/dbt-adapters/issues/93))
|
|
536
|
+
|
|
537
|
+
### Docs
|
|
538
|
+
|
|
539
|
+
* Configure `changie` ([#16](https://github.com/dbt-labs/dbt-adapters/issues/16))
|
|
540
|
+
* Setup ADR tracking framework ([#11](https://github.com/dbt-labs/dbt-adapters/issues/11))
|
|
541
|
+
* Create issue templates ([#12](https://github.com/dbt-labs/dbt-adapters/issues/12))
|
|
542
|
+
* Create PR template ([#13](https://github.com/dbt-labs/dbt-adapters/issues/13))
|
|
543
|
+
|
|
544
|
+
### Under the Hood
|
|
545
|
+
|
|
546
|
+
* Lazy load agate to improve dbt-core performance ([#125](https://github.com/dbt-labs/dbt-adapters/issues/125))
|
|
547
|
+
* add BaseAdapater.MAX_SCHEMA_METADATA_RELATIONS ([#131](https://github.com/dbt-labs/dbt-adapters/issues/131))
|
|
548
|
+
* Configure `dependabot` ([#14](https://github.com/dbt-labs/dbt-adapters/issues/14))
|
|
549
|
+
* Implement unit testing in CI ([#22](https://github.com/dbt-labs/dbt-adapters/issues/22))
|
|
550
|
+
* Allow version to be specified in either __version__.py or __about__.py ([#44](https://github.com/dbt-labs/dbt-adapters/issues/44))
|
|
551
|
+
* Remove __init__.py file from dbt.tests ([#96](https://github.com/dbt-labs/dbt-adapters/issues/96))
|
|
552
|
+
|
|
553
|
+
### Security
|
|
554
|
+
|
|
555
|
+
* Pin `black>=24.3` in `pyproject.toml` ([#140](https://github.com/dbt-labs/dbt-adapters/issues/140))
|