Commit 103beb4a authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Runtime link and unlink functions.

parent 8deab9e7
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Expose session fields in authoritative match join attempt contexts.
- Add group ID to content of in-app notifications relating to groups.
- New runtime function to get a single match by ID.
- New runtime functions for link operations.

### Changed
- Replace metrics implementation.
@@ -19,6 +20,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Developer console status snapshot gauges more accurately reflect current server metrics.
- Disconnect match participants when an authoritative match ends due to an error.
- Build with Go 1.14.3 release.
- Update to nakama-common 1.5.0.

### Fixed
- Ensure runtime environment values do not appear multiple times in the devconsole configuration view.
@@ -26,6 +28,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Developer console status graphs correctly show a fixed time window of metrics.
- Expose friend deletion in developer console user detail view.
- Expose group membership deletion in developer console user detail view.
- Password is no longer expected when unlinking emails.

## [2.11.1] - 2020-03-29
### Changed
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ require (
	github.com/gorilla/mux v1.7.4
	github.com/gorilla/websocket v1.4.2
	github.com/grpc-ecosystem/grpc-gateway v1.13.0
	github.com/heroiclabs/nakama-common v1.4.0
	github.com/heroiclabs/nakama-common v1.5.0
	github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
	github.com/jackc/pgx v3.5.0+incompatible
	github.com/jmhodges/levigo v1.0.0 // indirect
+2 −4
Original line number Diff line number Diff line
@@ -80,8 +80,6 @@ github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.3.3 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I=
github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
github.com/golang/protobuf v1.3.4 h1:87PNWwrRvUSnqS4dlcBU/ftvOIBep4sYuBLlh6rX2wk=
github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
github.com/golang/protobuf v1.3.5 h1:F768QJ1E9tib+q5Sc8MkdJi1RxLTbRcTf8LJV56aRls=
github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk=
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
@@ -102,8 +100,8 @@ github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/ad
github.com/grpc-ecosystem/grpc-gateway v1.13.0 h1:sBDQoHXrOlfPobnKw69FIKa1wg9qsLLvvQ/Y19WtFgI=
github.com/grpc-ecosystem/grpc-gateway v1.13.0/go.mod h1:8XEsbTttt/W+VvjtQhLACqCisSPWTxCZ7sBRjU6iH9c=
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
github.com/heroiclabs/nakama-common v1.4.0 h1:7IRb+FIYKa4iOY08lTVmZ5kHHNaDNWEQE9+w4bWNdCU=
github.com/heroiclabs/nakama-common v1.4.0/go.mod h1:0lw1qUs5FhJlox1WsEPdODRsdvfZ7Q1c/2jxkbeL++M=
github.com/heroiclabs/nakama-common v1.5.0 h1:AdTdt/sYvbi5vf3Q0y2YJQhCxAW1mZpCQPbjr26OUIg=
github.com/heroiclabs/nakama-common v1.5.0/go.mod h1:nZAXHdeo4SyPlCyf7pU9rCVizxEhBF74gt7teDe/EaQ=
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
+49 −289

File changed.

Preview size limit exceeded, changes collapsed.

+48 −281

File changed.

Preview size limit exceeded, changes collapsed.

Loading