Skip to content

Commit 288f792

Browse files
MeltyBotedgarrmondragonsourcery-ai[bot]
authored
chore: Release v0.53.3 (#3389)
Prepare MeltanoSDK `v0.53.3` 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-9a6995364bd7adca282a) ## Summary by Sourcery Prepare the 0.53.3 release of the Meltano SDK. Bug Fixes: - Document fixes for OpenAPI schema nullable handling in the changelog. - Document updating project templates to use Pytest 9+ in the changelog. Enhancements: - Deprecate the unused Stream.reset_state_progress_markers method and record it in the changelog. Build: - Bump the recorded project version to 0.53.3 in pyproject configuration and documentation build config. - Update cookiecutter templates to depend on singer-sdk version 0.53.3. - Refresh GitHub issue template default SDK version placeholder to 0.53.3. --------- Co-authored-by: edgarrmondragon <16805946+edgarrmondragon@users.noreply.github.com> Co-authored-by: Edgar Ramírez Mondragón <edgarrm358@gmail.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
1 parent 90009ab commit 288f792

File tree

7 files changed

+21
-9
lines changed

7 files changed

+21
-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.2"
18+
placeholder: "0.53.3"
1919
validations:
2020
required: true
2121
- type: checkboxes

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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.3 (2025-11-25)
9+
10+
### 🐛 Fixes
11+
12+
- [#3387](https://github.com/meltano/sdk/issues/3387) Do not leave dangling `nullable` field in OpenAPI schema properties
13+
- [#3386](https://github.com/meltano/sdk/issues/3386) Do not add `"type": ["null"]` to OpenAPI spec properties without a type
14+
- [#3380](https://github.com/meltano/sdk/issues/3380) Use pytest 9+ in templates
15+
16+
### ⚙️ Under the Hood
17+
18+
- [#3388](https://github.com/meltano/sdk/issues/3388) Deprecate `Stream.reset_state_progress_markers` since it is not being used
19+
820
## v0.53.2 (2025-11-19)
921

1022
### 🐛 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.2",
35+
"singer-sdk[faker]~=0.53.3",
3636
{%- else %}
37-
"singer-sdk~=0.53.2",
37+
"singer-sdk~=0.53.3",
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.2",
38+
"singer-sdk[{{ extras|join(',') }}]~=0.53.3",
3939
{%- else %}
40-
"singer-sdk~=0.53.2",
40+
"singer-sdk~=0.53.3",
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.2",
34+
"singer-sdk[faker]~=0.53.3",
3535
{%- else %}
36-
"singer-sdk~=0.53.2",
36+
"singer-sdk~=0.53.3",
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.2"
32+
release = "0.53.3"
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.2"
218+
version = "0.53.3"
219219
changelog_merge_prerelease = true
220220
prerelease_offset = 1
221221
tag_format = "v$major.$minor.$patch$prerelease"

0 commit comments

Comments
 (0)