Skip to content

Commit 20e67ee

Browse files
chore: Release v0.53.4 (#3394)
Prepare MeltanoSDK `v0.53.4` for release. Checklist: - [x] Check that the right version is set in all the files. - [x] Groom the changelog for wording or missing entries. - [x] Merge this PR once everything looks good. [Release Draft](https://github.com/meltano/sdk/releases/tag/untagged-f5007f84b6b8f2552a21) ## Summary by Sourcery Prepare the Meltano SDK for the v0.53.4 release with schema typing fixes and template/dependency updates. Bug Fixes: - Make StreamSchema.get_stream_schema generic to prevent downstream Liskov Substitution Principle-related warnings. Enhancements: - Adjust project templates to move from weekly to monthly pre-commit hook update schedules. - Bump SDK version references and dependency constraints to 0.53.4 across configuration, templates, and documentation. Co-authored-by: edgarrmondragon <16805946+edgarrmondragon@users.noreply.github.com>
1 parent 827ae5b commit 20e67ee

File tree

7 files changed

+19
-9
lines changed

7 files changed

+19
-9
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ body:
1515
attributes:
1616
label: Singer SDK Version
1717
description: Version of the library you are using
18-
placeholder: "0.53.3"
18+
placeholder: "0.53.4"
1919
validations:
2020
required: true
2121
- type: checkboxes

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v0.53.4 (2025-11-28)
9+
10+
### 🐛 Fixes
11+
12+
- [#3393](https://github.com/meltano/sdk/issues/3393) Make `StreamSchema.get_stream_schema` generic to avoid downstream warnings about violation of the LSP
13+
14+
### ⚙️ Under the Hood
15+
16+
- [#3391](https://github.com/meltano/sdk/issues/3391) Move to monthly instead of weekly updates to pre-commit hooks in templates
17+
818
## v0.53.3 (2025-11-25)
919

1020
### 🐛 Fixes

cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ license-files = [ "LICENSE" ]
3232
requires-python = ">=3.10"
3333
dependencies = [
3434
{%- if cookiecutter.faker_extra %}
35-
"singer-sdk[faker]~=0.53.3",
35+
"singer-sdk[faker]~=0.53.4",
3636
{%- else %}
37-
"singer-sdk~=0.53.3",
37+
"singer-sdk~=0.53.4",
3838
{%- endif %}
3939
"typing-extensions>=4.5.0; python_version < '3.13'",
4040
]

cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ license-files = [ "LICENSE" ]
3535
requires-python = ">=3.10"
3636
dependencies = [
3737
{%- if extras %}
38-
"singer-sdk[{{ extras|join(',') }}]~=0.53.3",
38+
"singer-sdk[{{ extras|join(',') }}]~=0.53.4",
3939
{%- else %}
40-
"singer-sdk~=0.53.3",
40+
"singer-sdk~=0.53.4",
4141
{%- endif %}
4242
{%- if cookiecutter.stream_type in ["REST", "GraphQL"] %}
4343
"requests~=2.32.3",

cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ license-files = [ "LICENSE" ]
3131
requires-python = ">=3.10"
3232
dependencies = [
3333
{%- if cookiecutter.faker_extra %}
34-
"singer-sdk[faker]~=0.53.3",
34+
"singer-sdk[faker]~=0.53.4",
3535
{%- else %}
36-
"singer-sdk~=0.53.3",
36+
"singer-sdk~=0.53.4",
3737
{%- endif %}
3838
{%- if cookiecutter.serialization_method == "SQL" %}
3939
"sqlalchemy~=2.0",

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
author = "Meltano Core Team and Contributors"
3030

3131
# The full version, including alpha/beta/rc tags
32-
release = "0.53.3"
32+
release = "0.53.4"
3333

3434

3535
# -- General configuration -------------------------------------------------------------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ xfail_strict = false
215215

216216
[tool.commitizen]
217217
name = "cz_version_bump"
218-
version = "0.53.3"
218+
version = "0.53.4"
219219
changelog_merge_prerelease = true
220220
prerelease_offset = 1
221221
tag_format = "v$major.$minor.$patch$prerelease"

0 commit comments

Comments
 (0)