Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#230529
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed May 30, 2023
2 parents 261d508 + 7195e7b commit bf2d245
Show file tree
Hide file tree
Showing 21 changed files with 127 additions and 31 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.189.230512.jar -Destination ../../builds/client-sdk-0.189.230512.jar
Copy-Item client-sdk-0.190.230529.jar -Destination ../../builds/client-sdk-0.190.230529.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.189.230512.jar ../../builds/client-sdk-0.189.230512.jar
cp client-sdk-0.190.230529.jar ../../builds/client-sdk-0.190.230529.jar
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public static enum AzureVmFamily {
Fsv2,
Dasv4,
Dav4,
Dadsv5,
Eav4,
Easv4,
Ev4,
Expand Down Expand Up @@ -117,6 +118,10 @@ public static enum AzureVmSize {
Standard_D4a_v4,
Standard_D8a_v4,
Standard_D16a_v4,
Standard_D2ads_v5,
Standard_D4ads_v5,
Standard_D8ads_v5,
Standard_D16ads_v5,
Standard_E2a_v4,
Standard_E4a_v4,
Standard_E8a_v4,
Expand Down Expand Up @@ -1449,12 +1454,14 @@ public static class GetMultiplayerServerDetailsResponse {
public ArrayList<ConnectedPlayer> ConnectedPlayers;
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
public String FQDN;
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
public String IPV4Address;
/** The time (UTC) at which a change in the multiplayer server state was observed. */
public Date LastStateTransitionTime;
/** The ports the multiplayer server uses. */
public ArrayList<Port> Ports;
/** The list of public Ipv4 addresses associated with the server. */
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
/** The region the multiplayer server is located in. */
public String Region;
/** The string server ID of the multiplayer server generated by PlayFab. */
Expand Down Expand Up @@ -2217,6 +2224,16 @@ public static enum ProtocolType {
UDP
}

public static class PublicIpAddress {
/** FQDN of the public IP */
public String FQDN;
/** Server IP Address */
public String IpAddress;
/** Routing Type of the public IP. */
public String RoutingType;

}

public static class QosServer {
/** The region the QoS server is located in. */
public String Region;
Expand Down Expand Up @@ -2294,12 +2311,14 @@ public static class RequestMultiplayerServerResponse {
public ArrayList<ConnectedPlayer> ConnectedPlayers;
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
public String FQDN;
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
public String IPV4Address;
/** The time (UTC) at which a change in the multiplayer server state was observed. */
public Date LastStateTransitionTime;
/** The ports the multiplayer server uses. */
public ArrayList<Port> Ports;
/** The list of public Ipv4 addresses associated with the server. */
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
/** The region the multiplayer server is located in. */
public String Region;
/** The string server ID of the multiplayer server generated by PlayFab. */
Expand Down Expand Up @@ -2333,6 +2352,11 @@ public static class RolloverContainerRegistryCredentialsResponse {

}

public static enum RoutingType {
Microsoft,
Internet
}

public static class Schedule {
/** A short description about this schedule. For example, "Game launch on July 15th". */
public String Description;
Expand Down
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.189.230512";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.189.230512";
public static String SdkVersion = "0.190.230529";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.190.230529";

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.189.230512.jar -Destination ../../builds/client-sdk-0.189.230512.jar
Copy-Item client-sdk-0.190.230529.jar -Destination ../../builds/client-sdk-0.190.230529.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.189.230512.jar ../../builds/client-sdk-0.189.230512.jar
cp client-sdk-0.190.230529.jar ../../builds/client-sdk-0.190.230529.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.189.230512</version>
<version>0.190.230529</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 @@ -70,6 +70,7 @@ public static enum AzureVmFamily {
Fsv2,
Dasv4,
Dav4,
Dadsv5,
Eav4,
Easv4,
Ev4,
Expand Down Expand Up @@ -117,6 +118,10 @@ public static enum AzureVmSize {
Standard_D4a_v4,
Standard_D8a_v4,
Standard_D16a_v4,
Standard_D2ads_v5,
Standard_D4ads_v5,
Standard_D8ads_v5,
Standard_D16ads_v5,
Standard_E2a_v4,
Standard_E4a_v4,
Standard_E8a_v4,
Expand Down Expand Up @@ -1449,12 +1454,14 @@ public static class GetMultiplayerServerDetailsResponse {
public ArrayList<ConnectedPlayer> ConnectedPlayers;
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
public String FQDN;
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
public String IPV4Address;
/** The time (UTC) at which a change in the multiplayer server state was observed. */
public Date LastStateTransitionTime;
/** The ports the multiplayer server uses. */
public ArrayList<Port> Ports;
/** The list of public Ipv4 addresses associated with the server. */
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
/** The region the multiplayer server is located in. */
public String Region;
/** The string server ID of the multiplayer server generated by PlayFab. */
Expand Down Expand Up @@ -2217,6 +2224,16 @@ public static enum ProtocolType {
UDP
}

public static class PublicIpAddress {
/** FQDN of the public IP */
public String FQDN;
/** Server IP Address */
public String IpAddress;
/** Routing Type of the public IP. */
public String RoutingType;

}

public static class QosServer {
/** The region the QoS server is located in. */
public String Region;
Expand Down Expand Up @@ -2294,12 +2311,14 @@ public static class RequestMultiplayerServerResponse {
public ArrayList<ConnectedPlayer> ConnectedPlayers;
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
public String FQDN;
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
public String IPV4Address;
/** The time (UTC) at which a change in the multiplayer server state was observed. */
public Date LastStateTransitionTime;
/** The ports the multiplayer server uses. */
public ArrayList<Port> Ports;
/** The list of public Ipv4 addresses associated with the server. */
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
/** The region the multiplayer server is located in. */
public String Region;
/** The string server ID of the multiplayer server generated by PlayFab. */
Expand Down Expand Up @@ -2333,6 +2352,11 @@ public static class RolloverContainerRegistryCredentialsResponse {

}

public static enum RoutingType {
Microsoft,
Internet
}

public static class Schedule {
/** A short description about this schedule. For example, "Game launch on July 15th". */
public String Description;
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.189.230512";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.189.230512";
public static String SdkVersion = "0.190.230529";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.190.230529";

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.189.230512.jar -Destination ../../builds/combo-sdk-0.189.230512.jar
Copy-Item combo-sdk-0.190.230529.jar -Destination ../../builds/combo-sdk-0.190.230529.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.189.230512.jar ../../builds/combo-sdk-0.189.230512.jar
cp combo-sdk-0.190.230529.jar ../../builds/combo-sdk-0.190.230529.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.189.230512</version>
<version>0.190.230529</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
28 changes: 26 additions & 2 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabMultiplayerModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public static enum AzureVmFamily {
Fsv2,
Dasv4,
Dav4,
Dadsv5,
Eav4,
Easv4,
Ev4,
Expand Down Expand Up @@ -117,6 +118,10 @@ public static enum AzureVmSize {
Standard_D4a_v4,
Standard_D8a_v4,
Standard_D16a_v4,
Standard_D2ads_v5,
Standard_D4ads_v5,
Standard_D8ads_v5,
Standard_D16ads_v5,
Standard_E2a_v4,
Standard_E4a_v4,
Standard_E8a_v4,
Expand Down Expand Up @@ -1449,12 +1454,14 @@ public static class GetMultiplayerServerDetailsResponse {
public ArrayList<ConnectedPlayer> ConnectedPlayers;
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
public String FQDN;
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
public String IPV4Address;
/** The time (UTC) at which a change in the multiplayer server state was observed. */
public Date LastStateTransitionTime;
/** The ports the multiplayer server uses. */
public ArrayList<Port> Ports;
/** The list of public Ipv4 addresses associated with the server. */
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
/** The region the multiplayer server is located in. */
public String Region;
/** The string server ID of the multiplayer server generated by PlayFab. */
Expand Down Expand Up @@ -2217,6 +2224,16 @@ public static enum ProtocolType {
UDP
}

public static class PublicIpAddress {
/** FQDN of the public IP */
public String FQDN;
/** Server IP Address */
public String IpAddress;
/** Routing Type of the public IP. */
public String RoutingType;

}

public static class QosServer {
/** The region the QoS server is located in. */
public String Region;
Expand Down Expand Up @@ -2294,12 +2311,14 @@ public static class RequestMultiplayerServerResponse {
public ArrayList<ConnectedPlayer> ConnectedPlayers;
/** The fully qualified domain name of the virtual machine that is hosting this multiplayer server. */
public String FQDN;
/** The IPv4 address of the virtual machine that is hosting this multiplayer server. */
/** The public IPv4 address of the virtual machine that is hosting this multiplayer server. */
public String IPV4Address;
/** The time (UTC) at which a change in the multiplayer server state was observed. */
public Date LastStateTransitionTime;
/** The ports the multiplayer server uses. */
public ArrayList<Port> Ports;
/** The list of public Ipv4 addresses associated with the server. */
public ArrayList<PublicIpAddress> PublicIPV4Addresses;
/** The region the multiplayer server is located in. */
public String Region;
/** The string server ID of the multiplayer server generated by PlayFab. */
Expand Down Expand Up @@ -2333,6 +2352,11 @@ public static class RolloverContainerRegistryCredentialsResponse {

}

public static enum RoutingType {
Microsoft,
Internet
}

public static class Schedule {
/** A short description about this schedule. For example, "Game launch on July 15th". */
public String Description;
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.189.230512";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.189.230512";
public static String SdkVersion = "0.190.230529";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.190.230529";

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.189.230512.jar -Destination ../../builds/server-sdk-0.189.230512.jar
Copy-Item server-sdk-0.190.230529.jar -Destination ../../builds/server-sdk-0.190.230529.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.189.230512.jar ../../builds/server-sdk-0.189.230512.jar
cp server-sdk-0.190.230529.jar ../../builds/server-sdk-0.190.230529.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.189.230512</version>
<version>0.190.230529</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
Loading

0 comments on commit bf2d245

Please sign in to comment.