File tree Expand file tree Collapse file tree 6 files changed +32
-0
lines changed
Expand file tree Collapse file tree 6 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+
12# Apache Thrift Changelog
23
34## 0.20.0
3334
3435- [THRIFT-5635]https://issues.apache.org/jira/browse/THRIFT-5635 - Replace some removed functions with new counterparts
3536
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+
3643### Haxe
3744
3845- [THRIFT-5734]https://issues.apache.org/jira/browse/THRIFT-5734 - generated code may lack required capitalization at class names
5461- [THRIFT-5754]https://issues.apache.org/jira/browse/THRIFT-5754 - Fix PHP 8.1 deprecates passing null to non-nullable internal function parameters
5562- [THRIFT-5753]https://issues.apache.org/jira/browse/THRIFT-5753 - PHP 8.1 deprecated warning about return type in jsonSerialize functions
5663
64+ ### Python
65+
66+ - [THRIFT-5688]https://issues.apache.org/jira/browse/THRIFT-5688 - Add PyPI publishing github actions
5767
5868## 0.19.0
5969
Original file line number Diff line number Diff line change @@ -141,6 +141,12 @@ EXTRA_DIST = \
141141 .flake8 \
142142 .gitattributes \
143143 .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 \
144150 .travis.yml \
145151 ApacheThrift.nuspec \
146152 appveyor.yml \
Original file line number Diff line number Diff line change @@ -138,6 +138,8 @@ EXTRA_DIST = \
138138 dontexportrwtest \
139139 tests \
140140 common \
141+ go.mod \
142+ go.sum \
141143 BinaryKeyTest.thrift \
142144 ClientMiddlewareExceptionTest.thrift \
143145 ConflictArgNamesTest.thrift \
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ EXTRA_DIST = \
144144 AnnotationTest.thrift \
145145 BrokenConstants.thrift \
146146 ConstantsDemo.thrift \
147+ v0.16/ConstantsDemo.thrift \
147148 DebugProtoTest.thrift \
148149 v0.16/DebugProtoTest.thrift \
149150 DenseLinkingTest.thrift \
@@ -159,6 +160,7 @@ EXTRA_DIST = \
159160 ManyOptionals.thrift \
160161 ManyTypedefs.thrift \
161162 NameConflictTest.thrift \
163+ v0.16/NameConflictTest.thrift \
162164 OptionalRequiredTest.thrift \
163165 Recursive.thrift \
164166 ReuseObjects.thrift \
Original file line number Diff line number Diff line change @@ -63,4 +63,6 @@ genmock: gopath
6363EXTRA_DIST = \
6464 src/bin \
6565 src/common \
66+ go.mod \
67+ go.sum \
6668 genmock.sh
Original file line number Diff line number Diff line change @@ -31,3 +31,13 @@ tutorialserver: gen_swift
3131
3232tutorialclient : gen_swift
3333 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