Skip to content

Commit ef37e62

Browse files
Bumping version to 1.7.12 and generate changelog
1 parent 227877e commit ef37e62

File tree

12 files changed

+28
-28
lines changed

12 files changed

+28
-28
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.7.11
2+
current_version = 1.7.12
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.7.12.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## dbt-core 1.7.12 - April 16, 2024
2+
3+
### Fixes
4+
5+
- Fix assorted source freshness edgecases so check is run or actionable information is given ([#9078](https://github.com/dbt-labs/dbt-core/issues/9078))
6+
- Exclude password-like fields for considering reparse ([#9795](https://github.com/dbt-labs/dbt-core/issues/9795))

.changes/unreleased/Fixes-20240326-162100.yaml

-7
This file was deleted.

.changes/unreleased/Fixes-20240402-135556.yaml

-6
This file was deleted.

CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,22 @@
55
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version.
66
- Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie). For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/dbt-core/blob/main/CONTRIBUTING.md#adding-changelog-entry)
77

8+
## dbt-core 1.7.12 - April 16, 2024
9+
10+
### Fixes
11+
12+
- Fix assorted source freshness edgecases so check is run or actionable information is given ([#9078](https://github.com/dbt-labs/dbt-core/issues/9078))
13+
- Exclude password-like fields for considering reparse ([#9795](https://github.com/dbt-labs/dbt-core/issues/9795))
14+
15+
16+
817
## dbt-core 1.7.11 - March 28, 2024
918

1019
### Fixes
1120

1221
- Tighten exception handling to avoid worker thread hangs. ([#9583](https://github.com/dbt-labs/dbt-core/issues/9583))
1322
- Add field wrapper to BaseRelation members that were missing it. ([#9681](https://github.com/dbt-labs/dbt-core/issues/9681))
1423

15-
16-
1724
## dbt-core 1.7.10 - March 14, 2024
1825

1926
### Fixes

core/dbt/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,5 +232,5 @@ def _get_adapter_plugin_names() -> Iterator[str]:
232232
yield plugin_name
233233

234234

235-
__version__ = "1.7.11"
235+
__version__ = "1.7.12"
236236
installed = get_installed_version()

core/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
package_name = "dbt-core"
28-
package_version = "1.7.11"
28+
package_version = "1.7.12"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

docker/Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ FROM --platform=$build_for python:3.10.7-slim-bullseye as base
1616
# N.B. The refs updated automagically every release via bumpversion
1717
# N.B. dbt-postgres is currently found in the core codebase so a value of dbt-core@<some_version> is correct
1818

19-
20-
21-
22-
23-
24-
19+
20+
21+
22+
23+
24+
2525
# special case args
2626
ARG dbt_spark_version=all
2727
ARG dbt_third_party
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.7.11"
1+
version = "1.7.12"

plugins/postgres/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _dbt_psycopg2_name():
4141

4242

4343
package_name = "dbt-postgres"
44-
package_version = "1.7.11"
44+
package_version = "1.7.12"
4545
description = """The postgres adapter plugin for dbt (data build tool)"""
4646

4747
this_directory = os.path.abspath(os.path.dirname(__file__))
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.7.11"
1+
version = "1.7.12"

tests/adapter/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
package_name = "dbt-tests-adapter"
23-
package_version = "1.7.11"
23+
package_version = "1.7.12"
2424
description = """The dbt adapter tests for adapter plugins"""
2525

2626
this_directory = os.path.abspath(os.path.dirname(__file__))

0 commit comments

Comments
 (0)