Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ description: Setup the environment
runs:
using: composite
steps:
- uses: pnpm/action-setup@739bfe42ca9233c5e6aca07c1a25a9d34aca49b0 # v6.0.7
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
run_install: false

- name: Setup node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: '.nvmrc'
cache: pnpm
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout code repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand All @@ -28,7 +28,7 @@ jobs:
needs: install-deps
steps:
- name: Checkout code repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand All @@ -42,7 +42,7 @@ jobs:
needs: install-deps
steps:
- name: Checkout code repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand All @@ -56,7 +56,7 @@ jobs:
needs: install-deps
steps:
- name: Checkout code repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
shard: [1, 2, 3, 4, 5]
steps:
- name: Checkout code repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand All @@ -109,7 +109,7 @@ jobs:

- name: Upload test results
if: ${{ failure() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: test-results-e2e-${{ matrix.shard }}
path: e2e/test-results/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
language: ['javascript']
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Initialize CodeQL
uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4
uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4
uses: github/codeql-action/autobuild@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4
uses: github/codeql-action/analyze@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
with:
category: '/language:${{matrix.language}}'
2 changes: 1 addition & 1 deletion .github/workflows/fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- uses: ./.github/actions/setup

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
prepare:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

- uses: ./.github/actions/setup

- name: Create versions or publish to npm registry
uses: changesets/action@v1
uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1.8.0
with:
version: pnpm ci:version
commit: 'chore: version packages'
Expand All @@ -32,7 +32,7 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand All @@ -50,7 +50,7 @@ jobs:
echo "MILKDOWN_RELEASE_TAG=v${MILKDOWN_VERSION}" >> "$GITHUB_ENV"

- name: Create GitHub release
uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd # v1
uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd # v1.21.0
with:
commit: main
tag: '${{ env.MILKDOWN_RELEASE_TAG }}'
Expand Down
2 changes: 1 addition & 1 deletion .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"**/*.{js,ts,tsx,json,yaml,yml,md}": ["oxlint -c .oxlintrc.json --fix"],
"**/*.{js,ts,tsx}": ["oxlint -c .oxlintrc.json --fix"],
"*": "oxfmt --no-error-on-unmatched-pattern"
}
2 changes: 0 additions & 2 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@
}
],
"import/named": "error",
"import/order": "error",
"import/no-duplicates": "error",
"import/no-import-assign": "error",
"import/no-self-import": "error",

"typescript/consistent-type-imports": "error",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@milkdown/dev": "workspace:*",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.0.0",
Expand Down Expand Up @@ -72,7 +72,7 @@
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.1.0",
"packageManager": "pnpm@11.1.1",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
Expand Down
27 changes: 27 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @milkdown/components

## 7.21.1

### Patch Changes

- a612984: Milkdown patch version release.

## Fix
- fix(crepe): avoid polynomial ReDoS when normalizing provider baseURL (#2366)
- fix(components): lazy-init SVG sanitizer to keep preview-panel SSR-safe (#2365)

## Chore
- chore(deps): bump fast-uri to 3.1.2 to patch GHSA-v39h-62p7-jpjc (#2367)
- chore: Pin dependencies (#2364)
- chore: config renovate to pin github actions (#2363)

- Updated dependencies [a612984]
- @milkdown/core@7.21.1
- @milkdown/ctx@7.21.1
- @milkdown/exception@7.21.1
- @milkdown/plugin-diff@7.21.1
- @milkdown/plugin-tooltip@7.21.1
- @milkdown/preset-commonmark@7.21.1
- @milkdown/preset-gfm@7.21.1
- @milkdown/prose@7.21.1
- @milkdown/transformer@7.21.1
- @milkdown/utils@7.21.1

## 7.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@milkdown/components",
"version": "7.21.0",
"version": "7.21.1",
"keywords": [
"milkdown",
"milkdown plugin"
Expand Down
21 changes: 21 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @milkdown/core

## 7.21.1

### Patch Changes

- a612984: Milkdown patch version release.

## Fix
- fix(crepe): avoid polynomial ReDoS when normalizing provider baseURL (#2366)
- fix(components): lazy-init SVG sanitizer to keep preview-panel SSR-safe (#2365)

## Chore
- chore(deps): bump fast-uri to 3.1.2 to patch GHSA-v39h-62p7-jpjc (#2367)
- chore: Pin dependencies (#2364)
- chore: config renovate to pin github actions (#2363)

- Updated dependencies [a612984]
- @milkdown/ctx@7.21.1
- @milkdown/exception@7.21.1
- @milkdown/prose@7.21.1
- @milkdown/transformer@7.21.1

## 7.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@milkdown/core",
"version": "7.21.0",
"version": "7.21.1",
"keywords": [
"markdown",
"markdown editor",
Expand Down
18 changes: 18 additions & 0 deletions packages/crepe/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @milkdown/crepe

## 7.21.1

### Patch Changes

- a612984: Milkdown patch version release.

## Fix
- fix(crepe): avoid polynomial ReDoS when normalizing provider baseURL (#2366)
- fix(components): lazy-init SVG sanitizer to keep preview-panel SSR-safe (#2365)

## Chore
- chore(deps): bump fast-uri to 3.1.2 to patch GHSA-v39h-62p7-jpjc (#2367)
- chore: Pin dependencies (#2364)
- chore: config renovate to pin github actions (#2363)

- Updated dependencies [a612984]
- @milkdown/kit@7.21.1

## 7.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/crepe/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@milkdown/crepe",
"version": "7.21.0",
"version": "7.21.1",
"keywords": [
"crepe",
"editor",
Expand Down
18 changes: 18 additions & 0 deletions packages/ctx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @milkdown/ctx

## 7.21.1

### Patch Changes

- a612984: Milkdown patch version release.

## Fix
- fix(crepe): avoid polynomial ReDoS when normalizing provider baseURL (#2366)
- fix(components): lazy-init SVG sanitizer to keep preview-panel SSR-safe (#2365)

## Chore
- chore(deps): bump fast-uri to 3.1.2 to patch GHSA-v39h-62p7-jpjc (#2367)
- chore: Pin dependencies (#2364)
- chore: config renovate to pin github actions (#2363)

- Updated dependencies [a612984]
- @milkdown/exception@7.21.1

## 7.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ctx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@milkdown/ctx",
"version": "7.21.0",
"version": "7.21.1",
"keywords": [
"markdown",
"markdown editor",
Expand Down
15 changes: 15 additions & 0 deletions packages/exception/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @milkdown/exception

## 7.21.1

### Patch Changes

- a612984: Milkdown patch version release.

## Fix
- fix(crepe): avoid polynomial ReDoS when normalizing provider baseURL (#2366)
- fix(components): lazy-init SVG sanitizer to keep preview-panel SSR-safe (#2365)

## Chore
- chore(deps): bump fast-uri to 3.1.2 to patch GHSA-v39h-62p7-jpjc (#2367)
- chore: Pin dependencies (#2364)
- chore: config renovate to pin github actions (#2363)

## 7.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/exception/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@milkdown/exception",
"version": "7.21.0",
"version": "7.21.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
19 changes: 19 additions & 0 deletions packages/integrations/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @milkdown/react

## 7.21.1

### Patch Changes

- a612984: Milkdown patch version release.

## Fix
- fix(crepe): avoid polynomial ReDoS when normalizing provider baseURL (#2366)
- fix(components): lazy-init SVG sanitizer to keep preview-panel SSR-safe (#2365)

## Chore
- chore(deps): bump fast-uri to 3.1.2 to patch GHSA-v39h-62p7-jpjc (#2367)
- chore: Pin dependencies (#2364)
- chore: config renovate to pin github actions (#2363)

- Updated dependencies [a612984]
- @milkdown/crepe@7.21.1
- @milkdown/kit@7.21.1

## 7.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@milkdown/react",
"version": "7.21.0",
"version": "7.21.1",
"keywords": [
"milkdown",
"milkdown plugin",
Expand Down
19 changes: 19 additions & 0 deletions packages/integrations/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @milkdown/vue

## 7.21.1

### Patch Changes

- a612984: Milkdown patch version release.

## Fix
- fix(crepe): avoid polynomial ReDoS when normalizing provider baseURL (#2366)
- fix(components): lazy-init SVG sanitizer to keep preview-panel SSR-safe (#2365)

## Chore
- chore(deps): bump fast-uri to 3.1.2 to patch GHSA-v39h-62p7-jpjc (#2367)
- chore: Pin dependencies (#2364)
- chore: config renovate to pin github actions (#2363)

- Updated dependencies [a612984]
- @milkdown/crepe@7.21.1
- @milkdown/kit@7.21.1

## 7.21.0

### Minor Changes
Expand Down
Loading
Loading