Skip to content

Commit 7f058d3

Browse files
committed
Upgraded UTP to version 2.0.1
1 parent a827674 commit 7f058d3

File tree

3 files changed

+28
-14
lines changed

3 files changed

+28
-14
lines changed

Assets/Scripts/Gameplay/UI/IPUIMediator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public static string SanitizePort(string dirtyString)
197197
public static bool AreIpAddressAndPortValid(string ipAddress, string port)
198198
{
199199
var portValid = ushort.TryParse(port, out var portNum);
200-
return portValid && NetworkEndPoint.TryParse(ipAddress, portNum, out var networkEndPoint);
200+
return portValid && NetworkEndpoint.TryParse(ipAddress, portNum, out var networkEndPoint);
201201
}
202202
}
203203
}

Packages/manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"com.unity.textmeshpro": "3.0.6",
2323
"com.unity.timeline": "1.7.4",
2424
"com.unity.toolchain.macos-x86_64-linux-x86_64": "2.0.4",
25+
"com.unity.transport": "2.0.1",
2526
"com.unity.ugui": "1.0.0",
2627
"com.veriorpies.parrelsync": "https://github.com/VeriorPies/ParrelSync.git?path=/ParrelSync#bb3d5067e49e403d8b8ba15c036d313b4dd2c696",
2728
"jp.hadashikick.vcontainer": "1.11.0",

Packages/packages-lock.json

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"url": "https://packages.unity.com"
1717
},
1818
"com.unity.burst": {
19-
"version": "1.8.3",
19+
"version": "1.8.4",
2020
"depth": 1,
2121
"source": "registry",
2222
"dependencies": {
@@ -41,12 +41,15 @@
4141
"url": "https://packages.unity.com"
4242
},
4343
"com.unity.collections": {
44-
"version": "1.2.4",
44+
"version": "2.1.1",
4545
"depth": 1,
4646
"source": "registry",
4747
"dependencies": {
48-
"com.unity.burst": "1.6.6",
49-
"com.unity.test-framework": "1.1.31"
48+
"com.unity.burst": "1.8.4",
49+
"com.unity.modules.unityanalytics": "1.0.0",
50+
"com.unity.nuget.mono-cecil": "1.11.4",
51+
"com.unity.test-framework": "1.3.3",
52+
"com.unity.test-framework.performance": "3.0.0-pre.1"
5053
},
5154
"url": "https://packages.unity.com"
5255
},
@@ -58,8 +61,8 @@
5861
"url": "https://packages.unity.com"
5962
},
6063
"com.unity.ext.nunit": {
61-
"version": "1.0.6",
62-
"depth": 1,
64+
"version": "2.0.3",
65+
"depth": 3,
6366
"source": "registry",
6467
"dependencies": {},
6568
"url": "https://packages.unity.com"
@@ -330,16 +333,26 @@
330333
"url": "https://packages.unity.com"
331334
},
332335
"com.unity.test-framework": {
333-
"version": "1.1.33",
334-
"depth": 0,
336+
"version": "1.3.3",
337+
"depth": 2,
335338
"source": "registry",
336339
"dependencies": {
337-
"com.unity.ext.nunit": "1.0.6",
340+
"com.unity.ext.nunit": "2.0.3",
338341
"com.unity.modules.imgui": "1.0.0",
339342
"com.unity.modules.jsonserialize": "1.0.0"
340343
},
341344
"url": "https://packages.unity.com"
342345
},
346+
"com.unity.test-framework.performance": {
347+
"version": "3.0.0-pre.1",
348+
"depth": 2,
349+
"source": "registry",
350+
"dependencies": {
351+
"com.unity.test-framework": "1.1.31",
352+
"com.unity.modules.jsonserialize": "1.0.0"
353+
},
354+
"url": "https://packages.unity.com"
355+
},
343356
"com.unity.textmeshpro": {
344357
"version": "3.0.6",
345358
"depth": 0,
@@ -372,12 +385,12 @@
372385
"url": "https://packages.unity.com"
373386
},
374387
"com.unity.transport": {
375-
"version": "1.3.3",
376-
"depth": 1,
388+
"version": "2.0.1",
389+
"depth": 0,
377390
"source": "registry",
378391
"dependencies": {
379-
"com.unity.collections": "1.2.4",
380-
"com.unity.burst": "1.6.6",
392+
"com.unity.collections": "2.1.1",
393+
"com.unity.burst": "1.8.4",
381394
"com.unity.mathematics": "1.2.6"
382395
},
383396
"url": "https://packages.unity.com"

0 commit comments

Comments
 (0)