Skip to content

Commit 625e5b9

Browse files
author
Luke Gehorsam
authored
release 2.8.0 (#193)
1 parent efc74da commit 625e5b9

File tree

12 files changed

+2939
-697
lines changed

12 files changed

+2939
-697
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ The format is based on [keep a changelog](http://keepachangelog.com/) and this p
55

66
### Unreleased
77

8+
### [2.8.0]
9+
### Added
10+
- Nakama: Added ability to invoke `listFriendsOfFriends` on the client which returns a list of friends of the user's friends.
11+
- Nakama: Added a `rank_count` to `LeaderboardRecordList`.
12+
- Nakama: Added ability to invoke `listSubscriptions` on the client which lists all the user's validated subscriptions.
13+
- Nakama: Added ability to invoke `getSubscription` on the client which gets a subscription by product ID.
14+
- Nakama: Added ability to invoke `deleteAccount` on the client which deletes the user's account.
15+
- Nakama: Added ability to invoke `validatePurchaseFacebookInstant` on the client which validates a FB Instant IAP receipt.
16+
- Nakama: Added ability to invoke `deleteTournamentRecord` on the client which deletes a tournament record.
17+
- Nakama: Added ability to invoke `validateSubscriptionApple` and `validateSubscriptionGoogle` on the client which validates Apple and Google subscription receipts.
18+
- Nakama: Added `cursor` parameter to `listTournamentRecordsAroundOwner` and `listLeaderboardRecordsAroundOwner`.
19+
- Nakama: Added `authoritative` field to `Tournament`.
20+
- Nakama: Added ability to specify whether to `persist` purchases and subscriptions when validating their receipts.
21+
- Nakama: Added `create_time` and `update_time` to `ApiStorageObjectAck`.
22+
- Nakama: Added `refund_time`, `update_time` and `user_id` to `ApiValidatedPurchase`.
23+
24+
### Changed
25+
- Nakama: Changed `StreamId.descriptor` to `StreamId.subcontext`.
26+
827
### [2.7.0]
928
### Added
1029
- Satori: Added ability to schedule, update and delete outgoing messages for Live Events.

openapi-gen/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export enum {{ $classname | title }}
5050
export interface {{$classname | title}} {
5151
{{- range $key, $property := $definition.Properties}}
5252
{{- $fieldname := camelToSnake $key }}
53-
// {{- replace $property.Description "\n" " "}}
53+
// {{ replace $property.Description "\n" " "}}
5454
{{- if eq $property.Type "integer"}}
5555
{{$fieldname}}?: number;
5656
{{- else if eq $property.Type "number" }}

0 commit comments

Comments
 (0)