Skip to content

Commit 0d0ac75

Browse files
committed
Preparing 0.20.0
1 parent 417eafd commit 0d0ac75

File tree

6 files changed

+32
-0
lines changed

6 files changed

+32
-0
lines changed

CHANGES.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# Apache Thrift Changelog
23

34
## 0.20.0
@@ -33,6 +34,12 @@
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
@@ -54,6 +61,9 @@
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

Makefile.am

+6
Original file line numberDiff line numberDiff 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 \

lib/go/test/Makefile.am

+2
Original file line numberDiff line numberDiff 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 \

test/Makefile.am

+2
Original file line numberDiff line numberDiff 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 \

test/go/Makefile.am

+2
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,6 @@ genmock: gopath
6363
EXTRA_DIST = \
6464
src/bin \
6565
src/common \
66+
go.mod \
67+
go.sum \
6668
genmock.sh

tutorial/swift/Makefile.am

+10
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,13 @@ tutorialserver: gen_swift
3131

3232
tutorialclient: 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+

0 commit comments

Comments
 (0)