Skip to content

Commit 67d022d

Browse files
committed
Add dates to release notes
1 parent 1357efa commit 67d022d

36 files changed

+42
-2
lines changed

MyApp/Configure.Ssg.cs

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ public void ResolveGitBlobBaseUrls(IVirtualDirectory contentDir)
114114
// Add additional frontmatter info to include
115115
public class MarkdownFileInfo : MarkdownFileBase
116116
{
117+
public DateTime? Released { get; set; }
117118
}
118119

119120
public static class HtmlHelpers

MyApp/Pages/Shared/DocsPage.cshtml

+6
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,12 @@
108108
{
109109
<section class="not-prose mb-16 md:mb-12">
110110
<h1 class="@Model.TitleClass">
111+
@if (doc.Released != null)
112+
{
113+
<div class="-mt-8 mb-2 text-center text-lg font-normal text-gray-500 tracking-normal">
114+
@doc.Released.Value.ToString("MMMM dd, yyyy")
115+
</div>
116+
}
111117
@doc.Title
112118
</h1>
113119
</section>

MyApp/_pages/release-notes-history.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ slug: release-notes-history
55

66
## 2025
77

8+
- [v8.7](/releases/v8_07)
89
- [v8.6](/releases/v8_06)
910

1011
## 2024

MyApp/_pages/releases/v5_00_0.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5
3+
released: 2018-01-02
34
---
45

56
## v5.0.2 Update

MyApp/_pages/releases/v5_01_0.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.1
3+
released: 2018-04-24
34
---
45

56
As these release notes have become apologetically long we're including a Table of Contents so you can jump quickly to features you're interested in:

MyApp/_pages/releases/v5_02.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.2
3+
released: 2018-08-28
34
---
45

56
This release includes support for .NET Core 2.1, number of performance improvements with internals rewritten to use .NET's new `Span<T>` Memory Types, all SPA Templates upgraded to utilize latest CLI projects, new simpler zero-configuration Parcel SPA Templates, exciting enhanced capabilities added to `#Script` - providing a fun and productive alternative to Razor, more capable and versatile Web Apps, a minimal multi-user .NET Core Blog Web App developed in a real-time live development workflow, enhancements to Swift, Dart, TypeScript end-to-end Typed integrations, support for the latest 3rd Party dependencies, and lots more.

MyApp/_pages/releases/v5_04.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.4
3+
released: 2018-09-19
34
---
45

56
This ended up being our funnest releases in which we've built upon [significant enhancements](/releases/v5_2#servicestack-templates-remastered)

MyApp/_pages/releases/v5_05.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.5
3+
released: 2019-03-28
34
---
45

56
## ServiceStack turns 10!

MyApp/_pages/releases/v5_06.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.6
3+
released: 2019-08-07
34
---
45

56
Many features in this release are focused on providing a more enjoyable, integrated and refined development experience for creating ServiceStack Apps.

MyApp/_pages/releases/v5_07.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.7
3+
released: 2019-09-30
34
---
45

56
## .NET Core 3

MyApp/_pages/releases/v5_08.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.8
3+
released: 2020-01-13
34
---
45

56
Happy New 2020 All! Hope everyone's had an enjoyable and relaxing break over the holidays and are re-energized to usher in the new decade.

MyApp/_pages/releases/v5_09.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.9
3+
released: 2020-06-10
34
---
45

56
We're excited to announce the culmination of many high-level productivity features ServiceStack gained in this release that makes it vastly

MyApp/_pages/releases/v5_10.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.10
3+
released: 2021-01-12
34
---
45

56
This release continues to bring improvements across the board with a major async focus on most of ServiceStack's existing sync APIs gaining pure async implementations allowing your App's logic to use their preferred **sync** or **async** APIs.

MyApp/_pages/releases/v5_11.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.11
3+
released: 2021-04-21
34
---
45

56
A nice aspect of the flagship features in this release is that they build upon ServiceStack's existing unique

MyApp/_pages/releases/v5_12.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v5.12
3+
released: 2021-08-17
34
---
45

56
[![](../img/pages/apps/jupyter-splash.png)](https://jupyter.org)

MyApp/_pages/releases/v5_13.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: ServiceStack v5.13.2
2+
title: ServiceStack v5.13
3+
released: 2021-11-20
34
---
45

56
[![](../img/pages/release-notes/net6-released.png)](https://devblogs.microsoft.com/dotnet/announcing-net-6/)

MyApp/_pages/releases/v6_00.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: ServiceStack v6
3-
slug: v6
3+
released: 2022-01-25
44
---
55

66
<img class="mt-8" style="" src="/img/pages/overview/servicestack-100m-1952w.png">

MyApp/_pages/releases/v6_01.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.1
3+
released: 2022-05-16
34
---
45

56
We're excited to announce [locode.dev](https://servicestack.net/locode), our **Rapid Application Development** solution to quickly develop

MyApp/_pages/releases/v6_02.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.2
3+
released: 2022-07-25
34
---
45

56
<div class="not-prose my-8 ml-20 flex flex-col items-center">

MyApp/_pages/releases/v6_03.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.3
3+
released: 2022-08-30
34
---
45

56
We're excited to share the next release of ServiceStack which sees the introduction of our simple Database Migration solution with Code-First DB Migrations, it also sees the completion of our initial [Admin UI](/admin-ui) objectives, with new Admin UIs to manage your App's configured Redis server and a UX-friendly personalizable UI to browse your App's registered databases.

MyApp/_pages/releases/v6_04.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.4
3+
released: 2022-10-11
34
---
45

56
<div class="not-prose my-8 ml-20 flex flex-col items-center">

MyApp/_pages/releases/v6_05.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.5
3+
released: 2022-12-06
34
---
45

56
<div class="not-prose pt-8 my-8 ml-20 flex flex-col items-center">

MyApp/_pages/releases/v6_06.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.6
3+
released: 2023-02-07
34
---
45

56
<div>

MyApp/_pages/releases/v6_07.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.7
3+
released: 2023-03-13
34
---
45

56
<div>

MyApp/_pages/releases/v6_08.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.8
3+
released: 2023-03-29
34
---
45

56
<div class="mb-20">

MyApp/_pages/releases/v6_09.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.9
3+
released: 2023-06-06
34
---
45

56
<div class="mb-20">

MyApp/_pages/releases/v6_10.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.10
3+
released: 2023-07-31
34
---
45

56
<p class="hide-h2"></p>

MyApp/_pages/releases/v6_11.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v6.11
3+
released: 2023-10-03
34
---
45

56
<p class="hide-h2"></p>

MyApp/_pages/releases/v8_00.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v8
3+
released: 2023-11-24
34
---
45

56
<div class="-mt-16 flex justify-center not-prose">

MyApp/_pages/releases/v8_01.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v8.1
3+
released: 2024-02-06
34
---
45

56
<div class="-mt-16 flex justify-center not-prose">

MyApp/_pages/releases/v8_02.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v8.2
3+
released: 2024-03-04
34
---
45

56
<div class="-mt-16 flex justify-center not-prose">

MyApp/_pages/releases/v8_03.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v8.3
3+
released: 2024-06-17
34
---
45

56
<div class="-mt-16 flex justify-center not-prose">

MyApp/_pages/releases/v8_04.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v8.4
3+
released: 2024-09-11
34
---
45

56
<div class="-mt-16 flex justify-center not-prose">

MyApp/_pages/releases/v8_05.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v8.5
3+
released: 2024-11-26
34
---
45

56
<div class="-mt-16 flex justify-center not-prose">

MyApp/_pages/releases/v8_06.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v8.6
3+
released: 2025-02-11
34
---
45

56
<div class="-mt-16 flex justify-center not-prose">

MyApp/_pages/releases/v8_07.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: ServiceStack v8.7
3+
released: 2025-04-14
34
---
45

56
<div class="-mt-16 flex justify-center not-prose">

0 commit comments

Comments
 (0)