Skip to content

Commit

Permalink
Merge branch 'master' into styling-updatesss
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalvivekm authored Oct 21, 2024
2 parents dbb60bd + 6558b9a commit 764a953
Show file tree
Hide file tree
Showing 61 changed files with 1,478 additions and 75 deletions.
54 changes: 54 additions & 0 deletions CONTRIBUTING-gitflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,59 @@ git rebase -i master
```
This will open up a text editor where you can specify which commits to squash.

## Instructions on How to Sign Off Commits to Meet the Developer Certificate of Origin (DCO) Requirements

Contributors to this project are required to sign off on their commits to comply with the Developer Certificate of Origin (DCO). The DCO is a simple statement that you, as the contributor, have the legal right to make the contribution.

By making a contribution to this project, I certify that:

(a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file.

(b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me.

(c) The contribution was provided directly to me by some other person who certified (a), (b) and I have not modified it.

(d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved.

**How to Sign Off on Your Commits**

To add the required sign-off to your commits, follow these steps:

1. Ensure Git is Configured with Your Name and Email

Your Git configuration must have your correct name and email address, as they will be used to generate the sign-off message. To configure Git, run the following commands:
```
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
```
2. Use the -s or --signoff Option in Your Commit

When making a commit, you must use the -s or --signoff option to add the sign-off line. This will append the following line to your commit message:
```
Signed-off-by: Your Name <[email protected]>
```
Example of a signed-off commit:
```
git commit -s -m "Fixing issue with Meshery module"
```

This ensures that your contribution complies with the DCO.

3. Verify Your Sign-Off

To verify that your commit has the sign-off, you can inspect your commit log:
```
git log -1
```
The last commit should contain a Signed-off-by line that matches your name and email.

4. Amending a Commit Without Sign-Off

If you've already made a commit but forgot to sign off, you can amend the commit with the sign-off using the following command:
```
git commit --amend --signoff
```
This will add the sign-off to your previous commit.

## Submitting
Once you've committed and pushed all of your changes to GitHub, go to the page for your fork on GitHub, select your development branch, and click the pull request button. If you need to make any adjustments to your pull request, just push the updates to GitHub. Your pull request will automatically track the changes on your development branch and update.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Layer5 Product Documentation
![image](https://github.com/user-attachments/assets/926e71c4-4f1b-4188-8540-6f951c173710)# Layer5 Product Documentation

Explore tutorials and documentation by product in the docs.layer5.io website; documentation and developer resources of Layer5 products.

Expand Down Expand Up @@ -197,15 +197,15 @@ Find out more on the <a href="https://layer5.io/community">Layer5 community</a>.
<img alt="Shows an illustrated light mode meshery logo in light color mode and a dark mode meshery logo dark color mode." src=".github/readme/images//slack-128.png" width="110px" align="right" style="margin-left:10px;padding-top:13px;">
</picture>
</a>

<a href="https://meshery.io/community"><img alt="Layer5 Community" src=".github/readme/images//community.svg" style="margin-right:8px;padding-top:5px;" width="140px" align="left" /></a>

<div class="flex">
<a href="https://meshery.io/community"><img alt="Layer5 Community" src=".github/readme/images//community.svg" style="margin-right:8px;padding-top:9px;" width="140px" align="left" /></a>
<p>
✔️ <em><strong>Join</strong></em> any or all of the weekly meetings on <a href="https://calendar.google.com/calendar/b/1?cid=bGF5ZXI1LmlvX2VoMmFhOWRwZjFnNDBlbHZvYzc2MmpucGhzQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20">community calendar</a>.<br />
✔️ <em><strong>Watch</strong></em> community <a href="https://www.youtube.com/playlist?list=PL3A-A6hPO2IMPPqVjuzgqNU5xwnFFn3n0">meeting recordings</a>.<br />
✔️ <em><strong>Access</strong></em> the <a href="https://drive.google.com/drive/u/4/folders/0ABH8aabN4WAKUk9PVA">Community Drive</a> by completing a community <a href="https://layer5.io/newcomer">Member Form</a>.<br />
✔️ <em><strong>Discuss</strong></em> in the <a href="https://discuss.layer5.io">Community Forum</a>.<br />
✔️<em><strong>Explore more</strong></em> in the <a href="https://layer5.io/community/handbook">Community Handbook</a>.<br />
✔️ <em><strong>Explore more</strong></em> in the <a href="https://layer5.io/community/handbook">Community Handbook</a>.<br />
</p>
</div>
<p align="center">
<i>Not sure where to start?</i> Grab an open issue with the <a href="https://github.com/issues?q=is%3Aopen+is%3Aissue+archived%3Afalse+org%3Alayer5io+org%3Ameshery+org%3Aservice-mesh-performance+org%3Aservice-mesh-patterns+label%3A%22help+wanted%22+">help-wanted label</a>.</p>
141 changes: 81 additions & 60 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,10 @@
.nav-link.active {
border-width: 1px;
border-style: solid;
border-image: linear-gradient(
to bottom,
border-image: linear-gradient(to bottom,
rgba($dark, 0.2) 30%,
rgba($primary, 0.3) 60%,
$primary 90% 100%
)
1;
$primary 90% 100%) 1;
padding-bottom: 0.3rem;
align-items: center;
justify-content: center;
Expand Down Expand Up @@ -83,7 +80,7 @@ body {

// Inline code
p code,
li > code,
li>code,
table code {
color: inherit;
padding: 0.2em 0.4em;
Expand All @@ -104,7 +101,7 @@ body {
background-color: $gray-900;
padding: $spacer;

> code {
>code {
background-color: inherit !important;
padding: 0;
margin: 0;
Expand Down Expand Up @@ -205,14 +202,12 @@ a:not([href]):not([class]):hover {
}

.td-sidebar {
background-image: linear-gradient(
to top,
#1e2117,
#1d1912,
#18120e,
#0f0a09,
#000000
);
background-image: linear-gradient(to top,
#1e2117,
#1d1912,
#18120e,
#0f0a09,
#000000);
position: sticky;
height: calc(100vh - 5.5rem);
top: 5.5rem;
Expand Down Expand Up @@ -282,20 +277,14 @@ a:not([href]):not([class]):hover {
&.active:not(.tree-root) {
border-width: 1px;
border-style: solid;
border-image: linear-gradient(
to left,
border-image: linear-gradient(to left,
rgba($dark, 0) 30%,
rgba($primary, 0.3) 60%,
$primary 90% 100%
)
1;
background-image: linear-gradient(
to left,
$primary 90% 100%) 1;
background-image: linear-gradient(to left,
rgba($dark, 0.2) 30%,
rgba($primary, 0.3) 60%,
$primary 90% 100%
)
1;
$primary 90% 100%) 1;
padding: 0.25rem;
padding-left: 0.5rem !important;
// background-image: linear-gradient(to left, rgba($dark,.33),rgba($dark,.5),rgba($dark,.75),#1e2117, #31412b, #3b6447, #378b6d, #00b39f);
Expand All @@ -317,14 +306,12 @@ a:not([href]):not([class]):hover {
.td-sidebar-toc {
line-height: 1.25rem;
border-left: 1px solid $border-color;
background-image: linear-gradient(
to top,
#1e2117,
#1d1912,
#18120e,
#0f0a09,
#000000
);
background-image: linear-gradient(to top,
#1e2117,
#1d1912,
#18120e,
#0f0a09,
#000000);

@supports (position: sticky) {
position: sticky;
Expand Down Expand Up @@ -381,6 +368,50 @@ a:not([href]):not([class]):hover {
border-color: #00b39f;
}

// front-matter
.matterinfo {
font-weight: $font-weight-medium;
background: $black;
font-family: "Open Sans";
border-style: solid;
margin: 2rem auto;
padding: 1rem;
border-color: #00b39f;
border-radius: 10px;
}

.heading {
font-size: 1.2rem;
color: #00b39f;
}

.matterheader {
font-size: 1.2rem;
color: #00b39f;
}

.matterinfo .plan-support {
display: flex;
align-items: center;
}

.matterinfo .plan-support .support-icon {
width: 20px;
height: 20px;
margin-right: 10px;
}

.plan-icon {
display: inline-block;
}

.tier {
color: #00b39f;
font-weight: bold;
padding: 0 5px;
}


// Style alert boxes.

.alert {
Expand All @@ -407,12 +438,12 @@ a:not([href]):not([class]):hover {
transition: color 0.8s;
transition: background-color 0.8s;

> img {
>img {
width: 2rem;
margin-right: 0.5rem;
}

> img:hover {
>img:hover {
filter: brightness(0) invert(1);
}

Expand All @@ -426,21 +457,15 @@ a:not([href]):not([class]):hover {
margin-bottom: 4rem;
font-size: 5rem;
text-align: left;
background: linear-gradient(
217deg,
background: linear-gradient(217deg,
rgba(249, 245, 13, 0.26),
rgba(223, 255, 219, 0.57) 9.03%
),
linear-gradient(
127deg,
rgba(223, 255, 219, 0.57) 9.03%),
linear-gradient(127deg,
rgba(249, 245, 13, 0.7),
rgba(223, 225, 199, 0.1) 41.12%
),
linear-gradient(
336deg,
rgba(223, 225, 199, 0.1) 41.12%),
linear-gradient(336deg,
rgba(249, 245, 13, 0.1),
rgba(239, 239, 251, 0.81) 0%
);
rgba(239, 239, 251, 0.81) 0%);
background-position:
0% 0%,
0% 0%;
Expand All @@ -465,11 +490,9 @@ a:not([href]):not([class]):hover {
transform: rotate(-55.68deg);
flex-shrink: 0;
overflow: hidden;
background-image: linear-gradient(
180deg,
rgba(0, 179, 115, 0) 0%,
rgba(0, 179, 159, 0.3) 100%
);
background-image: linear-gradient(180deg,
rgba(0, 179, 115, 0) 0%,
rgba(0, 179, 159, 0.3) 100%);
position: absolute;
top: -18rem;
right: -32rem;
Expand Down Expand Up @@ -498,15 +521,13 @@ a:not([href]):not([class]):hover {
left: -24rem;
overflow: hidden;

> .dash-ircle {
>.dash-ircle {
width: 74.125rem;
height: 74.125rem;
flex-shrink: 0;
background: radial-gradient(
50% 50% at 50% 50%,
rgba(0, 179, 159, 0.2) 0%,
rgba(0, 179, 159, 0) 100%
);
background: radial-gradient(50% 50% at 50% 50%,
rgba(0, 179, 159, 0.2) 0%,
rgba(0, 179, 159, 0) 100%);
position: absolute;
overflow: hidden;
background-clip: border-box;
Expand Down Expand Up @@ -643,7 +664,7 @@ a:not([href]):not([class]):hover {
gap: 3rem;
}

.tab-content > .active {
.tab-content>.active {
display: flex;
}

Expand All @@ -653,4 +674,4 @@ a:not([href]):not([class]):hover {

.csvtable {
width: 100%;
}
}
2 changes: 1 addition & 1 deletion build/meshery-cloud.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.8.24
v0.8.34
2 changes: 1 addition & 1 deletion build/meshery-extensions.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.7.117-2
v0.7.124-2
16 changes: 16 additions & 0 deletions content/en/cloud/reference/releases/v0.8.25.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: v0.8.25
date: 2024-10-07T19:42:34Z
tag: v0.8.25
prerelease: false
---

## What's New
**General**
- Update capabilities and account extensions and Kanvas icon @leecalcote (#2819)

## Contributors

Thank you to our contributors for making this release possible:
@MUzairS15, @l5io and @leecalcote

19 changes: 19 additions & 0 deletions content/en/cloud/reference/releases/v0.8.26.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: v0.8.26
date: 2024-10-08T21:31:05Z
tag: v0.8.26
prerelease: false
---

## What's New
**General**
- [Sitemap] Combining sitemap exclude with robots.txt allow @leecalcote (#2823)
- Exclude few path from sitemap @sudhanshutech (#2821)
- fix sitemap generation using postbuild process @sudhanshutech (#2808)
- Upgrade kanvas snapshot action version @Aijeyomah (#2820)

## Contributors

Thank you to our contributors for making this release possible:
@Aijeyomah, @MUzairS15, @l5io, @leecalcote and @sudhanshutech

11 changes: 11 additions & 0 deletions content/en/cloud/reference/releases/v0.8.27.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: v0.8.27
date: 2024-10-12T18:58:51Z
tag: v0.8.27
prerelease: false
---

## What's New
## 🔤 General
- Use sistent filp card in catalog @amitamrutiya (#2827)
- [Chore] Making references to \Meshery Catalog\ just
Loading

0 comments on commit 764a953

Please sign in to comment.