> For the complete documentation index, see [llms.txt](https://docs.edgegap.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.edgegap.com/docs/release-notes.md).

# Release Notes

{% hint style="info" %}
View older Release Notes in our [Archive](/docs/release-notes/archive.md).
{% endhint %}

### 2026.06.11 (Latest)

![](/files/a1kT40Kzvb0tyEB9XYOL)

**New ✨**

* [Unity SDK](/unity/developer-tools.md#software-development-kit) v3.2.2 brings full Matchmaking integration for Group Up flow and various [observable event](/unity/matchmaking.md#observe-events) additions related to Groups. Explore updated [Matchmaking](/unity/matchmaking.md#simple-example) and a brand new [Matchmaking](/unity/matchmaking.md#region-picker) to draw inspiration for manual region selection UI. Stay tuned for more examples and updates coming soon!

***

### 2026.06.01

![](/files/A75cRNsLJqiKuGN3ybwe) ![](/files/vCSBzlo4GmMkPxotRWoW)

**New ✨**

* Test deployments using our [new wizard UI ](https://app.edgegap.com/deployment-management/deployments/create)(now supports private fleets).
* View allocated resources directly on deployment details page.

**Improvements 💪**

* Unified billing forms for easier billing details' changes.

**Fixed ✔**

* Fixed a minor private fleet host pinning issue.
* Fixed broken links in the release notes.

***

### 2026.05.19

![](/files/A75cRNsLJqiKuGN3ybwe)

**New ✨**

* Prevent losing track of autorestarted servers caused by running out of memory or unexpected error - configure [Process Restart Policies](/learn/orchestration/application-and-versions.md#safety-guardrails) for your app version in dashboard or with API.
* [Configure billing alerts](https://app.edgegap.com/notifications) to receive emails when on-demand cost exceeds custom thresholds.

**Improvements 💪**

* Improved visual indication for inviting members on the [Settings page](https://app.edgegap.com/user-settings?tab=organizations).

**Fixed ✔**

* Fixed overlapping map and delete modal in the create scaling policy section on the Server Browser page.

***

### 2026.05.13

![](/files/a1kT40Kzvb0tyEB9XYOL) ![](/files/vB2zNNVOm174oel9ustB) ![](/files/0lRCbvAkph29qqVn3IuX) ![](/files/vCSBzlo4GmMkPxotRWoW)

**New ✨**

[Unity SDK](/unity/developer-tools.md#software-development-kit) v3.0.0, introducing a major update:

* Introducing [Server Browser SDK features](/unity/server-browser.md) with full integration examples for server and client.
* New Unity integration and customization guides for [Matchmaking](/unity/matchmaking.md) and [Server Browser](/unity/server-browser.md).
* Stop servers and read [Injected Variables](/learn/matchmaking/matchmaker-in-depth.md#injected-variables) with expanded Matchmaking Simple Example.
* Stop servers and read [Deployments](/learn/orchestration/deployments.md#injected-environment-variables) with new Deployment Agent sample, supports projects which do not use Matchmaking or Server Browser.

[Server Browser](/learn/server-browser.md) v1.0.0, now entering General Availability:

* Find servers in your region quickly and easily with [Auto-Assigned Seat Reservations](/learn/server-browser.md#auto-assigned-reservation).
* Disable Scaling Policies temporarily by setting `status`  to `draft`  or `archive` .
* Update existing Scaling Policies with a new `PATCH`  method.

[Container Registry](/learn/advanced-features/edgegap-container-registry.md) improvements for Continuous Integrations:

* Bulk delete tags [with dashboard](https://app.edgegap.com/registry-management/repositories/list) (up to 20 tags) or with API (up to 50 tags).
* Request additional registry storage [with dashboard](https://app.edgegap.com/registry-management/repositories/list) :information\_source: icon.

**Breaking Changes** ⚠️

[Unity SDK](/unity/developer-tools.md#software-development-kit) v3.0.0 - in namespace `Edgegap.Matchmaking`:

* Merged method `Client._Abandon -> Client.StopMatchmaking` .
  * Low Impact - mostly customized client handler implementations.
  * Resolution - replace `_Abandon`  calls with `StopMatchmaking`  method.
* Merged event listener `onTicketUpdate -> onAssignmentUpdate`.
  * Low Impact - most implementations didn't need to use this listener.
  * Resolution - find and replace with [new events](/unity/matchmaking.md#client-events) under `onAssignmentUpdate`  listener.
* Decoupled `Ping` , `SafeHttpRequest` , and `Observable` . Moved to namespace `Edgegap` .
  * Low Impact - functionality remains the same, simply moved to another namespace.
  * Resolution - update import statements or namespaced references as needed.
* Removed caching feature due to poor console compatibility and onboarding friction.
  * Low Impact - crashed players may create duplicate tickets instead of resuming from cache.
  * Resolution - implement custom cache using `onAssignmentUpdate`  event listener.
* Renamed assembly `com.edgegap.unity-matchmaking-sdk -> com.edgegap.unity-sdk` .
  * Low Impact - some highly customized build pipelines referencing this SDK.
  * Resolution - update SDK assembly name references in your custom tools.

[Server Browser](/learn/server-browser.md) v1.0.0:

* Modified API path separator from `:` to `/`, specifically `:keep-alive` and `:confirmations`.
* Removed metadata update merging behavior - omitted keys will be removed.

**Improvements 💪**

[Server Browser](/learn/server-browser.md) v1.0.0:

* Added complete information of all slots to the `GET` server instance API response.
* Added more detailed service health indications in monitoring API.
* Various openapi specification improvements for examples and response codes.
* Improved error messages for scaling policy builder form in dashboard.

[Unity SDK](/unity/developer-tools.md#software-development-kit) v3.0.0 - in namespace `Edgegap.Matchmaking`:

* Mitigated duplicate tickets belonging to the same player by adding conflict detection.
* Exposed more matchmaking error events for custom error handling and UI integration.
* Improved customization and reuse by making all utilities scripts public.
* Simplified [parametrized events](/unity/matchmaking.md#client-events)' filtering with unified syntax, e.g. `updated [{status}]` .
* Improved customization for request backoff and retry parameters.

[Private Fleets](/learn/orchestration/private-fleets.md) improved operations:

* [List private fleet hosts API](/docs/api/dedicated-servers.md#private-fleets) now only returns active hosts (excl. hosts in maintenance).

Other improvements:

* Keep track of your releases with [Analytics](https://app.edgegap.com/analytics/dashboards/list) container count displaying up to 7 days of data.
* Display redacted billing page to unprivileged users in dashboard. Sensitive information still requires organization Administrator or Owner privileges (ask your organization owner).
* Deployment archive now uses a default filter unless a user-defined filter is available.

**Fixed ✔**

[Unity SDK](/unity/developer-tools.md#software-development-kit) v3.0.0:

* Improved reliability of matchmaking queue abandonment for sudden client exit - APIs no longer apply backoff waiting period on the first (non-retry) attempt.
* Prevented code stripping for Android and iOS builds using `AlwaysLinkAssembly`  annotation.

Other fixes:

* Prevent silent fail when bulk deleting versions including a version(s) used by a Matchmaker.
* Caching indicator will only show up once a version is saved with active caching enabled (UI fix).

***

### 2026.04.14

**New ✨**

* Manage your Scaling Policies now directly in Server Browser dashboard.
* View CPU throttling metrics in deployment history metrics to help identify applications with insufficient CPU allocation or code-related CPU spikes.
* [Billing page](https://app.edgegap.com/user-settings?tab=invoices) now shows a detailed breakdown of your usage and auto-renewals.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.edgegap.com/docs/release-notes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
