From 5d5c2dd22f358637ca97b9ae778add25b655cbc7 Mon Sep 17 00:00:00 2001 From: netcode-automation Date: Sun, 19 Jul 2026 10:25:14 +0000 Subject: [PATCH 1/2] Updated changelog and package version for Netcode in anticipation of v2.13.1 release --- com.unity.netcode.gameobjects/CHANGELOG.md | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/com.unity.netcode.gameobjects/CHANGELOG.md b/com.unity.netcode.gameobjects/CHANGELOG.md index 2f88b9e7a2..b1a721e354 100644 --- a/com.unity.netcode.gameobjects/CHANGELOG.md +++ b/com.unity.netcode.gameobjects/CHANGELOG.md @@ -6,21 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) Additional documentation and release notes are available at [Multiplayer Documentation](https://docs-multiplayer.unity3d.com). -## [Unreleased] +## [2.13.1] - 2026-07-19 ### Added - Single player session section to provide users with information about `SinglePlayerTransport` and an example script of how to switch between single and multi player sessions. (#4062) -### Changed - - -### Deprecated - - -### Removed - - ### Fixed - Issue where `NetworkAnimator` did no bounds check on the parameter index read prior to obtaining a pointer to the location within the array. (#4090) @@ -33,12 +24,6 @@ Additional documentation and release notes are available at [Multiplayer Documen - Issue where NetworkRigidbodyBase was always checking the 3D rigid body's interpolation mode when determining if it is kinematic and needs to put the rigid body to sleep and then switch to interpolation. (#4012) - Fixed AnticipatedNetworkTransform not respecting the InLocalSpace flag. (#3995) -### Security - - -### Obsolete - - ## [2.13.0] - 2026-06-21 ### Added From d0ab9f1a485af14feff90b9a442eafc6d6350701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Chrobot?= Date: Tue, 21 Jul 2026 13:31:34 +0200 Subject: [PATCH 2/2] typo in build automation --- Tools/scripts/BuildAutomation/manifest_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/scripts/BuildAutomation/manifest_update.py b/Tools/scripts/BuildAutomation/manifest_update.py index 0ad8913b8e..1597e2bc39 100644 --- a/Tools/scripts/BuildAutomation/manifest_update.py +++ b/Tools/scripts/BuildAutomation/manifest_update.py @@ -51,7 +51,7 @@ def main(): # Extract the version, providing a default if not found local_package_version = local_package_data.get('version', 'N/A') - print(f"--> Verified local '{args.package-name}' version is: {local_package_version}") + print(f"--> Verified local '{args.package_name}' version is: {local_package_version}") except FileNotFoundError: print(f"Warning: Could not find package.json at '{local_package_json_path}'")