From 1fc4a02a54e55201f5e318d5e1f2c3fb35d483b1 Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Tue, 16 Apr 2024 00:28:51 +0200 Subject: [PATCH 1/5] Enable deterministic builds (#532) --- recipe.cake | 1 + 1 file changed, 1 insertion(+) diff --git a/recipe.cake b/recipe.cake index 4064a9e8c..206ee721d 100644 --- a/recipe.cake +++ b/recipe.cake @@ -14,6 +14,7 @@ BuildParameters.SetParameters( repositoryOwner: "cake-contrib", repositoryName: "Cake.Issues", appVeyorAccountName: "cakecontrib", + shouldUseDeterministicBuilds: true, shouldGenerateDocumentation: false, // Documentation is generated from Cake.Issues.Website shouldRunCoveralls: false, // Disabled because it's currently failing shouldPostToGitter: false); // Disabled because it's currently failing From b261a96a83d46f129b26254116a7b72b8bf9cab5 Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Tue, 16 Apr 2024 01:08:25 +0200 Subject: [PATCH 2/5] Set AssemblyVersion to major version (#531) Addins are backwards compatible to latest major version. Since we are using project references, we need to fix assembly version to the latest major version to avoid requiring exact minor versions at runtime. --- recipe.cake | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/recipe.cake b/recipe.cake index 206ee721d..ffb78f003 100644 --- a/recipe.cake +++ b/recipe.cake @@ -31,6 +31,22 @@ ToolSettings.SetToolSettings( testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*", testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs"); +//************************************************************************************************* +// Setup +//************************************************************************************************* + +Setup(context => +{ + // Addins are backwards compatible to latest major version. + // Since we are using project references, we need to fix assembly version to the latest + // major version to avoid requiring exact minor versions at runtime. + var settings = context.Data.Get(); + var version = new Version(settings.Properties["AssemblyVersion"].First()); + settings.Properties["AssemblyVersion"] = new List { $"{version.Major}.0.0.0" }; + + context.Log.Information("AssemblyVersion changed to {0}", settings.Properties["AssemblyVersion"].First()); +}); + //************************************************************************************************* // Execution //************************************************************************************************* From 956d6f63717fc43cb67197d278b61e4a66c40667 Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Tue, 16 Apr 2024 07:21:19 +0200 Subject: [PATCH 3/5] Update jQuery to 3.7.1 (#533) --- .../templates/htmldxdatagrid-demo-additionalcolumns.html | 2 +- .../generic/templates/htmldxdatagrid-demo-changetitle.html | 2 +- .../generic/templates/htmldxdatagrid-demo-columnhiding.html | 2 +- .../templates/htmldxdatagrid-demo-customexportfilename.html | 2 +- .../generic/templates/htmldxdatagrid-demo-default.html | 2 +- .../generic/templates/htmldxdatagrid-demo-disablefiltering.html | 2 +- .../generic/templates/htmldxdatagrid-demo-disablegrouping.html | 2 +- .../generic/templates/htmldxdatagrid-demo-disableheader.html | 2 +- .../generic/templates/htmldxdatagrid-demo-disablesearching.html | 2 +- .../generic/templates/htmldxdatagrid-demo-enableexporting.html | 2 +- .../generic/templates/htmldxdatagrid-demo-exportformat-pdf.html | 2 +- .../templates/htmldxdatagrid-demo-exportformat-xlsx.html | 2 +- .../generic/templates/htmldxdatagrid-demo-grouping.html | 2 +- .../generic/templates/htmldxdatagrid-demo-sorting.html | 2 +- .../generic/templates/htmldxdatagrid-demo-theme-carmine.html | 2 +- .../generic/templates/htmldxdatagrid-demo-theme-contrast.html | 2 +- .../templates/htmldxdatagrid-demo-theme-contrastcompact.html | 2 +- .../generic/templates/htmldxdatagrid-demo-theme-dark.html | 2 +- .../templates/htmldxdatagrid-demo-theme-darkcompact.html | 2 +- .../generic/templates/htmldxdatagrid-demo-theme-darkmoon.html | 2 +- .../generic/templates/htmldxdatagrid-demo-theme-darkviolet.html | 2 +- .../generic/templates/htmldxdatagrid-demo-theme-greenmist.html | 2 +- .../generic/templates/htmldxdatagrid-demo-theme-light.html | 2 +- .../templates/htmldxdatagrid-demo-theme-lightcompact.html | 2 +- .../templates/htmldxdatagrid-demo-theme-materialbluedark.html | 2 +- .../htmldxdatagrid-demo-theme-materialbluedarkcompact.html | 2 +- .../templates/htmldxdatagrid-demo-theme-materialbluelight.html | 2 +- .../htmldxdatagrid-demo-theme-materialbluelightcompact.html | 2 +- .../templates/htmldxdatagrid-demo-theme-materiallimedark.html | 2 +- .../htmldxdatagrid-demo-theme-materiallimedarkcompact.html | 2 +- .../templates/htmldxdatagrid-demo-theme-materiallimelight.html | 2 +- .../htmldxdatagrid-demo-theme-materiallimelightcompact.html | 2 +- .../templates/htmldxdatagrid-demo-theme-materialorangedark.html | 2 +- .../htmldxdatagrid-demo-theme-materialorangedarkcompact.html | 2 +- .../htmldxdatagrid-demo-theme-materialorangelight.html | 2 +- .../htmldxdatagrid-demo-theme-materialorangelightcompact.html | 2 +- .../templates/htmldxdatagrid-demo-theme-materialpurpledark.html | 2 +- .../htmldxdatagrid-demo-theme-materialpurpledarkcompact.html | 2 +- .../htmldxdatagrid-demo-theme-materialpurplelight.html | 2 +- .../htmldxdatagrid-demo-theme-materialpurplelightcompact.html | 2 +- .../templates/htmldxdatagrid-demo-theme-materialtealdark.html | 2 +- .../htmldxdatagrid-demo-theme-materialtealdarkcompact.html | 2 +- .../templates/htmldxdatagrid-demo-theme-materialteallight.html | 2 +- .../htmldxdatagrid-demo-theme-materialteallightcompact.html | 2 +- .../generic/templates/htmldxdatagrid-demo-theme-softblue.html | 2 +- src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs | 2 +- src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml | 2 +- 47 files changed, 47 insertions(+), 47 deletions(-) diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-additionalcolumns.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-additionalcolumns.html index 5a05ce70e..d3bcfbc03 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-additionalcolumns.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-additionalcolumns.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-changetitle.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-changetitle.html index 7d1f76f05..776065b96 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-changetitle.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-changetitle.html @@ -9,7 +9,7 @@ My Custom Title - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-columnhiding.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-columnhiding.html index 4ba2e08da..2852e32d6 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-columnhiding.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-columnhiding.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-customexportfilename.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-customexportfilename.html index a86ec6554..b6a68a9e6 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-customexportfilename.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-customexportfilename.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-default.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-default.html index 4ba2e08da..2852e32d6 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-default.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-default.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablefiltering.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablefiltering.html index 644a0ff85..a911e8b65 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablefiltering.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablefiltering.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablegrouping.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablegrouping.html index a1ea0b0cb..b383619ae 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablegrouping.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablegrouping.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disableheader.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disableheader.html index 25a075434..7b7a383b7 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disableheader.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disableheader.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablesearching.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablesearching.html index e4c1a4126..1ea2aafa7 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablesearching.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-disablesearching.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-enableexporting.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-enableexporting.html index 33f9168e0..16cfcd9ea 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-enableexporting.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-enableexporting.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-pdf.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-pdf.html index 88ad0d356..299353699 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-pdf.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-pdf.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-xlsx.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-xlsx.html index 33f9168e0..16cfcd9ea 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-xlsx.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-exportformat-xlsx.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-grouping.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-grouping.html index d3e057ce8..e6156800a 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-grouping.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-grouping.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-sorting.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-sorting.html index 254eeb36e..b67e6e78f 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-sorting.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-sorting.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-carmine.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-carmine.html index b3125bc6a..32c9e051c 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-carmine.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-carmine.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-contrast.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-contrast.html index 9f3eb4da5..3bf095571 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-contrast.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-contrast.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-contrastcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-contrastcompact.html index d5901ce66..c3ec46524 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-contrastcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-contrastcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-dark.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-dark.html index e855065fa..acd250c91 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-dark.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-dark.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkcompact.html index 97d2b50da..6687053d8 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkmoon.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkmoon.html index a4301993b..1d147693d 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkmoon.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkmoon.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkviolet.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkviolet.html index 90885126b..3381bc0f3 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkviolet.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-darkviolet.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-greenmist.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-greenmist.html index 067f30348..da546ca95 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-greenmist.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-greenmist.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-light.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-light.html index 4ba2e08da..2852e32d6 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-light.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-light.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-lightcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-lightcompact.html index 94d65c3d0..4318dc587 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-lightcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-lightcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluedark.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluedark.html index df855737d..6fec86365 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluedark.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluedark.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluedarkcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluedarkcompact.html index ee52b9494..8050c9b97 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluedarkcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluedarkcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluelight.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluelight.html index a44a4375a..98f587bcc 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluelight.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluelight.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluelightcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluelightcompact.html index e375faa9b..6481cf4b1 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluelightcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialbluelightcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimedark.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimedark.html index a6197a45b..3b78f0a3c 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimedark.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimedark.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimedarkcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimedarkcompact.html index ba5d6dbfe..1a78e3878 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimedarkcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimedarkcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimelight.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimelight.html index 9d92710df..69806f38e 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimelight.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimelight.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimelightcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimelightcompact.html index 3a000e847..115e8321a 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimelightcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materiallimelightcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangedark.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangedark.html index 692836f26..7af4e92fc 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangedark.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangedark.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangedarkcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangedarkcompact.html index 80ef7cec7..63729197e 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangedarkcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangedarkcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangelight.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangelight.html index 1b3031eaa..cc4499221 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangelight.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangelight.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangelightcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangelightcompact.html index 61c7a2941..78e62a93c 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangelightcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialorangelightcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurpledark.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurpledark.html index bb0cb9f26..4b651a370 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurpledark.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurpledark.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurpledarkcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurpledarkcompact.html index 9465f504c..63675d11a 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurpledarkcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurpledarkcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurplelight.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurplelight.html index 4f09be5f3..d626f4f21 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurplelight.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurplelight.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurplelightcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurplelightcompact.html index f90659179..cbd50b030 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurplelightcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialpurplelightcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialtealdark.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialtealdark.html index c8aa1d0cb..6745ea57b 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialtealdark.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialtealdark.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialtealdarkcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialtealdarkcompact.html index 39bdd6e5e..1d5ea2c18 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialtealdarkcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialtealdarkcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialteallight.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialteallight.html index e09486a06..93005d735 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialteallight.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialteallight.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialteallightcompact.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialteallightcompact.html index 2c67bd2d2..0fc9eeebc 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialteallightcompact.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-materialteallightcompact.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-softblue.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-softblue.html index 34a622c5b..8899c40fd 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-softblue.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-theme-softblue.html @@ -9,7 +9,7 @@ Issues Report - + diff --git a/src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs b/src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs index 290235c00..d8f4cb986 100644 --- a/src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs +++ b/src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs @@ -348,7 +348,7 @@ public enum HtmlDxDataGridOption /// /// Version of jQuery which should be used. /// This version needs to match the version required by the selected . - /// Default value is 3.7.0. + /// Default value is 3.7.1. /// JQueryVersion, diff --git a/src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml b/src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml index 5e71300b4..16cb8cd63 100644 --- a/src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml +++ b/src/Cake.Issues.Reporting.Generic/Templates/DxDataGrid.cshtml @@ -63,7 +63,7 @@ List additionalColumns = ViewBagHelper.ValueOrDefault(ViewBag.AdditionalColumns, new List()); string jQueryLocation = ViewBagHelper.ValueOrDefault(ViewBag.JQueryLocation, "https://ajax.aspnetcdn.com/ajax/jquery/").Trim(); jQueryLocation = jQueryLocation.WithEnding("/"); - string jQueryVersion = ViewBagHelper.ValueOrDefault(ViewBag.JQueryVersion, "3.7.0").Trim(); + string jQueryVersion = ViewBagHelper.ValueOrDefault(ViewBag.JQueryVersion, "3.7.1").Trim(); string excelJsLocation = ViewBagHelper.ValueOrDefault(ViewBag.ExcelJsLocation, "https://cdnjs.cloudflare.com/ajax/libs/exceljs/").Trim(); excelJsLocation = excelJsLocation.WithEnding("/"); string excelJsVersion = ViewBagHelper.ValueOrDefault(ViewBag.ExcelJsVersion, "4.4.0").Trim(); From 8964a8b5c44e0485644dd7128ce71440081ef3c1 Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Tue, 16 Apr 2024 09:26:17 +0200 Subject: [PATCH 4/5] Update DevExtreme to 23.1.9 (#534) --- .../templates/htmldatatable-demo-default.html | 24 +++++++------- .../htmldiagnostic-demo-default.html | 32 +++++++++---------- ...htmldxdatagrid-demo-additionalcolumns.html | 2 +- .../htmldxdatagrid-demo-changetitle.html | 2 +- .../htmldxdatagrid-demo-columnhiding.html | 2 +- ...ldxdatagrid-demo-customexportfilename.html | 2 +- ...ldxdatagrid-demo-customscriptlocation.html | 2 +- .../htmldxdatagrid-demo-default.html | 2 +- .../htmldxdatagrid-demo-disablefiltering.html | 2 +- .../htmldxdatagrid-demo-disablegrouping.html | 2 +- .../htmldxdatagrid-demo-disableheader.html | 2 +- .../htmldxdatagrid-demo-disablesearching.html | 2 +- .../htmldxdatagrid-demo-enableexporting.html | 2 +- .../htmldxdatagrid-demo-exportformat-pdf.html | 2 +- ...htmldxdatagrid-demo-exportformat-xlsx.html | 2 +- .../htmldxdatagrid-demo-grouping.html | 2 +- .../htmldxdatagrid-demo-sorting.html | 2 +- .../htmldxdatagrid-demo-theme-carmine.html | 2 +- .../htmldxdatagrid-demo-theme-contrast.html | 2 +- ...dxdatagrid-demo-theme-contrastcompact.html | 2 +- .../htmldxdatagrid-demo-theme-dark.html | 2 +- ...htmldxdatagrid-demo-theme-darkcompact.html | 2 +- .../htmldxdatagrid-demo-theme-darkmoon.html | 2 +- .../htmldxdatagrid-demo-theme-darkviolet.html | 2 +- .../htmldxdatagrid-demo-theme-greenmist.html | 2 +- .../htmldxdatagrid-demo-theme-light.html | 2 +- ...tmldxdatagrid-demo-theme-lightcompact.html | 2 +- ...xdatagrid-demo-theme-materialbluedark.html | 2 +- ...id-demo-theme-materialbluedarkcompact.html | 2 +- ...datagrid-demo-theme-materialbluelight.html | 2 +- ...d-demo-theme-materialbluelightcompact.html | 2 +- ...xdatagrid-demo-theme-materiallimedark.html | 2 +- ...id-demo-theme-materiallimedarkcompact.html | 2 +- ...datagrid-demo-theme-materiallimelight.html | 2 +- ...d-demo-theme-materiallimelightcompact.html | 2 +- ...atagrid-demo-theme-materialorangedark.html | 2 +- ...-demo-theme-materialorangedarkcompact.html | 2 +- ...tagrid-demo-theme-materialorangelight.html | 2 +- ...demo-theme-materialorangelightcompact.html | 2 +- ...atagrid-demo-theme-materialpurpledark.html | 2 +- ...-demo-theme-materialpurpledarkcompact.html | 2 +- ...tagrid-demo-theme-materialpurplelight.html | 2 +- ...demo-theme-materialpurplelightcompact.html | 2 +- ...xdatagrid-demo-theme-materialtealdark.html | 2 +- ...id-demo-theme-materialtealdarkcompact.html | 2 +- ...datagrid-demo-theme-materialteallight.html | 2 +- ...d-demo-theme-materialteallightcompact.html | 2 +- .../htmldxdatagrid-demo-theme-softblue.html | 2 +- .../HtmlDxDataGridOption.cs | 2 +- .../Templates/DxDataGrid.cshtml | 2 +- 50 files changed, 76 insertions(+), 76 deletions(-) diff --git a/docs/input/docs/report-formats/generic/templates/htmldatatable-demo-default.html b/docs/input/docs/report-formats/generic/templates/htmldatatable-demo-default.html index 0990eedaf..5f419c60f 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldatatable-demo-default.html +++ b/docs/input/docs/report-formats/generic/templates/htmldatatable-demo-default.html @@ -65,23 +65,23 @@

MSBuild

Warning ClassLibrary1 src/ClassLibrary1 - CSC - + Class1.cs + 1:1 - CA9998 + SA1633 - FxCopAnalyzers package has been deprecated in favor of 'Microsoft.CodeAnalysis.NetAnalyzers', that ships with the .NET SDK. Please refer to https://docs.microsoft.com/visualstudio/code-quality/migrate-from-fxcop-analyzers-to-net-analyzers to migrate to .NET analyzers. + The file header is missing or not located at the top of the file. Warning ClassLibrary1 src/ClassLibrary1 - Class1.cs - 1:1 + CSC + - SA1633 + CA9998 - The file header is missing or not located at the top of the file. + FxCopAnalyzers package has been deprecated in favor of 'Microsoft.CodeAnalysis.NetAnalyzers', that ships with the .NET SDK. Please refer to https://docs.microsoft.com/visualstudio/code-quality/migrate-from-fxcop-analyzers-to-net-analyzers to migrate to .NET analyzers. Warning @@ -154,22 +154,22 @@

MSBuild

ClassLibrary1 src/ClassLibrary1 Class1.cs - 11:21 + 21:21 CA1822 - Member 'Foo' does not access instance data and can be marked as static + Member 'Bar' does not access instance data and can be marked as static Warning ClassLibrary1 src/ClassLibrary1 Class1.cs - 21:21 + 11:21 CA1822 - Member 'Bar' does not access instance data and can be marked as static + Member 'Foo' does not access instance data and can be marked as static Warning diff --git a/docs/input/docs/report-formats/generic/templates/htmldiagnostic-demo-default.html b/docs/input/docs/report-formats/generic/templates/htmldiagnostic-demo-default.html index d4d6809cb..b44a2955e 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldiagnostic-demo-default.html +++ b/docs/input/docs/report-formats/generic/templates/htmldiagnostic-demo-default.html @@ -55,19 +55,19 @@ src/ClassLibrary1/ClassLibrary1.csproj ClassLibrary1 - src/ClassLibrary1/CSC - - + src/ClassLibrary1/Class1.cs + 1 + 1 - FxCopAnalyzers package has been deprecated in favor of 'Microsoft.CodeAnalysis.NetAnalyzers', that ships with the .NET SDK. Please refer to https://docs.microsoft.com/visualstudio/code-quality/migrate-from-fxcop-analyzers-to-net-analyzers to migrate to .NET analyzers. + The file header is missing or not located at the top of the file. 300 Warning - CA9998 + SA1633 - https://www.google.com/search?q="CA9998:"+site:learn.microsoft.com + https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1633.md Cake.Issues.MsBuild.MsBuildIssuesProvider MSBuild @@ -75,19 +75,19 @@ src/ClassLibrary1/ClassLibrary1.csproj ClassLibrary1 - src/ClassLibrary1/Class1.cs - 1 + src/ClassLibrary1/CSC - 1 - The file header is missing or not located at the top of the file. + + + FxCopAnalyzers package has been deprecated in favor of 'Microsoft.CodeAnalysis.NetAnalyzers', that ships with the .NET SDK. Please refer to https://docs.microsoft.com/visualstudio/code-quality/migrate-from-fxcop-analyzers-to-net-analyzers to migrate to .NET analyzers. 300 Warning - SA1633 + CA9998 - https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1633.md + https://www.google.com/search?q="CA9998:"+site:learn.microsoft.com Cake.Issues.MsBuild.MsBuildIssuesProvider MSBuild @@ -216,11 +216,11 @@ src/ClassLibrary1/ClassLibrary1.csproj ClassLibrary1 src/ClassLibrary1/Class1.cs - 11 + 21 21 - Member 'Foo' does not access instance data and can be marked as static + Member 'Bar' does not access instance data and can be marked as static 300 @@ -236,11 +236,11 @@ src/ClassLibrary1/ClassLibrary1.csproj ClassLibrary1 src/ClassLibrary1/Class1.cs - 21 + 11 21 - Member 'Bar' does not access instance data and can be marked as static + Member 'Foo' does not access instance data and can be marked as static 300 diff --git a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-additionalcolumns.html b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-additionalcolumns.html index d3bcfbc03..d501abb65 100644 --- a/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-additionalcolumns.html +++ b/docs/input/docs/report-formats/generic/templates/htmldxdatagrid-demo-additionalcolumns.html @@ -37,7 +37,7 @@

Issues Report