Skip to content

Commit 7569d55

Browse files
committed
Turndown message
1 parent 0a1e0d5 commit 7569d55

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# Service Weaver [![Go Reference](https://pkg.go.dev/badge/github.com/ServiceWeaver/weaver.svg)](https://pkg.go.dev/github.com/ServiceWeaver/weaver)
22

3+
## 🚨 Important Announcement
4+
5+
<head>
6+
<style>
7+
.announcement {
8+
background-color: #f8d7da;
9+
color: #721c24;
10+
border-radius: 16px;
11+
padding: 0.7em;
12+
margin-top: 1rem;
13+
border-width: 1px;
14+
border-style: none;
15+
text-align: left;
16+
}
17+
</style>
18+
</head>
19+
20+
<div class="announcement">
21+
<p style="color: inherit">Service Weaver began as an exploratory initiative to
22+
understand the challenges of developing, deploying, and maintaining distributed
23+
applications. We were excited by the strong interest from the developer community,
24+
which led us to open-source the project.
25+
</p>
26+
<p style="color: inherit">We greatly appreciate the continued advocacy and support
27+
of the Service Weaver community. However, we have learned what we needed from
28+
our exploration, and we regret to announce that, <b>effective December 5, 2024,
29+
we will transition Service Weaver into maintenance mode</b>. We recommend that users
30+
fork the repository and report any issues preventing them from maintaining a
31+
stable version of the code. After this date, for the next 6 months, we will
32+
only push critical commits to the GitHub repository, respond to critical issues,
33+
merge critical pull requests, and patch new releases.
34+
</p>
35+
<p style="color: inherit"><b>On June 6, 2025, we plan to permanently freeze and
36+
archive the GitHub repository</b>, after which no new commits or releases will be made.
37+
</p>
38+
</div>
39+
340
Service Weaver is a programming framework for writing, deploying, and managing
441
distributed applications. You can run, test, and debug a Service Weaver
542
application locally on your machine, and then deploy it to the
@@ -24,3 +61,4 @@ to contribute.
2461

2562
[website]: https://serviceweaver.dev
2663
[docs]: https://serviceweaver.dev/docs.html
64+
[contact]: https://serviceweaver.dev/contact.html

website/assets/css/home.css

+18
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,24 @@
5757
margin-right: auto;
5858
}
5959

60+
.announcement-banner {
61+
background-color: #f8d7da; /* Light red background */
62+
color: #721c24; /* Dark red text */
63+
padding: 15px;
64+
text-align: center;
65+
font-size: 20px;
66+
position: fixed;
67+
height: auto;
68+
top: 0;
69+
left: 0;
70+
width: 100%;
71+
z-index: 1000;
72+
}
73+
74+
.announcement-banner p {
75+
margin: 0;
76+
}
77+
6078
.intro-row {
6179
display: flex;
6280
flex-wrap: wrap;

website/index.html

+7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ <h1>
2727
<a href="docs.html">Read the Docs</a>
2828
</div>
2929

30+
<div class="announcement-banner">
31+
<p>We regret to announce that, effective <b>December 5, 2024</b>, we will no longer be able to
32+
continue active development on the Service Weaver open-source framework. For more details, click
33+
<a href="https://github.com/ServiceWeaver/weaver/blob/main/README.md">here.</a>
34+
</p>
35+
</div>
36+
3037
<div class="intro-row">
3138
<div class="intro-col">
3239
<h1>Step 1: Split Your Application Into Components</h1>

0 commit comments

Comments
 (0)