generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/SAHU-01/docs
- Loading branch information
Showing
82 changed files
with
1,432 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Publish Meshery Cloud Version Dispatcher | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release_notes_docs_cloud_latest: | ||
name: Release notes cloud with latest version | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.RELEASEDRAFTER_PAT }} | ||
repository: layer5io/docs | ||
- name: Get Latest Meshery Cloud Release | ||
id: meshery-cloud | ||
env: | ||
ACCESS_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }} | ||
run: | | ||
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") | ||
echo "release_tag=$release_tag" >> $GITHUB_OUTPUT | ||
current_tag=$(<build/meshery-cloud.version) | ||
echo "current_tag=$current_tag" >> $GITHUB_OUTPUT | ||
- name: Get Release Info | ||
if: steps.meshery-cloud.outputs.current_tag != steps.meshery-cloud.outputs.release_tag | ||
env: | ||
ACCESS_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }} | ||
run: | | ||
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 | ||
export RELEASE_TAG=$( cat latest_release.json | jq '.["tag_name"]' | tr -d '"') | ||
export PRERELEASE=$( cat latest_release.json | jq '.["prerelease"]' | tr -d '"') | ||
export RELEASE_BODY=$( cat latest_release.json | jq '.["body"]' | tr -d '"') | ||
export DATE=$( cat latest_release.json | jq '.["published_at"]' | tr -d '"') | ||
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 | ||
- name: Update current release version | ||
if: steps.meshery-cloud.outputs.current_tag != steps.meshery-cloud.outputs.release_tag | ||
run: | | ||
echo ${{ steps.meshery-cloud.outputs.release_tag }} > build/meshery-cloud.version | ||
- name: Commit changes | ||
if: steps.meshery-cloud.outputs.current_tag != steps.meshery-cloud.outputs.release_tag | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "Release Notes Meshery Cloud version ${{ steps.meshery-cloud.outputs.release_tag }}" | ||
branch: master | ||
commit_options: "--signoff" | ||
file_pattern: 'build/meshery-cloud.version ./content/en/cloud/reference/releases/${{ steps.meshery-cloud.outputs.release_tag }}.md' | ||
commit_user_name: l5io | ||
commit_user_email: [email protected] | ||
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Publish Meshery Extensions Version Dispatcher | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release_notes_docs_meshery_extensions_latest: | ||
name: Release notes meshery extensions with latest version | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.RELEASEDRAFTER_PAT }} | ||
repository: layer5io/docs | ||
- name: Get Latest Meshery Extensions Release | ||
id: meshery-extensions | ||
env: | ||
ACCESS_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }} | ||
run: | | ||
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") | ||
echo "release_tag=$release_tag" >> $GITHUB_OUTPUT | ||
current_tag=$(<build/meshery-extensions.version) | ||
echo "current_tag=$current_tag" >> $GITHUB_OUTPUT | ||
- name: Get Release Info | ||
if: steps.meshery-extensions.outputs.current_tag != steps.meshery-extensions.outputs.release_tag | ||
env: | ||
ACCESS_TOKEN: ${{ secrets.RELEASEDRAFTER_PAT }} | ||
run: | | ||
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 | ||
export RELEASE_TAG=$( cat latest_release.json | jq '.["tag_name"]' | tr -d '"') | ||
export PRERELEASE=$( cat latest_release.json | jq '.["prerelease"]' | tr -d '"') | ||
export RELEASE_BODY=$( cat latest_release.json | jq '.["body"]' | tr -d '"') | ||
export DATE=$( cat latest_release.json | jq '.["published_at"]' | tr -d '"') | ||
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 | ||
- name: Update current release version | ||
if: steps.meshery-extensions.outputs.current_tag != steps.meshery-extensions.outputs.release_tag | ||
run: | | ||
echo ${{ steps.meshery-extensions.outputs.release_tag }} > build/meshery-extensions.version | ||
- name: Commit changes | ||
if: steps.meshery-extensions.outputs.current_tag != steps.meshery-extensions.outputs.release_tag | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "Release Notes Meshery Extension version ${{ steps.meshery-extensions.outputs.release_tag }}" | ||
branch: master | ||
commit_options: "--signoff" | ||
file_pattern: 'build/meshery-extensions.version ./content/en/kanvas/reference/releases/${{ steps.meshery-extensions.outputs.release_tag }}.md' | ||
commit_user_name: l5io | ||
commit_user_email: [email protected] | ||
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v0.8.34 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v0.7.124-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: v0.8.20 | ||
date: 2024-10-01T22:37:11Z | ||
tag: v0.8.20 | ||
prerelease: false | ||
--- | ||
|
||
## What's New | ||
**General** | ||
- Bump @rjsf/validator-ajv8 from 5.18.1 to 5.21.1 in /ui @dependabot (#2800) | ||
- Upgrade meshmap snapshot version @Aijeyomah (#2809) | ||
- Add robots.txt and sitmap-0.xml to router.go @leecalcote (#2799) | ||
- Bump @mui/x-date-pickers from 7.11.1 to 7.18.0 in /ui @dependabot (#2801) | ||
- Bump @fontsource/roboto from 5.0.8 to 5.1.0 in /ui @dependabot (#2802) | ||
- Bump husky from 4.3.8 to 9.1.6 in /ui @dependabot (#2803) | ||
- convert reusable autocomplete components to rtk fetching @sudhanshutech (#2810) | ||
|
||
## Contributors | ||
|
||
Thank you to our contributors for making this release possible: | ||
@Aijeyomah, @MUzairS15, @dependabot, @dependabot[bot], @l5io, @leecalcote and @sudhanshutech | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: v0.8.21 | ||
date: 2024-10-02T11:42:59Z | ||
tag: v0.8.21 | ||
prerelease: false | ||
--- | ||
|
||
## What's New | ||
**General** | ||
- Fixes @MUzairS15 (#2811) | ||
|
||
## Contributors | ||
|
||
Thank you to our contributors for making this release possible: | ||
@MUzairS15 and @l5io | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
title: v0.8.22 | ||
date: 2024-10-04T03:54:26Z | ||
tag: v0.8.22 | ||
prerelease: false | ||
--- | ||
|
||
## What's New | ||
**General** | ||
- [Chore] Update MeshMap references in Plans page @jameshorton2337 (#2813) | ||
- Bump github.com/meshery/schemas from 0.7.31 to 0.7.35 @dependabot (#2805) | ||
- [User Flows] Do not archive/delete user record after migration. @MUzairS15 (#2814) | ||
|
||
## Contributors | ||
|
||
Thank you to our contributors for making this release possible: | ||
@MUzairS15, @dependabot, @jameshorton2337, @l5io and @leecalcote | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: v0.8.23 | ||
date: 2024-10-05T11:00:41Z | ||
tag: v0.8.23 | ||
prerelease: false | ||
--- | ||
|
||
## What's New | ||
**General** | ||
- Support inter domain issue of sessions @MUzairS15 (#2816) | ||
- Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 @dependabot (#2806) | ||
- Bump github.com/layer5io/meshkit from 0.7.73 to 0.7.78 @dependabot (#2807) | ||
- add function to create missing singup event @MUzairS15 (#2812) | ||
|
||
## Contributors | ||
|
||
Thank you to our contributors for making this release possible: | ||
@MUzairS15, @dependabot, @l5io and @leecalcote | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: v0.8.24 | ||
date: 2024-10-05T11:36:17Z | ||
tag: v0.8.24 | ||
prerelease: false | ||
--- | ||
|
||
## What's New | ||
**General** | ||
- fix cloud ui build @MUzairS15 (#2817) | ||
|
||
## Contributors | ||
|
||
Thank you to our contributors for making this release possible: | ||
@MUzairS15 and @l5io | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: v0.8.28 | ||
date: 2024-10-12T19:31:09Z | ||
tag: v0.8.28 | ||
prerelease: false | ||
--- | ||
|
||
## What's New | ||
## 🔤 General | ||
- switch user-access-cloud -> user-access make account @vishalvivekm (#2835) | ||
|
||
## 🖥 Cloud UI | ||
|
||
- [Public User Profile] Fix reference to Catalog-Card component @leecalcote (#2834) | ||
|
||
## 💻 Server | ||
|
||
- [Public User Profile] Fix reference to Catalog-Card component @leecalcote (#2834) | ||
|
||
## 👨🏽💻 Contributors | ||
|
||
Thank you to our contributors for making this release possible: | ||
@l5io, @leecalcote and @vishalvivekm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: v0.8.29 | ||
date: 2024-10-13T17:39:59Z | ||
tag: v0.8.29 | ||
prerelease: false | ||
--- | ||
|
||
## What's New | ||
## 🔤 General | ||
* Remove disallow in robots.txt | ||
|
||
## 👨🏽💻 Contributors | ||
|
||
Thank you to our contributors for making this release possible: | ||
@l5io and @leecalcote | ||
|
Oops, something went wrong.