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 the javascript group with 8 updates #30

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 1, 2024

Bumps the javascript group with 8 updates:

Package From To
@jupyter/collaboration 2.0.1 2.0.11
@jupyterlab/application 4.1.0 4.1.5
@jupyterlab/apputils 4.2.0 4.2.5
@jupyterlab/docmanager 4.1.0 4.1.5
@jupyterlab/services 7.1.0 7.1.5
@jupyterlab/builder 4.1.0 4.1.5
eslint 8.56.0 8.57.0
typescript 5.3.3 5.4.3

Updates @jupyter/collaboration from 2.0.1 to 2.0.11

Release notes

Sourced from @​jupyter/collaboration's releases.

v2.0.11

2.0.11

Enhancements made

Bugs fixed

v2.0.5

2.0.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​davidbrochart | @​github-actions | @​welcome | @​Zsailer

v2.0.4

2.0.4

(Full Changelog)

Enhancements made

Contributors to this release

... (truncated)

Changelog

Sourced from @​jupyter/collaboration's changelog.

Commits
Maintainer changes

This version was pushed to npm by zsailer, a new releaser for @​jupyter/collaboration since your current version.


Updates @jupyterlab/application from 4.1.0 to 4.1.5

Release notes

Sourced from @​jupyterlab/application's releases.

v4.1.5

4.1.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andrii-i | @​brichet | @​jtpio | @​jupyterlab-probot | @​krassowski | @​linlol | @​meeseeksmachine | @​welcome

v4.1.4

4.1.4

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​ericsnekbytes | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

v4.1.3

... (truncated)

Changelog

Sourced from @​jupyterlab/application's changelog.

4.1.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andrii-i | @​brichet | @​jtpio | @​jupyterlab-probot | @​krassowski | @​linlol | @​meeseeksmachine | @​welcome

4.1.4

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​ericsnekbytes | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

4.1.3

(Full Changelog)

Bugs fixed

... (truncated)

Commits
  • 71e565e [ci skip] Publish 4.1.5
  • a5fa0aa Backport PR #15957: Fix Theme color is not applied to Toolbar Button (#15995)
  • 2b42e0f Backport PR #15834: Uses the browser window's selection as the default search...
  • 32eb7f9 Backport PR #15860: Show outline on the full item in file browser, only when ...
  • 67ae98c Backport PR #15970: Short-circuit selectItemByName() if already selected (#...
  • 9eeb816 Backport PR #15892: Fix browser-test.js (#15975)
  • 668dc57 Backport PR #15959: Ignore links to GitHub user and organisation profiles (#1...
  • 42946a0 Backport PR #15954: Avoid concurrency when computing the items in notebook to...
  • 411b66c Backport PR #15935: Fixes filter for Chinese, other non-ASCII filenames (#15950)
  • eac94d1 [ci skip] Publish 4.1.4
  • Additional commits viewable in compare view

Updates @jupyterlab/apputils from 4.2.0 to 4.2.5

Changelog

Sourced from @​jupyterlab/apputils's changelog.

(changelog)=

JupyterLab Changelog

v4.1

JupyterLab 4.1 includes a number of new features (described below), bug fixes, and enhancements for extension developers. This release is compatible with extensions supporting JupyterLab 4.0. Extension authors are recommended to consult the Extension Migration Guide which lists deprecations and changes to the public API.

Custom CSS

JupyterLab now supports automatic loading of custom CSS. Themes are the recommended way for customizing the JupyterLab look and feel, while custom CSS is intended for minor personal adjustments.

To opt in, start JupyterLab with the --custom-css flag. The location of the custom.css file is documented in the section on customizing the user interface.

`custom.css` is also available in Jupyter Notebook;
while similar selectors can be used for components shared between JupyterLab 4.1 and Jupyter Notebook 7.0,
there was a different set of selectors in Notebook 6 and older versions.
Users with the custom CSS file using the selectors from legacy Notebook versions
will need to update them and note that tutorials may refer to the selectors for the old Notebook versions.

Diagrams in Markdown

Matching GitHub-Flavoured Markdown, JupyterLab 4.1 now supports Mermaid diagrams. To create a mermaid diagram use the mermaid language specifier for a code block in a markdown cell or document, for example:

```mermaid
flowchart LR

A[Hard] -->|Text| B(Round) B --> C{Decision} C -->|One| D[Result 1] C -->|Two| E[Result 2]

</code></pre>
<p>which renders as:</p>
<!-- raw HTML omitted -->
<h3>Inline completer</h3>
<p>JupyterLab now supports completion presented as ghost text in the cell and file editors,</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/71e565ea9b9a0e2fac9d74432b642a75a823a361&quot;&gt;&lt;code&gt;71e565e&lt;/code&gt;&lt;/a> [ci skip] Publish 4.1.5</li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/a5fa0aa9ba3b561f116d9b4d2e9bf775f95b67a1&quot;&gt;&lt;code&gt;a5fa0aa&lt;/code&gt;&lt;/a> Backport PR <a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15957&quot;&gt;#15957&lt;/a>: Fix Theme color is not applied to Toolbar Button (<a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15995&quot;&gt;#15995&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/2b42e0f2acc21c91a652b539bd713ad4c35ab3d7&quot;&gt;&lt;code&gt;2b42e0f&lt;/code&gt;&lt;/a> Backport PR <a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15834&quot;&gt;#15834&lt;/a>: Uses the browser window's selection as the default search...</li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/32eb7f93b9b74fba9bc51faf65fa17f4ad0ede10&quot;&gt;&lt;code&gt;32eb7f9&lt;/code&gt;&lt;/a> Backport PR <a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15860&quot;&gt;#15860&lt;/a>: Show outline on the full item in file browser, only when ...</li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/67ae98c17b1628090d5ca7bbccfc41a7f71a7c8d&quot;&gt;&lt;code&gt;67ae98c&lt;/code&gt;&lt;/a> Backport PR <a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15970&quot;&gt;#15970&lt;/a>: Short-circuit <code>selectItemByName()</code> if already selected (#...</li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/9eeb816514135d83634d19e6f8b7c4f811c86024&quot;&gt;&lt;code&gt;9eeb816&lt;/code&gt;&lt;/a> Backport PR <a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15892&quot;&gt;#15892&lt;/a>: Fix browser-test.js (<a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15975&quot;&gt;#15975&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/668dc572914328ba3451912070908a9b204fb2fd&quot;&gt;&lt;code&gt;668dc57&lt;/code&gt;&lt;/a> Backport PR <a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15959&quot;&gt;#15959&lt;/a>: Ignore links to GitHub user and organisation profiles (<a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/1&quot;&gt;#1&lt;/a&gt;...&lt;/li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/42946a08ac53bb023d6c4383c9485cafb280dbf2&quot;&gt;&lt;code&gt;42946a0&lt;/code&gt;&lt;/a> Backport PR <a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15954&quot;&gt;#15954&lt;/a>: Avoid concurrency when computing the items in notebook to...</li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/411b66c6022a67b3ae6d5a79aad9aea316dacaa9&quot;&gt;&lt;code&gt;411b66c&lt;/code&gt;&lt;/a> Backport PR <a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15935&quot;&gt;#15935&lt;/a>: Fixes filter for Chinese, other non-ASCII filenames (<a href="https://redirect.github.com/jupyterlab/jupyterlab/issues/15950&quot;&gt;#15950&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/jupyterlab/jupyterlab/commit/eac94d1e8e682217170adee2dec5a60ed5364884&quot;&gt;&lt;code&gt;eac94d1&lt;/code&gt;&lt;/a> [ci skip] Publish 4.1.4</li>
<li>Additional commits viewable in <a href="https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected]&quot;&gt;compare view</a></li>
</ul>
</details>

<br />

Updates @jupyterlab/docmanager from 4.1.0 to 4.1.5

Release notes

Sourced from @​jupyterlab/docmanager's releases.

v4.1.5

4.1.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andrii-i | @​brichet | @​jtpio | @​jupyterlab-probot | @​krassowski | @​linlol | @​meeseeksmachine | @​welcome

v4.1.4

4.1.4

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​ericsnekbytes | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

v4.1.3

... (truncated)

Changelog

Sourced from @​jupyterlab/docmanager's changelog.

4.1.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andrii-i | @​brichet | @​jtpio | @​jupyterlab-probot | @​krassowski | @​linlol | @​meeseeksmachine | @​welcome

4.1.4

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​ericsnekbytes | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

4.1.3

(Full Changelog)

Bugs fixed

... (truncated)

Commits
  • 71e565e [ci skip] Publish 4.1.5
  • a5fa0aa Backport PR #15957: Fix Theme color is not applied to Toolbar Button (#15995)
  • 2b42e0f Backport PR #15834: Uses the browser window's selection as the default search...
  • 32eb7f9 Backport PR #15860: Show outline on the full item in file browser, only when ...
  • 67ae98c Backport PR #15970: Short-circuit selectItemByName() if already selected (#...
  • 9eeb816 Backport PR #15892: Fix browser-test.js (#15975)
  • 668dc57 Backport PR #15959: Ignore links to GitHub user and organisation profiles (#1...
  • 42946a0 Backport PR #15954: Avoid concurrency when computing the items in notebook to...
  • 411b66c Backport PR #15935: Fixes filter for Chinese, other non-ASCII filenames (#15950)
  • eac94d1 [ci skip] Publish 4.1.4
  • Additional commits viewable in compare view

Updates @jupyterlab/services from 7.1.0 to 7.1.5

Commits
  • 71e565e [ci skip] Publish 4.1.5
  • a5fa0aa Backport PR #15957: Fix Theme color is not applied to Toolbar Button (#15995)
  • 2b42e0f Backport PR #15834: Uses the browser window's selection as the default search...
  • 32eb7f9 Backport PR #15860: Show outline on the full item in file browser, only when ...
  • 67ae98c Backport PR #15970: Short-circuit selectItemByName() if already selected (#...
  • 9eeb816 Backport PR #15892: Fix browser-test.js (#15975)
  • 668dc57 Backport PR #15959: Ignore links to GitHub user and organisation profiles (#1...
  • 42946a0 Backport PR #15954: Avoid concurrency when computing the items in notebook to...
  • 411b66c Backport PR #15935: Fixes filter for Chinese, other non-ASCII filenames (#15950)
  • eac94d1 [ci skip] Publish 4.1.4
  • Additional commits viewable in compare view

Updates @jupyterlab/builder from 4.1.0 to 4.1.5

Release notes

Sourced from @​jupyterlab/builder's releases.

v4.1.5

4.1.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andrii-i | @​brichet | @​jtpio | @​jupyterlab-probot | @​krassowski | @​linlol | @​meeseeksmachine | @​welcome

v4.1.4

4.1.4

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​ericsnekbytes | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

v4.1.3

... (truncated)

Changelog

Sourced from @​jupyterlab/builder's changelog.

4.1.5

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​andrii-i | @​brichet | @​jtpio | @​jupyterlab-probot | @​krassowski | @​linlol | @​meeseeksmachine | @​welcome

4.1.4

(Full Changelog)

Bugs fixed

Contributors to this release

(GitHub contributors page for this release)

@​ericsnekbytes | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine

4.1.3

(Full Changelog)

Bugs fixed

... (truncated)

Commits
  • 71e565e [ci skip] Publish 4.1.5
  • a5fa0aa Backport PR #15957: Fix Theme color is not applied to Toolbar Button (#15995)
  • 2b42e0f Backport PR #15834: Uses the browser window's selection as the default search...
  • 32eb7f9 Backport PR #15860: Show outline on the full item in file browser, only when ...
  • 67ae98c Backport PR #15970: Short-circuit selectItemByName() if already selected (#...
  • 9eeb816 Backport PR #15892: Fix browser-test.js (#15975)
  • 668dc57 Backport PR #15959: Ignore links to GitHub user and organisation profiles (#1...
  • 42946a0 Backport PR #15954: Avoid concurrency when computing the items in notebook to...
  • 411b66c Backport PR #15935: Fixes filt...

    Description has been truncated

Bumps the javascript group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@jupyter/collaboration](https://github.com/jupyterlab/jupyter-collaboration) | `2.0.1` | `2.0.11` |
| [@jupyterlab/application](https://github.com/jupyterlab/jupyterlab) | `4.1.0` | `4.1.5` |
| [@jupyterlab/apputils](https://github.com/jupyterlab/jupyterlab) | `4.2.0` | `4.2.5` |
| [@jupyterlab/docmanager](https://github.com/jupyterlab/jupyterlab) | `4.1.0` | `4.1.5` |
| [@jupyterlab/services](https://github.com/jupyterlab/jupyterlab) | `7.1.0` | `7.1.5` |
| [@jupyterlab/builder](https://github.com/jupyterlab/jupyterlab) | `4.1.0` | `4.1.5` |
| [eslint](https://github.com/eslint/eslint) | `8.56.0` | `8.57.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.3` |


Updates `@jupyter/collaboration` from 2.0.1 to 2.0.11
- [Release notes](https://github.com/jupyterlab/jupyter-collaboration/releases)
- [Changelog](https://github.com/jupyterlab/jupyter-collaboration/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/[email protected]...@jupyter/[email protected])

Updates `@jupyterlab/application` from 4.1.0 to 4.1.5
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/@jupyterlab/[email protected]/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `@jupyterlab/apputils` from 4.2.0 to 4.2.5
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `@jupyterlab/docmanager` from 4.1.0 to 4.1.5
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/@jupyterlab/[email protected]/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `@jupyterlab/services` from 7.1.0 to 7.1.5
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `@jupyterlab/builder` from 4.1.0 to 4.1.5
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/@jupyterlab/[email protected]/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `eslint` from 8.56.0 to 8.57.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.56.0...v8.57.0)

Updates `typescript` from 5.3.3 to 5.4.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.4.3)

---
updated-dependencies:
- dependency-name: "@jupyter/collaboration"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@jupyterlab/application"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@jupyterlab/apputils"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@jupyterlab/docmanager"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@jupyterlab/services"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@jupyterlab/builder"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 1, 2024
Copy link
Author

dependabot bot commented on behalf of github Apr 8, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 8, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/javascript-a30ee15d04 branch April 8, 2024 11:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants