Skip to content

Commit 2882731

Browse files
chore: Release v0.43.0 (#2804)
chore: Bump package version Co-authored-by: edgarrmondragon <[email protected]>
1 parent 95a84d0 commit 2882731

File tree

7 files changed

+52
-10
lines changed

7 files changed

+52
-10
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.42.1"
18+
placeholder: "0.43.0"
1919
validations:
2020
required: true
2121
- type: checkboxes

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,48 @@ 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.43.0 (2024-12-10)
9+
10+
### ✨ New
11+
12+
- [#2482](https://github.com/meltano/sdk/issues/2482) Allow SQL tap developers to auto-skip certain schemas from discovery
13+
- [#2784](https://github.com/meltano/sdk/issues/2784) Added a new built-in setting `activate_version` for targets to optionally disable processing of `ACTIVATE_VERSION` messages
14+
- [#2780](https://github.com/meltano/sdk/issues/2780) Numeric values are now parsed as `decimal.Decimal` in REST and GraphQL stream responses
15+
- [#2775](https://github.com/meltano/sdk/issues/2775) Log a stream's bookmark (if it's avaiable) when its sync starts
16+
- [#2703](https://github.com/meltano/sdk/issues/2703) Targets now emit record count from the built-in batch file processor
17+
- [#2774](https://github.com/meltano/sdk/issues/2774) Accept a `maxLength` limit for VARCHARs
18+
- [#2769](https://github.com/meltano/sdk/issues/2769) Add `versioning-strategy` to dependabot config of Cookiecutter templates
19+
- [#2765](https://github.com/meltano/sdk/issues/2765) The last received Singer message is now logged when the target fails
20+
- [#2762](https://github.com/meltano/sdk/issues/2762) Support other content-types in REST streams
21+
22+
### 🐛 Fixes
23+
24+
- [#2790](https://github.com/meltano/sdk/issues/2790) Ensure the required global folder tap settings are merged into the concrete implementation settings
25+
- [#2785](https://github.com/meltano/sdk/issues/2785) Use FS-specific `listdir` in folder tap
26+
- [#2778](https://github.com/meltano/sdk/issues/2778) The path of the offending field is now printed for config validation errors
27+
- [#2770](https://github.com/meltano/sdk/issues/2770) Respect standard Singer stream metadata `table-key-properties`, `replication-key` and `forced-replication-method`
28+
- [#2755](https://github.com/meltano/sdk/issues/2755) Safely compare UUID replication keys with state bookmarks -- _**Thanks @nikzavada!**_
29+
30+
### ⚙️ Under the Hood
31+
32+
- [#2805](https://github.com/meltano/sdk/issues/2805) Rename setting `activate_version` to `process_activate_version_messages`
33+
- [#2788](https://github.com/meltano/sdk/issues/2788) Fail early if input files to `--catalog` or `--state` do not exist
34+
- [#2781](https://github.com/meltano/sdk/issues/2781) Added a class method to instantiate `SQLToJSONSchema` from the tap configuration
35+
- [#2566](https://github.com/meltano/sdk/issues/2566) Standardize on JSON Schema Draft 2020-12 to validate stream schemas
36+
- [#2751](https://github.com/meltano/sdk/issues/2751) Dropped support for Python 3.8
37+
38+
### ⚡ Performance Improvements
39+
40+
- [#2793](https://github.com/meltano/sdk/issues/2793) Improved discovery performance for SQL taps
41+
42+
### 📚 Documentation Improvements
43+
44+
- [#2796](https://github.com/meltano/sdk/issues/2796) Document how to configure nested stream maps values with environment variables in Meltano
45+
46+
### 📦 Packaging changes
47+
48+
- [#2797](https://github.com/meltano/sdk/issues/2797) SQL taps now require SQLAlchemy 2.0+
49+
850
## v0.42.1 (2024-11-11)
951

1052
### 🐛 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.9"
34-
singer-sdk = { version="~=0.42.1"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
34+
singer-sdk = { version="~=0.43.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 = ">=8"
39-
singer-sdk = { version="~=0.42.1", extras = ["testing"] }
39+
singer-sdk = { version="~=0.43.0", extras = ["testing"] }
4040

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

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

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

3131
[tool.poetry.dependencies]
3232
python = ">=3.9"
33-
singer-sdk = { version="~=0.42.1", extras = [
33+
singer-sdk = { version="~=0.43.0", extras = [
3434
{%- if cookiecutter.auth_method == "JWT" -%}"jwt", {% endif -%}
3535
{%- if cookiecutter.faker_extra -%}"faker",{%- endif -%}
3636
] }
@@ -45,9 +45,9 @@ sqlalchemy = "~=2.0.36"
4545
[tool.poetry.group.dev.dependencies]
4646
pytest = ">=8"
4747
{%- if cookiecutter.auth_method == "JWT" %}
48-
singer-sdk = { version="~=0.42.1", extras = ["jwt", "testing"] }
48+
singer-sdk = { version="~=0.43.0", extras = ["jwt", "testing"] }
4949
{%- else %}
50-
singer-sdk = { version="~=0.42.1", extras = ["testing"] }
50+
singer-sdk = { version="~=0.43.0", extras = ["testing"] }
5151
{%- endif %}
5252

5353
[tool.poetry.extras]

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.9"
33-
singer-sdk = { version="~=0.42.1"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
33+
singer-sdk = { version="~=0.43.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.32.3"
3737
{%- endif %}
3838

3939
[tool.poetry.dev-dependencies]
4040
pytest = ">=8"
41-
singer-sdk = { version="~=0.42.1", extras = ["testing"] }
41+
singer-sdk = { version="~=0.43.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
@@ -29,7 +29,7 @@
2929
author = "Meltano Core Team and Contributors"
3030

3131
# The full version, including alpha/beta/rc tags
32-
release = "0.42.1"
32+
release = "0.43.0"
3333

3434

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

pyproject.toml

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

188188
[tool.commitizen]
189189
name = "cz_version_bump"
190-
version = "0.42.1"
190+
version = "0.43.0"
191191
changelog_merge_prerelease = true
192192
prerelease_offset = 1
193193
tag_format = "v$major.$minor.$patch$prerelease"

0 commit comments

Comments
 (0)