jupyterlab_claude_code_extension 1.1.10 → 1.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -44,6 +44,9 @@ End-users can install the published package from PyPI:
44
44
  pip install jupyterlab_claude_code_extension
45
45
  ```
46
46
 
47
+ > [!WARNING]
48
+ > `package.json` pins `webpack: 5.106.0` and `chalk: 4.1.2` in both `resolutions` and `overrides`. Do not remove these. webpack `>= 5.106.1` changed its module-federation share identifier format and crashes the unmaintained `license-webpack-plugin` (`split('=')[1].trim()`) that `@jupyterlab/builder` injects into every production build; the duplicate `chalk@2.4.2` pulled by `duplicate-package-checker-webpack-plugin` crashes on Node 24+ in the build-isolation install. Without the pins, `make publish` and CI fail on `python -m build`.
49
+
47
50
  ## Uninstall
48
51
 
49
52
  ```bash
package/lib/widget.js CHANGED
@@ -857,7 +857,6 @@ export class ClaudeCodeSessionsWidget extends Widget {
857
857
  }
858
858
  const path = this._activeSession.project_path;
859
859
  Clipboard.copyToSystem(path);
860
- Notification.success(`Copied: ${path}`, { autoClose: 2000 });
861
860
  }
862
861
  });
863
862
  this._commands.addCommand('claude-code-sessions:remove', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_claude_code_extension",
3
- "version": "1.1.10",
3
+ "version": "1.1.12",
4
4
  "description": "Browse, resume, and manage your Claude Code CLI sessions from a JupyterLab side panel. One click reactivates the right terminal - no duplicate tabs, live remote-control indicator, and favourites for the projects you keep coming back to.",
5
5
  "keywords": [
6
6
  "jupyter",
package/src/widget.ts CHANGED
@@ -1001,7 +1001,6 @@ export class ClaudeCodeSessionsWidget extends Widget {
1001
1001
  }
1002
1002
  const path = this._activeSession.project_path;
1003
1003
  Clipboard.copyToSystem(path);
1004
- Notification.success(`Copied: ${path}`, { autoClose: 2000 });
1005
1004
  }
1006
1005
  });
1007
1006