diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dc81a8..5970c34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,29 @@ +## 2.0.3a0 + +([Full Changelog](https://github.com/executablebooks/jupyterlab-myst/compare/v2.0.2...c0a92b1ddc1a7aa3221e1fd10367ba3eb243a4db)) + +### Enhancements made + +- feat: use latest MySTJS [#183](https://github.com/executablebooks/jupyterlab-myst/pull/183) ([@agoose77](https://github.com/agoose77)) +- fix: ⚛️ Render HTML directly [#118](https://github.com/executablebooks/jupyterlab-myst/pull/118) ([@rowanc1](https://github.com/rowanc1)) + +### Other merged PRs + +- maintenance: run prettier on package.json [#180](https://github.com/executablebooks/jupyterlab-myst/pull/180) ([@agoose77](https://github.com/agoose77)) +- chore: drop duplicate workflow [#179](https://github.com/executablebooks/jupyterlab-myst/pull/179) ([@agoose77](https://github.com/agoose77)) +- docs: fix link to trust model [#178](https://github.com/executablebooks/jupyterlab-myst/pull/178) ([@agoose77](https://github.com/agoose77)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/executablebooks/jupyterlab-myst/graphs/contributors?from=2023-08-29&to=2023-09-14&type=c)) + +[@agoose77](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Aagoose77+updated%3A2023-08-29..2023-09-14&type=Issues) | [@fwkoch](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Afwkoch+updated%3A2023-08-29..2023-09-14&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Agithub-actions+updated%3A2023-08-29..2023-09-14&type=Issues) | [@nthiery](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Anthiery+updated%3A2023-08-29..2023-09-14&type=Issues) | [@rowanc1](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Arowanc1+updated%3A2023-08-29..2023-09-14&type=Issues) | [@stevejpurves](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Astevejpurves+updated%3A2023-08-29..2023-09-14&type=Issues) + + + ## 2.0.2 ([Full Changelog](https://github.com/executablebooks/jupyterlab-myst/compare/v2.0.1...23d2aba01353f02843cb298dd0361ff1b45b01db)) @@ -16,8 +39,6 @@ [@agoose77](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Aagoose77+updated%3A2023-07-04..2023-08-29&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Agithub-actions+updated%3A2023-07-04..2023-08-29&type=Issues) | [@rowanc1](https://github.com/search?q=repo%3Aexecutablebooks%2Fjupyterlab-myst+involves%3Arowanc1+updated%3A2023-07-04..2023-08-29&type=Issues) - - ## 2.0.1 ([Full Changelog](https://github.com/executablebooks/jupyterlab-myst/compare/v2.0.0...fb8f131f0ace77b1009b7563ba9b556faf2aceb5)) diff --git a/package.json b/package.json index da60da3..74381cc 100644 --- a/package.json +++ b/package.json @@ -1,131 +1,131 @@ { - "name": "jupyterlab-myst", - "version": "2.0.2", - "description": "Use MyST in JupyterLab", - "keywords": [ - "jupyter", - "jupyterlab", - "jupyterlab-extension" - ], - "homepage": "https://github.com/executablebooks/jupyterlab-myst", - "bugs": { - "url": "https://github.com/executablebooks/jupyterlab-myst/issues" - }, - "license": "MIT", - "author": { - "name": "Executable Book Project", - "email": "executablebooks@gmail.com" - }, - "files": [ - "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", - "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}", - "style/index.js" - ], - "main": "lib/index.js", - "types": "lib/index.d.ts", - "style": "style/index.css", - "repository": { - "type": "git", - "url": "https://github.com/executablebooks/jupyterlab-myst.git" - }, - "scripts": { - "build": "jlpm build:css && jlpm build:lib && jlpm build:labextension:dev", - "build:css": "tailwindcss -m -i ./style/tailwind.css -o style/app.css", - "build:labextension": "jupyter labextension build .", - "build:labextension:dev": "jupyter labextension build --development True .", - "build:lib": "tsc --sourceMap", - "build:lib:prod": "tsc", - "build:prod": "jlpm clean && jlpm build:css && jlpm build:lib:prod && jlpm build:labextension", - "clean": "jlpm clean:lib", - "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", - "clean:labextension": "rimraf jupyterlab_myst/labextension jupyterlab_myst/_version.py", - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", - "clean:lintcache": "rimraf .eslintcache .stylelintcache", - "eslint": "jlpm eslint:check --fix", - "eslint:check": "eslint . --cache --ext .ts,.tsx", - "install:extension": "jlpm build", - "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", - "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", - "prettier": "jlpm prettier:base --write --list-different", - "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.json,.md}\"", - "prettier:check": "jlpm prettier:base --check", - "stylelint": "jlpm stylelint:check --fix", - "stylelint:check": "stylelint --cache \"style/**/*.css\"", - "test": "jest --coverage", - "watch": "run-p watch:src watch:css watch:labextension", - "watch:css": "tailwindcss -w -i ./style/tailwind.css -o style/app.css", - "watch:labextension": "jupyter labextension watch .", - "watch:src": "tsc -w" - }, - "dependencies": { - "@jupyterlab/application": "^4.0.0", - "@jupyterlab/apputils": "^4.0.0", - "@jupyterlab/codeeditor": "^4.0.0", - "@jupyterlab/markdownviewer": "^4.0.0", - "@jupyterlab/notebook": "^4.0.0", - "@jupyterlab/rendermime": "^4.0.0", - "@jupyterlab/translation": "^4.0.0", - "@myst-theme/diagrams": "^0.5.6", - "@myst-theme/frontmatter": "^0.5.6", - "@myst-theme/providers": "^0.5.6", - "katex": "^0.15.2", - "myst-common": "^1.1.5", - "myst-ext-card": "^1.0.0", - "myst-ext-exercise": "^1.0.0", - "myst-ext-grid": "^1.0.0", - "myst-ext-proof": "^1.0.0", - "myst-ext-tabs": "^1.0.0", - "myst-frontmatter": "^1.1.5", - "myst-parser": "^1.0.7", - "myst-to-html": "^1.0.7", - "myst-to-react": "^0.5.6", - "myst-transforms": "^1.1.1" - }, - "devDependencies": { - "@babel/core": "^7.0.0", - "@babel/preset-env": "^7.0.0", - "@jupyterlab/builder": "^4.0.0", - "@jupyterlab/testutils": "^4.0.0", - "@myst-theme/styles": "^0.3.3", - "@tailwindcss/typography": "^0.5.8", - "@types/jest": "^29.2.0", - "@types/json-schema": "^7.0.11", - "@types/markdown-it": "^12.2.3", - "@types/react": "^18.0.26", - "@types/react-dom": "^18.0.9", - "@typescript-eslint/eslint-plugin": "^5.55.0", - "@typescript-eslint/parser": "^5.55.0", - "css-loader": "^6.7.1", - "eslint": "^8.36.0", - "eslint-config-prettier": "^8.7.0", - "eslint-plugin-prettier": "^4.2.1", - "jest": "^29.2.0", - "mkdirp": "^1.0.3", - "npm-run-all": "^4.1.5", - "prettier": "^2.8.7", - "rimraf": "^4.4.1", - "source-map-loader": "^4.0.1", - "style-loader": "^3.3.1", - "stylelint": "^14.9.1", - "stylelint-config-prettier": "^9.0.4", - "stylelint-config-recommended": "^8.0.0", - "stylelint-config-standard": "^26.0.0", - "stylelint-prettier": "^2.0.0", - "tailwindcss": "^3.2.4", - "ts-jest": "^29.1.0", - "typescript": "~5.0.2", - "yjs": "^13.5.40" - }, - "sideEffects": [ - "style/*.css", - "style/index.js" - ], - "styleModule": "style/index.js", - "publishConfig": { - "access": "public" - }, - "jupyterlab": { - "extension": true, - "outputDir": "jupyterlab_myst/labextension" - } + "name": "jupyterlab-myst", + "version": "2.0.3-a0", + "description": "Use MyST in JupyterLab", + "keywords": [ + "jupyter", + "jupyterlab", + "jupyterlab-extension" + ], + "homepage": "https://github.com/executablebooks/jupyterlab-myst", + "bugs": { + "url": "https://github.com/executablebooks/jupyterlab-myst/issues" + }, + "license": "MIT", + "author": { + "name": "Executable Book Project", + "email": "executablebooks@gmail.com" + }, + "files": [ + "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", + "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}", + "style/index.js" + ], + "main": "lib/index.js", + "types": "lib/index.d.ts", + "style": "style/index.css", + "repository": { + "type": "git", + "url": "https://github.com/executablebooks/jupyterlab-myst.git" + }, + "scripts": { + "build": "jlpm build:css && jlpm build:lib && jlpm build:labextension:dev", + "build:css": "tailwindcss -m -i ./style/tailwind.css -o style/app.css", + "build:labextension": "jupyter labextension build .", + "build:labextension:dev": "jupyter labextension build --development True .", + "build:lib": "tsc --sourceMap", + "build:lib:prod": "tsc", + "build:prod": "jlpm clean && jlpm build:css && jlpm build:lib:prod && jlpm build:labextension", + "clean": "jlpm clean:lib", + "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", + "clean:labextension": "rimraf jupyterlab_myst/labextension jupyterlab_myst/_version.py", + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", + "clean:lintcache": "rimraf .eslintcache .stylelintcache", + "eslint": "jlpm eslint:check --fix", + "eslint:check": "eslint . --cache --ext .ts,.tsx", + "install:extension": "jlpm build", + "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", + "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", + "prettier": "jlpm prettier:base --write --list-different", + "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.json,.md}\"", + "prettier:check": "jlpm prettier:base --check", + "stylelint": "jlpm stylelint:check --fix", + "stylelint:check": "stylelint --cache \"style/**/*.css\"", + "test": "jest --coverage", + "watch": "run-p watch:src watch:css watch:labextension", + "watch:css": "tailwindcss -w -i ./style/tailwind.css -o style/app.css", + "watch:labextension": "jupyter labextension watch .", + "watch:src": "tsc -w" + }, + "dependencies": { + "@jupyterlab/application": "^4.0.0", + "@jupyterlab/apputils": "^4.0.0", + "@jupyterlab/codeeditor": "^4.0.0", + "@jupyterlab/markdownviewer": "^4.0.0", + "@jupyterlab/notebook": "^4.0.0", + "@jupyterlab/rendermime": "^4.0.0", + "@jupyterlab/translation": "^4.0.0", + "@myst-theme/diagrams": "^0.5.6", + "@myst-theme/frontmatter": "^0.5.6", + "@myst-theme/providers": "^0.5.6", + "katex": "^0.15.2", + "myst-common": "^1.1.5", + "myst-ext-card": "^1.0.0", + "myst-ext-exercise": "^1.0.0", + "myst-ext-grid": "^1.0.0", + "myst-ext-proof": "^1.0.0", + "myst-ext-tabs": "^1.0.0", + "myst-frontmatter": "^1.1.5", + "myst-parser": "^1.0.7", + "myst-to-html": "^1.0.7", + "myst-to-react": "^0.5.6", + "myst-transforms": "^1.1.1" + }, + "devDependencies": { + "@babel/core": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "@jupyterlab/builder": "^4.0.0", + "@jupyterlab/testutils": "^4.0.0", + "@myst-theme/styles": "^0.3.3", + "@tailwindcss/typography": "^0.5.8", + "@types/jest": "^29.2.0", + "@types/json-schema": "^7.0.11", + "@types/markdown-it": "^12.2.3", + "@types/react": "^18.0.26", + "@types/react-dom": "^18.0.9", + "@typescript-eslint/eslint-plugin": "^5.55.0", + "@typescript-eslint/parser": "^5.55.0", + "css-loader": "^6.7.1", + "eslint": "^8.36.0", + "eslint-config-prettier": "^8.7.0", + "eslint-plugin-prettier": "^4.2.1", + "jest": "^29.2.0", + "mkdirp": "^1.0.3", + "npm-run-all": "^4.1.5", + "prettier": "^2.8.7", + "rimraf": "^4.4.1", + "source-map-loader": "^4.0.1", + "style-loader": "^3.3.1", + "stylelint": "^14.9.1", + "stylelint-config-prettier": "^9.0.4", + "stylelint-config-recommended": "^8.0.0", + "stylelint-config-standard": "^26.0.0", + "stylelint-prettier": "^2.0.0", + "tailwindcss": "^3.2.4", + "ts-jest": "^29.1.0", + "typescript": "~5.0.2", + "yjs": "^13.5.40" + }, + "sideEffects": [ + "style/*.css", + "style/index.js" + ], + "styleModule": "style/index.js", + "publishConfig": { + "access": "public" + }, + "jupyterlab": { + "extension": true, + "outputDir": "jupyterlab_myst/labextension" + } }