Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
CHANGELOG

# 3.3.0 (06/18/2026)
- Adds the ListContainersNetworkInfo() server SDK action to retrieve network information for all containers running on the same instance of a managed container fleet, enabling container-to-container discovery.

# 3.2.1 (02/24/2026)
- Adds support for Unity 6.3 LTS to the plugin and server SDK.
- Adds Windows Server 2022 as a new operating system option in the deployment UI for managed EC2 fleets.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ Resources:
Key: !Ref BuildS3KeyParameter
RoleArn: !GetAtt BuildAccessRole.Arn
Version: !Ref BuildVersionParameter
ServerSdkVersion: 5.4.0
ServerSdkVersion: 5.5.0

FleetResource:
Type: "AWS::GameLift::Fleet"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ Resources:
Key: !Ref BuildS3KeyParameter
RoleArn: !GetAtt BuildAccessRole.Arn
Version: !Ref BuildVersionParameter
ServerSdkVersion: 5.4.0
ServerSdkVersion: 5.5.0

FlexMatchStatusPollerLambdaPermission:
Type: "AWS::Lambda::Permission"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ Resources:
GameServerContainerDefinition:
ContainerName: !Ref ContainerImageNameParameter
ImageUri: !Ref ContainerImageUriParameter
ServerSdkVersion: "5.4.0"
ServerSdkVersion: "5.5.0"
PortConfiguration:
ContainerPortRanges:
- FromPort: !Ref FleetTcpFromPortParameter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ Resources:
GameServerContainerDefinition:
ContainerName: !Ref ContainerImageNameParameter
ImageUri: !Ref ContainerImageUriParameter
ServerSdkVersion: "5.4.0"
ServerSdkVersion: "5.5.0"
PortConfiguration:
ContainerPortRanges:
- FromPort: !Ref FleetTcpFromPortParameter
Expand Down
2 changes: 1 addition & 1 deletion GameLiftPlugin/Resources/GameLiftPackageInfo.asset
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ MonoBehaviour:
m_Name: GameLiftPackageInfo
m_EditorClassIdentifier:
pluginName: Unity3D_com.amazonaws.gamelift
version: 3.2.1
version: 3.3.0
2 changes: 1 addition & 1 deletion GameLiftPlugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "com.amazonaws.gamelift",
"displayName": "Amazon GameLift Plugin for Unity",
"author": "Amazon.com, Inc.",
"version": "3.2.1",
"version": "3.3.0",
"unity": "2021.3",
"description": "The Amazon GameLift Plugin for Unity contains libraries and native UI that makes it easier to access GameLift resources and integrate GameLift into your Unity game. You can use the GameLift Unity Plugin to access GameLift APIs and deploy AWS CloudFormation templates for common gaming scenarios.",
"documentationUrl": "https://docs.aws.amazon.com/gamelift/latest/developerguide/unity-plug-in.html",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ MonoBehaviour:
m_Name: GameLiftCSharpSdkPackageInfo
m_EditorClassIdentifier: AmazonGameLiftSDKPlugin.Runtime:AmazonGameLift.Runtime:GameLiftCSharpSdkPackageInfo
pluginName: Unity3D_com.amazonaws.gameliftserver.sdk
version: 5.4.0
version: 5.5.0

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion GameLiftServerSDK/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "com.amazonaws.gameliftserver.sdk",
"displayName": "Amazon GameLift Server SDK",
"author": "Amazon.com, Inc.",
"version": "5.4.0",
"version": "5.5.0",
"unity": "2020.3",
"description": "The Amazon GameLift Server SDK Plugin for Unity contains source code to integrate Unity based game servers with the Amazon GameLift service.",
"documentationUrl": "https://aws.amazon.com/documentation/gamelift",
Expand Down
7 changes: 7 additions & 0 deletions GameLiftServerSDK/release-notes/5.5.0-release-notes.txt.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Scripts/setup_server_sdk.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

$SERVER_SDK_DOWNLOAD_URL = "https://github.com/amazon-gamelift/amazon-gamelift-servers-csharp-server-sdk/releases/download/v5.4.0/GameLift-CSharp-ServerSDK-5.4.0.zip"
$SERVER_SDK_DOWNLOAD_URL = "https://github.com/amazon-gamelift/amazon-gamelift-servers-csharp-server-sdk/releases/download/v5.5.0/GameLift-CSharp-ServerSDK-5.5.0.zip"
$CURRENT_DIRECTORY = Get-Location
$TEMP_FOLDER_PATH = Join-Path $CURRENT_DIRECTORY "Temp"
$DOWNLOADS_FOLDER_PATH = Join-Path $TEMP_FOLDER_PATH "downloads"
Expand Down
Loading