From b03811f894497dd392832252977cb8b52080753e Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Fri, 22 Dec 2023 07:54:54 -0800 Subject: [PATCH 1/6] Release 1.8 --- README.md | 4 ++-- mkdocs.yml | 1 + src/README.md | 4 ++-- src/docs/getting-started/templates/README.md | 10 +++++----- src/docs/guides/add-admin-menu/README.md | 8 ++++---- src/docs/guides/create-cms-application/README.md | 2 +- .../guides/create-modular-application-mvc/README.md | 2 +- src/docs/guides/decoupled-cms/README.md | 2 +- src/docs/releases/1.8.0.md | 4 +++- 9 files changed, 20 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index deb04ea5648..98dfb5c1993 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Orchard Core consists of two distinct projects: ## Build Status -Stable (release/1.7.2): +Stable (release/1.8.0): [![Build status](https://github.com/OrchardCMS/OrchardCore/actions/workflows/release_ci.yml/badge.svg)](https://github.com/OrchardCMS/OrchardCore/actions?query=workflow%3A%22Release+-+CI%22) [![NuGet](https://img.shields.io/nuget/v/OrchardCore.Application.Cms.Targets.svg)](https://www.nuget.org/packages/OrchardCore.Application.Cms.Targets) @@ -30,7 +30,7 @@ Nightly (main): ## Status -### 1.7.2 +### 1.8.0 The software is finished -- and by finished, we mean there are no show-stopping, little-children-killing bugs in it. That we know of. There are probably numerous lower-priority bugs triaged into the next point release or service pack, as well. diff --git a/mkdocs.yml b/mkdocs.yml index b1892dbea84..a186713e5c7 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -242,6 +242,7 @@ nav: - Owners: docs/resources/owners/README.md - Workshops: docs/resources/workshops/README.md - Releases: + - 1.8.0: docs/releases/1.8.0.md - 1.7.2: docs/releases/1.7.2.md - 1.7.1: docs/releases/1.7.1.md - 1.7.0: docs/releases/1.7.0.md diff --git a/src/README.md b/src/README.md index 3ed1af5ba48..7f6d137faf0 100644 --- a/src/README.md +++ b/src/README.md @@ -64,8 +64,8 @@ Orchard Core CMS supports all major site building strategies: ## Status -The latest released version of Orchard Core is `1.7.2`. -The release notes can be found on +The latest released version of Orchard Core is `1.8.0`. +The release notes can be found on Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki/Roadmap). diff --git a/src/docs/getting-started/templates/README.md b/src/docs/getting-started/templates/README.md index f973119e94e..fa10e620495 100644 --- a/src/docs/getting-started/templates/README.md +++ b/src/docs/getting-started/templates/README.md @@ -9,13 +9,13 @@ More information about `dotnet new` can be found at - + ``` This will add the packages from Orchard Core CMS diff --git a/src/docs/releases/1.8.0.md b/src/docs/releases/1.8.0.md index 0640ba0e324..b1d55e29f26 100644 --- a/src/docs/releases/1.8.0.md +++ b/src/docs/releases/1.8.0.md @@ -1,6 +1,8 @@ # Orchard Core 1.8.0 -Release date: Not yet released +Release date: December 2023 + +In this update, we've introduced several significant changes that may require your attention before upgrading. Additionally, performance-related enhancements have been implemented to optimize your app's scalability, especially when dealing with a large number of tenants. ## Breaking Changes From bc3bb2ab78676650e3102590edbc2039795ad42e Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Fri, 22 Dec 2023 08:03:16 -0800 Subject: [PATCH 2/6] update --- src/OrchardCore.Build/OrchardCore.Commons.props | 2 +- .../Modules/Manifest/ManifestConstants.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OrchardCore.Build/OrchardCore.Commons.props b/src/OrchardCore.Build/OrchardCore.Commons.props index a1709a18bf3..6e3fe65f99e 100644 --- a/src/OrchardCore.Build/OrchardCore.Commons.props +++ b/src/OrchardCore.Build/OrchardCore.Commons.props @@ -5,7 +5,7 @@ 12.0 1.8.0 - preview + $(VersionSuffix)-$(BuildNumber) true 612,618 diff --git a/src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs b/src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs index 34bd41a9046..03a2ef8346c 100644 --- a/src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs +++ b/src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs @@ -5,7 +5,7 @@ public static class ManifestConstants { public const string OrchardCoreTeam = "The Orchard Core Team"; - public const string OrchardCoreVersion = "1.7.2"; + public const string OrchardCoreVersion = "1.8.0"; public const string OrchardCoreWebsite = "https://orchardcore.net"; From 25d139bf664598217f0a54e493aa368d41fdb54d Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Fri, 22 Dec 2023 20:17:07 -0800 Subject: [PATCH 3/6] Update dependenies --- src/OrchardCore.Build/Dependencies.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OrchardCore.Build/Dependencies.props b/src/OrchardCore.Build/Dependencies.props index 9a71a94ede0..a5702d8f1f1 100644 --- a/src/OrchardCore.Build/Dependencies.props +++ b/src/OrchardCore.Build/Dependencies.props @@ -50,7 +50,7 @@ - + From 56210f415b15a64eb2886cfcfbf5996d0e9fb2db Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Thu, 28 Dec 2023 19:22:00 -0800 Subject: [PATCH 4/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 98dfb5c1993..4f832c3b411 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Orchard Core consists of two distinct projects: -- __Orchard Core Framework__: An application framework for building modular, multi-tenant applications on ASP.NET Core. +- __Orchard Core Framework__: An application framework for building modular, multi-tenant applications using ASP.NET Core 8. - __Orchard Core CMS__: A Web Content Management System (CMS) built on top of the Orchard Core Framework. [![Join the chat at https://gitter.im/OrchardCMS/OrchardCore](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/OrchardCMS/OrchardCore?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) @@ -32,7 +32,7 @@ Nightly (main): ### 1.8.0 -The software is finished -- and by finished, we mean there are no show-stopping, little-children-killing bugs in it. That we know of. There are probably numerous lower-priority bugs triaged into the next point release or service pack, as well. +The software is completed, meaning there are no critical bugs that could cause major issues. However, there may be some lower-priority bugs addressed in upcoming releases or service packs. Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki/Roadmap). From 662ec4e78d1770f011076ccdb06dcfd5c14d5aab Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Thu, 28 Dec 2023 19:30:35 -0800 Subject: [PATCH 5/6] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4f832c3b411..1be1c7f955e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Orchard Core consists of two distinct projects: -- __Orchard Core Framework__: An application framework for building modular, multi-tenant applications using ASP.NET Core 8. +- __Orchard Core Framework__: An application framework for building modular, multi-tenant applications on ASP.NET Core. - __Orchard Core CMS__: A Web Content Management System (CMS) built on top of the Orchard Core Framework. [![Join the chat at https://gitter.im/OrchardCMS/OrchardCore](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/OrchardCMS/OrchardCore?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) @@ -10,7 +10,7 @@ Orchard Core consists of two distinct projects: [![Documentation](https://readthedocs.org/projects/orchardcore/badge/)](https://docs.orchardcore.net/) [![Crowdin](https://badges.crowdin.net/orchard-core/localized.svg)](https://crowdin.com/project/orchard-core) -## Local communities +## Local Communities 中文资源 @@ -32,7 +32,7 @@ Nightly (main): ### 1.8.0 -The software is completed, meaning there are no critical bugs that could cause major issues. However, there may be some lower-priority bugs addressed in upcoming releases or service packs. +The software is finished -- and by finished, we mean there are no show-stopping, little-children-killing bugs in it. That we know of. There are probably numerous lower-priority bugs triaged into the next point release or service pack, as well. Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki/Roadmap). @@ -40,7 +40,7 @@ Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki - Clone the repository using the command `git clone https://github.com/OrchardCMS/OrchardCore.git` and checkout the `main` branch. -### Command line +### Command Line - Install the latest version of the .NET SDK from this page - Next, navigate to `./OrchardCore/src/OrchardCore.Cms.Web`. @@ -49,9 +49,9 @@ Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki ### Visual Studio -- Download Visual Studio 2022 (v17.5+) from https://www.visualstudio.com/downloads/ -- Open `OrchardCore.sln` and wait for Visual Studio to restore all Nuget packages. -- Ensure `OrchardCore.Cms.Web` is the startup project and run it. +- Download Visual Studio 2022 (v17.5+) from . +- Launch the solution by clicking on `OrchardCore.sln`. Give Visual Studio time to restore all missing Nuget packages. +- Ensure `OrchardCore.Cms.Web` is set as the startup project. Then run the app. ### Docker From 39f913252e84c8126d7701fc718062a187bd0a97 Mon Sep 17 00:00:00 2001 From: Mike Alhayek Date: Mon, 1 Jan 2024 14:42:07 -0800 Subject: [PATCH 6/6] update docs --- src/docs/releases/1.8.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/releases/1.8.0.md b/src/docs/releases/1.8.0.md index 0d22a6b0c1b..f4ca64d54d0 100644 --- a/src/docs/releases/1.8.0.md +++ b/src/docs/releases/1.8.0.md @@ -1,6 +1,6 @@ # Orchard Core 1.8.0 -Release date: December 2023 +Release date: January 2024 In this update, we've introduced several significant changes that may require your attention before upgrading. Additionally, performance-related enhancements have been implemented to optimize your app's scalability, especially when dealing with a large number of tenants.