Frédéric Collonval 3 роки тому
батько
коміт
640708a7b7

+ 2 - 2
CHANGELOG.md

@@ -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))
 

+ 2 - 2
docs/source/developer/contributing.rst

@@ -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
@@ -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
 """"""""""""""""

+ 2 - 2
docs/source/extension/documents.rst

@@ -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.
 

+ 1 - 1
docs/source/extension/extension_tutorial.rst

@@ -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.
 

+ 1 - 1
pyproject.toml

@@ -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"