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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.3] — 2026-09-17

### Security

- **Frontmatter YAML parsing is bounded (#162).** Adversarial frontmatter can no
Expand Down Expand Up @@ -1978,7 +1980,8 @@ First public release of the MDS (Markdown Script) compiler.

- 590 Rust tests (integration, unit, and doc-tests across the workspace) plus the JavaScript package suites

[Unreleased]: https://github.com/dean0x/mdscript/compare/v0.4.2...HEAD
[Unreleased]: https://github.com/dean0x/mdscript/compare/v0.4.3...HEAD
[0.4.3]: https://github.com/dean0x/mdscript/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/dean0x/mdscript/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/dean0x/mdscript/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/dean0x/mdscript/compare/v0.3.0...v0.4.0
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/mds-core", "crates/mds-cli", "crates/mds-wasm", "crates/mds-n
resolver = "2"

[workspace.package]
version = "0.4.2"
version = "0.4.3"
edition = "2021"
rust-version = "1.88" # napi 3.12.2 sets rust-version = "1.88" in its published Cargo.toml
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/mds-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ path = "src/main.rs"
startup-race-probe = []

[dependencies]
mds = { package = "mds-core", path = "../mds-core", version = "0.4.2" }
mds = { package = "mds-core", path = "../mds-core", version = "0.4.3" }
clap = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/mds-napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ debug-panics = []
crate-type = ["cdylib"]

[dependencies]
mds = { package = "mds-core", path = "../mds-core", version = "0.4.2" }
mds = { package = "mds-core", path = "../mds-core", version = "0.4.3" }
napi = { workspace = true }
napi-derive = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/mds-napi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdscript/mds-napi",
"version": "0.4.2",
"version": "0.4.3",
"description": "MDS compiler native Node.js bindings (napi-rs)",
"main": "index.js",
"types": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion crates/mds-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test = false
doctest = false

[dependencies]
mds = { package = "mds-core", path = "../mds-core", version = "0.4.2" }
mds = { package = "mds-core", path = "../mds-core", version = "0.4.3" }
pyo3 = { workspace = true }
pythonize = { workspace = true }
serde_json = { workspace = true }
4 changes: 2 additions & 2 deletions crates/mds-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ debug-panics = []
crate-type = ["cdylib", "rlib"]

[dependencies]
mds = { package = "mds-core", path = "../mds-core", version = "0.4.2" }
mds = { package = "mds-core", path = "../mds-core", version = "0.4.3" }
wasm-bindgen = { workspace = true }
serde-wasm-bindgen = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
js-sys = { workspace = true }

[dev-dependencies]
mds = { package = "mds-core", path = "../mds-core", version = "0.4.2" }
mds = { package = "mds-core", path = "../mds-core", version = "0.4.3" }
wasm-bindgen-test = { workspace = true }

[package.metadata.wasm-pack.profile.release]
Expand Down
38 changes: 19 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/bundler-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdscript/bundler-utils",
"version": "0.4.2",
"version": "0.4.3",
"description": "Shared utilities for MDS bundler plugins",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -47,7 +47,7 @@
"test": "node --test __test__/*.spec.mjs"
},
"peerDependencies": {
"@mdscript/mds": "^0.4.2"
"@mdscript/mds": "^0.4.3"
},
"devDependencies": {
"@mdscript/mds": "file:../mds",
Expand Down
2 changes: 1 addition & 1 deletion packages/mds-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdscript/mds-wasm",
"version": "0.4.2",
"version": "0.4.3",
"description": "WebAssembly build of the MDS (Markdown Script) compiler — used as the portable fallback by @mdscript/mds",
"license": "MIT",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions packages/mds/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdscript/mds",
"version": "0.4.2",
"version": "0.4.3",
"description": "Universal JavaScript/TypeScript bindings for the MDS (Markdown Script) compiler — native addon with WASM fallback",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -44,10 +44,10 @@
"test:perf": "node --test __test__/perf.spec.mjs"
},
"dependencies": {
"@mdscript/mds-wasm": "^0.4.2"
"@mdscript/mds-wasm": "^0.4.3"
},
"optionalDependencies": {
"@mdscript/mds-napi": "^0.4.2"
"@mdscript/mds-napi": "^0.4.3"
},
"devDependencies": {
"@types/node": "^25.9.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/rollup-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdscript/rollup-plugin",
"version": "0.4.2",
"version": "0.4.3",
"description": "Rollup plugin for importing MDS templates as ES modules",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -37,10 +37,10 @@
"test": "node --test __test__/*.spec.mjs"
},
"dependencies": {
"@mdscript/bundler-utils": "^0.4.2"
"@mdscript/bundler-utils": "^0.4.3"
},
"peerDependencies": {
"@mdscript/mds": "^0.4.2",
"@mdscript/mds": "^0.4.3",
"rollup": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/rspack-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdscript/rspack-loader",
"version": "0.4.2",
"version": "0.4.3",
"description": "Rspack loader for importing MDS templates as ES modules",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -43,10 +43,10 @@
"test": "node --test __test__/*.spec.mjs"
},
"dependencies": {
"@mdscript/bundler-utils": "^0.4.2"
"@mdscript/bundler-utils": "^0.4.3"
},
"peerDependencies": {
"@mdscript/mds": "^0.4.2",
"@mdscript/mds": "^0.4.3",
"@rspack/core": "^1.0.0 || ^2.0.0"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/vite-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdscript/vite-plugin",
"version": "0.4.2",
"version": "0.4.3",
"description": "Vite plugin for importing MDS templates as ES modules",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -37,10 +37,10 @@
"test": "node --test __test__/*.spec.mjs"
},
"dependencies": {
"@mdscript/bundler-utils": "^0.4.2"
"@mdscript/bundler-utils": "^0.4.3"
},
"peerDependencies": {
"@mdscript/mds": "^0.4.2",
"@mdscript/mds": "^0.4.3",
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/webpack-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdscript/webpack-loader",
"version": "0.4.2",
"version": "0.4.3",
"description": "Webpack loader for importing MDS templates as ES modules",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -43,10 +43,10 @@
"test": "node --test __test__/*.spec.mjs"
},
"dependencies": {
"@mdscript/bundler-utils": "^0.4.2"
"@mdscript/bundler-utils": "^0.4.3"
},
"peerDependencies": {
"@mdscript/mds": "^0.4.2",
"@mdscript/mds": "^0.4.3",
"webpack": "^5.0.0"
},
"devDependencies": {
Expand Down
Loading