-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Update dependencies from maintenance-packages to latest versions #7301
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,17 +21,17 @@ | |
| <MicrosoftExtensionsOptionsVersion>8.0.2</MicrosoftExtensionsOptionsVersion> | ||
| <NuGetVersion>6.9.1</NuGetVersion> | ||
| <SkiaSharpVersion>2.88.8</SkiaSharpVersion> | ||
| <SystemBuffersVersion>4.6.0-preview.1.24529.4</SystemBuffersVersion> | ||
| <SystemBuffersVersion>4.6.0-rtm.24561.10</SystemBuffersVersion> | ||
| <SystemCodeDomVersion>8.0.0</SystemCodeDomVersion> | ||
| <SystemCollectionsImmutableVersion>8.0.0</SystemCollectionsImmutableVersion> | ||
| <SystemConfigurationConfigurationManagerVersion>6.0.1</SystemConfigurationConfigurationManagerVersion> | ||
| <SystemFormatsAsn1Version>8.0.1</SystemFormatsAsn1Version> | ||
| <SystemIOFileSystemAccessControl>5.0.0</SystemIOFileSystemAccessControl> | ||
| <SystemMemoryVersion>4.6.0-preview.1.24529.4</SystemMemoryVersion> | ||
| <SystemMemoryVersion>4.6.0-rtm.24561.10</SystemMemoryVersion> | ||
| <SystemNumericsTensorsVersion>8.0.0</SystemNumericsTensorsVersion> | ||
| <SystemReflectionEmitLightweightVersion>4.7.0</SystemReflectionEmitLightweightVersion> | ||
| <SystemReflectionEmitVersion>4.3.0</SystemReflectionEmitVersion> | ||
| <SystemRuntimeCompilerServicesUnsafeVersion>6.1.0-preview.1.24529.4</SystemRuntimeCompilerServicesUnsafeVersion> | ||
| <SystemRuntimeCompilerServicesUnsafeVersion>6.1.0-rtm.24561.10</SystemRuntimeCompilerServicesUnsafeVersion> | ||
| <SystemSecurityPrincipalWindows>5.0.0</SystemSecurityPrincipalWindows> | ||
| <SystemTextEncodingsWebVersion>8.0.0</SystemTextEncodingsWebVersion> | ||
| <SystemTextJsonVersion>8.0.5</SystemTextJsonVersion> | ||
|
|
@@ -40,14 +40,16 @@ | |
| <ApacheArrowVersion>14.0.2</ApacheArrowVersion> | ||
| <GoogleProtobufVersion>3.27.1</GoogleProtobufVersion> | ||
| <LightGBMVersion>3.3.5</LightGBMVersion> | ||
| <MicrosoftBclHashCodeVersion>6.0.0-preview.1.24529.4</MicrosoftBclHashCodeVersion> | ||
| <MicrosoftBclHashCodeVersion>6.0.0-rtm.24561.10</MicrosoftBclHashCodeVersion> | ||
| <MicrosoftBclMemoryVersion>9.0.0-rc.1.24431.7</MicrosoftBclMemoryVersion> | ||
| <MicrosoftCodeAnalysisAnalyzersVersion>3.3.4</MicrosoftCodeAnalysisAnalyzersVersion> | ||
| <MicrosoftCodeAnalysisCSharpVersion>4.9.2</MicrosoftCodeAnalysisCSharpVersion> | ||
| <MicrosoftDotNetInteractiveVersion>1.0.0-beta.24375.2</MicrosoftDotNetInteractiveVersion> | ||
| <MicrosoftMLOnnxRuntimeVersion>1.18.1</MicrosoftMLOnnxRuntimeVersion> | ||
| <MlNetMklDepsVersion>0.0.0.12</MlNetMklDepsVersion> | ||
| <MicrosoftExtensionsAIVersion>9.0.0-preview.9.24507.7</MicrosoftExtensionsAIVersion> | ||
| <!-- runtime.native.System.Data.SqlClient.sni is not updated by dependency flow as it is not produced live anymore. --> | ||
| <RuntimeNativeSystemDataSqlClientSniVersion>4.4.0</RuntimeNativeSystemDataSqlClientSniVersion> | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is what we did in maintenance-packages to fix the same error in the System.Data.SqlClient unit tests. |
||
| <!-- | ||
| @("inteltbb.devel", "win", "2021.7.1.15305") | ||
| --> | ||
|
|
@@ -99,7 +101,7 @@ | |
| <MicrosoftMLTestDatabasesVersion>0.0.6-test</MicrosoftMLTestDatabasesVersion> | ||
| <MicrosoftMLTestModelsVersion>0.0.7-test</MicrosoftMLTestModelsVersion> | ||
| <MicrosoftMLTestTokenizersVersion>2.0.0-beta.24455.2</MicrosoftMLTestTokenizersVersion> | ||
| <SystemDataSqlClientVersion>4.8.6</SystemDataSqlClientVersion> | ||
| <SystemDataSqlClientVersion>4.9.0-rtm.24561.10</SystemDataSqlClientVersion> | ||
| <SystemDataSQLiteCoreVersion>1.0.118</SystemDataSQLiteCoreVersion> | ||
| <XunitCombinatorialVersion>1.6.24</XunitCombinatorialVersion> | ||
| <!-- Opt-out repo features --> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -275,6 +275,7 @@ public void TestLoadDatetimeColumnWithNullValue() | |
| private DatabaseSource GetIrisDatabaseSource(string command, int commandTimeoutInSeconds = 30) | ||
| { | ||
| if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) | ||
| #pragma warning disable CS0618 // 'SqlClientFactory' is obsolete: 'Use the Microsoft.Data.SqlClient package instead.' | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't see this build failure in the previous CI run, but I did hit it in my local machine. If you prefer that I remove these pragmas, let me know, @michaelgsharp . |
||
| return new DatabaseSource( | ||
| SqlClientFactory.Instance, | ||
| GetMSSQLConnectionString(TestDatasets.irisDb.name), | ||
|
|
@@ -286,6 +287,7 @@ private DatabaseSource GetIrisDatabaseSource(string command, int commandTimeoutI | |
| GetSQLiteConnectionString(TestDatasets.irisDbSQLite.name), | ||
| String.Format(command, TestDatasets.irisDbSQLite.trainFilename), | ||
| commandTimeoutInSeconds); | ||
| #pragma warning restore CS0618 // 'SqlClientFactory' is obsolete: 'Use the Microsoft.Data.SqlClient package instead.' | ||
| } | ||
|
|
||
| private string GetMSSQLConnectionString(string databaseName) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a similar comment in maintenance-packages, but we actually indicate this package's version in Directory.Packages.props (we don't have that here). So I thought it could be useful to have the same comment here, as a reminder that this version won't automatically change.