Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jupyterlab/jupyterlab
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.9
Choose a base ref
...
head repository: jupyterlab/jupyterlab
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b9bc3002b1ab89b9a1c4d2a3007c43275d11e0df
Choose a head ref
  • 10 commits
  • 38 files changed
  • 8 contributors

Commits on Nov 29, 2023

  1. Backport PR #15440: Fix Shift + L not working in stdin (#15451)

    Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com>
    fcollonval and krassowski authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    338df29 View commit details
    Browse the repository at this point in the history
  2. Backport PR #15355: More robust galata/UI tests (#15450)

    Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com>
    meeseeksmachine and krassowski authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    118ea00 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Backport PR #15462: Fix URLs in debugger-extension (#15489)

    Co-authored-by: Frédéric Collonval <fcollonval@users.noreply.github.com>
    meeseeksmachine and fcollonval authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    436bc8c View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. Backport PR #15496: Pin actions/labeler to v4 to fix failing CI act…

    …ion (#15515)
    
    Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com>
    meeseeksmachine and krassowski authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    1b68653 View commit details
    Browse the repository at this point in the history
  2. Backport PR #15464: Fix FormComponent showing error indicators in a…

    …ll fields when using a `customValidate` function (#15522)
    
    Co-authored-by: Matthew Michilot <matthew.michilot@gmail.com>
    meeseeksmachine and mmichilot authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    54f7667 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. Backport PR #15542: Fix jupyter labextension watch --help (#15543)

    Co-authored-by: Aarni Koskela <akx@iki.fi>
    meeseeksmachine and akx authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    f0dee91 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2023

  1. Backport PR #15479: Workaround/input box focus (#15563)

    * Re-focus input after modifying model, keep input for 0.5s
    
    * Add a test case against the focus loss issue
    
    Tested that it fails on main reproducing the issue:
    
    ```
        - Expected  - 0
        + Received  + 8
    
          from time import sleep
          input()
          print('before sleep')
          sleep(0.1)
          print('after sleep')
        +
        +
        + x
        +
        +
        +
        +
        +
    ```
    
    * Give up on using animations and :has() solution due to FF bug
    
    https://bugzilla.mozilla.org/show_bug.cgi?id=1867893
    
    `:has()` is not only not yet officially supported but is hard to
    implement well so no wonder there are difficult invalidation bugs
    
    * More robust stdin test
    
    (cherry picked from commit 68be103)
    krassowski authored Dec 27, 2023
    Configuration menu
    Copy the full SHA
    e68754b View commit details
    Browse the repository at this point in the history
  2. Backport PR #15443: Fix search coming back in notebook and editor (#1…

    …5562)
    
    * a test case to illustrate issue #14871
    
    * cleanup unused code
    
    * rename outline into highlight as it sounds more proper
    
    * fix typo in variable name _unrenderedByHighligh → _unrenderedByHighlight
    
    * Fix search coming back in notebook and editor
    
    * Add missing return
    
    * Rename snapshots and limit screenshot to notebook area
    
    Remove no-op await locator line
    
    * Update Playwright Snapshots
    
    * Improve async test implementation to avoid early closing
    
    * Update Playwright Snapshots
    
    * Remove visual snapshots, use locator counts instead
    
    and revert spurious snapshot updates
    
    ---------
    
    Co-authored-by: Thierry Parmentelat <thierry.parmentelat@inria.fr>
    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    (cherry picked from commit 746ce2d)
    3 people authored Dec 27, 2023
    Configuration menu
    Copy the full SHA
    dd68b9c View commit details
    Browse the repository at this point in the history
  3. Backport PR #15499: Adopt ruff format (#15564)

    (cherry picked from commit 5ec3aa4)
    
    Co-authored-by: Jeremy Tuloup <jeremy.tuloup@gmail.com>
    krassowski and jtpio authored Dec 27, 2023
    Configuration menu
    Copy the full SHA
    3ce0331 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2023

  1. Backport PR #15386: Improve scrolling to heading (#15565)

    * Backport PR #15386: Improve scrolling to heading
    
    * Fix scrolling on active heading
    
    * Add option to scroll heading to the top for notebook
    For editor it is not currently possible easily
    
    * Switch to command mode if we are jumping to an heading in md cell
    
    * Add tests
    
    * Add doc string to new attribute
    
    * Rebase follow-up
    
    * Fix linter
    
    * Update Playwright Snapshots
    
    * Revert incorrect updates
    
    ---------
    
    Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com>
    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    (cherry picked from commit 98d1e06)
    
    * Change the `scrollHeadingToTop` setting to avoid behaviour change in patch release
    
    and add a note about upcoming change in the next minor release
    
    * Update snapshot to reflect tiny rendering change
    
    ---------
    
    Co-authored-by: Frédéric Collonval <fcollonval@users.noreply.github.com>
    krassowski and fcollonval authored Dec 29, 2023
    Configuration menu
    Copy the full SHA
    b9bc300 View commit details
    Browse the repository at this point in the history
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy