File tree 7 files changed +15
-9
lines changed
mapper-template/{{cookiecutter.mapper_id}}
tap-template/{{cookiecutter.tap_id}}
target-template/{{cookiecutter.target_id}}
7 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 13
13
attributes :
14
14
label : Singer SDK Version
15
15
description : Version of the library you are using
16
- placeholder : " 0.35.1 "
16
+ placeholder : " 0.35.2 "
17
17
validations :
18
18
required : true
19
19
- type : checkboxes
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## v0.35.2 (2024-02-19)
9
+
10
+ ### 🐛 Fixes
11
+
12
+ - [ #2252 ] ( https://github.com/meltano/sdk/issues/2252 ) Null type is now correctly appended as ` {"type": "null"} ` to ` oneOf ` types
13
+
8
14
## v0.35.1 (2024-02-15)
9
15
10
16
### 🐛 Fixes
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ packages = [
31
31
32
32
[tool .poetry .dependencies ]
33
33
python = " >=3.8"
34
- singer-sdk = { version =" ~=0.35.1 " {{ ', extras = [" faker" ]' if cookiecutter.faker_extra }} }
34
+ singer-sdk = { version =" ~=0.35.2 " {{ ', extras = [" faker" ]' if cookiecutter.faker_extra }} }
35
35
fs-s3fs = { version = " ~=1.1.1" , optional = true }
36
36
37
37
[tool .poetry .group .dev .dependencies ]
38
38
pytest = " >=7.4.0"
39
- singer-sdk = { version =" ~=0.35.1 " , extras = [" testing" ] }
39
+ singer-sdk = { version =" ~=0.35.2 " , extras = [" testing" ] }
40
40
41
41
[tool .poetry .extras ]
42
42
s3 = [" fs-s3fs" ]
Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ packages = [
31
31
[tool .poetry .dependencies ]
32
32
python = " >=3.8"
33
33
importlib-resources = { version = " ==6.1.*" , python = " <3.9" }
34
- singer-sdk = { version =" ~=0.35.1 " {{ ', extras = [" faker" ]' if cookiecutter.faker_extra }} }
34
+ singer-sdk = { version =" ~=0.35.2 " {{ ', extras = [" faker" ]' if cookiecutter.faker_extra }} }
35
35
fs-s3fs = { version = " ~=1.1.1" , optional = true }
36
36
{%- if cookiecutter.stream_type in ["REST", "GraphQL"] %}
37
37
requests = " ~=2.31.0"
38
38
{%- endif %}
39
39
40
40
[tool .poetry .group .dev .dependencies ]
41
41
pytest = " >=7.4.0"
42
- singer-sdk = { version =" ~=0.35.1 " , extras = [" testing" ] }
42
+ singer-sdk = { version =" ~=0.35.2 " , extras = [" testing" ] }
43
43
44
44
[tool .poetry .extras ]
45
45
s3 = [" fs-s3fs" ]
Original file line number Diff line number Diff line change @@ -30,15 +30,15 @@ packages = [
30
30
31
31
[tool .poetry .dependencies ]
32
32
python = " >=3.8"
33
- singer-sdk = { version =" ~=0.35.1 " {{ ', extras = [" faker" ]' if cookiecutter.faker_extra }} }
33
+ singer-sdk = { version =" ~=0.35.2 " {{ ', extras = [" faker" ]' if cookiecutter.faker_extra }} }
34
34
fs-s3fs = { version = " ~=1.1.1" , optional = true }
35
35
{%- if cookiecutter.serialization_method != "SQL" %}
36
36
requests = " ~=2.31.0"
37
37
{%- endif %}
38
38
39
39
[tool .poetry .dev-dependencies ]
40
40
pytest = " >=7.4.0"
41
- singer-sdk = { version =" ~=0.35.1 " , extras = [" testing" ] }
41
+ singer-sdk = { version =" ~=0.35.2 " , extras = [" testing" ] }
42
42
43
43
[tool .poetry .extras ]
44
44
s3 = [" fs-s3fs" ]
Original file line number Diff line number Diff line change 27
27
author = "Meltano Core Team and Contributors"
28
28
29
29
# The full version, including alpha/beta/rc tags
30
- release = "0.35.1 "
30
+ release = "0.35.2 "
31
31
32
32
33
33
# -- General configuration -------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ norecursedirs = "cookiecutter"
171
171
172
172
[tool .commitizen ]
173
173
name = " cz_version_bump"
174
- version = " 0.35.1 "
174
+ version = " 0.35.2 "
175
175
changelog_merge_prerelease = true
176
176
prerelease_offset = 1
177
177
tag_format = " v$major.$minor.$patch$prerelease"
You can’t perform that action at this time.
0 commit comments