Skip to content

Commit 24389de

Browse files
authored
Merge branch 'master' into fix/hydration-issue-on-sistent-components-page
2 parents 80a61e8 + d4d7278 commit 24389de

File tree

22 files changed

+556
-197
lines changed

22 files changed

+556
-197
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: 🐛 Bug Report
33
about: Report an issue to help us improve
44
title: ''
5-
labels: 'kind/bug'
5+
labels: 'kind/bug, help wanted, framework/gatsby'
66
assignees: ''
77
---
88
### Description

.github/ISSUE_TEMPLATE/chore_task.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: 🧹Chore or task
33
about: Identify a necessary task to be addressed.
44
title: ''
5-
labels: 'kind/chore'
5+
labels: 'kind/chore, help wanted'
66
assignees: ''
77
---
88
### Current Behavior

.github/ISSUE_TEMPLATE/feature_request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: 💡 Feature request
33
about: Suggest an enhancement to the Layer5 website
44
title: ''
5-
labels: 'kind/enhancement'
5+
labels: 'kind/enhancement, help wanted, language/javascript, framework/react'
66
assignees: ''
77
---
88
### Current Behavior

.github/ISSUE_TEMPLATE/sistent_feature.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: 🚀 Enhancement in Sistent Project
33
about: Propose a new feature, suggest a component, or report an issue for Sistent.
44
title: '[Sistent]'
5-
labels: 'project/sistent, kind/enhancement'
5+
labels: 'project/sistent, kind/enhancement, help wanted, language/javascript, framework/react'
66
assignees: ''
77
---
88
### Current Behavior

.github/workflows/kanvas.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Kanvas Snapshot Service
2+
on: # rebuild any PRs and main branch changes
3+
pull_request_target:
4+
types: [opened, synchronize, reopened]
5+
6+
workflow_call:
7+
inputs:
8+
fileName:
9+
description: Relative file path from the root directory
10+
required: true
11+
type: string
12+
outputs:
13+
resource_url:
14+
description: "The URL of the generated resource."
15+
value: ${{ jobs.MeshMapScreenshot.outputs.resource_url }}
16+
permissions:
17+
actions: read
18+
contents: write
19+
security-events: write
20+
statuses: write
21+
pull-requests: write
22+
id-token: write
23+
24+
jobs:
25+
MeshMapScreenshot:
26+
runs-on: ubuntu-24.04
27+
outputs:
28+
resource_url: ${{ steps.test_result.outputs.resource_url }}
29+
steps:
30+
- name: Set PR number # To comment the final status on the Pull-request opened in any repository
31+
run: |
32+
export pull_number=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
33+
echo "PULL_NO=$pull_number" >> $GITHUB_ENV
34+
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v4 #this step would go away
36+
with:
37+
path: action
38+
repository: layer5labs/kanvas-snapshot
39+
- id: test_result
40+
uses: layer5labs/[email protected]
41+
with:
42+
githubToken: ${{ secrets.GITHUB_TOKEN }} # github's personal access token example: "ghp_...."
43+
mesheryToken: ${{ secrets.MESHERY_TOKEN }} # Meshery Cloud Authentication token, signin to meshery-cloud to get one, example: ey.....
44+
prNumber: ${{ env.PULL_NO }} # auto-filled from the above step
45+
application_type: Kubernetes Manifest # your application type, could be any of three: "Kubernetes Manifest", "Docker Compose", "Helm Chart"
46+
filePath: ${{ inputs.fileName == '' && 'https://meshery.github.io/meshery.io/charts/meshery-v0.8.50.tgz' || inputs.fileName }} # relative file-path from the root directory in the github-runner env, you might require to checkout the repository as described in step 2

.github/workflows/meshmap.yml

-47
This file was deleted.

package-lock.json

+32-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
"@fullcalendar/interaction": "^6.0.1",
3636
"@fullcalendar/react": "^6.1.8",
3737
"@layer5/meshery-design-embed": "^0.4.0",
38-
"@layer5/sistent": "^0.14.164",
38+
"@layer5/sistent": "^0.14.166",
3939
"@loadable/component": "^5.16.4",
4040
"@mdx-js/mdx": "1.6.22",
4141
"@mdx-js/react": "1.6.22",
4242
"@mediacurrent/gatsby-plugin-silence-css-order-warning": "^1.0.0",
43-
"@mui/icons-material": "^5.16.4",
43+
"@mui/icons-material": "^6.4.6",
4444
"@mui/material": "^5.15.11",
4545
"@react-icons/all-files": "^4.1.0",
4646
"@svgr/webpack": "^8.0.1",

src/collections/events/2025/kubecon-eu-2025/index.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ Join Yash Sharma at KubeCon + CloudNativeCon Europe 2025 to witness firsthand ho
4747

4848
<div class="flex-row" style="margin-bottom: 2rem;">
4949
<p>
50-
Date: TBD <br />
51-
Time: TBD
50+
Date: March 31st, 2025 <br />
51+
Time: 17:45pm - 17:50pm BST
5252
</p>
5353

54-
<Button $secondary title="See Details" $url="https://events.linuxfoundation.org/kubecon-cloudnativecon-europe/program/schedule/" $external={ true } />
54+
<Button $secondary title="See Details" $url="https://cfp.cloud-native.rejekts.io/cloud-native-rejekts-europe-london-2025/talk/X9JZXB//" $external={ true } />
5555
</div>
5656

5757

src/collections/integrations/pulsar-resources-operator/index.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,12 @@ components: [
116116
"colorIcon": "icons/components/secret/icons/color/secret-color.svg",
117117
"whiteIcon": "icons/components/secret/icons/white/secret-white.svg",
118118
"description": "",
119+
},
120+
{
121+
"name": "secret",
122+
"colorIcon": "icons/components/secret/icons/color/secret-color.svg",
123+
"whiteIcon": "icons/components/secret/icons/white/secret-white.svg",
124+
"description": "",
119125
}]
120126
featureList: [
121127
"Automates Pulsar resource management",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Zihan Kuang
3+
position: Contributor
4+
image_path: ./zihan-kuang.webp
5+
github: zihanKuang
6+
linkedin: zihan-kuang-6087b2329
7+
layer5: 30f82ac6-f326-44c0-80d0-275db76dae9b
8+
location: Gothenburg, Sweden
9+
bio: Hi, I'm Zihan Kuang! I'm a master's student in Software Engineering at Chalmers, passionate about front-end development, TypeScript, and cloud-native tech. I love building sleek UIs, exploring scalable web solutions, and occasionally baking treats to fuel my coding! 🍪
10+
status: Active
11+
published: true
12+
---
Binary file not shown.

0 commit comments

Comments
 (0)