Loading CHANGELOG.md +2 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,8 @@ 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] ## [1.3.0] - 2017-11-21 ### Added - Improve graceful shutdown behaviour by ensuring the server stops accepting connections before halting other components. - Add User-Agent to the default list of accepted CORS request headers. Loading Makefile +1 −1 Original line number Diff line number Diff line Loading @@ -13,7 +13,7 @@ # limitations under the License. BINNAME := nakama VERSION := 1.3.0-dev VERSION := 1.3.0 BUILDDIR := build COMMITID := $(shell git rev-parse --short HEAD 2>/dev/null || echo nosha) DOCKERDIR := install/docker/nakama Loading tests/core_storage_test.go +3 −3 Original line number Diff line number Diff line Loading @@ -2624,9 +2624,9 @@ func TestStorageListRuntimeUser(t *testing.T) { assert.Equal(t, 0, int(code), "code was not 0") assert.NotNil(t, values, "values was nil") assert.Len(t, values, 3, "values length was not 3") assert.Equal(t, "c", values[0].Record, "values[0].Record was not c") assert.Equal(t, "a", values[1].Record, "values[1].Record was not a") assert.Equal(t, "b", values[2].Record, "values[2].Record was not b") assert.Equal(t, "a", values[0].Record, "values[0].Record was not a") assert.Equal(t, "b", values[1].Record, "values[1].Record was not b") assert.Equal(t, "c", values[2].Record, "values[2].Record was not c") assert.Equal(t, "", cursor, "cursor was not nil") } Loading Loading
CHANGELOG.md +2 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,8 @@ 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] ## [1.3.0] - 2017-11-21 ### Added - Improve graceful shutdown behaviour by ensuring the server stops accepting connections before halting other components. - Add User-Agent to the default list of accepted CORS request headers. Loading
Makefile +1 −1 Original line number Diff line number Diff line Loading @@ -13,7 +13,7 @@ # limitations under the License. BINNAME := nakama VERSION := 1.3.0-dev VERSION := 1.3.0 BUILDDIR := build COMMITID := $(shell git rev-parse --short HEAD 2>/dev/null || echo nosha) DOCKERDIR := install/docker/nakama Loading
tests/core_storage_test.go +3 −3 Original line number Diff line number Diff line Loading @@ -2624,9 +2624,9 @@ func TestStorageListRuntimeUser(t *testing.T) { assert.Equal(t, 0, int(code), "code was not 0") assert.NotNil(t, values, "values was nil") assert.Len(t, values, 3, "values length was not 3") assert.Equal(t, "c", values[0].Record, "values[0].Record was not c") assert.Equal(t, "a", values[1].Record, "values[1].Record was not a") assert.Equal(t, "b", values[2].Record, "values[2].Record was not b") assert.Equal(t, "a", values[0].Record, "values[0].Record was not a") assert.Equal(t, "b", values[1].Record, "values[1].Record was not b") assert.Equal(t, "c", values[2].Record, "values[2].Record was not c") assert.Equal(t, "", cursor, "cursor was not nil") } Loading