Skip to content

Commit 86f5cb1

Browse files
Bumping version to 1.6.15 and generate changelog
1 parent 8f9b045 commit 86f5cb1

File tree

11 files changed

+26
-21
lines changed

11 files changed

+26
-21
lines changed

.bumpversion.cfg

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

.changes/1.6.15.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## dbt-core 1.6.15 - May 22, 2024
2+
3+
### Security
4+
5+
- Explicitly bind to localhost in docs serve ([#10209](https://github.com/dbt-labs/dbt-core/issues/10209))

.changes/unreleased/Security-20240522-094540.yaml

-6
This file was deleted.

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
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.6.15 - May 22, 2024
9+
10+
### Security
11+
12+
- Explicitly bind to localhost in docs serve ([#10209](https://github.com/dbt-labs/dbt-core/issues/10209))
13+
14+
15+
816
## dbt-core 1.6.14 - May 02, 2024
917

1018
### Features
@@ -21,8 +29,6 @@
2129
- Raise deprecation warning if installed package overrides built-in materialization ([#9971](https://github.com/dbt-labs/dbt-core/issues/9971))
2230
- Remove the final underscore from secret environment variable constants. ([#10052](https://github.com/dbt-labs/dbt-core/issues/10052))
2331

24-
25-
2632
## dbt-core 1.6.13 - April 18, 2024
2733

2834
### Security

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.6.14"
235+
__version__ = "1.6.15"
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.6.14"
28+
package_version = "1.6.15"
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.6.14"
1+
version = "1.6.15"

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.6.14"
44+
package_version = "1.6.15"
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.6.14"
1+
version = "1.6.15"

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.6.14"
23+
package_version = "1.6.15"
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)