Skip to content

Commit 8ea028b

Browse files
committed
Update to MySQL 9.2.
Signed-off-by: Bradley Grainger <[email protected]>
1 parent f2d7379 commit 8ea028b

File tree

11 files changed

+134
-60
lines changed

11 files changed

+134
-60
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
tfm: [ 'net8.0', 'net9.0' ]
3636
services:
3737
mysql:
38-
image: mysql:9.1
38+
image: mysql:9.2
3939
env:
4040
MYSQL_DATABASE: testdb
4141
MYSQL_ROOT_PASSWORD: pass

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
1717
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
1818
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
19-
<PackageVersion Include="MySql.Data" Version="9.1.0" />
19+
<PackageVersion Include="MySql.Data" Version="9.2.0" />
2020
<PackageVersion Include="NLog" Version="4.7.15" />
2121
<PackageVersion Include="Serilog" Version="2.12.0" />
2222
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
2323
<PackageVersion Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" />
24-
<PackageVersion Include="System.Text.Json" Version="8.0.5" />
24+
<PackageVersion Include="System.Text.Json" Version="9.0.1" />
2525
<PackageVersion Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
2626
<PackageVersion Include="xunit" Version="2.9.2" />
2727
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ jobs:
176176
image: 'mysql:8.4'
177177
connectionStringExtra: 'AllowPublicKeyRetrieval=True'
178178
unsupportedFeatures: 'Ed25519,Redirection,StreamingResults,Tls11,TlsFingerprintValidation,ZeroDateTime'
179-
'MySQL 9.1':
180-
image: 'mysql:9.1'
179+
'MySQL 9.2':
180+
image: 'mysql:9.2'
181181
connectionStringExtra: 'AllowPublicKeyRetrieval=True'
182182
unsupportedFeatures: 'Ed25519,Redirection,StreamingResults,Tls11,TlsFingerprintValidation,ZeroDateTime'
183183
'MariaDB 10.6':

docs/content/home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Amazon Aurora RDS | 2.x, 3.x | Use `Pipelining=False` [for Aurora 2.x](https://m
6565
Azure Database for MySQL | 5.7, 8.0 | Single Server and Flexible Server
6666
Google Cloud SQL for MySQL | 5.6, 5.7, 8.0 |
6767
MariaDB | 10.x (**10.6**, **10.11**), 11.x (**11.4**) |
68-
MySQL | 5.5, 5.6, 5.7, 8.x (**8.0**, **8.4**), 9.x (**9.1**) | 5.5 is EOL and has some [compatibility issues](https://github.com/mysql-net/MySqlConnector/issues/1192); 5.6 and 5.7 are EOL
68+
MySQL | 5.5, 5.6, 5.7, 8.x (**8.0**, **8.4**), 9.x (**9.2**) | 5.5 is EOL and has some [compatibility issues](https://github.com/mysql-net/MySqlConnector/issues/1192); 5.6 and 5.7 are EOL
6969
Percona Server | 5.6, 5.7, 8.0 |
7070
PlanetScale | | See PlanetScale [MySQL compatibility notes](https://planetscale.com/docs/reference/mysql-compatibility)
7171
ProxySQL | 2.x | Some [compatibility issues](https://github.com/search?q=repo%3Amysql-net%2FMySqlConnector+proxysql&type=issues)

docs/content/tutorials/migrating-from-connector-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ In a .NET Framework application, make the following `app.config` change to regis
4141
<!-- add name="MySQL Data Provider"
4242
invariant="MySql.Data.MySqlClient"
4343
description=".Net Framework Data Provider for MySQL"
44-
type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=9.1.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" / -->
44+
type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=9.2.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" / -->
4545

4646
<!-- ADD THIS -->
4747
<add name="MySqlConnector"

src/MySqlConnector.DependencyInjection/packages.lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@
148148
},
149149
"Microsoft.NET.ILLink.Tasks": {
150150
"type": "Direct",
151-
"requested": "[8.0.11, )",
152-
"resolved": "8.0.11",
153-
"contentHash": "zk5lnZrYJgtuJG8L4v17Ej8rZ3PUcR2iweNV08BaO5LbYHIi2wNaVNcJoLxvqgQdnjLlKnCCfVGLDr6QHeAarQ=="
151+
"requested": "[8.0.12, )",
152+
"resolved": "8.0.12",
153+
"contentHash": "FV4HnQ3JI15PHnJ5PGTbz+rYvrih42oLi/7UMIshNwCwUZhTq13UzrggtXk4ygrcMcN+4jsS6hhshx2p/Zd0ig=="
154154
},
155155
"Microsoft.SourceLink.GitHub": {
156156
"type": "Direct",

src/MySqlConnector/packages.lock.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -690,9 +690,9 @@
690690
},
691691
"Microsoft.NET.ILLink.Tasks": {
692692
"type": "Direct",
693-
"requested": "[8.0.11, )",
694-
"resolved": "8.0.11",
695-
"contentHash": "zk5lnZrYJgtuJG8L4v17Ej8rZ3PUcR2iweNV08BaO5LbYHIi2wNaVNcJoLxvqgQdnjLlKnCCfVGLDr6QHeAarQ=="
693+
"requested": "[8.0.12, )",
694+
"resolved": "8.0.12",
695+
"contentHash": "FV4HnQ3JI15PHnJ5PGTbz+rYvrih42oLi/7UMIshNwCwUZhTq13UzrggtXk4ygrcMcN+4jsS6hhshx2p/Zd0ig=="
696696
},
697697
"Microsoft.SourceLink.GitHub": {
698698
"type": "Direct",
@@ -753,9 +753,9 @@
753753
},
754754
"Microsoft.NET.ILLink.Tasks": {
755755
"type": "Direct",
756-
"requested": "[9.0.0, )",
757-
"resolved": "9.0.0",
758-
"contentHash": "zAwp213evC3UkimtVXRb+Dlgc/40QG145nmZDtp2LO9zJJMfrp+i/87BnXN7tRXEA4liyzdFkjqG1HE8/RPb4A=="
756+
"requested": "[9.0.1, )",
757+
"resolved": "9.0.1",
758+
"contentHash": "BKFAkdhUUJivAoKuSWcT23WH9E+AWQMJootzt9X+lnesOD2a2yNIe1ZQFtxB8H3ayskLBD5gYyIbj5GIfw7rZg=="
759759
},
760760
"Microsoft.SourceLink.GitHub": {
761761
"type": "Direct",

tests/IntegrationTests/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<DbProviderFactories>
55
<add name="MySqlConnector" invariant="MySqlConnector" description="Async MySQL ADO.NET Connector" type="MySqlConnector.MySqlConnectorFactory, MySqlConnector, Culture=neutral, PublicKeyToken=d33d3e53aa5f8c92" />
66
<remove invariant="MySql.Data.MySqlClient" />
7-
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=9.1.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
7+
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=9.2.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
88
</DbProviderFactories>
99
</system.data>
1010
</configuration>

tests/IntegrationTests/packages.lock.json

Lines changed: 104 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,16 @@
6767
},
6868
"System.Text.Json": {
6969
"type": "Direct",
70-
"requested": "[8.0.5, )",
71-
"resolved": "8.0.5",
72-
"contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==",
70+
"requested": "[9.0.1, )",
71+
"resolved": "9.0.1",
72+
"contentHash": "eqWHDZqYPv1PvuvoIIx5pF74plL3iEOZOl/0kQP+Y0TEbtgNnM2W6k8h8EPYs+LTJZsXuWa92n5W5sHTWvE3VA==",
7373
"dependencies": {
74-
"Microsoft.Bcl.AsyncInterfaces": "8.0.0",
74+
"Microsoft.Bcl.AsyncInterfaces": "9.0.1",
7575
"System.Buffers": "4.5.1",
76+
"System.IO.Pipelines": "9.0.1",
7677
"System.Memory": "4.5.5",
7778
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
78-
"System.Text.Encodings.Web": "8.0.0",
79+
"System.Text.Encodings.Web": "9.0.1",
7980
"System.Threading.Tasks.Extensions": "4.5.4",
8081
"System.ValueTuple": "4.5.0"
8182
}
@@ -102,8 +103,8 @@
102103
},
103104
"Microsoft.Bcl.AsyncInterfaces": {
104105
"type": "Transitive",
105-
"resolved": "8.0.0",
106-
"contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
106+
"resolved": "9.0.1",
107+
"contentHash": "IVkmUqf+KzbuXKrxi2tyQlg11RArYk26t2eU5cHekff+7Ao09vH8vt8idC0BJSMnpiRV2OK66zM2EwJU6Tm5Cw==",
107108
"dependencies": {
108109
"System.Threading.Tasks.Extensions": "4.5.4"
109110
}
@@ -203,6 +204,16 @@
203204
"resolved": "1.5.0",
204205
"contentHash": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ=="
205206
},
207+
"System.IO.Pipelines": {
208+
"type": "Transitive",
209+
"resolved": "9.0.1",
210+
"contentHash": "uXf5o8eV/gtzDQY4lGROLFMWQvcViKcF8o4Q6KpIOjloAQXrnscQSu6gTxYJMHuNJnh7szIF9AzkaEq+zDLoEg==",
211+
"dependencies": {
212+
"System.Buffers": "4.5.1",
213+
"System.Memory": "4.5.5",
214+
"System.Threading.Tasks.Extensions": "4.5.4"
215+
}
216+
},
206217
"System.Memory": {
207218
"type": "Transitive",
208219
"resolved": "4.5.5",
@@ -233,8 +244,8 @@
233244
},
234245
"System.Text.Encodings.Web": {
235246
"type": "Transitive",
236-
"resolved": "8.0.0",
237-
"contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
247+
"resolved": "9.0.1",
248+
"contentHash": "XkspqduP2t1e1x2vBUAD/xZ5ZDvmywuUwsmB93MvyQLospJfqtX0GsR/kU0vUL2h4kmvf777z3txV2W4NrQ9Qg==",
238249
"dependencies": {
239250
"System.Buffers": "4.5.1",
240251
"System.Memory": "4.5.5",
@@ -408,15 +419,16 @@
408419
},
409420
"System.Text.Json": {
410421
"type": "Direct",
411-
"requested": "[8.0.5, )",
412-
"resolved": "8.0.5",
413-
"contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==",
422+
"requested": "[9.0.1, )",
423+
"resolved": "9.0.1",
424+
"contentHash": "eqWHDZqYPv1PvuvoIIx5pF74plL3iEOZOl/0kQP+Y0TEbtgNnM2W6k8h8EPYs+LTJZsXuWa92n5W5sHTWvE3VA==",
414425
"dependencies": {
415-
"Microsoft.Bcl.AsyncInterfaces": "8.0.0",
426+
"Microsoft.Bcl.AsyncInterfaces": "9.0.1",
416427
"System.Buffers": "4.5.1",
428+
"System.IO.Pipelines": "9.0.1",
417429
"System.Memory": "4.5.5",
418430
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
419-
"System.Text.Encodings.Web": "8.0.0",
431+
"System.Text.Encodings.Web": "9.0.1",
420432
"System.Threading.Tasks.Extensions": "4.5.4",
421433
"System.ValueTuple": "4.5.0"
422434
}
@@ -443,8 +455,8 @@
443455
},
444456
"Microsoft.Bcl.AsyncInterfaces": {
445457
"type": "Transitive",
446-
"resolved": "8.0.0",
447-
"contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
458+
"resolved": "9.0.1",
459+
"contentHash": "IVkmUqf+KzbuXKrxi2tyQlg11RArYk26t2eU5cHekff+7Ao09vH8vt8idC0BJSMnpiRV2OK66zM2EwJU6Tm5Cw==",
448460
"dependencies": {
449461
"System.Threading.Tasks.Extensions": "4.5.4"
450462
}
@@ -544,6 +556,16 @@
544556
"resolved": "1.5.0",
545557
"contentHash": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ=="
546558
},
559+
"System.IO.Pipelines": {
560+
"type": "Transitive",
561+
"resolved": "9.0.1",
562+
"contentHash": "uXf5o8eV/gtzDQY4lGROLFMWQvcViKcF8o4Q6KpIOjloAQXrnscQSu6gTxYJMHuNJnh7szIF9AzkaEq+zDLoEg==",
563+
"dependencies": {
564+
"System.Buffers": "4.5.1",
565+
"System.Memory": "4.5.5",
566+
"System.Threading.Tasks.Extensions": "4.5.4"
567+
}
568+
},
547569
"System.Memory": {
548570
"type": "Transitive",
549571
"resolved": "4.5.5",
@@ -574,8 +596,8 @@
574596
},
575597
"System.Text.Encodings.Web": {
576598
"type": "Transitive",
577-
"resolved": "8.0.0",
578-
"contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
599+
"resolved": "9.0.1",
600+
"contentHash": "XkspqduP2t1e1x2vBUAD/xZ5ZDvmywuUwsmB93MvyQLospJfqtX0GsR/kU0vUL2h4kmvf777z3txV2W4NrQ9Qg==",
579601
"dependencies": {
580602
"System.Buffers": "4.5.1",
581603
"System.Memory": "4.5.5",
@@ -750,12 +772,17 @@
750772
},
751773
"System.Text.Json": {
752774
"type": "Direct",
753-
"requested": "[8.0.5, )",
754-
"resolved": "8.0.5",
755-
"contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==",
775+
"requested": "[9.0.1, )",
776+
"resolved": "9.0.1",
777+
"contentHash": "eqWHDZqYPv1PvuvoIIx5pF74plL3iEOZOl/0kQP+Y0TEbtgNnM2W6k8h8EPYs+LTJZsXuWa92n5W5sHTWvE3VA==",
756778
"dependencies": {
779+
"Microsoft.Bcl.AsyncInterfaces": "9.0.1",
780+
"System.Buffers": "4.5.1",
781+
"System.IO.Pipelines": "9.0.1",
782+
"System.Memory": "4.5.5",
757783
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
758-
"System.Text.Encodings.Web": "8.0.0"
784+
"System.Text.Encodings.Web": "9.0.1",
785+
"System.Threading.Tasks.Extensions": "4.5.4"
759786
}
760787
},
761788
"xunit": {
@@ -775,6 +802,11 @@
775802
"resolved": "2.8.2",
776803
"contentHash": "vm1tbfXhFmjFMUmS4M0J0ASXz3/U5XvXBa6DOQUL3fEz4Vt6YPhv+ESCarx6M6D+9kJkJYZKCNvJMas1+nVfmQ=="
777804
},
805+
"Microsoft.Bcl.AsyncInterfaces": {
806+
"type": "Transitive",
807+
"resolved": "9.0.1",
808+
"contentHash": "IVkmUqf+KzbuXKrxi2tyQlg11RArYk26t2eU5cHekff+7Ao09vH8vt8idC0BJSMnpiRV2OK66zM2EwJU6Tm5Cw=="
809+
},
778810
"Microsoft.Build.Tasks.Git": {
779811
"type": "Transitive",
780812
"resolved": "8.0.0",
@@ -872,6 +904,26 @@
872904
"resolved": "13.0.1",
873905
"contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
874906
},
907+
"System.Buffers": {
908+
"type": "Transitive",
909+
"resolved": "4.5.1",
910+
"contentHash": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg=="
911+
},
912+
"System.IO.Pipelines": {
913+
"type": "Transitive",
914+
"resolved": "9.0.1",
915+
"contentHash": "uXf5o8eV/gtzDQY4lGROLFMWQvcViKcF8o4Q6KpIOjloAQXrnscQSu6gTxYJMHuNJnh7szIF9AzkaEq+zDLoEg==",
916+
"dependencies": {
917+
"System.Buffers": "4.5.1",
918+
"System.Memory": "4.5.5",
919+
"System.Threading.Tasks.Extensions": "4.5.4"
920+
}
921+
},
922+
"System.Memory": {
923+
"type": "Transitive",
924+
"resolved": "4.5.5",
925+
"contentHash": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw=="
926+
},
875927
"System.Reflection.Metadata": {
876928
"type": "Transitive",
877929
"resolved": "1.6.0",
@@ -884,9 +936,11 @@
884936
},
885937
"System.Text.Encodings.Web": {
886938
"type": "Transitive",
887-
"resolved": "8.0.0",
888-
"contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
939+
"resolved": "9.0.1",
940+
"contentHash": "XkspqduP2t1e1x2vBUAD/xZ5ZDvmywuUwsmB93MvyQLospJfqtX0GsR/kU0vUL2h4kmvf777z3txV2W4NrQ9Qg==",
889941
"dependencies": {
942+
"System.Buffers": "4.5.1",
943+
"System.Memory": "4.5.5",
890944
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
891945
}
892946
},
@@ -967,6 +1021,12 @@
9671021
"dependencies": {
9681022
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
9691023
}
1024+
},
1025+
"System.Threading.Tasks.Extensions": {
1026+
"type": "CentralTransitive",
1027+
"requested": "[4.5.4, )",
1028+
"resolved": "4.5.4",
1029+
"contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
9701030
}
9711031
},
9721032
"net8.0": {
@@ -1035,9 +1095,13 @@
10351095
},
10361096
"System.Text.Json": {
10371097
"type": "Direct",
1038-
"requested": "[8.0.5, )",
1039-
"resolved": "8.0.5",
1040-
"contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg=="
1098+
"requested": "[9.0.1, )",
1099+
"resolved": "9.0.1",
1100+
"contentHash": "eqWHDZqYPv1PvuvoIIx5pF74plL3iEOZOl/0kQP+Y0TEbtgNnM2W6k8h8EPYs+LTJZsXuWa92n5W5sHTWvE3VA==",
1101+
"dependencies": {
1102+
"System.IO.Pipelines": "9.0.1",
1103+
"System.Text.Encodings.Web": "9.0.1"
1104+
}
10411105
},
10421106
"xunit": {
10431107
"type": "Direct",
@@ -1150,11 +1214,21 @@
11501214
"resolved": "13.0.1",
11511215
"contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
11521216
},
1217+
"System.IO.Pipelines": {
1218+
"type": "Transitive",
1219+
"resolved": "9.0.1",
1220+
"contentHash": "uXf5o8eV/gtzDQY4lGROLFMWQvcViKcF8o4Q6KpIOjloAQXrnscQSu6gTxYJMHuNJnh7szIF9AzkaEq+zDLoEg=="
1221+
},
11531222
"System.Reflection.Metadata": {
11541223
"type": "Transitive",
11551224
"resolved": "1.6.0",
11561225
"contentHash": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ=="
11571226
},
1227+
"System.Text.Encodings.Web": {
1228+
"type": "Transitive",
1229+
"resolved": "9.0.1",
1230+
"contentHash": "XkspqduP2t1e1x2vBUAD/xZ5ZDvmywuUwsmB93MvyQLospJfqtX0GsR/kU0vUL2h4kmvf777z3txV2W4NrQ9Qg=="
1231+
},
11581232
"xunit.abstractions": {
11591233
"type": "Transitive",
11601234
"resolved": "2.0.3",
@@ -1289,9 +1363,9 @@
12891363
},
12901364
"System.Text.Json": {
12911365
"type": "Direct",
1292-
"requested": "[8.0.5, )",
1293-
"resolved": "8.0.5",
1294-
"contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg=="
1366+
"requested": "[9.0.1, )",
1367+
"resolved": "9.0.1",
1368+
"contentHash": "eqWHDZqYPv1PvuvoIIx5pF74plL3iEOZOl/0kQP+Y0TEbtgNnM2W6k8h8EPYs+LTJZsXuWa92n5W5sHTWvE3VA=="
12951369
},
12961370
"xunit": {
12971371
"type": "Direct",

0 commit comments

Comments
 (0)