Skip to content

Commit 88502b0

Browse files
committed
Nakama 3.20.0 release.
1 parent 7256263 commit 88502b0

File tree

14 files changed

+57
-38
lines changed

14 files changed

+57
-38
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,20 @@ All notable changes to this project are documented below.
44
The format is based on [keep a changelog](http://keepachangelog.com) and this project uses [semantic versioning](http://semver.org).
55

66
## [Unreleased]
7+
8+
## [3.20.0] - 2023-12-15
79
### Changed
8-
- JS localcachePut now only accepts primitive types, other values will throw an error.
9-
- Storage search index list max limit increased from 100 to 10000 results.
10+
- JavaScript runtime `localcachePut` now only accepts primitive types, other values will throw an error.
11+
- Storage search index list max limit increased from 100 to 10,000 results.
12+
- Upgrade GRPC-Gateway, Tally, Zap, crypto, oauth2, GRPC, and related dependencies.
13+
- Build with Go 1.21.5.
14+
15+
### Fixed
16+
- Fix pointer slices assertions in JavaScript runtime Nakama module function arguments.
17+
- Fix caller ID parameter index in Lua runtime `storage_list` function.
18+
- Fix incorrect GOARCH flag in Dockerfiles for arm64.
1019

11-
## [3.19.0] 2023-11-11
20+
## [3.19.0] - 2023-11-11
1221
### Added
1322
- Add IAP purchase validation support for Facebook Instant Games.
1423
- Add Lua runtime function to clear all localcache data.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/gorilla/mux v1.8.1
1717
github.com/gorilla/websocket v1.5.1
1818
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1
19-
github.com/heroiclabs/nakama-common v1.30.0
19+
github.com/heroiclabs/nakama-common v1.30.1
2020
github.com/jackc/pgconn v1.14.1
2121
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
2222
github.com/jackc/pgtype v1.14.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ github.com/gorilla/websocket v1.5.1/go.mod h1:x3kM2JMyaluk02fnUJpQuwD2dCS5NDG2ZH
155155
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 h1:6UKoz5ujsI55KNpsJH3UwCq3T8kKbZwNZBNPuTTje8U=
156156
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1/go.mod h1:YvJ2f6MplWDhfxiUC3KpyTy76kYUZA4W3pTv/wdKQ9Y=
157157
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
158-
github.com/heroiclabs/nakama-common v1.30.0 h1:8FvEyHZXDbnbJRCDIw7LfOVn5TvNV5ev95DTWuUlZ8Q=
159-
github.com/heroiclabs/nakama-common v1.30.0/go.mod h1:Os8XeXGvHAap/p6M/8fQ3gle4eEXDGRQmoRNcPQTjXs=
158+
github.com/heroiclabs/nakama-common v1.30.1 h1:2lnP71Rgix/WDbvq4hQ2EoecEiItJtMHcRLdZXpUpeo=
159+
github.com/heroiclabs/nakama-common v1.30.1/go.mod h1:Os8XeXGvHAap/p6M/8fQ3gle4eEXDGRQmoRNcPQTjXs=
160160
github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2/go.mod h1:aYm2/VgdVmcIU8iMfdMvDMsRAQjcfZSKFby6HOFvi/w=
161161
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
162162
github.com/influxdata/influxdb v1.7.6/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY=

vendor/github.com/felixge/httpsnoop/wrap_generated_gteq_1.8.go

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/felixge/httpsnoop/wrap_generated_lt_1.8.go

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/jackc/pgconn/config.go

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)