Skip to content

Commit b015cc2

Browse files
authored
Update release version (#10974)
1 parent 2855f6a commit b015cc2

File tree

10 files changed

+147
-14
lines changed

10 files changed

+147
-14
lines changed

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ nav:
222222
- Owners: docs/resources/owners/README.md
223223
- Workshops: docs/resources/workshops/README.md
224224
- Releases:
225+
- 1.2.0: docs/releases/1.2.0.md
225226
- 1.1.0: docs/releases/1.1.0.md
226227
- 1.0.0: docs/releases/1.0.0.md
227228
- 1.0.0-rc2: docs/releases/1.0.0-rc2.md

src/OrchardCore.Build/Dependencies.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<PackageManagement Include="NodaTime" Version="3.0.9" />
4040
<PackageManagement Include="OpenIddict.AspNetCore" Version="3.1.1" />
4141
<PackageManagement Include="OpenIddict.Core" Version="3.1.1" />
42-
<PackageManagement Include="OrchardCore.Translations.All" Version="1.1.0" />
42+
<PackageManagement Include="OrchardCore.Translations.All" Version="1.2.0" />
4343
<PackageManagement Include="Serilog.AspNetCore" Version="4.1.0" />
4444
<PackageManagement Include="Shortcodes" Version="1.3.0" />
4545
<PackageManagement Include="SixLabors.ImageSharp.Web" Version="1.0.4" />

src/OrchardCore/OrchardCore.Abstractions/Modules/Manifest/ManifestConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public static class ManifestConstants
55
{
66
public const string OrchardCoreTeam = "The Orchard Core Team";
77

8-
public const string OrchardCoreVersion = "1.1.0";
8+
public const string OrchardCoreVersion = "1.2.0";
99

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

src/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ Orchard Core CMS supports all major site building strategies:
5858

5959
## Status
6060

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

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

src/docs/getting-started/templates/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ More information about `dotnet new` can be found at <https://docs.microsoft.com/
99
Once the .NET Core SDK has been installed, type the following command to install the templates for creating Orchard Core web applications:
1010

1111
```CMD
12-
dotnet new -i OrchardCore.ProjectTemplates::1.1.0
12+
dotnet new -i OrchardCore.ProjectTemplates::1.2.0
1313
```
1414

1515
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:
1616

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

2121
## Create a new website
@@ -44,7 +44,7 @@ Options:
4444
4545
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
4646
string - Optional
47-
Default: 1.1.0
47+
Default: 1.2.0
4848
```
4949

5050
Logging can be ignored with this command:
@@ -137,7 +137,7 @@ Options:
137137
138138
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
139139
string - Optional
140-
Default: 1.1.0
140+
Default: 1.2.0
141141
```
142142

143143
```CMD

src/docs/guides/add-admin-menu/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ There are different ways to create sites and modules for Orchard Core. You can l
1919

2020
You can install the latest released templates using this command:
2121

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

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

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

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

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

4848
## Adding our controller and views
4949

src/docs/guides/create-cms-application/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ There are different ways to create sites and modules for Orchard Core. You can l
1313

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

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

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

src/docs/guides/create-modular-application-mvc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ There are different ways to create sites and modules for Orchard Core. You can l
1818

1919
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:
2020

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

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

src/docs/guides/decoupled-cms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ This will allow for the Razor Pages to be reloaded without the need to recompile
7070

7171
```xml
7272
<ItemGroup>
73-
<PackageReference Include="OrchardCore.Application.Cms.Core.Targets" Version="1.1.0" />
73+
<PackageReference Include="OrchardCore.Application.Cms.Core.Targets" Version="1.2.0" />
7474
</ItemGroup>
7575
```
7676
This will add the packages from Orchard Core CMS

src/docs/releases/1.2.0.md

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Orchard Core 1.2.0
2+
3+
Release date: January 2022
4+
5+
## What's Changed
6+
* Demo video for Feature Profiles (Lombiq Technologies: ORCH-245) by @domonkosgabor in https://github.com/OrchardCMS/OrchardCore/pull/10502
7+
* Fluid 2.1.2 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10499
8+
* Make media options input read only by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10488
9+
* blueimp-file-upload 10.32.0 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10505
10+
* Bootstrap 5.1.3 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10445
11+
* jQuery UI 1.13.0 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10444
12+
* Jint 3.0.0-beta-2035 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10340
13+
* Fix user picker field ordering by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10524
14+
* Feature profiles deployment steps and recipes by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10484
15+
* Update preview version number by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10523
16+
* Improve reset password email experience by @sebastienros in https://github.com/OrchardCMS/OrchardCore/pull/10388
17+
* Update Dependencies by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10503
18+
* Update Fluid 2.1.3 ⬆️ by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10519
19+
* Monaco 0.29.1 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10504
20+
* Code Mirror 5.63.3 :arrow_up: by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10479
21+
* Add missing OC.Queries.Abstractions docs by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10541
22+
* Remove Newtonsoft.Json dependency from OC.Queries.Abstractions by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10540
23+
* Link field escaping by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10528
24+
* Redirect escapeUrl parameter was not used by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10398
25+
* NodaTime 3.0.9 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10547
26+
* StartBootstrap Agency 7.0.10 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10530
27+
* StartBootstrap ComingSoon 6.0.5 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10532
28+
* Azure.Identity 1.5.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10546
29+
* Cypress 8.7.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10564
30+
* StartBootstrap CleanBlog 6.0.7 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10531
31+
* Update packages by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10566
32+
* Microsoft.NET.Test.Sdk 17.0.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10579
33+
* Fix the problem that `Hint` information cannot be displayed by @hyzx86 in https://github.com/OrchardCMS/OrchardCore/pull/10584
34+
* Lucene.Net 4.8.0-beta00015 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10580
35+
* BackgroundTaskController count query looked at wrong collection by @tropcicstefan in https://github.com/OrchardCMS/OrchardCore/pull/10576
36+
* Align taxonomy filter to the right by @tropcicstefan in https://github.com/OrchardCMS/OrchardCore/pull/10275
37+
* Bootstrap 4.6.1, update to lockfileversion 2 and gulp rebuild all assets. by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10569
38+
* Fix audit trail date parsing (greater than or equal to) by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10601
39+
* Upgrade Fluid 2.1.4 by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10567
40+
* Adds missing closing span tag. by @wordshop-git in https://github.com/OrchardCMS/OrchardCore/pull/10583
41+
* Fix ambiguity in search form settings. by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10608
42+
* Fix typo in FullTextFilter.cs by @eltociear in https://github.com/OrchardCMS/OrchardCore/pull/10623
43+
* Avoid NRE in tenant creation by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10581
44+
* Bootstrap 5.1.3 in Setup by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10631
45+
* Fluid 2.2.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10630
46+
* HtmlSanitizer 6.0.453 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10629
47+
* New article for query content based on taxonomies by @kdubious in https://github.com/OrchardCMS/OrchardCore/pull/10542
48+
* Make https url first in launchsettings by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10618
49+
* Fix trumbowyg resource URLs by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10644
50+
* Add [asset_url] shortcode by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10548
51+
* ZString 2.4.3 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10651
52+
* dotnet 6.0 suggestions by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10380
53+
* Monaco Editor 0.30.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10669
54+
* Update YesSql by @sebastienros in https://github.com/OrchardCMS/OrchardCore/pull/10674
55+
* .NET 6.0 docs and templates by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10671
56+
* Fix ValueTask usage by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10649
57+
* Removing old usage of display drivers and handlers by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10650
58+
* Update package dependencies by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10693
59+
* Microsoft.SourceLink.GitHub 1.1.1 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10694
60+
* VS2019 is not supported by @hyzx86 in https://github.com/OrchardCMS/OrchardCore/pull/10695
61+
* Monaco 0.30.1 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10700
62+
* Fix RTL HTML editors by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10697
63+
* Removed beforeFolderAdded to stop multiple calls to fetch folders. by @dannoh in https://github.com/OrchardCMS/OrchardCore/pull/10701
64+
* Cypress 9.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10687
65+
* Cache Failover and Shared options by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10338
66+
* Make UpdateAtomic Delegates scoped and distinct by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10673
67+
* Pager uses the reserved "page" route parameter by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10637
68+
* use the proper button #mediaBodySelectButton to unbind event handler by @scil in https://github.com/OrchardCMS/OrchardCore/pull/10657
69+
* Release 1.1 Readme by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10725
70+
* Code Mirror 5.64.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10727
71+
* Fix Liquid QueryCollection access by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10739
72+
* Update using directive by @woter1832 in https://github.com/OrchardCMS/OrchardCore/pull/10738
73+
* Cypress 9.1.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10746
74+
* Add current port to the setup tenant button url by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10743
75+
* Revert changes from #10743 by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10751
76+
* Fluid 2.2.4 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10726
77+
* Update dependencies by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10728
78+
* Prevent confusing usage of IRunningShellTable.Match(HttpContext) (Lombiq Technologies: OCORE-69) by @Piedone in https://github.com/OrchardCMS/OrchardCore/pull/10779
79+
* Upgrade Fluid 2.2.5 by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10759
80+
* Change HttpResponseTask support "text/html" by @hyzx86 in https://github.com/OrchardCMS/OrchardCore/pull/10714
81+
* Revert "jQuery UI 1.13.0 :arrow_up: (#10444)" by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10804
82+
* Don't enable FileContentDefinition feature by default in our themes by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10799
83+
* Async write / read of the Request.Body is mandatory by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10805
84+
* Preserve contained content items ids by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10788
85+
* Cypress 9.1.1 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10809
86+
* Jint 3.0.0-beta-2037 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10810
87+
* Fluid 2.2.7 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10811
88+
* Add Localization to Docker images by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10750
89+
* AutoRoute -> Autoroute by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10827
90+
* NJsonSchema 10.6.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10830
91+
* Upgrade YesSQL to 3.0.10 by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10814
92+
* Fix CorrelateTask by @hyzx86 in https://github.com/OrchardCMS/OrchardCore/pull/10712
93+
* System.LinqAsync 5.1.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10831
94+
* Fix CSS intermittent encoding issue by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10857
95+
* Monaco 0.31.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10861
96+
* Allow sending email without "To" if "Cc" or "Bcc" is provided by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10853
97+
* NJsonSchema 10.6.4 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10859
98+
* Upgrade Fluid to 2.2.8 by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10846
99+
* Functional -> OrchardCore.Tests.Functional by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10875
100+
* Better NRE handling for Widget and MenuItem stereotypes by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10677
101+
* Specify GraphQL API in Query hint for schema field by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10877
102+
* Move Email.Core unit tests into thier proper place by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/10878
103+
* .NET December Update by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10880
104+
* Use current port for Tenant urls in the Tenants admin page by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10807
105+
* Add migration for LocalizedContentItemIndex Latest column by @Skrypt in https://github.com/OrchardCMS/OrchardCore/pull/10889
106+
* CORS UI: fix delete, do not add empty/duplicate entries by @kaipm in https://github.com/OrchardCMS/OrchardCore/pull/10447
107+
* Add external login audit trail events and resolve email confirmations by @deanmarcussen in https://github.com/OrchardCMS/OrchardCore/pull/10891
108+
* Monaco 0.31.1 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10907
109+
* Cypress 9.2.0 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10912
110+
* Code Mirror 5.65 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10906
111+
* NJsonSchema 10.6.6 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10910
112+
* Fixing ResetPasswordSettings deployment step (Lombiq Technologies: OCORE-70) by @Piedone in https://github.com/OrchardCMS/OrchardCore/pull/10920
113+
* Support data annotations PO localization by @hishamco in https://github.com/OrchardCMS/OrchardCore/pull/4675
114+
* Update npm packages by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10919
115+
* Refactoring by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10940
116+
* Fixes index cursors management by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10933
117+
* Starting background tasks without waiting for initialized tenants by @jersiovic in https://github.com/OrchardCMS/OrchardCore/pull/10638
118+
* Use IOptions<BackgroundServiceOptions> pattern by @jtkech in https://github.com/OrchardCMS/OrchardCore/pull/10943
119+
* ZString 2.4.4 by @agriffard in https://github.com/OrchardCMS/OrchardCore/pull/10961
120+
121+
## New Contributors
122+
* @wordshop-git made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10583
123+
* @eltociear made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10623
124+
* @dannoh made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10701
125+
* @scil made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10657
126+
* @woter1832 made their first contribution in https://github.com/OrchardCMS/OrchardCore/pull/10738
127+
128+
**Full Changelog**: https://github.com/OrchardCMS/OrchardCore/compare/v1.1.0...v1.2.0
129+
130+
## Milestone
131+
132+
[1.2](https://github.com/OrchardCMS/OrchardCore/milestone/11)

0 commit comments

Comments
 (0)