Skip to content

Commit 024f9c2

Browse files
authored
Merge branch 'layer5io:master' into master
2 parents 6418131 + 0bac75d commit 024f9c2

File tree

82 files changed

+1432
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1432
-14
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Publish Meshery Cloud Version Dispatcher
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
release_notes_docs_cloud_latest:
7+
name: Release notes cloud with latest version
8+
runs-on: ubuntu-22.04
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
with:
13+
token: ${{ secrets.RELEASEDRAFTER_PAT }}
14+
repository: layer5io/docs
15+
- name: Get Latest Meshery Cloud Release
16+
id: meshery-cloud
17+
env:
18+
ACCESS_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }}
19+
run: |
20+
release_tag=$(curl -sL -H "Authorization: token $ACCESS_TOKEN" -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/layer5io/meshery-cloud/releases/latest | jq -r ".tag_name")
21+
echo "release_tag=$release_tag" >> $GITHUB_OUTPUT
22+
current_tag=$(<build/meshery-cloud.version)
23+
echo "current_tag=$current_tag" >> $GITHUB_OUTPUT
24+
- name: Get Release Info
25+
if: steps.meshery-cloud.outputs.current_tag != steps.meshery-cloud.outputs.release_tag
26+
env:
27+
ACCESS_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }}
28+
run: |
29+
curl -sL -H "Authorization: token $ACCESS_TOKEN" -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/layer5io/meshery-cloud/releases/latest > latest_release.json
30+
31+
export RELEASE_TAG=$( cat latest_release.json | jq '.["tag_name"]' | tr -d '"')
32+
export PRERELEASE=$( cat latest_release.json | jq '.["prerelease"]' | tr -d '"')
33+
export RELEASE_BODY=$( cat latest_release.json | jq '.["body"]' | tr -d '"')
34+
export DATE=$( cat latest_release.json | jq '.["published_at"]' | tr -d '"')
35+
printf '%b\n' "---\ntitle: $RELEASE_TAG\ndate: $DATE\ntag: $RELEASE_TAG\nprerelease: $PRERELEASE\n---\n\n$RELEASE_BODY" > ./content/en/cloud/reference/releases/$RELEASE_TAG.md
36+
- name: Update current release version
37+
if: steps.meshery-cloud.outputs.current_tag != steps.meshery-cloud.outputs.release_tag
38+
run: |
39+
echo ${{ steps.meshery-cloud.outputs.release_tag }} > build/meshery-cloud.version
40+
- name: Commit changes
41+
if: steps.meshery-cloud.outputs.current_tag != steps.meshery-cloud.outputs.release_tag
42+
uses: stefanzweifel/git-auto-commit-action@v5
43+
with:
44+
commit_message: "Release Notes Meshery Cloud version ${{ steps.meshery-cloud.outputs.release_tag }}"
45+
branch: master
46+
commit_options: "--signoff"
47+
file_pattern: 'build/meshery-cloud.version ./content/en/cloud/reference/releases/${{ steps.meshery-cloud.outputs.release_tag }}.md'
48+
commit_user_name: l5io
49+
commit_user_email: [email protected]
50+
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Publish Meshery Extensions Version Dispatcher
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
release_notes_docs_meshery_extensions_latest:
7+
name: Release notes meshery extensions with latest version
8+
runs-on: ubuntu-22.04
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
with:
13+
token: ${{ secrets.RELEASEDRAFTER_PAT }}
14+
repository: layer5io/docs
15+
- name: Get Latest Meshery Extensions Release
16+
id: meshery-extensions
17+
env:
18+
ACCESS_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }}
19+
run: |
20+
release_tag=$(curl -sL -H "Authorization: token $ACCESS_TOKEN" -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/layer5labs/meshery-extensions-packages/releases/latest | jq -r ".tag_name")
21+
echo "release_tag=$release_tag" >> $GITHUB_OUTPUT
22+
current_tag=$(<build/meshery-extensions.version)
23+
echo "current_tag=$current_tag" >> $GITHUB_OUTPUT
24+
- name: Get Release Info
25+
if: steps.meshery-extensions.outputs.current_tag != steps.meshery-extensions.outputs.release_tag
26+
env:
27+
ACCESS_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }}
28+
run: |
29+
curl -sL -H "Authorization: token $ACCESS_TOKEN" -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/layer5labs/meshery-extensions-packages/releases/latest > latest_release.json
30+
31+
export RELEASE_TAG=$( cat latest_release.json | jq '.["tag_name"]' | tr -d '"')
32+
export PRERELEASE=$( cat latest_release.json | jq '.["prerelease"]' | tr -d '"')
33+
export RELEASE_BODY=$( cat latest_release.json | jq '.["body"]' | tr -d '"')
34+
export DATE=$( cat latest_release.json | jq '.["published_at"]' | tr -d '"')
35+
printf '%b\n' "---\ntitle: $RELEASE_TAG\ndate: $DATE\ntag: $RELEASE_TAG\nprerelease: $PRERELEASE\n---\n\n$RELEASE_BODY" > ./content/en/kanvas/reference/releases/$RELEASE_TAG.md
36+
- name: Update current release version
37+
if: steps.meshery-extensions.outputs.current_tag != steps.meshery-extensions.outputs.release_tag
38+
run: |
39+
echo ${{ steps.meshery-extensions.outputs.release_tag }} > build/meshery-extensions.version
40+
- name: Commit changes
41+
if: steps.meshery-extensions.outputs.current_tag != steps.meshery-extensions.outputs.release_tag
42+
uses: stefanzweifel/git-auto-commit-action@v5
43+
with:
44+
commit_message: "Release Notes Meshery Extension version ${{ steps.meshery-extensions.outputs.release_tag }}"
45+
branch: master
46+
commit_options: "--signoff"
47+
file_pattern: 'build/meshery-extensions.version ./content/en/kanvas/reference/releases/${{ steps.meshery-extensions.outputs.release_tag }}.md'
48+
commit_user_name: l5io
49+
commit_user_email: [email protected]
50+
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>

CONTRIBUTING-gitflow.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,59 @@ git rebase -i master
9191
```
9292
This will open up a text editor where you can specify which commits to squash.
9393

94+
## Instructions on How to Sign Off Commits to Meet the Developer Certificate of Origin (DCO) Requirements
95+
96+
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.
97+
98+
By making a contribution to this project, I certify that:
99+
100+
(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.
101+
102+
(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.
103+
104+
(c) The contribution was provided directly to me by some other person who certified (a), (b) and I have not modified it.
105+
106+
(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.
107+
108+
**How to Sign Off on Your Commits**
109+
110+
To add the required sign-off to your commits, follow these steps:
111+
112+
1. Ensure Git is Configured with Your Name and Email
113+
114+
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:
115+
```
116+
git config --global user.name "Your Name"
117+
git config --global user.email "[email protected]"
118+
```
119+
2. Use the -s or --signoff Option in Your Commit
120+
121+
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:
122+
```
123+
Signed-off-by: Your Name <[email protected]>
124+
```
125+
Example of a signed-off commit:
126+
```
127+
git commit -s -m "Fixing issue with Meshery module"
128+
```
129+
130+
This ensures that your contribution complies with the DCO.
131+
132+
3. Verify Your Sign-Off
133+
134+
To verify that your commit has the sign-off, you can inspect your commit log:
135+
```
136+
git log -1
137+
```
138+
The last commit should contain a Signed-off-by line that matches your name and email.
139+
140+
4. Amending a Commit Without Sign-Off
141+
142+
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:
143+
```
144+
git commit --amend --signoff
145+
```
146+
This will add the sign-off to your previous commit.
147+
94148
## Submitting
95149
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.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Layer5 Product Documentation
1+
![image](https://github.com/user-attachments/assets/926e71c4-4f1b-4188-8540-6f951c173710)# Layer5 Product Documentation
22

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

@@ -197,15 +197,15 @@ Find out more on the <a href="https://layer5.io/community">Layer5 community</a>.
197197
<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;">
198198
</picture>
199199
</a>
200-
201-
<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>
202-
200+
<div class="flex">
201+
<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>
203202
<p>
204203
✔️ <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 />
205204
✔️ <em><strong>Watch</strong></em> community <a href="https://www.youtube.com/playlist?list=PL3A-A6hPO2IMPPqVjuzgqNU5xwnFFn3n0">meeting recordings</a>.<br />
206205
✔️ <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 />
207206
✔️ <em><strong>Discuss</strong></em> in the <a href="https://discuss.layer5.io">Community Forum</a>.<br />
208-
✔️<em><strong>Explore more</strong></em> in the <a href="https://layer5.io/community/handbook">Community Handbook</a>.<br />
207+
✔️ <em><strong>Explore more</strong></em> in the <a href="https://layer5.io/community/handbook">Community Handbook</a>.<br />
209208
</p>
209+
</div>
210210
<p align="center">
211211
<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>

build/meshery-cloud.version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v0.8.34

build/meshery-extensions.version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v0.7.124-1
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: v0.8.20
3+
date: 2024-10-01T22:37:11Z
4+
tag: v0.8.20
5+
prerelease: false
6+
---
7+
8+
## What's New
9+
**General**
10+
- Bump @rjsf/validator-ajv8 from 5.18.1 to 5.21.1 in /ui @dependabot (#2800)
11+
- Upgrade meshmap snapshot version @Aijeyomah (#2809)
12+
- Add robots.txt and sitmap-0.xml to router.go @leecalcote (#2799)
13+
- Bump @mui/x-date-pickers from 7.11.1 to 7.18.0 in /ui @dependabot (#2801)
14+
- Bump @fontsource/roboto from 5.0.8 to 5.1.0 in /ui @dependabot (#2802)
15+
- Bump husky from 4.3.8 to 9.1.6 in /ui @dependabot (#2803)
16+
- convert reusable autocomplete components to rtk fetching @sudhanshutech (#2810)
17+
18+
## Contributors
19+
20+
Thank you to our contributors for making this release possible:
21+
@Aijeyomah, @MUzairS15, @dependabot, @dependabot[bot], @l5io, @leecalcote and @sudhanshutech
22+
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: v0.8.21
3+
date: 2024-10-02T11:42:59Z
4+
tag: v0.8.21
5+
prerelease: false
6+
---
7+
8+
## What's New
9+
**General**
10+
- Fixes @MUzairS15 (#2811)
11+
12+
## Contributors
13+
14+
Thank you to our contributors for making this release possible:
15+
@MUzairS15 and @l5io
16+
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: v0.8.22
3+
date: 2024-10-04T03:54:26Z
4+
tag: v0.8.22
5+
prerelease: false
6+
---
7+
8+
## What's New
9+
**General**
10+
- [Chore] Update MeshMap references in Plans page @jameshorton2337 (#2813)
11+
- Bump github.com/meshery/schemas from 0.7.31 to 0.7.35 @dependabot (#2805)
12+
- [User Flows] Do not archive/delete user record after migration. @MUzairS15 (#2814)
13+
14+
## Contributors
15+
16+
Thank you to our contributors for making this release possible:
17+
@MUzairS15, @dependabot, @jameshorton2337, @l5io and @leecalcote
18+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: v0.8.23
3+
date: 2024-10-05T11:00:41Z
4+
tag: v0.8.23
5+
prerelease: false
6+
---
7+
8+
## What's New
9+
**General**
10+
- Support inter domain issue of sessions @MUzairS15 (#2816)
11+
- Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 @dependabot (#2806)
12+
- Bump github.com/layer5io/meshkit from 0.7.73 to 0.7.78 @dependabot (#2807)
13+
- add function to create missing singup event @MUzairS15 (#2812)
14+
15+
## Contributors
16+
17+
Thank you to our contributors for making this release possible:
18+
@MUzairS15, @dependabot, @l5io and @leecalcote
19+

0 commit comments

Comments
 (0)