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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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] - yyyy-mm-dd
## [2.3.0] - 2023-09-07

### Changed
* Upgraded editor version to 2022.3.7f1 (#855)
Expand Down
8 changes: 7 additions & 1 deletion Packages/com.unity.multiplayer.samples.coop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Multiplayer Samples Co-op Changelog

## [Unreleased] - yyyy-mm-dd
## [1.7.0] - 2023-09-07

### Changed
* Updating package dependencies (#869)
* Tutorial Framework upgraded to v3.1.3
* Netcode for GameObjects upgraded to v1.6.0
* Unity Relay upgraded to v1.0.5

### Changed
* Replaced usages of null-coalescing and null-conditional operators with regular null checks. (#867) These operators can cause issues when used with types inheriting UnityEngine.Object because that type redefines the == operator to define when an object is null. This redefinition applies to regular null checks (if foo == null) but not to those operators, thus this could lead to unexpected behaviour. While those operators were safely used within Boss Room, only with types that were not inheriting UnityEngine.Object, we decided to remove most usages for consistency. This will also help avoid accidental mistakes, such as a user reusing a part of this code, but modifying it so that one of those operators are used with a UnityEngine.Object.
Expand Down
6 changes: 3 additions & 3 deletions Packages/com.unity.multiplayer.samples.coop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"unity": "2020.3",
"description": "Utilities package built on top of Netcode for GameObjects, providing useful scripts and tools.",
"dependencies": {
"com.unity.learn.iet-framework": "1.2.1",
"com.unity.learn.iet-framework": "3.1.3",
"com.unity.multiplayer.tools": "1.1.0",
"com.unity.netcode.gameobjects": "1.4.0",
"com.unity.services.relay": "1.0.3"
"com.unity.netcode.gameobjects": "1.6.0",
"com.unity.services.relay": "1.0.5"
}
}
6 changes: 3 additions & 3 deletions Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@
"depth": 0,
"source": "embedded",
"dependencies": {
"com.unity.learn.iet-framework": "1.2.1",
"com.unity.learn.iet-framework": "3.1.3",
"com.unity.multiplayer.tools": "1.1.0",
"com.unity.netcode.gameobjects": "1.4.0",
"com.unity.services.relay": "1.0.3"
"com.unity.netcode.gameobjects": "1.6.0",
"com.unity.services.relay": "1.0.5"
}
},
"com.unity.multiplayer.tools": {
Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectSettings.asset
Git LFS file not shown