Skip to content

Commit fe85a3c

Browse files
committed
Upgraded UTP to version 2.0.1
(cherry picked from commit 7f058d3)
1 parent 058dfa7 commit fe85a3c

File tree

3 files changed

+27
-13
lines changed

3 files changed

+27
-13
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: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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"
@@ -332,16 +335,26 @@
332335
"url": "https://packages.unity.com"
333336
},
334337
"com.unity.test-framework": {
335-
"version": "1.1.33",
336-
"depth": 0,
338+
"version": "1.3.3",
339+
"depth": 2,
337340
"source": "registry",
338341
"dependencies": {
339-
"com.unity.ext.nunit": "1.0.6",
342+
"com.unity.ext.nunit": "2.0.3",
340343
"com.unity.modules.imgui": "1.0.0",
341344
"com.unity.modules.jsonserialize": "1.0.0"
342345
},
343346
"url": "https://packages.unity.com"
344347
},
348+
"com.unity.test-framework.performance": {
349+
"version": "3.0.0-pre.1",
350+
"depth": 2,
351+
"source": "registry",
352+
"dependencies": {
353+
"com.unity.test-framework": "1.1.31",
354+
"com.unity.modules.jsonserialize": "1.0.0"
355+
},
356+
"url": "https://packages.unity.com"
357+
},
345358
"com.unity.textmeshpro": {
346359
"version": "3.0.6",
347360
"depth": 0,
@@ -374,12 +387,12 @@
374387
"url": "https://packages.unity.com"
375388
},
376389
"com.unity.transport": {
377-
"version": "1.3.4",
378-
"depth": 1,
390+
"version": "2.0.1",
391+
"depth": 0,
379392
"source": "registry",
380393
"dependencies": {
381-
"com.unity.collections": "1.2.4",
382-
"com.unity.burst": "1.6.6",
394+
"com.unity.collections": "2.1.1",
395+
"com.unity.burst": "1.8.4",
383396
"com.unity.mathematics": "1.2.6"
384397
},
385398
"url": "https://packages.unity.com"

0 commit comments

Comments
 (0)