Skip to content

Commit 26a687e

Browse files
chore: Release v0.52.5 (#3351)
* chore: Bump package version * Fix duplicate entry in CHANGELOG.md Removed duplicate entry regarding casting to bool in stream map filter expressions. --------- Co-authored-by: edgarrmondragon <16805946+edgarrmondragon@users.noreply.github.com> Co-authored-by: Edgar Ramírez Mondragón <edgarrm358@gmail.com>
1 parent 6bde991 commit 26a687e

File tree

7 files changed

+16
-9
lines changed

7 files changed

+16
-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.52.4"
18+
placeholder: "0.52.5"
1919
validations:
2020
required: true
2121
- type: checkboxes

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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.52.5 (2025-10-30)
9+
10+
### 🐛 Fixes
11+
12+
- [#3350](https://github.com/meltano/sdk/issues/3350) Configuration schema now reflects that casting to `bool(...)` in stream map `__filter__` expressions is not required
13+
- [#3349](https://github.com/meltano/sdk/issues/3349) Update templates
14+
815
## v0.52.4 (2025-10-28)
916

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

3434

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

pyproject.toml

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

217217
[tool.commitizen]
218218
name = "cz_version_bump"
219-
version = "0.52.4"
219+
version = "0.52.5"
220220
changelog_merge_prerelease = true
221221
prerelease_offset = 1
222222
tag_format = "v$major.$minor.$patch$prerelease"

0 commit comments

Comments
 (0)