-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Update dependencies #7590
Update dependencies #7590
Conversation
Thanks for making a pull request to JupyterLab! To try out this branch on binder, follow this link: |
3177a9f
to
a074a65
Compare
e5c9a45
to
6bdffbc
Compare
@lresende, are you able to run |
6bdffbc
to
8b2d6f2
Compare
@blink1073 let me look at that |
@blink1073 I looked at validating the behavior you described and it looks like this is a Firefox issue, as it's loading ok in Safari. @afshin also saw the same behavior. I will investigate it further to try to find the issue. |
Just a quick update: I am still trying to identify what's going on with |
Note that `tables` has been removed from marked js types
We narrowed it down: css-loader@<3.3.2 works fine 3.3.3 and 3.40 do not work (it times out loading styles). I couldn't think of a way to get a reproducible example to make an issue on the css-loader repo. |
Linter `lint-staged` configuration file has been updated based on advanced configuration being deprecated and build errors
Update how addons are handle Include the fit addon which is now a separate package Update to use new event handlers
We can't upgrade xterm yet because of xtermjs/xterm.js#2620. Our theme values are inherited from our CSS variables, which can include |
We're at xterm 3.13.2. Can we upgrade to 4.2, since from the issue it appears that the issue is with 4.3.0? |
Yes, xterm 4.2.0 seems to work fine. |
8b2d6f2
to
9536bc9
Compare
We can't upgrade xterm yet because of xtermjs/xterm.js#2620. Our theme values are inherited from our CSS variables, which can include rgba() values, and currently only #rrggbbaa is supported.
9536bc9
to
d81965e
Compare
Thanks @blink1073 for helping debug some of the issues after some dependency updates. |
Thanks @lresende! |
Code changes
Few dependency updates in preparation for JupyterLab 2.0 release.
Usage
Update all dependencies (except jupyterlab) to latest
jlpm run update:dependency '^(?!@jupyterlab).*' latest --regex
Update all dependencies (except jupyterlab, codemirror, xterm) to latest
jlpm run update:dependency --regex '^(?!@jupyterlab|codemirror|@types/codemirror|xterm|linters).*' latest
Depends on #7599
Fixes #7194