Skip to content

Commit

Permalink
Update release version (#10974)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros committed Jan 6, 2022
1 parent 2855f6a commit b015cc2
Show file tree
Hide file tree
Showing 10 changed files with 147 additions and 14 deletions.
1 change: 1 addition & 0 deletions mkdocs.yml
Expand Up @@ -222,6 +222,7 @@ nav:
- Owners: docs/resources/owners/README.md
- Workshops: docs/resources/workshops/README.md
- Releases:
- 1.2.0: docs/releases/1.2.0.md
- 1.1.0: docs/releases/1.1.0.md
- 1.0.0: docs/releases/1.0.0.md
- 1.0.0-rc2: docs/releases/1.0.0-rc2.md
Expand Down
2 changes: 1 addition & 1 deletion src/OrchardCore.Build/Dependencies.props
Expand Up @@ -39,7 +39,7 @@
<PackageManagement Include="NodaTime" Version="3.0.9" />
<PackageManagement Include="OpenIddict.AspNetCore" Version="3.1.1" />
<PackageManagement Include="OpenIddict.Core" Version="3.1.1" />
<PackageManagement Include="OrchardCore.Translations.All" Version="1.1.0" />
<PackageManagement Include="OrchardCore.Translations.All" Version="1.2.0" />
<PackageManagement Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageManagement Include="Shortcodes" Version="1.3.0" />
<PackageManagement Include="SixLabors.ImageSharp.Web" Version="1.0.4" />
Expand Down
Expand Up @@ -5,7 +5,7 @@ public static class ManifestConstants
{
public const string OrchardCoreTeam = "The Orchard Core Team";

public const string OrchardCoreVersion = "1.1.0";
public const string OrchardCoreVersion = "1.2.0";

public const string OrchardCoreWebsite = "https://orchardcore.net";

Expand Down
4 changes: 2 additions & 2 deletions src/README.md
Expand Up @@ -58,8 +58,8 @@ Orchard Core CMS supports all major site building strategies:

## Status

The latest released version of Orchard Core is `1.1.0`.
The release notes can be found on <https://github.com/OrchardCMS/OrchardCore/releases/tag/1.1.0>
The latest released version of Orchard Core is `1.2.0`.
The release notes can be found on <https://github.com/OrchardCMS/OrchardCore/releases/tag/v1.2.0>

Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki/Roadmap).

Expand Down
8 changes: 4 additions & 4 deletions src/docs/getting-started/templates/README.md
Expand Up @@ -9,13 +9,13 @@ More information about `dotnet new` can be found at <https://docs.microsoft.com/
Once the .NET Core SDK has been installed, type the following command to install the templates for creating Orchard Core web applications:

```CMD
dotnet new -i OrchardCore.ProjectTemplates::1.1.0
dotnet new -i OrchardCore.ProjectTemplates::1.2.0
```

This will use the most stable release of Orchard Core. In order to use the latest `main` branch of Orchard Core, the following command can be used:

```CMD
dotnet new -i OrchardCore.ProjectTemplates::1.1.0-* --nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json
dotnet new -i OrchardCore.ProjectTemplates::1.2.0-* --nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json
```

## Create a new website
Expand Down Expand Up @@ -44,7 +44,7 @@ Options:
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
string - Optional
Default: 1.1.0
Default: 1.2.0
```

Logging can be ignored with this command:
Expand Down Expand Up @@ -137,7 +137,7 @@ Options:
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
string - Optional
Default: 1.1.0
Default: 1.2.0
```

```CMD
Expand Down
6 changes: 3 additions & 3 deletions src/docs/guides/add-admin-menu/README.md
Expand Up @@ -19,7 +19,7 @@ There are different ways to create sites and modules for Orchard Core. You can l

You can install the latest released templates using this command:

```dotnet new -i OrchardCore.ProjectTemplates::1.1.0-*```
```dotnet new -i OrchardCore.ProjectTemplates::1.2.0-*```

!!! note
To use the development branch of the template add `--nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json`
Expand All @@ -40,10 +40,10 @@ The next step is to reference the module from the application, by adding a proje

We also need a reference to the `OrchardCore.Admin` package in order to be able to implement the required interfaces:

```dotnet add .\MyModule\MyModule.csproj package OrchardCore.Admin --version 1.1.0-*```
```dotnet add .\MyModule\MyModule.csproj package OrchardCore.Admin --version 1.2.0-*```

!!! note
To use the development branch of the template add ` --source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json --version 1.1.0-*`
To use the development branch of the template add ` --source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json --version 1.2.0-*`

## Adding our controller and views

Expand Down
2 changes: 1 addition & 1 deletion src/docs/guides/create-cms-application/README.md
Expand Up @@ -13,7 +13,7 @@ There are different ways to create sites and modules for Orchard Core. You can l

In this guide we will use our "Code Generation Templates". You can install the latest stable release of the templates using this command:

```dotnet new -i OrchardCore.ProjectTemplates::1.1.0-*```
```dotnet new -i OrchardCore.ProjectTemplates::1.2.0-*```

!!! note
To use the development branch of the template add `--nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json`
Expand Down
2 changes: 1 addition & 1 deletion src/docs/guides/create-modular-application-mvc/README.md
Expand Up @@ -18,7 +18,7 @@ There are different ways to create sites and modules for Orchard Core. You can l

In this guide we will use our [Code Generation Templates](../../getting-started/templates/). You can install the latest stable release of the templates using this command:

```dotnet new -i OrchardCore.ProjectTemplates::1.1.0-*```
```dotnet new -i OrchardCore.ProjectTemplates::1.2.0-*```

!!! note
To use the development branch of the template add `--nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json`
Expand Down
2 changes: 1 addition & 1 deletion src/docs/guides/decoupled-cms/README.md
Expand Up @@ -70,7 +70,7 @@ This will allow for the Razor Pages to be reloaded without the need to recompile

```xml
<ItemGroup>
<PackageReference Include="OrchardCore.Application.Cms.Core.Targets" Version="1.1.0" />
<PackageReference Include="OrchardCore.Application.Cms.Core.Targets" Version="1.2.0" />
</ItemGroup>
```
This will add the packages from Orchard Core CMS
Expand Down
132 changes: 132 additions & 0 deletions src/docs/releases/1.2.0.md
@@ -0,0 +1,132 @@
# Orchard Core 1.2.0

Release date: January 2022

## What's Changed
* Demo video for Feature Profiles (Lombiq Technologies: ORCH-245) by @domonkosgabor in https://github.com/OrchardCMS/OrchardCore/pull/10502
* Fluid 2.1.2 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10499
* Make media options input read only by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10488
* blueimp-file-upload 10.32.0 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10505
* Bootstrap 5.1.3 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10445
* jQuery UI 1.13.0 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10444
* Jint 3.0.0-beta-2035 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10340
* Fix user picker field ordering by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10524
* Feature profiles deployment steps and recipes by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10484
* Update preview version number by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10523
* Improve reset password email experience by @sebastienros in https://github.com/OrchardCMS/OrchardCore/pull/10388
* Update Dependencies by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10503
* Update Fluid 2.1.3 ⬆️ by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10519
* Monaco 0.29.1 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10504
* Code Mirror 5.63.3 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10479
* Add missing OC.Queries.Abstractions docs by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10541
* Remove Newtonsoft.Json dependency from OC.Queries.Abstractions by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10540
* Link field escaping by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10528
* Redirect escapeUrl parameter was not used by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10398
* NodaTime 3.0.9 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10547
* StartBootstrap Agency 7.0.10 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10530
* StartBootstrap ComingSoon 6.0.5 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10532
* Azure.Identity 1.5.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10546
* Cypress 8.7.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10564
* StartBootstrap CleanBlog 6.0.7 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10531
* Update packages by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10566
* Microsoft.NET.Test.Sdk 17.0.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10579
* Fix the problem that `Hint` information cannot be displayed by @hyzx86 in https://github.com/OrchardCMS/OrchardCore/pull/10584
* Lucene.Net 4.8.0-beta00015 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10580
* BackgroundTaskController count query looked at wrong collection by @tropcicstefan in https://github.com/OrchardCMS/OrchardCore/pull/10576
* Align taxonomy filter to the right by @tropcicstefan in https://github.com/OrchardCMS/OrchardCore/pull/10275
* Bootstrap 4.6.1, update to lockfileversion 2 and gulp rebuild all assets. by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10569
* Fix audit trail date parsing (greater than or equal to) by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10601
* Upgrade Fluid 2.1.4 by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10567
* Adds missing closing span tag. by @wordshop-git in https://github.com/OrchardCMS/OrchardCore/pull/10583
* Fix ambiguity in search form settings. by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10608
* Fix typo in FullTextFilter.cs by @eltociear in https://github.com/OrchardCMS/OrchardCore/pull/10623
* Avoid NRE in tenant creation by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10581
* Bootstrap 5.1.3 in Setup by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10631
* Fluid 2.2.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10630
* HtmlSanitizer 6.0.453 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10629
* New article for query content based on taxonomies by @kdubious in https://github.com/OrchardCMS/OrchardCore/pull/10542
* Make https url first in launchsettings by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10618
* Fix trumbowyg resource URLs by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10644
* Add [asset_url] shortcode by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10548
* ZString 2.4.3 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10651
* dotnet 6.0 suggestions by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10380
* Monaco Editor 0.30.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10669
* Update YesSql by @sebastienros in https://github.com/OrchardCMS/OrchardCore/pull/10674
* .NET 6.0 docs and templates by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10671
* Fix ValueTask usage by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10649
* Removing old usage of display drivers and handlers by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10650
* Update package dependencies by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10693
* Microsoft.SourceLink.GitHub 1.1.1 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10694
* VS2019 is not supported by @hyzx86 in https://github.com/OrchardCMS/OrchardCore/pull/10695
* Monaco 0.30.1 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10700
* Fix RTL HTML editors by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10697
* Removed beforeFolderAdded to stop multiple calls to fetch folders. by @dannoh in https://github.com/OrchardCMS/OrchardCore/pull/10701
* Cypress 9.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10687
* Cache Failover and Shared options by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10338
* Make UpdateAtomic Delegates scoped and distinct by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10673
* Pager uses the reserved "page" route parameter by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10637
* use the proper button #mediaBodySelectButton to unbind event handler by @scil in https://github.com/OrchardCMS/OrchardCore/pull/10657
* Release 1.1 Readme by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10725
* Code Mirror 5.64.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10727
* Fix Liquid QueryCollection access by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10739
* Update using directive by @woter1832 in https://github.com/OrchardCMS/OrchardCore/pull/10738
* Cypress 9.1.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10746
* Add current port to the setup tenant button url by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10743
* Revert changes from #10743 by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10751
* Fluid 2.2.4 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10726
* Update dependencies by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10728
* Prevent confusing usage of IRunningShellTable.Match(HttpContext) (Lombiq Technologies: OCORE-69) by @Piedone in https://github.com/OrchardCMS/OrchardCore/pull/10779
* Upgrade Fluid 2.2.5 by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10759
* Change HttpResponseTask support "text/html" by @hyzx86 in https://github.com/OrchardCMS/OrchardCore/pull/10714
* Revert "jQuery UI 1.13.0 :arrow_up: (#10444)" by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10804
* Don't enable FileContentDefinition feature by default in our themes by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10799
* Async write / read of the Request.Body is mandatory by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10805
* Preserve contained content items ids by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10788
* Cypress 9.1.1 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10809
* Jint 3.0.0-beta-2037 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10810
* Fluid 2.2.7 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10811
* Add Localization to Docker images by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10750
* AutoRoute -> Autoroute by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10827
* NJsonSchema 10.6.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10830
* Upgrade YesSQL to 3.0.10 by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10814
* Fix CorrelateTask by @hyzx86 in https://github.com/OrchardCMS/OrchardCore/pull/10712
* System.LinqAsync 5.1.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10831
* Fix CSS intermittent encoding issue by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10857
* Monaco 0.31.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10861
* Allow sending email without "To" if "Cc" or "Bcc" is provided by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10853
* NJsonSchema 10.6.4 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10859
* Upgrade Fluid to 2.2.8 by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10846
* Functional -> OrchardCore.Tests.Functional by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10875
* Better NRE handling for Widget and MenuItem stereotypes by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10677
* Specify GraphQL API in Query hint for schema field by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10877
* Move Email.Core unit tests into thier proper place by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10878
* .NET December Update by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10880
* Use current port for Tenant urls in the Tenants admin page by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10807
* Add migration for LocalizedContentItemIndex Latest column by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10889
* CORS UI: fix delete, do not add empty/duplicate entries by @kaipm in https://github.com/OrchardCMS/OrchardCore/pull/10447
* Add external login audit trail events and resolve email confirmations by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10891
* Monaco 0.31.1 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10907
* Cypress 9.2.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10912
* Code Mirror 5.65 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10906
* NJsonSchema 10.6.6 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10910
* Fixing ResetPasswordSettings deployment step (Lombiq Technologies: OCORE-70) by @Piedone in https://github.com/OrchardCMS/OrchardCore/pull/10920
* Support data annotations PO localization by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/4675
* Update npm packages by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10919
* Refactoring by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10940
* Fixes index cursors management by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10933
* Starting background tasks without waiting for initialized tenants by @jersiovic in https://github.com/OrchardCMS/OrchardCore/pull/10638
* Use IOptions<BackgroundServiceOptions> pattern by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10943
* ZString 2.4.4 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10961

## New Contributors
* @wordshop-git made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10583
* @eltociear made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10623
* @dannoh made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10701
* @scil made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10657
* @woter1832 made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10738

**Full Changelog**: https://github.com/OrchardCMS/OrchardCore/compare/v1.1.0...v1.2.0

## Milestone

[1.2](https://github.com/OrchardCMS/OrchardCore/milestone/11)

0 comments on commit b015cc2

Please sign in to comment.