Skip to content

Commit eda4fd6

Browse files
chore: Release v0.35.0 (#2212)
* chore: Bump package version * Update CHANGELOG.md --------- Co-authored-by: edgarrmondragon <[email protected]> Co-authored-by: Edgar Ramírez Mondragón <[email protected]>
1 parent 61ff0ad commit eda4fd6

File tree

7 files changed

+48
-9
lines changed

7 files changed

+48
-9
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ body:
1313
attributes:
1414
label: Singer SDK Version
1515
description: Version of the library you are using
16-
placeholder: "0.34.1"
16+
placeholder: "0.35.0"
1717
validations:
1818
required: true
1919
- type: checkboxes

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,45 @@ 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.35.0 (2024-02-02)
9+
10+
### ✨ New
11+
12+
- [#2208](https://github.com/meltano/sdk/issues/2208) Allow users to disable schema validation in targets
13+
- [#2170](https://github.com/meltano/sdk/issues/2170) Generate fake data with stream maps -- _**Thanks @ReubenFrankel!**_
14+
- [#937](https://github.com/meltano/sdk/issues/937) Support validating configuration for any tap with a dynamic catalog
15+
- [#2144](https://github.com/meltano/sdk/issues/2144) Support fanning out parent record into multiple child contexts/syncs
16+
- [#1918](https://github.com/meltano/sdk/issues/1918) End RESTStream pagination if an empty page is received
17+
18+
### 🐛 Fixes
19+
20+
- [#2203](https://github.com/meltano/sdk/issues/2203) Fix serialization of arbitrary objects (e.g. `ObjectId` from mongoDB) during flattening -- _**Thanks @dgawlowsky!**_
21+
- [#2200](https://github.com/meltano/sdk/issues/2200) Quote column names in INSERT statement
22+
- [#2195](https://github.com/meltano/sdk/issues/2195) Include empty `schemas` directory in REST tap cookiecutter
23+
- [#2187](https://github.com/meltano/sdk/issues/2187) Replace use of deprecated `jsonschema._RefResolver` with recommended `referencing` library
24+
- [#2184](https://github.com/meltano/sdk/issues/2184) Reduce amount of unnecessary whitespace in Singer output
25+
- [#2183](https://github.com/meltano/sdk/issues/2183) Ensure `.vscode` directory is included when requested in cookiecutters and avoid failing if it does not exist
26+
- [#2180](https://github.com/meltano/sdk/issues/2180) Limit supported Python versions in `--about` output to existing ones
27+
- [#2108](https://github.com/meltano/sdk/issues/2108) Log sink name when an unhandled error occurs during setup
28+
- [#2158](https://github.com/meltano/sdk/issues/2158) Fix pytest plugin declaration so it can be used without requiring defining `pytest_plugins` in `conftest.py`
29+
- [#2105](https://github.com/meltano/sdk/issues/2105) Default handling of `ACTIVATE_VERSION` messages to soft deletes and add new `SQLConnector.delete_old_versions` method
30+
31+
### ⚙️ Under the Hood
32+
33+
- [#2189](https://github.com/meltano/sdk/issues/2189) Use `functools.lru_cache` instead of the stale `memoization` library (#1981)
34+
- [#2188](https://github.com/meltano/sdk/issues/2188) Remove unused `logger` parameter from private catalog helper functions
35+
- [#2143](https://github.com/meltano/sdk/issues/2143) Drop support for Python 3.7
36+
- [#2157](https://github.com/meltano/sdk/issues/2157) Remove `pytz` dependency and use `datetime.timezone.utc` instead of `pytz.UTC` where possible
37+
- [#2136](https://github.com/meltano/sdk/issues/2136) Create interface for schema validation in sinks, and implement it for `python-jsonschema` -- _**Thanks @BuzzCutNorman!**_
38+
- [#2130](https://github.com/meltano/sdk/issues/2130) Allow loading stream schemas from `importlib.resources.abc.Traversable` types
39+
40+
### 📚 Documentation Improvements
41+
42+
- [#2204](https://github.com/meltano/sdk/issues/2204) Document supported package extras
43+
- [#2186](https://github.com/meltano/sdk/issues/2186) Call out minimum recommended `cookiecutter` version
44+
- [#2168](https://github.com/meltano/sdk/issues/2168) Explain `Progress is not resumable if interrupted` in docs FAQ
45+
- [#2140](https://github.com/meltano/sdk/issues/2140) Update auth caching example to use `functools.cached_property`
46+
847
## v0.34.1 (2023-12-19)
948

1049
### 🐛 Fixes

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ packages = [
3131

3232
[tool.poetry.dependencies]
3333
python = ">=3.8"
34-
singer-sdk = { version="~=0.34.1"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
34+
singer-sdk = { version="~=0.35.0"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
3535
fs-s3fs = { version = "~=1.1.1", optional = true }
3636

3737
[tool.poetry.group.dev.dependencies]
3838
pytest = ">=7.4.0"
39-
singer-sdk = { version="~=0.34.1", extras = ["testing"] }
39+
singer-sdk = { version="~=0.35.0", extras = ["testing"] }
4040

4141
[tool.poetry.extras]
4242
s3 = ["fs-s3fs"]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ packages = [
3131
[tool.poetry.dependencies]
3232
python = ">=3.8"
3333
importlib-resources = { version = "==6.1.*", python = "<3.9" }
34-
singer-sdk = { version="~=0.34.1"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
34+
singer-sdk = { version="~=0.35.0"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
3535
fs-s3fs = { version = "~=1.1.1", optional = true }
3636
{%- if cookiecutter.stream_type in ["REST", "GraphQL"] %}
3737
requests = "~=2.31.0"
3838
{%- endif %}
3939

4040
[tool.poetry.group.dev.dependencies]
4141
pytest = ">=7.4.0"
42-
singer-sdk = { version="~=0.34.1", extras = ["testing"] }
42+
singer-sdk = { version="~=0.35.0", extras = ["testing"] }
4343

4444
[tool.poetry.extras]
4545
s3 = ["fs-s3fs"]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ packages = [
3030

3131
[tool.poetry.dependencies]
3232
python = ">=3.8"
33-
singer-sdk = { version="~=0.34.1"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
33+
singer-sdk = { version="~=0.35.0"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
3434
fs-s3fs = { version = "~=1.1.1", optional = true }
3535
{%- if cookiecutter.serialization_method != "SQL" %}
3636
requests = "~=2.31.0"
3737
{%- endif %}
3838

3939
[tool.poetry.dev-dependencies]
4040
pytest = ">=7.4.0"
41-
singer-sdk = { version="~=0.34.1", extras = ["testing"] }
41+
singer-sdk = { version="~=0.35.0", extras = ["testing"] }
4242

4343
[tool.poetry.extras]
4444
s3 = ["fs-s3fs"]

docs/conf.py

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

2828
# The full version, including alpha/beta/rc tags
29-
release = "0.34.1"
29+
release = "0.35.0"
3030

3131

3232
# -- General configuration ---------------------------------------------------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ norecursedirs = "cookiecutter"
169169

170170
[tool.commitizen]
171171
name = "cz_version_bump"
172-
version = "0.34.1"
172+
version = "0.35.0"
173173
changelog_merge_prerelease = true
174174
prerelease_offset = 1
175175
tag_format = "v$major.$minor.$patch$prerelease"

0 commit comments

Comments
 (0)