From bf78d9d947241294c7197dadab1919067ee4fe50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rnar=20=C3=98sttveit?= <47412359+bjosttveit@users.noreply.github.com> Date: Tue, 20 Feb 2024 09:57:10 +0100 Subject: [PATCH] bump upgrade versions (#1414) --- .../community/changelog/app-frontend/v4/_index.en.md | 2 +- .../app-frontend/v4/migrating-from-v3/_index.en.md | 10 +++++----- .../app-nuget/v8/migrating-from-v7/_index.en.md | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/content/community/changelog/app-frontend/v4/_index.en.md b/content/community/changelog/app-frontend/v4/_index.en.md index 3dd044a7272..e4e8a2a267d 100644 --- a/content/community/changelog/app-frontend/v4/_index.en.md +++ b/content/community/changelog/app-frontend/v4/_index.en.md @@ -27,7 +27,7 @@ App frontend v4 requires at least version 8.0.0 of the `Altinn.App.Core` and `Al See the [overview of changes in backend v8](/community/changelog/app-nuget/v8) for more information on how to upgrade. {{% notice warning %}} -The `v4.0.0-rc2` release requires version `v8.0.0-preview16` or above. When both major releases of app frontend and +The `v4.0.0-rc3` release requires version `v8.0.0-preview.17` or above. When both major releases of app frontend and backend are released, the `v4.0.0` release will require version `v8.0.0` or above. {{% /notice %}} diff --git a/content/community/changelog/app-frontend/v4/migrating-from-v3/_index.en.md b/content/community/changelog/app-frontend/v4/migrating-from-v3/_index.en.md index 776b183f9b9..3329ee2508f 100644 --- a/content/community/changelog/app-frontend/v4/migrating-from-v3/_index.en.md +++ b/content/community/changelog/app-frontend/v4/migrating-from-v3/_index.en.md @@ -6,9 +6,9 @@ toc: true --- {{% notice info %}} -As of writing this documentation, the latest release candidate of app-frontend v4 is `4.0.0-rc2`. Updated information +As of writing this documentation, the latest release candidate of app-frontend v4 is `4.0.0-rc3`. Updated information [is available on GitHub](https://github.com/Altinn/app-frontend-react/releases). Before the release of v4.0.0 stable, -you will have to use exact version numbers in the URLs, e.g. `4.0.0-rc2` instead of `4`. Each time we release a new +you will have to use exact version numbers in the URLs, e.g. `4.0.0-rc3` instead of `4`. Each time we release a new release candidate and you want to try out the new release, this URL will have to be updated. When the stable version is released, you can use `4` as the version number in the URLs and get the latest stable version automatically. {{% /notice %}} @@ -96,7 +96,7 @@ In addition to changing the version, you should also remove the links to the thi - - + + + ``` 2. Changes inside __<body>__:

@@ -121,7 +121,7 @@ In addition to changing the version, you should also remove the links to the thi - - + + + ``` 3. It's optionally also possible to change the `$schema` reference in layout files to get the latest suggestions and validations for layout configuration. This is not required for v4 to work, but is recommended when developing @@ -133,7 +133,7 @@ In addition to changing the version, you should also remove the links to the thi ```diff { - "$schema": "https://altinncdn.no/schemas/json/layout/layout.schema.v1.json", - + "$schema": "https://altinncdn.no/toolkits/altinn-app-frontend/4.0.0-rc2/schemas/json/layout/layout.schema.v1.json", + + "$schema": "https://altinncdn.no/toolkits/altinn-app-frontend/4.0.0-rc3/schemas/json/layout/layout.schema.v1.json", "data": { "layout": [ { diff --git a/content/community/changelog/app-nuget/v8/migrating-from-v7/_index.en.md b/content/community/changelog/app-nuget/v8/migrating-from-v7/_index.en.md index 2c0a51b3fc5..7e9d9e5e2dc 100644 --- a/content/community/changelog/app-nuget/v8/migrating-from-v7/_index.en.md +++ b/content/community/changelog/app-nuget/v8/migrating-from-v7/_index.en.md @@ -6,7 +6,7 @@ toc: true --- {{% notice info %}} -As of writing this documentation, the latest preview release of v8 is `8.0.0-preview.16`. Updated information +As of writing this documentation, the latest preview release of v8 is `8.0.0-preview.17`. Updated information [is available on GitHub](https://github.com/Altinn/app-lib-dotnet/releases). {{% /notice %}} @@ -66,18 +66,18 @@ The CLI will then make the necessary changes to your code to upgrade it to versi ## Migrate manually -1. To migrate manually from v7 to v8, you need to upgrade the nuget packages in your `App.csproj` file to version `8.0.0-preview.16`. +1. To migrate manually from v7 to v8, you need to upgrade the nuget packages in your `App.csproj` file to version `8.0.0-preview.17`.

{{< code-title >}} App/App.csproj {{< /code-title >}} ```diff - - + + + lib\$(TargetFramework)\*.xml - - + + + lib\$(TargetFramework)\*.xml ```