Skip to content

Commit

Permalink
Publish 4.0.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

jupyterlab-github-4.0.0.tgz: a94ceac628c2898bc4359e5c6c6cd07859c45bbd0fc516c9fee2010b99ca9a7c

jupyterlab_github-4.0.0-py3-none-any.whl: 7189533c3d50f7aa11729ffc3302dd10e3783a526a719b292249cce92a034b79

jupyterlab_github-4.0.0.tar.gz: fab84e981684753f35bc5b55f8e84a30ffbe5b642d7b2d2721e4a048896afa54
  • Loading branch information
jtpio committed Aug 3, 2023
1 parent 5cff452 commit b850bab
Show file tree
Hide file tree
Showing 2 changed files with 147 additions and 129 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

<!-- <START NEW CHANGELOG ENTRY> -->

## 4.0.0

([Full Changelog](https://github.com/jupyterlab/jupyterlab-github/compare/v3.0.1...5cff452e669571d6da9ad5874368b9fe793d567a))

### Maintenance and upkeep improvements

- Rename default branch to `main` [#148](https://github.com/jupyterlab/jupyterlab-github/pull/148) ([@jtpio](https://github.com/jtpio))
- Upgrade extension to JupyterLab 4 [#145](https://github.com/jupyterlab/jupyterlab-github/pull/145) ([@mahendrapaipuri](https://github.com/mahendrapaipuri))
- Optional ILayoutRestorer [#128](https://github.com/jupyterlab/jupyterlab-github/pull/128) ([@jtpio](https://github.com/jtpio))
- Add the release environment to the release workflow [#152](https://github.com/jupyterlab/jupyterlab-github/pull/152) ([@jtpio](https://github.com/jtpio))
- Fix publish workflow [#150](https://github.com/jupyterlab/jupyterlab-github/pull/150) ([@jtpio](https://github.com/jtpio))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab-github/graphs/contributors?from=2021-11-27&to=2023-08-03&type=c))

[@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab-github+involves%3Agithub-actions+updated%3A2021-11-27..2023-08-03&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab-github+involves%3Ajtpio+updated%3A2021-11-27..2023-08-03&type=Issues) | [@mahendrapaipuri](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab-github+involves%3Amahendrapaipuri+updated%3A2021-11-27..2023-08-03&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab-github+involves%3Awelcome+updated%3A2021-11-27..2023-08-03&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## v3.0.1
Expand Down
258 changes: 129 additions & 129 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,132 +1,132 @@
{
"name": "@jupyterlab/github",
"version": "3.0.1",
"description": "JupyterLab viewer for GitHub repositories",
"keywords": [
"github",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-github",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-github/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-github.git"
},
"license": "BSD-3-Clause",
"author": {
"name": "Ian Rose",
"email": "jupyter@googlegroups.com"
},
"files": [
"lib/*/*d.ts",
"lib/*/*.js",
"lib/*.d.ts",
"lib/*.js",
"schema/*.json",
"style/*.*",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:test": "cd test && ./build-tests.sh",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyterlab_github/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"lint": "jlpm && jlpm prettier && jlpm eslint && jlpm stylelint",
"lint:check": "jlpm prettier:check && jlpm eslint:check && jlpm stylelint:check",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/*.css\"",
"stylelint:files": "stylelint --fix",
"install:extension": "jupyter labextension develop --overwrite .",
"precommit": "lint-staged",
"test": "cd test && ./run-tests.sh",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/docmanager": "^4.0.0",
"@jupyterlab/docregistry": "^4.0.0",
"@jupyterlab/filebrowser": "^4.0.0",
"@jupyterlab/services": "^7.0.0",
"@jupyterlab/settingregistry": "^4.0.0",
"@jupyterlab/ui-components": "^4.0.0",
"@lumino/algorithm": "^2.0.0",
"@lumino/messaging": "^2.0.0",
"@lumino/signaling": "^2.0.0",
"@lumino/widgets": "^2.0.0",
"base64-js": "^1.5.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@types/base64-js": "^1.3.0",
"@types/text-encoding": "^0.0.35",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.1.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^4.4.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.1"
},
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_github"
}
}
"name": "@jupyterlab/github",
"version": "4.0.0",
"description": "JupyterLab viewer for GitHub repositories",
"keywords": [
"github",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-github",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-github/issues"
},
"schemaDir": "schema",
"outputDir": "jupyterlab_github/labextension"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js"
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-github.git"
},
"license": "BSD-3-Clause",
"author": {
"name": "Ian Rose",
"email": "jupyter@googlegroups.com"
},
"files": [
"lib/*/*d.ts",
"lib/*/*.js",
"lib/*.d.ts",
"lib/*.js",
"schema/*.json",
"style/*.*",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:test": "cd test && ./build-tests.sh",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyterlab_github/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"lint": "jlpm && jlpm prettier && jlpm eslint && jlpm stylelint",
"lint:check": "jlpm prettier:check && jlpm eslint:check && jlpm stylelint:check",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/*.css\"",
"stylelint:files": "stylelint --fix",
"install:extension": "jupyter labextension develop --overwrite .",
"precommit": "lint-staged",
"test": "cd test && ./run-tests.sh",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/docmanager": "^4.0.0",
"@jupyterlab/docregistry": "^4.0.0",
"@jupyterlab/filebrowser": "^4.0.0",
"@jupyterlab/services": "^7.0.0",
"@jupyterlab/settingregistry": "^4.0.0",
"@jupyterlab/ui-components": "^4.0.0",
"@lumino/algorithm": "^2.0.0",
"@lumino/messaging": "^2.0.0",
"@lumino/signaling": "^2.0.0",
"@lumino/widgets": "^2.0.0",
"base64-js": "^1.5.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@types/base64-js": "^1.3.0",
"@types/text-encoding": "^0.0.35",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.1.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^4.4.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.1"
},
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_github"
}
}
},
"schemaDir": "schema",
"outputDir": "jupyterlab_github/labextension"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js"
}

0 comments on commit b850bab

Please sign in to comment.