From d1f068468302efbc0bbd1601de0c991ed6738db7 Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Tue, 4 Jun 2024 15:12:27 +0200 Subject: [PATCH 1/8] chore: publish graphql and swagger schema to NPM (#803) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description Currently using the same tag as we do when publishing docker images. We might want to move over to an `RC`-type of version tagging instead of using version and short sha for test.. ## Related Issue(s) - #474 ## Verification - [X] **Your** code builds clean without any errors or warnings - [X] Manual testing done (required) - [X] Relevant automated test added (if you find this hard, leave it and we'll help out) ## Documentation - [X] Documentation is updated (either in `docs`-directory, Altinnpedia or a separate linked PR in [altinn-studio-docs.](https://github.com/Altinn/altinn-studio-docs), if applicable) --------- Co-authored-by: Ole Jørgen Skogstad --- .../workflows/action-check-for-changes.yml | 6 +++ .github/workflows/action-publish-schema.yml | 42 +++++++++++++++++++ .github/workflows/ci-cd-main.yml | 10 +++++ .github/workflows/ci-cd-staging.yml | 10 +++++ docs/schema/V1/README.md | 19 +++++++++ 5 files changed, 87 insertions(+) create mode 100644 .github/workflows/action-publish-schema.yml create mode 100644 docs/schema/V1/README.md diff --git a/.github/workflows/action-check-for-changes.yml b/.github/workflows/action-check-for-changes.yml index bc6723a59..1a1ea7530 100644 --- a/.github/workflows/action-check-for-changes.yml +++ b/.github/workflows/action-check-for-changes.yml @@ -12,6 +12,9 @@ on: hasSlackNotifierChanges: description: "Slack Notifier function related files changed" value: ${{ jobs.check-for-changes.outputs.hasSlackNotifierChanges }} + hasSchemaChanges: + description: "Schema has changed" + value: ${{ jobs.check-for-changes.outputs.hasSchemaChanges }} hasMigrationChanges: description: "Migration related files changed" value: ${{ jobs.check-for-changes.outputs.hasMigrationChanges }} @@ -23,6 +26,7 @@ jobs: hasBackendChanges: ${{ steps.filter.outputs.backend_any_changed == 'true' }} hasAzureChanges: ${{ steps.filter.outputs.azure_any_changed == 'true' }} hasSlackNotifierChanges: ${{ steps.filter.outputs.slackNotifier_any_changed == 'true'}} + hasSchemaChanges: ${{ steps.filter.outputs.schema_any_changed == 'true'}} hasMigrationChanges: ${{ steps.filter.outputs.migration_any_changed == 'true'}} steps: - name: Checkout @@ -46,5 +50,7 @@ jobs: slackNotifier: - '.github/**/*' - 'src/Digdir.Tool.Dialogporten.SlackNotifier/**/*' + schema: + - 'docs/schema/V1/**/*' migration: - 'src/Digdir.Domain.Dialogporten.Infrastructure/Persistence/Migrations/**/*' diff --git a/.github/workflows/action-publish-schema.yml b/.github/workflows/action-publish-schema.yml new file mode 100644 index 000000000..7772fea83 --- /dev/null +++ b/.github/workflows/action-publish-schema.yml @@ -0,0 +1,42 @@ +name: Publish Schema to NPM + +on: + workflow_call: + inputs: + version: + required: true + type: string + secrets: + NPM_TOKEN: + required: true + +jobs: + publish-schema-to-npm: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + registry-url: 'https://registry.npmjs.org/' + + - name: Install dependencies + run: | + cd ./docs/schema + npm ci + + - name: Update package version + run: | + cd ./docs/schema + jq '.version = "${{ inputs.version }}"' package.json > temp.json + mv temp.json package.json + + - name: Publish package + run: | + cd ./docs/schema + npm publish --provenance --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/ci-cd-main.yml b/.github/workflows/ci-cd-main.yml index 81c3888f5..dfd68c504 100644 --- a/.github/workflows/ci-cd-main.yml +++ b/.github/workflows/ci-cd-main.yml @@ -122,6 +122,16 @@ jobs: function-project-path: "./src/Digdir.Tool.Dialogporten.SlackNotifier" environment: test + publish-schema-npm: + name: Deploy schema npm package + needs: [check-for-changes, get-current-version, generate-git-short-sha] + if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSchemaChanges == 'true' }} + uses: ./.github/workflows/action-publish-schema.yml + with: + version: ${{ needs.get-current-version.outputs.version }} + secrets: + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run-e2e-tests: name: "Run K6 functional end-to-end tests" # we want the end-to-end tests to be dependent on deployment of infrastructure and apps, but if infrastructure is skipped, we still want to run the tests diff --git a/.github/workflows/ci-cd-staging.yml b/.github/workflows/ci-cd-staging.yml index 91d23c239..45db7861f 100644 --- a/.github/workflows/ci-cd-staging.yml +++ b/.github/workflows/ci-cd-staging.yml @@ -70,6 +70,16 @@ jobs: version: ${{ needs.get-current-version.outputs.version }} runMigration: ${{ needs.check-for-changes.outputs.hasMigrationChanges == 'true' }} + publish-schema-npm: + name: Publish schema npm package + needs: [check-for-changes, get-current-version] + if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSchemaChanges == 'true' }} + uses: ./.github/workflows/action-publish-schema.yml + with: + version: ${{ needs.get-current-version.outputs.version }} + secrets: + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run-e2e-tests: name: "Run K6 functional end-to-end tests" # we want the end-to-end tests to be dependent on deployment of infrastructure and apps, but if infrastructure is skipped, we still want to run the tests diff --git a/docs/schema/V1/README.md b/docs/schema/V1/README.md new file mode 100644 index 000000000..9efc3446d --- /dev/null +++ b/docs/schema/V1/README.md @@ -0,0 +1,19 @@ +# Dialogporten Schema Package + +This npm package contains both the Swagger and GraphQL schema definitions for the Dialogporten API. It is designed to provide developers with the necessary specifications to interact with the Dialogporten services effectively. + +## Description +This package includes: +- **GraphQL Schema (schema.verified.graphql)**: Defines the types, queries, and mutations available in the Dialogporten GraphQL API. +- **OpenAPI Specification ((swagger.verified.json))**: Provides a detailed description of the RESTful endpoints, parameters, and models used in the Dialogporten API. + +## Usage +To use this package, include it in your project dependencies using npm: +To install the Dialogporten Schema Package in your JavaScript project, follow these steps: + +1. Ensure you have npm installed. You can check by running `npm -v` in your terminal. If npm is not installed, download and install Node.js from [nodejs.org](https://nodejs.org/), which includes npm. + +2. Add the Dialogporten Schema Package to your project dependencies. Run the following command in your project directory: + ```bash + npm install @digdir/dialogporten-schema + ``` From 987dfa170f38caf6488979e883578f43319b6cb9 Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Tue, 4 Jun 2024 15:15:56 +0200 Subject: [PATCH 2/8] fix(schema): add package-lock file (#804) ## Description ## Related Issue(s) - #474 ## Verification - [x] **Your** code builds clean without any errors or warnings - [x] Manual testing done (required) - [ ] Relevant automated test added (if you find this hard, leave it and we'll help out) ## Documentation - [ ] Documentation is updated (either in `docs`-directory, Altinnpedia or a separate linked PR in [altinn-studio-docs.](https://github.com/Altinn/altinn-studio-docs), if applicable) --- docs/schema/V1/package-lock.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docs/schema/V1/package-lock.json diff --git a/docs/schema/V1/package-lock.json b/docs/schema/V1/package-lock.json new file mode 100644 index 000000000..2d54fb3bd --- /dev/null +++ b/docs/schema/V1/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "@digdir/dialogporten-schema", + "version": "1.0.11", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@digdir/dialogporten-schema", + "version": "1.0.11", + "license": "ISC" + } + } +} From fe9f4105b3f0f081483496ecf6d4809d8a826a8d Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Tue, 4 Jun 2024 15:38:19 +0200 Subject: [PATCH 3/8] ci(schema): use correct working-directory (#807) ## Description ## Related Issue(s) - #474 ## Verification - [ ] **Your** code builds clean without any errors or warnings - [ ] Manual testing done (required) - [ ] Relevant automated test added (if you find this hard, leave it and we'll help out) ## Documentation - [ ] Documentation is updated (either in `docs`-directory, Altinnpedia or a separate linked PR in [altinn-studio-docs.](https://github.com/Altinn/altinn-studio-docs), if applicable) --- .github/workflows/action-publish-schema.yml | 14 +++++++------- docs/schema/V1/README.md | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/action-publish-schema.yml b/.github/workflows/action-publish-schema.yml index 7772fea83..b05aafd06 100644 --- a/.github/workflows/action-publish-schema.yml +++ b/.github/workflows/action-publish-schema.yml @@ -9,6 +9,8 @@ on: secrets: NPM_TOKEN: required: true +env: + WORKING_DIRECTORY: docs/schema/V1 jobs: publish-schema-to-npm: @@ -24,19 +26,17 @@ jobs: registry-url: 'https://registry.npmjs.org/' - name: Install dependencies - run: | - cd ./docs/schema - npm ci + run: npm ci + working-directory: ${{ env.WORKING_DIRECTORY }} - name: Update package version run: | - cd ./docs/schema jq '.version = "${{ inputs.version }}"' package.json > temp.json mv temp.json package.json + working-directory: ${{ env.WORKING_DIRECTORY }} - name: Publish package - run: | - cd ./docs/schema - npm publish --provenance --access public + run: npm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + working-directory: ${{ env.WORKING_DIRECTORY }} diff --git a/docs/schema/V1/README.md b/docs/schema/V1/README.md index 9efc3446d..ec29e1b59 100644 --- a/docs/schema/V1/README.md +++ b/docs/schema/V1/README.md @@ -1,6 +1,6 @@ # Dialogporten Schema Package -This npm package contains both the Swagger and GraphQL schema definitions for the Dialogporten API. It is designed to provide developers with the necessary specifications to interact with the Dialogporten services effectively. +This npm package contains both the Swagger and GraphQL schema definitions for the Dialogporten API. It is designed to provide developers with the necessary specifications to interact with the Dialogporten API effectively. ## Description This package includes: From b684144368bdc854c13659bf7b2e931a2237a13a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Skogstad?= Date: Tue, 4 Jun 2024 15:38:38 +0200 Subject: [PATCH 4/8] chore: Remove ef tool version from migration bundle dockerfile (#806) --- .../MigrationBundle.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Digdir.Domain.Dialogporten.Infrastructure/MigrationBundle.dockerfile b/src/Digdir.Domain.Dialogporten.Infrastructure/MigrationBundle.dockerfile index 7709c6502..8b29fbaa2 100644 --- a/src/Digdir.Domain.Dialogporten.Infrastructure/MigrationBundle.dockerfile +++ b/src/Digdir.Domain.Dialogporten.Infrastructure/MigrationBundle.dockerfile @@ -6,7 +6,7 @@ WORKDIR /src # Main project COPY ["src/Digdir.Domain.Dialogporten.Infrastructure/Digdir.Domain.Dialogporten.Infrastructure.csproj", "src/Digdir.Domain.Dialogporten.Infrastructure/"] -# Dependencies +# Dependencies COPY ["src/Digdir.Domain.Dialogporten.Domain/Digdir.Domain.Dialogporten.Domain.csproj", "src/Digdir.Domain.Dialogporten.Domain/"] COPY ["src/Digdir.Library.Entity.Abstractions/Digdir.Library.Entity.Abstractions.csproj", "src/Digdir.Library.Entity.Abstractions/"] COPY ["src/Digdir.Library.Entity.EntityFrameworkCore/Digdir.Library.Entity.EntityFrameworkCore.csproj", "src/Digdir.Library.Entity.EntityFrameworkCore/"] @@ -17,7 +17,7 @@ COPY ["src/", "."] WORKDIR "/src/Digdir.Domain.Dialogporten.Infrastructure" RUN mkdir -p /app/publish -RUN dotnet tool install --global dotnet-ef --version 7.0.14 +RUN dotnet tool install --global dotnet-ef ENV PATH $PATH:/root/.dotnet/tools RUN dotnet ef migrations -v bundle -o /app/publish/efbundle From 576560d2bc1b6e96a1a382f129f42bb438d59036 Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Tue, 4 Jun 2024 15:51:23 +0200 Subject: [PATCH 5/8] ci(schema): use correct version for schema publishing (#808) ## Description ## Related Issue(s) - #474 ## Verification - [ ] **Your** code builds clean without any errors or warnings - [ ] Manual testing done (required) - [ ] Relevant automated test added (if you find this hard, leave it and we'll help out) ## Documentation - [ ] Documentation is updated (either in `docs`-directory, Altinnpedia or a separate linked PR in [altinn-studio-docs.](https://github.com/Altinn/altinn-studio-docs), if applicable) --- .github/workflows/ci-cd-main.yml | 2 +- docs/schema/V1/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd-main.yml b/.github/workflows/ci-cd-main.yml index dfd68c504..1a7478abd 100644 --- a/.github/workflows/ci-cd-main.yml +++ b/.github/workflows/ci-cd-main.yml @@ -128,7 +128,7 @@ jobs: if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSchemaChanges == 'true' }} uses: ./.github/workflows/action-publish-schema.yml with: - version: ${{ needs.get-current-version.outputs.version }} + version: ${{ needs.get-current-version.outputs.version }}-${{ needs.generate-git-short-sha.outputs.gitShortSha }} secrets: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/docs/schema/V1/package.json b/docs/schema/V1/package.json index 97d953e4a..255ad2bc0 100644 --- a/docs/schema/V1/package.json +++ b/docs/schema/V1/package.json @@ -7,4 +7,4 @@ "url": "git+https://github.com/digdir/dialogporten.git" }, "license": "ISC" -} +} \ No newline at end of file From a940be992c74403cfe9bd6c5623f56215e3738f6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:25:11 +0200 Subject: [PATCH 6/8] chore(deps): update dependency bouncycastle.cryptography to v2.4.0 (#811) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [BouncyCastle.Cryptography](https://www.bouncycastle.org/stable/nuget/csharp/website) ([source](https://togithub.com/bcgit/bc-csharp)) | `2.3.1` -> `2.4.0` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/BouncyCastle.Cryptography/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/BouncyCastle.Cryptography/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/BouncyCastle.Cryptography/2.3.1/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/BouncyCastle.Cryptography/2.3.1/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
bcgit/bc-csharp (BouncyCastle.Cryptography) ### [`v2.4.0`](https://togithub.com/bcgit/bc-csharp/compare/release-2.3.1...release-2.4.0) [Compare Source](https://togithub.com/bcgit/bc-csharp/compare/release-2.3.1...release-2.4.0)
--- ### Configuration 📅 **Schedule**: Branch creation - "before 7am on Sunday,before 7am on Wednesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/digdir/dialogporten). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../Digdir.Tool.Dialogporten.Benchmarks.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Digdir.Tool.Dialogporten.Benchmarks/Digdir.Tool.Dialogporten.Benchmarks.csproj b/src/Digdir.Tool.Dialogporten.Benchmarks/Digdir.Tool.Dialogporten.Benchmarks.csproj index bfba76118..dc0f932e8 100644 --- a/src/Digdir.Tool.Dialogporten.Benchmarks/Digdir.Tool.Dialogporten.Benchmarks.csproj +++ b/src/Digdir.Tool.Dialogporten.Benchmarks/Digdir.Tool.Dialogporten.Benchmarks.csproj @@ -9,7 +9,7 @@ - + From 61279837201534642e72b0312269f9f77d83b895 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:40:28 +0200 Subject: [PATCH 7/8] chore(deps): update hotchocolate monorepo to v13.9.5 (#810) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [HotChocolate.AspNetCore](https://chillicream.com/) ([source](https://togithub.com/ChilliCream/graphql-platform)) | `13.9.4` -> `13.9.5` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/HotChocolate.AspNetCore/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/HotChocolate.AspNetCore/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/HotChocolate.AspNetCore/13.9.4/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/HotChocolate.AspNetCore/13.9.4/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [HotChocolate.AspNetCore.Authorization](https://chillicream.com/) ([source](https://togithub.com/ChilliCream/graphql-platform)) | `13.9.4` -> `13.9.5` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/HotChocolate.AspNetCore.Authorization/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/HotChocolate.AspNetCore.Authorization/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/HotChocolate.AspNetCore.Authorization/13.9.4/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/HotChocolate.AspNetCore.Authorization/13.9.4/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [HotChocolate.Data.EntityFramework](https://chillicream.com/) ([source](https://togithub.com/ChilliCream/graphql-platform)) | `13.9.4` -> `13.9.5` | [![age](https://developer.mend.io/api/mc/badges/age/nuget/HotChocolate.Data.EntityFramework/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/HotChocolate.Data.EntityFramework/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/HotChocolate.Data.EntityFramework/13.9.4/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/HotChocolate.Data.EntityFramework/13.9.4/13.9.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
ChilliCream/graphql-platform (HotChocolate.AspNetCore) ### [`v13.9.5`](https://togithub.com/ChilliCream/graphql-platform/releases/tag/13.9.5) [Compare Source](https://togithub.com/ChilliCream/graphql-platform/compare/13.9.4...13.9.5) ##### What's Changed - \[Fusion] Reset requirements planner for every iteration. **Full Changelog**: https://github.com/ChilliCream/graphql-platform/compare/13.9.4...13.9.5
--- ### Configuration 📅 **Schedule**: Branch creation - "before 7am on Sunday,before 7am on Wednesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/digdir/dialogporten). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ole Jørgen Skogstad --- .../Digdir.Domain.Dialogporten.GraphQL.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Digdir.Domain.Dialogporten.GraphQL/Digdir.Domain.Dialogporten.GraphQL.csproj b/src/Digdir.Domain.Dialogporten.GraphQL/Digdir.Domain.Dialogporten.GraphQL.csproj index a807f4cfc..877641236 100644 --- a/src/Digdir.Domain.Dialogporten.GraphQL/Digdir.Domain.Dialogporten.GraphQL.csproj +++ b/src/Digdir.Domain.Dialogporten.GraphQL/Digdir.Domain.Dialogporten.GraphQL.csproj @@ -10,9 +10,9 @@ - - - + + + From aaec60388f8f82a13425807de9c53e3faae30b62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Skogstad?= Date: Wed, 5 Jun 2024 09:46:51 +0200 Subject: [PATCH 8/8] chore(deps): Update Microsoft NuGets 8.0.6 (#812) --- .../Digdir.Domain.Dialogporten.GraphQL.csproj | 2 +- .../Digdir.Domain.Dialogporten.Infrastructure.csproj | 6 +++--- .../Digdir.Domain.Dialogporten.WebApi.csproj | 6 +++--- .../Digdir.Library.Entity.EntityFrameworkCore.csproj | 2 +- ...dir.Domain.Dialogporten.GraphQl.Integration.Tests.csproj | 2 +- ...gdir.Domain.Dialogporten.WebApi.Integration.Tests.csproj | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Digdir.Domain.Dialogporten.GraphQL/Digdir.Domain.Dialogporten.GraphQL.csproj b/src/Digdir.Domain.Dialogporten.GraphQL/Digdir.Domain.Dialogporten.GraphQL.csproj index 877641236..58b877b54 100644 --- a/src/Digdir.Domain.Dialogporten.GraphQL/Digdir.Domain.Dialogporten.GraphQL.csproj +++ b/src/Digdir.Domain.Dialogporten.GraphQL/Digdir.Domain.Dialogporten.GraphQL.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/Digdir.Domain.Dialogporten.Infrastructure/Digdir.Domain.Dialogporten.Infrastructure.csproj b/src/Digdir.Domain.Dialogporten.Infrastructure/Digdir.Domain.Dialogporten.Infrastructure.csproj index 29cdc8f8a..ed7abe206 100644 --- a/src/Digdir.Domain.Dialogporten.Infrastructure/Digdir.Domain.Dialogporten.Infrastructure.csproj +++ b/src/Digdir.Domain.Dialogporten.Infrastructure/Digdir.Domain.Dialogporten.Infrastructure.csproj @@ -9,14 +9,14 @@ - + - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive true diff --git a/src/Digdir.Domain.Dialogporten.WebApi/Digdir.Domain.Dialogporten.WebApi.csproj b/src/Digdir.Domain.Dialogporten.WebApi/Digdir.Domain.Dialogporten.WebApi.csproj index f32065a48..88122a042 100644 --- a/src/Digdir.Domain.Dialogporten.WebApi/Digdir.Domain.Dialogporten.WebApi.csproj +++ b/src/Digdir.Domain.Dialogporten.WebApi/Digdir.Domain.Dialogporten.WebApi.csproj @@ -15,9 +15,9 @@ - - - + + + diff --git a/src/Digdir.Library.Entity.EntityFrameworkCore/Digdir.Library.Entity.EntityFrameworkCore.csproj b/src/Digdir.Library.Entity.EntityFrameworkCore/Digdir.Library.Entity.EntityFrameworkCore.csproj index e6b320def..5d346cbdb 100644 --- a/src/Digdir.Library.Entity.EntityFrameworkCore/Digdir.Library.Entity.EntityFrameworkCore.csproj +++ b/src/Digdir.Library.Entity.EntityFrameworkCore/Digdir.Library.Entity.EntityFrameworkCore.csproj @@ -8,7 +8,7 @@ - + diff --git a/tests/Digdir.Domain.Dialogporten.GraphQl.Integration.Tests/Digdir.Domain.Dialogporten.GraphQl.Integration.Tests.csproj b/tests/Digdir.Domain.Dialogporten.GraphQl.Integration.Tests/Digdir.Domain.Dialogporten.GraphQl.Integration.Tests.csproj index b03ec1d08..ca721cc7b 100644 --- a/tests/Digdir.Domain.Dialogporten.GraphQl.Integration.Tests/Digdir.Domain.Dialogporten.GraphQl.Integration.Tests.csproj +++ b/tests/Digdir.Domain.Dialogporten.GraphQl.Integration.Tests/Digdir.Domain.Dialogporten.GraphQl.Integration.Tests.csproj @@ -14,7 +14,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/tests/Digdir.Domain.Dialogporten.WebApi.Integration.Tests/Digdir.Domain.Dialogporten.WebApi.Integration.Tests.csproj b/tests/Digdir.Domain.Dialogporten.WebApi.Integration.Tests/Digdir.Domain.Dialogporten.WebApi.Integration.Tests.csproj index 2f767415f..39459a8a2 100644 --- a/tests/Digdir.Domain.Dialogporten.WebApi.Integration.Tests/Digdir.Domain.Dialogporten.WebApi.Integration.Tests.csproj +++ b/tests/Digdir.Domain.Dialogporten.WebApi.Integration.Tests/Digdir.Domain.Dialogporten.WebApi.Integration.Tests.csproj @@ -8,7 +8,7 @@ - +