Skip to content

Commit 5632fb6

Browse files
chore: Release v0.52.3 (#3344)
* chore: Bump package version * Update CHANGELOG.md --------- Co-authored-by: edgarrmondragon <16805946+edgarrmondragon@users.noreply.github.com> Co-authored-by: Edgar Ramírez Mondragón <edgarrm358@gmail.com>
1 parent 34ffd84 commit 5632fb6

File tree

7 files changed

+25
-9
lines changed

7 files changed

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

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ 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.3 (2025-10-28)
9+
10+
### 🐛 Fixes
11+
12+
- [#3343](https://github.com/meltano/sdk/issues/3343) Fix regression in v0.52.0 where the `auth` attribute was removed from the `RESTStream.requests_session` instance
13+
- [#3333](https://github.com/meltano/sdk/issues/3333) Add more context and clear instructions to cookiecutter prompts
14+
15+
### 📚 Documentation Improvements
16+
17+
- [#3338](https://github.com/meltano/sdk/issues/3338) Document how to cast values to different data types in inline stream maps
18+
- [#3337](https://github.com/meltano/sdk/issues/3337) FAQ - my stream sync is not resumed after it is interrupted in the middle of a run
19+
- [#3336](https://github.com/meltano/sdk/issues/3336) Explain parameter replacement in parent-child streams
20+
- [#3335](https://github.com/meltano/sdk/issues/3335) Improve documentation around extended JSONPath parser
21+
- [#3332](https://github.com/meltano/sdk/issues/3332) Clarify that JSONL batch files should contain raw records and not Singer `RECORD` messages
22+
- [#3331](https://github.com/meltano/sdk/issues/3331) Document that multiple state messages can be output from a single target run
23+
824
## v0.52.2 (2025-10-22)
925

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

0 commit comments

Comments
 (0)