Skip to content

Commit

Permalink
shift imports (step 2) ; update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurcht committed Mar 1, 2024
1 parent bfd703e commit c898b86
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
# Changelog
### v1.8.0rc1

## Features

Supporting dbt-core 1.8.0

## Enhancements

[Decouple imports](https://github.com/dbt-labs/dbt-adapters/discussions/87) to common dbt core and dbt adapter interface packages for future maintainability and extensibility.

* Bump dev requirements
- from pytest~=7.4. to pytest~=8.0.1
- from twine~=4.0.2 to twine~=5.0.0
- from pre-commit~=3.5.0 to pre-commit~=3.6.2

* Inherit [dbt-fabric v1.8.0rc2](https://github.com/microsoft/dbt-fabric/blob/v1.8.0rc2/setup.py) - Bump adapter packages
- from pyodbc>=4.0.35,<5.1.0" to pyodbc>=4.0.35,<5.2.0

> From now on, Apple-silicon users don't have to locally build pyodbc, because M1, M2 binaries is included in pyodbc from 5.1.0 onwards!
## v1.7.0

* Official release
Expand Down
6 changes: 3 additions & 3 deletions dbt/adapters/synapse/synapse_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

from dbt.adapters.base.relation import BaseRelation
from dbt.adapters.cache import _make_ref_key_dict
from dbt.adapters.events.types import SchemaCreation
from dbt.adapters.fabric import FabricAdapter
from dbt.adapters.sql.impl import CREATE_SCHEMA_MACRO_NAME
from dbt.contracts.graph.nodes import ColumnLevelConstraint, ConstraintType
from dbt.events.functions import fire_event
from dbt.events.types import SchemaCreation
from dbt_common.contracts.constraints import ColumnLevelConstraint, ConstraintType
from dbt_common.events.functions import fire_event

from dbt.adapters.synapse.synapse_column import SynapseColumn
from dbt.adapters.synapse.synapse_connection_manager import SynapseConnectionManager
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/adapter/test_dbt_show.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from dbt.tests.adapter.dbt_show.test_dbt_show import (
from dbt.tests.adapter.dbt_show.fixtures import (
models__sample_model,
models__sql_header,
seeds__sample_seed,
Expand Down

0 comments on commit c898b86

Please sign in to comment.