Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions .github/workflows/sync-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Sync Changelog

on:
schedule:
- cron: '0 9 * * *' # Run daily at 9 AM UTC
workflow_dispatch: # Allow manual trigger

concurrency:
group: changelog-sync
cancel-in-progress: false

permissions:
contents: write

jobs:
sync:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Setup pnpm
uses: pnpm/action-setup@v2

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Sync changelog
env:
GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }}
run: node scripts/sync-changelog.mjs --latest

- name: Check for changes
id: git-check
run: |
if [ -z "$(git status --porcelain)" ]; then
echo "changed=false" >> $GITHUB_OUTPUT
else
echo "changed=true" >> $GITHUB_OUTPUT
fi

- name: Commit and push changes
if: steps.git-check.outputs.changed == 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add apps/ascent/app/changelog/content/
git commit -m "chore: sync changelog [skip ci]"
git push
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.10.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.10'
date: '2025-08-13'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.10">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.11.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.11'
date: '2025-08-18'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.11">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.12.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.12'
date: '2025-08-18'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.12">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.13.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.13'
date: '2025-08-20'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.13">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.16.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.16'
date: '2025-09-17'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.16">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.17.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.17'
date: '2025-09-22'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.17">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.18.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.18'
date: '2025-09-29'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.18">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.19.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.19'
date: '2025-10-06'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.19">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
11 changes: 11 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.20.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
version: 'v0.0.20'
date: '2025-10-15'
status: 'stable'
---

<ChangelogCard summary="Release v0.0.20">
<ChangelogEntry type="chore">
Stable release. No detailed changelog available for this version.
</ChangelogEntry>
</ChangelogCard>
166 changes: 166 additions & 0 deletions apps/ascent/app/changelog/content/v0.0.21.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
---
version: 'v0.0.21'
date: '2025-10-25'
status: 'stable'
---

<ChangelogCard
summary="Button"
defaultExpanded={true}
commitHash="17a6d1b"
commitUrl="https://github.com/juspay/blend-design-system/commit/17a6d1b"
>
<ChangelogEntry
type="fix"
commitHash="17a6d1b"
commitUrl="https://github.com/juspay/blend-design-system/commit/17a6d1b"
>
**Remove** - duplicate props from button
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="Charts"
commitHash="92a3ecb"
commitUrl="https://github.com/juspay/blend-design-system/commit/92a3ecb"
>
<ChangelogEntry
type="chore"
commitHash="92a3ecb"
commitUrl="https://github.com/juspay/blend-design-system/commit/92a3ecb"
>
**Bug** - fix/chart ticks
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="CodeBlock"
commitHash="28a3a16"
commitUrl="https://github.com/juspay/blend-design-system/commit/28a3a16"
>
<ChangelogEntry
type="chore"
commitHash="28a3a16"
commitUrl="https://github.com/juspay/blend-design-system/commit/28a3a16"
>
**Feat/code** - block
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="DataTable, Sidebar"
commitHash="0ef03f3"
commitUrl="https://github.com/juspay/blend-design-system/commit/0ef03f3"
>
<ChangelogEntry
type="chore"
commitHash="0ef03f3"
commitUrl="https://github.com/juspay/blend-design-system/commit/0ef03f3"
>
**Update** - table and sidebar component
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="Menu"
commitHash="747363c"
commitUrl="https://github.com/juspay/blend-design-system/commit/747363c"
>
<ChangelogEntry
type="chore"
commitHash="747363c"
commitUrl="https://github.com/juspay/blend-design-system/commit/747363c"
>
**Fixed** - minor naming issue in menu documentation
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="Snackbar"
commitHash="68ee0e0"
commitUrl="https://github.com/juspay/blend-design-system/commit/68ee0e0"
>
<ChangelogEntry
type="fix"
commitHash="68ee0e0"
commitUrl="https://github.com/juspay/blend-design-system/commit/68ee0e0"
>
**Adjust** - padding and remove minWidth from Snackbar
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="Tag, Tabs"
commitHash="0a54be9"
commitUrl="https://github.com/juspay/blend-design-system/commit/0a54be9"
>
<ChangelogEntry
type="chore"
commitHash="0a54be9"
commitUrl="https://github.com/juspay/blend-design-system/commit/0a54be9"
>
**481** - data ids for tag tabs
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="Features"
commitHash={['6fc3fe4', '28776fe']}
commitUrl={[
'https://github.com/juspay/blend-design-system/commit/6fc3fe4',
'https://github.com/juspay/blend-design-system/commit/28776fe',
]}
>
<ChangelogEntry
type="feat"
commitHash="6fc3fe4"
commitUrl="https://github.com/juspay/blend-design-system/commit/6fc3fe4"
>
**Added** - data ids for input fields
</ChangelogEntry>
<ChangelogEntry
type="feat"
commitHash="28776fe"
commitUrl="https://github.com/juspay/blend-design-system/commit/28776fe"
>
**Add** - isFirstRow prop to TableCell and update styling for first row
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="Refactoring"
commitHash="d799803"
commitUrl="https://github.com/juspay/blend-design-system/commit/d799803"
>
<ChangelogEntry
type="refactor"
commitHash="d799803"
commitUrl="https://github.com/juspay/blend-design-system/commit/d799803"
>
**Simplify** - VirtualList and Select components
</ChangelogEntry>
</ChangelogCard>

<ChangelogCard
summary="Chores"
commitHash={['a4f5464', '7b77a25']}
commitUrl={[
'https://github.com/juspay/blend-design-system/commit/a4f5464',
'https://github.com/juspay/blend-design-system/commit/7b77a25',
]}
>
<ChangelogEntry
type="chore"
commitHash="a4f5464"
commitUrl="https://github.com/juspay/blend-design-system/commit/a4f5464"
>
**Fix/workflows**
</ChangelogEntry>
<ChangelogEntry
type="chore"
commitHash="7b77a25"
commitUrl="https://github.com/juspay/blend-design-system/commit/7b77a25"
>
**Token** - revamp
</ChangelogEntry>
</ChangelogCard>
Loading
Loading