Skip to content

Commit

Permalink
Backport PR #12407: Fix GitHub link (#12410)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval committed Apr 14, 2022
1 parent 298e86b commit 640708a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,9 +315,9 @@ No merged PRs
- Explicitly build JupyterLab in dev-mode [#11585](https://github.com/jupyterlab/jupyterlab/pull/11585) ([@fcollonval](https://github.com/fcollonval))
- Fix markdown benchmark snapshot [#11575](https://github.com/jupyterlab/jupyterlab/pull/11575) ([@fcollonval](https://github.com/fcollonval))
- postcss 8.4.0 breaks integrity 2 CI test [#11552](https://github.com/jupyterlab/jupyterlab/pull/11552) ([@fcollonval](https://github.com/fcollonval))
- Bump tmpl from 1.0.4 to 1.0.5 [#11512](https://github.com/jupyterlab/jupyterlab/pull/11512) ([@dependabot[bot]](https://github.com/apps/dependabot))
- Bump tmpl from 1.0.4 to 1.0.5 [#11512](https://github.com/jupyterlab/jupyterlab/pull/11512) ([@dependabot[bot]](https://github.com/dependabot))
- Increase notebook markdown test robustness [#11524](https://github.com/jupyterlab/jupyterlab/pull/11524) ([@fcollonval](https://github.com/fcollonval))
- Bump semver-regex from 3.1.2 to 3.1.3 [#11511](https://github.com/jupyterlab/jupyterlab/pull/11511) ([@dependabot[bot]](https://github.com/apps/dependabot))
- Bump semver-regex from 3.1.2 to 3.1.3 [#11511](https://github.com/jupyterlab/jupyterlab/pull/11511) ([@dependabot[bot]](https://github.com/dependabot))
- Run UI test on 3.2.x push [#11521](https://github.com/jupyterlab/jupyterlab/pull/11521) ([@fcollonval](https://github.com/fcollonval))
- Enforce labels on PRs [#11496](https://github.com/jupyterlab/jupyterlab/pull/11496) ([@blink1073](https://github.com/blink1073))

Expand Down
4 changes: 2 additions & 2 deletions docs/source/developer/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ Notes:
If you are using mamba or conda, you can install the necessary packages
with `conda install -c conda-forge pkg-config glib pango pixman`.
- The ``jlpm`` command is a JupyterLab-provided, locked version of the
`yarn <https://yarnpkg.com/en>`__ package manager. If you have
`yarn <https://classic.yarnpkg.com/en/>`__ package manager. If you have
``yarn`` installed already, you can use the ``yarn`` command when
developing, and it will use the local version of ``yarn`` in
``jupyterlab/yarn.js`` when run in the repository or a built
Expand Down Expand Up @@ -357,7 +357,7 @@ We use ``jest`` for all tests, so standard ``jest`` workflows apply.
Tests can be debugged in either VSCode or Chrome. It can help to add an
``it.only`` to a specific test when debugging. All of the ``test*``
scripts in each package accept ``jest`` `cli
options <https://jestjs.io/docs/en/cli.html>`__.
options <https://jestjs.io/docs/cli>`__.

VSCode Debugging
""""""""""""""""
Expand Down
4 changes: 2 additions & 2 deletions docs/source/extension/documents.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Models contain an instance of `ModelDB <../api/classes/observables.modeldb-1.htm
that acts as data storage for the model's content. In JupyterLab 3.1, we introduced
the package ``@jupyterlab/shared-models`` to swap ``ModelDB`` as a data storage
to make 'documents' collaborative. We implemented these shared models using
`Yjs <https://yjs.dev>`_, a high-performance CRDT for building collaborative applications
that automatically sync. You can find all the documentation of Yjs `here <https://docs.yjs.dev>`_.
`Yjs <https://docs.yjs.dev>`_, a high-performance CRDT for building collaborative applications
that automatically sync.
At the moment, models contain both a ``ModelDB`` and a ``Shared Model`` instance, so it is
possible to access ``ModelDB`` yet.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/extension/extension_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Create a repository
-------------------

Create a new repository for your extension (see, for example, the
`GitHub instructions <https://help.github.com/articles/create-a-repo/>`__. This is an
`GitHub instructions <https://docs.github.com/en/get-started/quickstart/create-a-repo>`__. This is an
optional step, but highly recommended if you want to share your
extension.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ skip = ["check-links"]

[tool.jupyter-releaser.options]
ignore-glob = ["packages/ui-components/docs/source/ui_components.rst"]
ignore-links = ["../api/*.*"]
ignore-links = ["../api/*.*", "https://docs.github.com/en/.*"]
version-cmd = "jlpm bumpversion --force --skip-commit"
npm-install-options = "--legacy-peer-deps"
npm-cmd = "npm publish --tag latest"
Expand Down

0 comments on commit 640708a

Please sign in to comment.