Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 3.0.0-beta.0 #42

Merged
merged 2 commits into from
Apr 7, 2021
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: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog

## 3.0.0

- Port to JupyterLab 3 (#29)
- Fixes comment duplication when code mirror viewport is updated (#43)

## 2.1.0 (2021-04-05)

- Refactor code with latest @jupyterlab/git (more shared code) #39
- Refactor code with latest @jupyterlab/git (more shared code) (#39)

## 2.0.1 (2021-03-17)

Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

A JupyterLab extension for reviewing pull requests.

![](gifs/demo.gif)
![demo](https://raw.githubusercontent.com/jupyterlab/pull-requests/master/gifs/demo.gif)

For now, it supports GitHub and GitLab providers.

Expand Down Expand Up @@ -94,6 +94,14 @@ This extension as [server settings](http://jupyter-notebook.readthedocs.io/en/st
- **PRConfig.provider**: `github` (default) or `gitlab`
- **PRConfig.api_base_url**: Provider API base url (default to `https://api.github.com` except if provider is _gitlab_ then it defaults to `https://gitlab.com/api/v4/`)

## Troubleshooting

- If you are seeing the following error `[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain` and the certificates are installed on your machine, you will need to set the `SSL_CERT_FILE` environment variable to point to your system certificates bundle. For example:

```
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
```

## Development

### Contributing
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab/pullrequests",
"version": "3.0.0-alpha.0",
"version": "3.0.0-beta.0",
"description": "Pull Requests for JupyterLab",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -71,7 +71,7 @@
"json-source-map": "^0.6.1",
"moment": "^2.24.0",
"nbdime": "^6.1.0-beta.1",
"nbdime-jupyterlab": "2.1.0-beta.1",
"nbdime-jupyterlab": "^2.1.0-beta.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-spinners": "^0.5.12"
Expand Down Expand Up @@ -125,6 +125,7 @@
"outputDir": "jupyterlab_pullrequests/labextension",
"sharedPackages": {
"@jupyterlab/git": {
"bundled": false,
"singleton": true
},
"codemirror": {
Expand Down