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 HICPluginTests/HICPluginTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<None Remove="TestData\report-with-multiple-descriptions.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="NUnit.Analyzers" Version="4.3.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
1 change: 1 addition & 0 deletions HICPluginTests/TestHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
}

/// <inheritdoc />
public event PropertyChangedEventHandler PropertyChanged;

Check warning on line 65 in HICPluginTests/TestHelpers.cs

View workflow job for this annotation

GitHub Actions / package

The event 'MockLoadProgress.PropertyChanged' is never used

/// <inheritdoc />
public int ID { get; set; }
Expand Down Expand Up @@ -138,7 +138,7 @@
}

/// <inheritdoc />
public event PropertyChangedEventHandler PropertyChanged;

Check warning on line 141 in HICPluginTests/TestHelpers.cs

View workflow job for this annotation

GitHub Actions / package

The event 'MockPipeline.PropertyChanged' is never used

/// <inheritdoc />
public int ID { get; set; }
Expand Down Expand Up @@ -206,7 +206,7 @@
}

/// <inheritdoc />
public event PropertyChangedEventHandler PropertyChanged;

Check warning on line 209 in HICPluginTests/TestHelpers.cs

View workflow job for this annotation

GitHub Actions / package

The event 'MockCacheProgress.PropertyChanged' is never used

/// <inheritdoc />
public int ID { get; set; }
Expand Down Expand Up @@ -480,7 +480,7 @@
}

/// <inheritdoc />
public event PropertyChangedEventHandler PropertyChanged;

Check warning on line 483 in HICPluginTests/TestHelpers.cs

View workflow job for this annotation

GitHub Actions / package

The event 'MockExtractableCohort.PropertyChanged' is never used

/// <inheritdoc />
public int ID { get; set; }
Expand Down Expand Up @@ -598,7 +598,7 @@
}

/// <inheritdoc />
public event PropertyChangedEventHandler PropertyChanged;

Check warning on line 601 in HICPluginTests/TestHelpers.cs

View workflow job for this annotation

GitHub Actions / package

The event 'MockExtractableDataSet.PropertyChanged' is never used

/// <inheritdoc />
public int ID { get; set; }
Expand Down Expand Up @@ -914,6 +914,7 @@
public string AssociatedPeople { get ; set;}
public string AssociatedMedia { get ; set;}
public string Doi { get ; set;}
public string DataSubType { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }

/// <inheritdoc />
public ITableInfo[] GetTableInfoList(bool includeLookupTables)
Expand Down
2 changes: 1 addition & 1 deletion RDMP
Submodule RDMP updated 34 files
+7 −7 .github/workflows/build.yml
+1 −1 .github/workflows/codeql.yml
+2 −2 .github/workflows/docker.yml
+2 −1 Application/ResearchDataManagementPlatform/Menus/RDMPTopMenuStripUI.cs
+4 −8 Application/ResearchDataManagementPlatform/ResearchDataManagementPlatform.csproj
+87 −69 Application/ResearchDataManagementPlatform/WindowManagement/ActivateItems.cs
+12 −2 CHANGELOG.md
+17 −17 Directory.Packages.props
+1 −1 Rdmp.Core.Tests/CommandExecution/ExecuteCommandDeleteDatasetTest.cs
+1 −1 Rdmp.Core/CommandLine/DatabaseCreation/PlatformDatabaseCreation.cs
+3 −0 Rdmp.Core/CommandLine/DatabaseCreation/PlatformDatabaseCreationOptions.cs
+2 −2 Rdmp.Core/Curation/Data/Catalogue.cs
+1 −1 Rdmp.Core/Curation/Data/ICatalogue.cs
+4 −4 Rdmp.Core/Curation/DataHelper/RegexRedaction/RegexRedactionHelper.cs
+2 −2 Rdmp.Core/DataLoad/Modules/DataFlowOperations/ColumnForbidder.cs
+5 −5 Rdmp.Core/Databases/CatalogueDatabase/runAfterCreateDatabase/CreateCatalogue.sql
+1 −1 Rdmp.Core/Databases/CatalogueDatabase/up/078_AddLastLoadTimeToLoadMetadata.sql
+2 −2 Rdmp.Core/Databases/CatalogueDatabase/up/084_AddLoadDirectorySplit.sql
+1 −1 Rdmp.Core/Databases/CatalogueDatabase/up/089_AddDataLoadVersioning.sql
+3 −3 Rdmp.Core/MapsDirectlyToDatabaseTable/Versioning/MasterDatabaseScriptExecutor.cs
+59 −0 Rdmp.Core/Providers/CatalogueProblemProvider.cs
+29 −0 Rdmp.UI/AggregationUIs/AggregateGraphUI.Designer.cs
+7 −5 Rdmp.UI/MainFormUITabs/CatalogueUI.Designer.cs
+1 −1 Rdmp.UI/MainFormUITabs/CatalogueUI.cs
+20 −42 Rdmp.UI/PipelineUIs/Pipelines/PipelineSelectionUI.cs
+53 −159 Rdmp.UI/Rdmp.UI.csproj
+13 −0 Rdmp.UI/SimpleDialogs/InstanceSettings.Designer.cs
+1 −0 Rdmp.UI/SimpleDialogs/InstanceSettings.cs
+1 −1 Rdmp.UI/SimpleDialogs/NewfindUI.Designer.cs
+47 −36 Rdmp.UI/SimpleDialogs/SelectDialog.cs
+63 −0 Rdmp.UI/SimpleDialogs/SelectDialog`1.resx
+3 −3 SharedAssemblyInfo.cs
+1 −1 global.json
+2 −2 rdmp-client.xml
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
[assembly: AssemblyCulture("")]

// These should be overwritten by release builds
[assembly: AssemblyVersion("6.1.12")]
[assembly: AssemblyFileVersion("6.1.12")]
[assembly: AssemblyInformationalVersion("6.1.12")]
[assembly: AssemblyVersion("6.1.13")]
[assembly: AssemblyFileVersion("6.1.13")]
[assembly: AssemblyInformationalVersion("6.1.13")]
Loading