From f1cb72df403bba23a598fbfdc9b0e8502f1bfbaa Mon Sep 17 00:00:00 2001 From: kirangadhave Date: Sun, 25 Jun 2023 20:11:09 +0000 Subject: [PATCH] Publish 1.0.0 SHA256 hashes: persist_ext-1.0.0-py3-none-any.whl: 12b1303c468789e5b1de899ab2b41e90a2babd208e783920c859bcf04e2feaaf persist_ext-1.0.0.tar.gz: 68e38d3e576483b680311a95fdb39ba7d4606543c3895eeb75ec7028cb42ac67 persist_ext-1.0.0.tgz: ac4aaf3ed1384b83b711e0c64e63a258524a791b9d4986ade72c5acdd1e37796 --- CHANGELOG.md | 27 +++- package.json | 428 +++++++++++++++++++++++++-------------------------- 2 files changed, 239 insertions(+), 216 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa09ab7..81b539c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ +## 1.0.0 + +([Full Changelog](https://github.com/visdesignlab/persist/compare/5ed90bee518fff9daf81df3fb927c143e0807e46...264ad73011e88db77c4b44a09fb1bf0de7363326)) + +### Enhancements made + +- Rename extension to `persist_ext` [#58](https://github.com/visdesignlab/persist/pull/58) ([@kirangadhave](https://github.com/kirangadhave)) +- Major features [#44](https://github.com/visdesignlab/persist/pull/44) ([@kirangadhave](https://github.com/kirangadhave)) + +### Other merged PRs + +- feat(log-console): added log console ext + integrated with global logger [#20](https://github.com/visdesignlab/persist/pull/20) ([@kirangadhave](https://github.com/kirangadhave)) +- CI test probe [#19](https://github.com/visdesignlab/persist/pull/19) ([@kirangadhave](https://github.com/kirangadhave)) +- Testing github actions [#18](https://github.com/visdesignlab/persist/pull/18) ([@kirangadhave](https://github.com/kirangadhave)) +- testing actions [#15](https://github.com/visdesignlab/persist/pull/15) ([@kirangadhave](https://github.com/kirangadhave)) +- Testing kernel comms [#1](https://github.com/visdesignlab/persist/pull/1) ([@kirangadhave](https://github.com/kirangadhave)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/visdesignlab/persist/graphs/contributors?from=2023-01-16&to=2023-06-25&type=c)) + +[@github-actions](https://github.com/search?q=repo%3Avisdesignlab%2Fpersist+involves%3Agithub-actions+updated%3A2023-01-16..2023-06-25&type=Issues) | [@kirangadhave](https://github.com/search?q=repo%3Avisdesignlab%2Fpersist+involves%3Akirangadhave+updated%3A2023-01-16..2023-06-25&type=Issues) + + + ## 1.0.1a2 ([Full Changelog](https://github.com/kirangadhave/interactivede/compare/v1.0.1a1...48d65ad2d6ace997cf27bfc70dacd055b30ae862)) @@ -16,8 +41,6 @@ [@kirangadhave](https://github.com/search?q=repo%3Akirangadhave%2Finteractivede+involves%3Akirangadhave+updated%3A2023-04-26..2023-06-20&type=Issues) - - ## 1.0.1a1 ([Full Changelog](https://github.com/kirangadhave/interactivede/compare/5ed90bee518fff9daf81df3fb927c143e0807e46...5bf2effb4e84ecdcbe7bd32f662c6fbca1f636ea)) diff --git a/package.json b/package.json index 629f92a..43d9261 100644 --- a/package.json +++ b/package.json @@ -1,223 +1,223 @@ { - "name": "persist_ext", - "version": "0.1.0", - "description": "PersIst is a JupyterLab extension to enable persistent interactive visualizations in JupyterLab notebooks.", - "keywords": [ - "jupyter", - "jupyterlab", - "jupyterlab-extension" - ], - "homepage": "https://github.com/visdesignlab/persist", - "bugs": { - "url": "https://github.com/visdesignlab/persist/issues" - }, - "license": "BSD-3-Clause", - "author": { - "name": "Kiran Gadhave", - "email": "kirangadhave2@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}", - "schema/*.json" - ], - "main": "lib/index.js", - "types": "lib/index.d.ts", - "style": "style/index.css", - "repository": { - "type": "git", - "url": "https://github.com/visdesignlab/persist.git" - }, - "scripts": { - "build": "jlpm build:lib && jlpm build:labextension:dev", - "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", - "build:labextension": "jupyter labextension build .", - "build:labextension:dev": "jupyter labextension build --development True .", - "build:lib": "tsc --sourceMap", - "build:lib:prod": "tsc", - "clean": "jlpm clean:lib", - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", - "clean:lintcache": "rimraf .eslintcache .stylelintcache", - "clean:labextension": "rimraf persist_ext/labextension persist_ext/_version.py", - "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", - "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,.css,.json,.md}\"", - "prettier:check": "jlpm prettier:base --check", - "stylelint": "jlpm stylelint:check --fix", - "stylelint:check": "stylelint --cache \"style/**/*.css\"", - "watch": "run-p watch:src watch:labextension", - "watch:src": "tsc -w --sourceMap", - "watch:labextension": "jupyter labextension watch .", - "_noop_": "echo '-------------- only here as separator ---------------'", - "dev": "npx --yes stmux -w always -e ERROR -m system -M -t \"Dev\" -- [ \"npm run dev:ext\" .. \"npm run dev:lab\" ]", - "dev:ext": "npm run watch", - "dev:lab": "jupyter lab --minimize=False", - "dev:lab:auto": "jupyter lab --autoreload --minimize=False", - "setup": "jlpm && jupyter lab build --minimize=False && pip install -e . && jupyter labextension develop --overwrite .", - "postinstall": "husky install", - "prepack": "pinst --disable", - "postpack": "pinst --enable" - }, - "dependencies": { - "@jupyterlab/application": "^4.0.0", - "@jupyterlab/apputils": "^4.0.0", - "@jupyterlab/logconsole": "4.0.0", - "@jupyterlab/notebook": "4.0.0", - "@jupyterlab/settingregistry": "^4.0.0", - "@jupyterlab/vega5-extension": "4.0.0", - "@trrack/core": "^1.2.0", - "@trrack/vis-react": "^1.3.0", - "@types/lodash": "^4.14.194", - "d3": "^7.8.4", - "immutable-json-patch": "^5.1.2", - "jsonpath-plus": "^7.2.0", - "lodash": "^4.17.21", - "node-gyp": "^9.3.1", - "node-pty": "^0.10.1", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "ts-pattern": "^4.2.2", - "uuid": "^9.0.0", - "vega-lite": "^5.9.0" - }, - "devDependencies": { - "@commitlint/cli": "^17.6.5", - "@commitlint/config-conventional": "^17.6.5", - "@commitlint/config-nx-scopes": "^17.6.4", - "@commitlint/cz-commitlint": "^17.5.0", - "@jupyterlab/builder": "^4.0.0", - "@types/d3": "^7.4.0", - "@types/json-schema": "^7.0.11", - "@types/react": "^18.2.6", - "@types/react-dom": "^18.2.4", - "@types/uuid": "^9.0.1", - "@typescript-eslint/eslint-plugin": "^5.55.0", - "@typescript-eslint/parser": "^5.55.0", - "commitizen": "^4.3.0", - "css-loader": "^6.7.1", - "eslint": "^8.36.0", - "eslint-config-prettier": "^8.7.0", - "eslint-plugin-prettier": "^4.2.1", - "husky": "^8.0.0", - "npm-run-all": "^4.1.5", - "pinst": "^3.0.0", - "prettier": "^2.8.7", - "rimraf": "^4.4.1", - "source-map-loader": "^1.0.2", - "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", - "typescript": "~5.0.2", - "yjs": "^13.5.0" - }, - "sideEffects": [ - "style/*.css", - "style/index.js" - ], - "styleModule": "style/index.js", - "publishConfig": { - "access": "public" - }, - "jupyterlab": { - "extension": true, - "outputDir": "persist_ext/labextension", - "schemaDir": "schema" - }, - "eslintIgnore": [ - "node_modules", - "dist", - "coverage", - "**/*.d.ts" - ], - "eslintConfig": { - "root": true, - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "plugin:@typescript-eslint/eslint-recommended", - "plugin:prettier/recommended" + "name": "persist_ext", + "version": "1.0.0", + "description": "PersIst is a JupyterLab extension to enable persistent interactive visualizations in JupyterLab notebooks.", + "keywords": [ + "jupyter", + "jupyterlab", + "jupyterlab-extension" ], - "parser": "@typescript-eslint/parser", - "parserOptions": { - "project": "tsconfig.json", - "sourceType": "module" + "homepage": "https://github.com/visdesignlab/persist", + "bugs": { + "url": "https://github.com/visdesignlab/persist/issues" }, - "plugins": [ - "@typescript-eslint" + "license": "BSD-3-Clause", + "author": { + "name": "Kiran Gadhave", + "email": "kirangadhave2@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}", + "schema/*.json" + ], + "main": "lib/index.js", + "types": "lib/index.d.ts", + "style": "style/index.css", + "repository": { + "type": "git", + "url": "https://github.com/visdesignlab/persist.git" + }, + "scripts": { + "build": "jlpm build:lib && jlpm build:labextension:dev", + "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", + "build:labextension": "jupyter labextension build .", + "build:labextension:dev": "jupyter labextension build --development True .", + "build:lib": "tsc --sourceMap", + "build:lib:prod": "tsc", + "clean": "jlpm clean:lib", + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", + "clean:lintcache": "rimraf .eslintcache .stylelintcache", + "clean:labextension": "rimraf persist_ext/labextension persist_ext/_version.py", + "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", + "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,.css,.json,.md}\"", + "prettier:check": "jlpm prettier:base --check", + "stylelint": "jlpm stylelint:check --fix", + "stylelint:check": "stylelint --cache \"style/**/*.css\"", + "watch": "run-p watch:src watch:labextension", + "watch:src": "tsc -w --sourceMap", + "watch:labextension": "jupyter labextension watch .", + "_noop_": "echo '-------------- only here as separator ---------------'", + "dev": "npx --yes stmux -w always -e ERROR -m system -M -t \"Dev\" -- [ \"npm run dev:ext\" .. \"npm run dev:lab\" ]", + "dev:ext": "npm run watch", + "dev:lab": "jupyter lab --minimize=False", + "dev:lab:auto": "jupyter lab --autoreload --minimize=False", + "setup": "jlpm && jupyter lab build --minimize=False && pip install -e . && jupyter labextension develop --overwrite .", + "postinstall": "husky install", + "prepack": "pinst --disable", + "postpack": "pinst --enable" + }, + "dependencies": { + "@jupyterlab/application": "^4.0.0", + "@jupyterlab/apputils": "^4.0.0", + "@jupyterlab/logconsole": "4.0.0", + "@jupyterlab/notebook": "4.0.0", + "@jupyterlab/settingregistry": "^4.0.0", + "@jupyterlab/vega5-extension": "4.0.0", + "@trrack/core": "^1.2.0", + "@trrack/vis-react": "^1.3.0", + "@types/lodash": "^4.14.194", + "d3": "^7.8.4", + "immutable-json-patch": "^5.1.2", + "jsonpath-plus": "^7.2.0", + "lodash": "^4.17.21", + "node-gyp": "^9.3.1", + "node-pty": "^0.10.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "ts-pattern": "^4.2.2", + "uuid": "^9.0.0", + "vega-lite": "^5.9.0" + }, + "devDependencies": { + "@commitlint/cli": "^17.6.5", + "@commitlint/config-conventional": "^17.6.5", + "@commitlint/config-nx-scopes": "^17.6.4", + "@commitlint/cz-commitlint": "^17.5.0", + "@jupyterlab/builder": "^4.0.0", + "@types/d3": "^7.4.0", + "@types/json-schema": "^7.0.11", + "@types/react": "^18.2.6", + "@types/react-dom": "^18.2.4", + "@types/uuid": "^9.0.1", + "@typescript-eslint/eslint-plugin": "^5.55.0", + "@typescript-eslint/parser": "^5.55.0", + "commitizen": "^4.3.0", + "css-loader": "^6.7.1", + "eslint": "^8.36.0", + "eslint-config-prettier": "^8.7.0", + "eslint-plugin-prettier": "^4.2.1", + "husky": "^8.0.0", + "npm-run-all": "^4.1.5", + "pinst": "^3.0.0", + "prettier": "^2.8.7", + "rimraf": "^4.4.1", + "source-map-loader": "^1.0.2", + "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", + "typescript": "~5.0.2", + "yjs": "^13.5.0" + }, + "sideEffects": [ + "style/*.css", + "style/index.js" + ], + "styleModule": "style/index.js", + "publishConfig": { + "access": "public" + }, + "jupyterlab": { + "extension": true, + "outputDir": "persist_ext/labextension", + "schemaDir": "schema" + }, + "eslintIgnore": [ + "node_modules", + "dist", + "coverage", + "**/*.d.ts" ], - "rules": { - "@typescript-eslint/naming-convention": [ - "error", - { - "selector": "interface", - "format": [ - "PascalCase" - ], - "custom": { - "regex": "^I[A-Z]", - "match": true - } + "eslintConfig": { + "root": true, + "extends": [ + "eslint:recommended", + "plugin:@typescript-eslint/recommended", + "plugin:@typescript-eslint/eslint-recommended", + "plugin:prettier/recommended" + ], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "project": "tsconfig.json", + "sourceType": "module" + }, + "plugins": [ + "@typescript-eslint" + ], + "rules": { + "@typescript-eslint/naming-convention": [ + "error", + { + "selector": "interface", + "format": [ + "PascalCase" + ], + "custom": { + "regex": "^I[A-Z]", + "match": true + } + } + ], + "@typescript-eslint/no-unused-vars": [ + "warn", + { + "args": "none" + } + ], + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-namespace": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/quotes": [ + "error", + "single", + { + "avoidEscape": true, + "allowTemplateLiterals": false + } + ], + "curly": [ + "error", + "all" + ], + "eqeqeq": "error", + "prefer-arrow-callback": "error" } - ], - "@typescript-eslint/no-unused-vars": [ - "warn", - { - "args": "none" + }, + "prettier": { + "singleQuote": true, + "trailingComma": "none", + "arrowParens": "avoid", + "endOfLine": "auto" + }, + "stylelint": { + "extends": [ + "stylelint-config-recommended", + "stylelint-config-standard", + "stylelint-prettier/recommended" + ], + "rules": { + "property-no-vendor-prefix": null, + "selector-no-vendor-prefix": null, + "value-no-vendor-prefix": null, + "selector-class-pattern": null } - ], - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-namespace": "off", - "@typescript-eslint/no-use-before-define": "off", - "@typescript-eslint/quotes": [ - "error", - "single", - { - "avoidEscape": true, - "allowTemplateLiterals": false + }, + "config": { + "commitizen": { + "path": "git-cz" } - ], - "curly": [ - "error", - "all" - ], - "eqeqeq": "error", - "prefer-arrow-callback": "error" - } - }, - "prettier": { - "singleQuote": true, - "trailingComma": "none", - "arrowParens": "avoid", - "endOfLine": "auto" - }, - "stylelint": { - "extends": [ - "stylelint-config-recommended", - "stylelint-config-standard", - "stylelint-prettier/recommended" - ], - "rules": { - "property-no-vendor-prefix": null, - "selector-no-vendor-prefix": null, - "value-no-vendor-prefix": null, - "selector-class-pattern": null - } - }, - "config": { - "commitizen": { - "path": "git-cz" + }, + "resolutions": { + "react": "^17.0.1", + "react-dom": "^17.0.1" } - }, - "resolutions": { - "react": "^17.0.1", - "react-dom": "^17.0.1" - } }