Skip to content
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

merge dev into master #1886

Merged
merged 29 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
3147a1f
Remove GE TourSteps feature (#1846)
irvinesunday Nov 21, 2023
e32fe6d
Remove changes feature and endpoint (#1848)
irvinesunday Nov 21, 2023
0834f3d
Bump apidoctor from `0af49da` to `4c2e80c` (#1850)
dependabot[bot] Nov 22, 2023
c6effba
Bump Microsoft.OpenApi from 1.6.10 to 1.6.11 (#1854)
dependabot[bot] Nov 23, 2023
184515a
Bump Microsoft.OpenApi.Readers from 1.6.10 to 1.6.11 (#1855)
dependabot[bot] Nov 23, 2023
03f3628
Use withUrl for generated snippets (#1851)
andrueastman Nov 27, 2023
a1d5ec3
Bump Microsoft.AspNetCore.Mvc.NewtonsoftJson from 7.0.13 to 7.0.14 (#…
dependabot[bot] Nov 27, 2023
1ff73cc
Bump Microsoft.AspNetCore.Authentication.JwtBearer from 7.0.13 to 7.0…
dependabot[bot] Nov 27, 2023
638f303
Bump NUnit from 3.14.0 to 4.0.0 (#1856)
dependabot[bot] Nov 28, 2023
4ce2665
Bump Serilog.Sinks.Console from 5.0.0 to 5.0.1 (#1861)
dependabot[bot] Nov 28, 2023
b2a7a2f
Bump Moq from 4.20.69 to 4.20.70 (#1860)
dependabot[bot] Nov 28, 2023
e425976
Bump NUnit.Analyzers from 3.9.0 to 3.10.0 (#1859)
dependabot[bot] Nov 28, 2023
72bcc6a
Bump actions/setup-java from 3 to 4 (#1862)
dependabot[bot] Nov 30, 2023
0778e6d
Bump apidoctor from `4c2e80c` to `a990589` (#1865)
dependabot[bot] Dec 4, 2023
67befa5
Bump NUnit from 4.0.0 to 4.0.1 (#1869)
dependabot[bot] Dec 5, 2023
13574b6
Bump apidoctor from `a990589` to `9d9914c` (#1867)
dependabot[bot] Dec 5, 2023
104fcbd
Bump actions/setup-dotnet from 3 to 4 (#1868)
dependabot[bot] Dec 5, 2023
7d069e2
Bump Microsoft.ApplicationInsights from 2.21.0 to 2.22.0 (#1872)
dependabot[bot] Dec 5, 2023
013493c
Bump Microsoft.ApplicationInsights.AspNetCore, Microsoft.ApplicationI…
dependabot[bot] Dec 6, 2023
6cfd636
Bump Microsoft.ApplicationInsights.Web from 2.21.0 to 2.22.0 (#1874)
dependabot[bot] Dec 7, 2023
fef12ff
Bump xunit from 2.6.2 to 2.6.3 (#1876)
dependabot[bot] Dec 13, 2023
2a7d396
Bump Microsoft.IO.RecyclableMemoryStream from 2.3.2 to 3.0.0 (#1878)
dependabot[bot] Dec 13, 2023
2e90e34
Bump xunit.runner.visualstudio from 2.5.4 to 2.5.5 (#1877)
dependabot[bot] Dec 13, 2023
ab801e8
Bump github/codeql-action from 2 to 3 (#1879)
dependabot[bot] Dec 14, 2023
2b50aa4
Bump xunit.runner.visualstudio from 2.5.5 to 2.5.6 (#1881)
dependabot[bot] Jan 2, 2024
96d6492
Bump Microsoft.VisualStudio.Azure.Containers.Tools.Targets (#1885)
dependabot[bot] Jan 6, 2024
c13a85a
Bump xunit from 2.6.3 to 2.6.5 (#1884)
dependabot[bot] Jan 6, 2024
0d029a6
Bump Microsoft.ApplicationInsights.SnapshotCollector from 1.4.4 to 1.…
dependabot[bot] Jan 6, 2024
3a6b9c1
Task: use kibali for permissions (#1864)
thewahome Jan 9, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -64,7 +64,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
Expand All @@ -77,6 +77,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
8 changes: 4 additions & 4 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
- name: Setup .NET 5 # At the moment the scanner requires dotnet 5 https://www.nuget.org/packages/dotnet-sonarscanner
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 5.0.x
- name: Setup .NET 6
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Setup .NET 7
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- uses: actions/checkout@v4
Expand Down
39 changes: 0 additions & 39 deletions ChangesService.Test/ChangeLogQueryOptionsShould.cs

This file was deleted.

264 changes: 0 additions & 264 deletions ChangesService.Test/ChangeLogRecordsModelShould.cs

This file was deleted.

33 changes: 0 additions & 33 deletions ChangesService.Test/ChangeLogSearchOptionsModelShould.cs

This file was deleted.

Loading
Loading