Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#221024
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Oct 24, 2022
2 parents 3f8335f + c81a68f commit 9036c5a
Show file tree
Hide file tree
Showing 22 changed files with 63 additions and 27 deletions.
2 changes: 1 addition & 1 deletion AndroidStudioExample/app/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item client-sdk-0.175.221010.jar -Destination ../../builds/client-sdk-0.175.221010.jar
Copy-Item client-sdk-0.176.221024.jar -Destination ../../builds/client-sdk-0.176.221024.jar
2 changes: 1 addition & 1 deletion AndroidStudioExample/app/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp client-sdk-0.175.221010.jar ../../builds/client-sdk-0.175.221010.jar
cp client-sdk-0.176.221024.jar ../../builds/client-sdk-0.176.221024.jar
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.175.221010";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.175.221010";
public static String SdkVersion = "0.176.221024";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.176.221024";

public static Map<String, String> RequestGetParams;
static {
Expand Down
2 changes: 1 addition & 1 deletion PlayFabClientSDK/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item client-sdk-0.175.221010.jar -Destination ../../builds/client-sdk-0.175.221010.jar
Copy-Item client-sdk-0.176.221024.jar -Destination ../../builds/client-sdk-0.176.221024.jar
2 changes: 1 addition & 1 deletion PlayFabClientSDK/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp client-sdk-0.175.221010.jar ../../builds/client-sdk-0.175.221010.jar
cp client-sdk-0.176.221024.jar ../../builds/client-sdk-0.176.221024.jar
2 changes: 1 addition & 1 deletion PlayFabClientSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- GAV & Meta -->
<groupId>com.playfab</groupId>
<artifactId>client-sdk</artifactId>
<version>0.175.221010</version>
<version>0.176.221024</version>
<name>PlayFab Client API</name>
<description>PlayFab is the unified backend platform for games — everything you need to build and operate your game, all in one place, so you can focus on creating and delivering a great player experience. </description>
<url>https://docs.microsoft.com/gaming/playfab/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.175.221010";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.175.221010";
public static String SdkVersion = "0.176.221024";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.176.221024";

public static Map<String, String> RequestGetParams;
static {
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item combo-sdk-0.175.221010.jar -Destination ../../builds/combo-sdk-0.175.221010.jar
Copy-Item combo-sdk-0.176.221024.jar -Destination ../../builds/combo-sdk-0.176.221024.jar
2 changes: 1 addition & 1 deletion PlayFabSDK/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp combo-sdk-0.175.221010.jar ../../builds/combo-sdk-0.175.221010.jar
cp combo-sdk-0.176.221024.jar ../../builds/combo-sdk-0.176.221024.jar
2 changes: 1 addition & 1 deletion PlayFabSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- GAV & Meta -->
<groupId>com.playfab</groupId>
<artifactId>combo-sdk</artifactId>
<version>0.175.221010</version>
<version>0.176.221024</version>
<name>PlayFab Combo API</name>
<description>PlayFab is the unified backend platform for games — everything you need to build and operate your game, all in one place, so you can focus on creating and delivering a great player experience. </description>
<url>https://docs.microsoft.com/gaming/playfab/</url>
Expand Down
11 changes: 10 additions & 1 deletion PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -2382,7 +2382,16 @@ public static class GetPlayersInSegmentRequest {
public String ContinuationToken;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/** Maximum number of profiles to load. Default is 1,000. Maximum is 10,000. */
/**
* If set to true, the profiles are loaded asynchronously and the response will include a continuation token and
* approximate profile count until the first batch of profiles is loaded. Use this parameter to help avoid network
* timeouts.
*/
public Boolean GetProfilesAsync;
/**
* Maximum is 10,000. The value 0 will prevent loading any profiles and return only the count of profiles matching this
* segment.
*/
public Long MaxBatchSize;
/**
* Number of seconds to keep the continuation token active. After token expiration it is not possible to continue paging
Expand Down
11 changes: 10 additions & 1 deletion PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -2285,7 +2285,16 @@ public static class GetPlayersInSegmentRequest {
public String ContinuationToken;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/** Maximum number of profiles to load. Default is 1,000. Maximum is 10,000. */
/**
* If set to true, the profiles are loaded asynchronously and the response will include a continuation token and
* approximate profile count until the first batch of profiles is loaded. Use this parameter to help avoid network
* timeouts.
*/
public Boolean GetProfilesAsync;
/**
* Maximum is 10,000. The value 0 will prevent loading any profiles and return only the count of profiles matching this
* segment.
*/
public Long MaxBatchSize;
/**
* Number of seconds to keep the continuation token active. After token expiration it is not possible to continue paging
Expand Down
6 changes: 3 additions & 3 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.175.221010";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.175.221010";
public static String SdkVersion = "0.176.221024";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.176.221024";

public static Map<String, String> RequestGetParams;
static {
Expand Down
2 changes: 1 addition & 1 deletion PlayFabServerSDK/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item server-sdk-0.175.221010.jar -Destination ../../builds/server-sdk-0.175.221010.jar
Copy-Item server-sdk-0.176.221024.jar -Destination ../../builds/server-sdk-0.176.221024.jar
2 changes: 1 addition & 1 deletion PlayFabServerSDK/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp server-sdk-0.175.221010.jar ../../builds/server-sdk-0.175.221010.jar
cp server-sdk-0.176.221024.jar ../../builds/server-sdk-0.176.221024.jar
2 changes: 1 addition & 1 deletion PlayFabServerSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- GAV & Meta -->
<groupId>com.playfab</groupId>
<artifactId>server-sdk</artifactId>
<version>0.175.221010</version>
<version>0.176.221024</version>
<name>PlayFab Server API</name>
<description>PlayFab is the unified backend platform for games — everything you need to build and operate your game, all in one place, so you can focus on creating and delivering a great player experience. </description>
<url>https://docs.microsoft.com/gaming/playfab/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2382,7 +2382,16 @@ public static class GetPlayersInSegmentRequest {
public String ContinuationToken;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/** Maximum number of profiles to load. Default is 1,000. Maximum is 10,000. */
/**
* If set to true, the profiles are loaded asynchronously and the response will include a continuation token and
* approximate profile count until the first batch of profiles is loaded. Use this parameter to help avoid network
* timeouts.
*/
public Boolean GetProfilesAsync;
/**
* Maximum is 10,000. The value 0 will prevent loading any profiles and return only the count of profiles matching this
* segment.
*/
public Long MaxBatchSize;
/**
* Number of seconds to keep the continuation token active. After token expiration it is not possible to continue paging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2285,7 +2285,16 @@ public static class GetPlayersInSegmentRequest {
public String ContinuationToken;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/** Maximum number of profiles to load. Default is 1,000. Maximum is 10,000. */
/**
* If set to true, the profiles are loaded asynchronously and the response will include a continuation token and
* approximate profile count until the first batch of profiles is loaded. Use this parameter to help avoid network
* timeouts.
*/
public Boolean GetProfilesAsync;
/**
* Maximum is 10,000. The value 0 will prevent loading any profiles and return only the count of profiles matching this
* segment.
*/
public Long MaxBatchSize;
/**
* Number of seconds to keep the continuation token active. After token expiration it is not possible to continue paging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.175.221010";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.175.221010";
public static String SdkVersion = "0.176.221024";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.176.221024";

public static Map<String, String> RequestGetParams;
static {
Expand Down
Binary file added builds/client-sdk-0.176.221024.jar
Binary file not shown.
Binary file added builds/combo-sdk-0.176.221024.jar
Binary file not shown.
Binary file added builds/server-sdk-0.176.221024.jar
Binary file not shown.

0 comments on commit 9036c5a

Please sign in to comment.