File tree 6 files changed +32
-0
lines changed
6 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+
1
2
# Apache Thrift Changelog
2
3
3
4
## 0.20.0
33
34
34
35
- [ THRIFT-5635] https://issues.apache.org/jira/browse/THRIFT-5635 - Replace some removed functions with new counterparts
35
36
37
+ ### Go
38
+
39
+ - [ THRIFT-5744] https://issues.apache.org/jira/browse/THRIFT-5744 - Switch to slog for go library
40
+ - [ THRIFT-5745] https://issues.apache.org/jira/browse/THRIFT-5745 - Implement slog.LogValuer on go TStructs
41
+
42
+
36
43
### Haxe
37
44
38
45
- [ THRIFT-5734] https://issues.apache.org/jira/browse/THRIFT-5734 - generated code may lack required capitalization at class names
54
61
- [ THRIFT-5754] https://issues.apache.org/jira/browse/THRIFT-5754 - Fix PHP 8.1 deprecates passing null to non-nullable internal function parameters
55
62
- [ THRIFT-5753] https://issues.apache.org/jira/browse/THRIFT-5753 - PHP 8.1 deprecated warning about return type in jsonSerialize functions
56
63
64
+ ### Python
65
+
66
+ - [ THRIFT-5688] https://issues.apache.org/jira/browse/THRIFT-5688 - Add PyPI publishing github actions
57
67
58
68
## 0.19.0
59
69
Original file line number Diff line number Diff line change @@ -141,6 +141,12 @@ EXTRA_DIST = \
141
141
.flake8 \
142
142
.gitattributes \
143
143
.gitignore \
144
+ .github/dependabot.yml \
145
+ .github/pull_request_template.md \
146
+ .github/stale.yml \
147
+ .github/workflows/build.yml \
148
+ .github/workflows/cmake.yml \
149
+ .github/workflows/pypi.yml \
144
150
.travis.yml \
145
151
ApacheThrift.nuspec \
146
152
appveyor.yml \
Original file line number Diff line number Diff line change @@ -138,6 +138,8 @@ EXTRA_DIST = \
138
138
dontexportrwtest \
139
139
tests \
140
140
common \
141
+ go.mod \
142
+ go.sum \
141
143
BinaryKeyTest.thrift \
142
144
ClientMiddlewareExceptionTest.thrift \
143
145
ConflictArgNamesTest.thrift \
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ EXTRA_DIST = \
144
144
AnnotationTest.thrift \
145
145
BrokenConstants.thrift \
146
146
ConstantsDemo.thrift \
147
+ v0.16/ConstantsDemo.thrift \
147
148
DebugProtoTest.thrift \
148
149
v0.16/DebugProtoTest.thrift \
149
150
DenseLinkingTest.thrift \
@@ -159,6 +160,7 @@ EXTRA_DIST = \
159
160
ManyOptionals.thrift \
160
161
ManyTypedefs.thrift \
161
162
NameConflictTest.thrift \
163
+ v0.16/NameConflictTest.thrift \
162
164
OptionalRequiredTest.thrift \
163
165
Recursive.thrift \
164
166
ReuseObjects.thrift \
Original file line number Diff line number Diff line change @@ -63,4 +63,6 @@ genmock: gopath
63
63
EXTRA_DIST = \
64
64
src/bin \
65
65
src/common \
66
+ go.mod \
67
+ go.sum \
66
68
genmock.sh
Original file line number Diff line number Diff line change @@ -31,3 +31,13 @@ tutorialserver: gen_swift
31
31
32
32
tutorialclient : gen_swift
33
33
swift run TutorialClient
34
+
35
+ EXTRA_DIST = \
36
+ Package.swift \
37
+ swift-dep \
38
+ Sources/TutorialClient/main.swift \
39
+ Sources/TutorialRunner/main.swift \
40
+ Sources/TutorialServer/main.swift \
41
+ Sources/TutorialServer/CalculatorService.swift \
42
+ README.md
43
+
You can’t perform that action at this time.
0 commit comments