Skip to content

Commit 7725611

Browse files
chore: Release v0.53.2 (#3379)
Prepare MeltanoSDK `v0.53.2` 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-d3ada61a680f2c54874b) ## Summary by Sourcery Prepare Meltano SDK v0.53.2 release by updating version references and documenting a critical bug fix Bug Fixes: - Revert feat(taps): Queue parent contexts and sync child streams only when the queue is full (#3378) Documentation: - Add CHANGELOG entry for v0.53.2 Chores: - Bump sdk version to 0.53.2 in pyproject.toml, docs/conf.py, commitizen config, issue template, and cookiecutter templates Co-authored-by: edgarrmondragon <16805946+edgarrmondragon@users.noreply.github.com>
1 parent 8ba143f commit 7725611

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-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.1"
18+
placeholder: "0.53.2"
1919
validations:
2020
required: true
2121
- type: checkboxes

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.2 (2025-11-19)
9+
10+
### 🐛 Fixes
11+
12+
- [#3378](https://github.com/meltano/sdk/issues/3378) Revert "feat(taps): Queue parent contexts and sync child streams only when the queue is full (#3058)"
13+
814
## v0.53.1 (2025-11-19)
915

1016
### 🐛 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.1",
35+
"singer-sdk[faker]~=0.53.2",
3636
{%- else %}
37-
"singer-sdk~=0.53.1",
37+
"singer-sdk~=0.53.2",
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.1",
38+
"singer-sdk[{{ extras|join(',') }}]~=0.53.2",
3939
{%- else %}
40-
"singer-sdk~=0.53.1",
40+
"singer-sdk~=0.53.2",
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.1",
34+
"singer-sdk[faker]~=0.53.2",
3535
{%- else %}
36-
"singer-sdk~=0.53.1",
36+
"singer-sdk~=0.53.2",
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.1"
32+
release = "0.53.2"
3333

3434

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

pyproject.toml

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

215215
[tool.commitizen]
216216
name = "cz_version_bump"
217-
version = "0.53.1"
217+
version = "0.53.2"
218218
changelog_merge_prerelease = true
219219
prerelease_offset = 1
220220
tag_format = "v$major.$minor.$patch$prerelease"

0 commit comments

Comments
 (0)