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
7 changes: 0 additions & 7 deletions .changeset/chubby-nails-look.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/citation-html-stop.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fine-meals-fall.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/index-redirect-head-end.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/legal-flowers-drum.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/lemon-houses-retire.md

This file was deleted.

5 changes: 5 additions & 0 deletions .changeset/polite-eels-do.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'myst-spec': patch
---

Drop JSON Schema pipeline in favour of exported TypeScript
5 changes: 5 additions & 0 deletions .changeset/proud-items-smash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'myst-spec': patch
---

Remove old docs for myst-spec
6 changes: 6 additions & 0 deletions .changeset/proud-mangos-begin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'myst-transforms': patch
'mystmd': patch
---

Allow `grid` directives to be used in `figure` directives
7 changes: 0 additions & 7 deletions .changeset/public-worms-kiss.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/salty-oranges-teach.md

This file was deleted.

6 changes: 6 additions & 0 deletions .changeset/tangy-mirrors-double.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'markdown-it-myst': patch
'myst-execute': patch
---

Fix dependencies / types
4 changes: 2 additions & 2 deletions .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ runs:
# Even though we use bun for test runners, the mystmd bundle uses node,
# so we need to install node and test against multiple versions.
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ inputs.node }}
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ inputs.bun-version }}
- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.10'
cache: 'pip'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
Expand All @@ -36,7 +36,7 @@ jobs:
name: Testing with bun and node ${{ matrix.node }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
Expand All @@ -52,11 +52,11 @@ jobs:
name: Running test docs build
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install myst
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/enforce-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
# As this is a pull_request_target, we'll get `main` here
- name: Checkout contents
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Add labels
uses: actions/labeler@v6

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
contents: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6

# Get the date of the latest GitHub release
- name: Get previous release tag
Expand All @@ -36,7 +36,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Build Python package
run: pipx run hatch -- build
working-directory: packages/mystmd-py
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: package
path: packages/mystmd-py/dist/mystmd*.whl
Expand All @@ -43,11 +43,11 @@ jobs:
needs: [build-package]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: package
- name: Install myst from package
Expand All @@ -63,11 +63,11 @@ jobs:
needs: [build-package]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: package
- name: Run myst and expect failure
Expand All @@ -82,11 +82,11 @@ jobs:
needs: [build-package]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: package
- name: Run myst with nodeenv and expect success
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
published: ${{ steps.changesets.outputs.published }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2
submodules: recursive
Expand All @@ -52,12 +52,12 @@ jobs:
python -m build
working-directory: packages/mystmd-py
- name: Store the Python packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: python-package-distributions
path: packages/mystmd-py/dist/
- name: Store the JS packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: js-package-distributions
path: packages/mystmd/dist/
Expand All @@ -75,7 +75,7 @@ jobs:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
Expand All @@ -89,7 +89,7 @@ jobs:
tag_name: ${{ steps.get_tag.outputs.tag_name }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Get tag name from package.json
id: get_tag
run: |
Expand Down
Loading