@jupyterlite/terminal 1.2.0 → 1.3.0

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
@@ -5,8 +5,6 @@
5
5
 
6
6
  A terminal for JupyterLite.
7
7
 
8
- ⚠️ This extension is still in development and not yet ready for general use. ⚠️
9
-
10
8
  ![a screenshot showing a terminal running in JupyterLite](https://raw.githubusercontent.com/jupyterlite/terminal/main/screenshot.png)
11
9
 
12
10
  ## Requirements
@@ -54,6 +52,8 @@ include imports from both `jupyterlite-terminal` and `cockle`, such as if you ar
54
52
 
55
53
  | `jupyterlite-terminal` | `cockle` | `jupyterlite-core` | Release date |
56
54
  | ---------------------- | -------- | ------------------ | ------------ |
55
+ | 1.3.0 | 1.4.0 | >= 0.7, < 0.8 | 2026-03-02 |
56
+ | 1.2.0 | 1.3.0 | >= 0.7, < 0.8 | 2025-12-03 |
57
57
  | 1.1.0 | 1.2.0 | >= 0.6, < 0.8 | 2025-10-27 |
58
58
  | 1.0.1 | 1.0.0 | >= 0.6, < 0.8 | 2025-09-03 |
59
59
  | 1.0.0 | 1.0.0 | >= 0.6, < 0.7 | 2025-08-11 |
package/lib/client.js CHANGED
@@ -38,6 +38,7 @@ export class LiteTerminalAPIClient {
38
38
  const { baseUrl, wsUrl } = this.serverSettings;
39
39
  const shell = new Shell({
40
40
  mountpoint: '/drive',
41
+ cwd: options === null || options === void 0 ? void 0 : options.cwd,
41
42
  baseUrl,
42
43
  wasmBaseUrl: URLExt.join(baseUrl, 'extensions/@jupyterlite/terminal/static/wasm/'),
43
44
  browsingContextId: this._browsingContextId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlite/terminal",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "A terminal for JupyterLite",
5
5
  "keywords": [
6
6
  "jupyter",
@@ -65,7 +65,7 @@
65
65
  "@jupyterlab/services": "^7.5.0",
66
66
  "@jupyterlab/settingregistry": "^4.5.0",
67
67
  "@jupyterlite/apputils": "^0.7.0",
68
- "@jupyterlite/cockle": "^1.3.0",
68
+ "@jupyterlite/cockle": "^1.4.0",
69
69
  "@jupyterlite/services": "^0.7.0",
70
70
  "@lumino/coreutils": "^2.2.1",
71
71
  "@lumino/signaling": "^2.1.4",
package/src/client.ts CHANGED
@@ -55,6 +55,7 @@ export class LiteTerminalAPIClient implements ILiteTerminalAPIClient {
55
55
  const { baseUrl, wsUrl } = this.serverSettings;
56
56
  const shell = new Shell({
57
57
  mountpoint: '/drive',
58
+ cwd: options?.cwd,
58
59
  baseUrl,
59
60
  wasmBaseUrl: URLExt.join(
60
61
  baseUrl,