Commit 88502b00 authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Nakama 3.20.0 release.

parent 72562634
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
@@ -4,11 +4,20 @@ All notable changes to this project are documented below.
The format is based on [keep a changelog](http://keepachangelog.com) and this project uses [semantic versioning](http://semver.org).

## [Unreleased]

## [3.20.0] - 2023-12-15
### Changed
- JS localcachePut now only accepts primitive types, other values will throw an error.
- Storage search index list max limit increased from 100 to 10000 results.
- JavaScript runtime `localcachePut` now only accepts primitive types, other values will throw an error.
- Storage search index list max limit increased from 100 to 10,000 results.
- Upgrade GRPC-Gateway, Tally, Zap, crypto, oauth2, GRPC, and related dependencies.
- Build with Go 1.21.5.

### Fixed
- Fix pointer slices assertions in JavaScript runtime Nakama module function arguments.
- Fix caller ID parameter index in Lua runtime `storage_list` function.
- Fix incorrect GOARCH flag in Dockerfiles for arm64.

## [3.19.0] 2023-11-11
## [3.19.0] - 2023-11-11
### Added
- Add IAP purchase validation support for Facebook Instant Games.
- Add Lua runtime function to clear all localcache data.
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ require (
	github.com/gorilla/mux v1.8.1
	github.com/gorilla/websocket v1.5.1
	github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1
	github.com/heroiclabs/nakama-common v1.30.0
	github.com/heroiclabs/nakama-common v1.30.1
	github.com/jackc/pgconn v1.14.1
	github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
	github.com/jackc/pgtype v1.14.0
+2 −2
+0 −2
Original line number Diff line number Diff line
//go:build go1.8
// +build go1.8

// Code generated by "httpsnoop/codegen"; DO NOT EDIT

package httpsnoop
+0 −2
Original line number Diff line number Diff line
//go:build !go1.8
// +build !go1.8

// Code generated by "httpsnoop/codegen"; DO NOT EDIT

package httpsnoop
Loading