Skip to content
This repository was archived by the owner on May 8, 2025. It is now read-only.

Commit 28afdb0

Browse files
authored
Merge pull request #160 from SteeltoeOSS/more-v4
Use v4 for docs links
2 parents fa08165 + ad3fa6f commit 28afdb0

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

src/Client/Components/Pages/CircuitBreakers/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
This component has been discontinued from Steeltoe v4. Please click here to read more and provide feedback.
66
</Banner>
77

8-
<Template Name="Circuit Breaker" Features="@_features" DocsUrl="/docs/circuitbreaker" MetaDescription="Prevent cascading failures in .NET applications with Steeltoe Circuit Breaker.">
8+
<Template Name="Circuit Breaker" Features="@_features" DocsUrl="/docs/3/circuitbreaker" MetaDescription="Prevent cascading failures in .NET applications with Steeltoe Circuit Breaker.">
99
<Description>
1010
What do you do when a service you depend on stops responding? Circuit breakers enable you to bypass a failing service, allowing it time to recover, and preventing your users from seeing nasty error messages.
1111
Steeltoe includes a .NET implementation of Netflix Hystrix, a proven circuit breaker implementation with rich metrics and monitoring features.

src/Client/Components/Pages/Doc.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Redirecting to new docs site, please hold.
1717

1818
@code
1919
{
20-
private const int CurrentVersion = 3;
20+
private const int CurrentVersion = 4;
2121

2222
[Parameter] public string Area { get; set; } = "index";
2323
[Parameter] public string Component { get; set; } = "welcome";

src/Client/Components/Pages/Home.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<div class="width-90 container py-5">
7979
<div class="row g-0 text-center mt-3">
8080
<div class="col stat">
81-
Steeltoe has been downloaded over <span class="number">98 million</span> times on <a href="https://www.nuget.org/profiles/SteeltoeOSS">NuGet</a>!
81+
Steeltoe has been downloaded over <span class="number">110 million</span> times on <a href="https://www.nuget.org/profiles/SteeltoeOSS">NuGet</a>!
8282
</div>
8383
</div>
8484
</div>

src/Client/Components/Pages/Messaging/Index.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This component has been discontinued from Steeltoe v4. Please click here to read more and provide feedback.
55
</Banner>
66

7-
<Template Name="Messaging" Features="@_features" DocsUrl="/docs/messaging" MetaDescription="Use Steeltoe Messaging to build event-driven applications.">
7+
<Template Name="Messaging" Features="@_features" DocsUrl="/docs/3/messaging" MetaDescription="Use Steeltoe Messaging to build event-driven applications.">
88
<Description>Build highly scalable event-driven microservices connected to shared messaging systems.</Description>
99
<WhatIs>
1010
The Steeltoe Messaging project applies core .NET concepts to the development of AMQP-based messaging solutions.

src/Client/Models/DocsSiteOptions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ public class DocsSiteOptions
66
{
77
[Required] public string BaseAddress { get; set; } = "https://docs.steeltoe.io";
88

9-
public string ApiBrowserHome => $"{BaseAddress}/api/browser/v3/all";
9+
public string ApiBrowserHome => $"{BaseAddress}/api/browser/v4/all";
1010

1111
public string BlogHome => $"{BaseAddress}/articles/";
1212

13-
public string DocsHome => $"{BaseAddress}/api/v3/welcome/";
13+
public string DocsHome => $"{BaseAddress}/api/v4/welcome/";
1414

1515
public string DocsStreamHome => $"{BaseAddress}/api/v3/stream/";
1616

1717
public string GuidesHome => $"{BaseAddress}/guides/";
1818

19-
public string FileShareHome => $"{BaseAddress}/api/v3/fileshares/";
19+
public string FileShareHome => $"{BaseAddress}/api/v4/fileshares/";
2020

21-
public string DynamicLoggingHome => $"{BaseAddress}/api/v3/logging/";
21+
public string DynamicLoggingHome => $"{BaseAddress}/api/v4/logging/";
2222
}

0 commit comments

Comments
 (0)