Skip to content

Commit a7a82c6

Browse files
committed
Update RC guide for CMS
1 parent 446a04d commit a7a82c6

File tree

1 file changed

+30
-45
lines changed

1 file changed

+30
-45
lines changed

16/umbraco-cms/release-candidate-guide.md

Lines changed: 30 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,56 @@
22
description: >-
33
Learn how to start testing the Release Candidate for the latest version of
44
Umbraco CMS, and find information about new and updated documentation.
5-
hidden: true
65
---
76

87
# Release Candidate Guide
98

10-
## How to test the Release Candidate
9+
The can be used to test your website and projects against the next major version of Umbraco CMS.
1110

12-
{% hint style="warning" %}
13-
To install the Umbraco 15 Release Candidate you need the latest [.NET SDK 9.0.0](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
11+
This article contains all the resources needed for you to start testing.
12+
13+
* [How to Test the Release Candidate](#test-the-release-candidate)
14+
* [What Focus on When Testing](#what-to-focus-on-when-testing)
15+
* [New and Updated Documentation](#new-and-updated-documentation)
16+
17+
{% hint style="info" %}
18+
This document will be updated and expanded as more and more documentation are added throughout the release candidate phase.
1419
{% endhint %}
1520

16-
The[ release candidate is available on NuGet](https://www.nuget.org/packages/Umbraco.Cms/15.0.0-rc2).
21+
## Test the Release Candidate
22+
23+
Ensure you meet the prerequisites and move on to the installation steps outlined below.
24+
25+
### Prerequisites
26+
27+
* The latest [.NET SDK 9.0.0](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
28+
29+
### Install the Release Candidate
30+
31+
The [release candidate is available on NuGet](https://www.nuget.org/packages/Umbraco.Cms/16.0.0-rc).
1732

1833
1. Install the Umbraco dotnet template for the Release Candidate.
1934

20-
```
21-
dotnet new install Umbraco.Templates::15.0.0-rc*
35+
```cmd
36+
dotnet new install Umbraco.Templates::16.0.0-rc*
2237
```
2338

2439
2. Create a new Umbraco project.
2540

26-
```
41+
```cmd
2742
dotnet new umbraco -n MyCustomUmbracoProject
2843
```
2944

3045
3. Navigate to the newly created folder.
3146

32-
```
47+
```cmd
3348
cd MyCustomUmbracoProject
3449
```
3550

36-
4. Build the project.
51+
4. Build and run the project.
3752

38-
```
53+
```cmd
3954
dotnet build
40-
```
41-
42-
5. Run the project.
43-
44-
```
4555
dotnet run
4656
```
4757

@@ -51,9 +61,9 @@ This will boot the project, and write the log to the console. The website is now
5161
Alternatively, you can install and run the Umbraco project using your favorite IDE (Integrated Development Environment).
5262
{% endhint %}
5363

54-
### What should you focus on when testing?
64+
## What to focus on when testing
5565

56-
Read the [Release Candidate blog post](https://umbraco.com/blog/umbraco-15-release-candidate/) to learn more about notable features and changes added to the upcoming version.
66+
Read the [Release Candidate blog post](https://umbraco.com/) to learn more about notable features and changes added to the upcoming version.
5767

5868
The blog post will mention if there are any specific features or workflows that the Umbraco HQ team needs feedback on.
5969

@@ -63,33 +73,8 @@ Here is a list of all the articles that are new to this version or have been upd
6373

6474
### New articles
6575

66-
* [Tutorial: Extending the Help Menu](tutorials/extending-the-help-menu.md)
67-
* [Running Umbraco in Docker using Docker Compose](fundamentals/setup/install/running-umbraco-on-docker-locally.md)
68-
* [Creating a Custom Seed Key Provider](extending/creating-custom-seed-key-provider.md)
69-
* [Cache Settings](reference/configuration/cache-settings.md)
70-
* [Cache Seeding](reference/cache/cache-seeding.md)
71-
* [API Users](fundamentals/data/users/api-users.md)
72-
* [External Access](reference/management-api/external-access.md)
73-
* New UI for the Rich Text Editor: Tiptap
74-
* [Rich Text Editor](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/)
75-
* [Configuration](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/configuration.md)
76-
* [Blocks](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md)
77-
* [Change Rich Text Editor UI](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/change-rich-text-editor-ui.md)
76+
* Coming soon...
7877

7978
### Updated articles
8079

81-
* Changes made based on the removal of the UmbracoAPIController
82-
* [Common Pitfalls: Static references to scoped references](reference/common-pitfalls.md#static-references-to-scoped-instances-such-as-umbracohelper)
83-
* [Creating a custom database table](extending/database.md)
84-
* [Image Cropper](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/image-cropper.md)
85-
* [UmbracoMapper](reference/mapping.md)
86-
* [Depencency Injection / IoC](reference/using-ioc.md)
87-
* [Working with Caching: Tags example](reference/cache/examples/tags.md)
88-
* [Unit Testing](implementation/unit-testing.md)
89-
* [Querying: ITagQuery](reference/querying/itagquery.md)
90-
* [UmbracoContext helper](reference/querying/umbraco-context.md)
91-
* [Block Grid](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md)
92-
* Replacing the deprecated GetAll() method
93-
* [Working with Caching: Tags example](reference/cache/examples/tags.md)
94-
* [Using Services: ContentTypeService](reference/management/using-services/contenttypeservice.md)
95-
* [Request Pipeline: IContentFinder](reference/routing/request-pipeline/icontentfinder.md)
80+
* Coming soon...

0 commit comments

Comments
 (0)