Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed Jul 16, 2020
2 parents c0d4e12 + fee14cc commit 1b63434
Show file tree
Hide file tree
Showing 18 changed files with 4,092 additions and 2,900 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to **LightQuery** are documented here.

## v1.9.1:
- Drop tests for `netcoreapp2.0` and `netcoreapp3.0` and add tests for `netcoreapp3.1`
- The Angular library was updated to v10

## v1.9.0:
- Addition of the **LightQuery.Swashbuckle** (thanks to GitHub user @berkayakcay) and **LightQuery.NSwag** packages to support Swagger & OpenAPI generation

Expand Down
33 changes: 11 additions & 22 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,16 @@ pipeline {
}
post {
always {
warnings(
canComputeNew: false,
canResolveRelativePaths: false,
categoriesPattern: '',
consoleParsers: [[parserName: 'MSBuild']],
defaultEncoding: '',
excludePattern: '',
healthy: '',
includePattern: '',
messagesPattern: '',
unHealthy: '')
openTasks(
canComputeNew: false,
defaultEncoding: '',
excludePattern: 'src/ng-lightquery/node_modules/**/*',
healthy: '',
high: 'HACK, FIXME',
ignoreCase: true,
low: '',
normal: 'TODO',
pattern: '**/*.cs, **/*.g4, **/*.ts, **/*.js',
unHealthy: '')
recordIssues(
tools: [
msBuild(),
taskScanner(
excludePattern: '**/*node_modules/**/*',
highTags: 'HACK, FIXME',
ignoreCase: true,
includePattern: '**/*.cs, **/*.g4, **/*.ts, **/*.js',
normalTags: 'TODO')
])
xunit(
testTimeMargin: '3000',
thresholdMode: 1,
Expand Down Expand Up @@ -94,6 +82,7 @@ pipeline {
notifyEveryUnstableBuild: true,
recipients: "[email protected]",
sendToIndividuals: true])
cleanWs()
}
}
}
6 changes: 3 additions & 3 deletions build/.build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Dangl.Nuke.CoberturaConverter" Version="1.3.0" />
<PackageReference Include="Dangl.Nuke.CoberturaConverter" Version="1.3.1" />
<PackageReference Include="Nuke.Azure.KeyVault" Version="0.5.0" />
<PackageReference Include="Nuke.Common" Version="0.21.2" />
<PackageReference Include="GitVersion.CommandLine.DotNetCore" Version="5.0.1">
Expand All @@ -20,12 +20,12 @@
<PackageReference Include="Nuke.DocFX" Version="0.2.0" />
<PackageReference Include="Nuke.WebDocu" Version="1.4.1" />
<PackageReference Include="Nuke.GitHub" Version="1.5.0" />
<PackageReference Include="JetBrains.dotCover.CommandLineTools" Version="2019.2.2">
<PackageReference Include="JetBrains.dotCover.CommandLineTools" Version="2020.1.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="ReportGenerator" Version="4.2.20" />
<PackageReference Include="docfx.console" Version="2.45.1">
<PackageReference Include="docfx.console" Version="2.56.1">
<ExcludeAssets>build</ExcludeAssets>
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; native; contentfiles; analyzers</IncludeAssets>
Expand Down
Loading

0 comments on commit 1b63434

Please sign in to comment.