start-command 0.19.1 → 0.20.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # start-command
2
2
 
3
+ ## 0.20.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ad9e796: feat: Rename spine to timeline, add virtual command visualization for Docker
8
+
9
+ This release updates the internal terminology from "spine" to "timeline" for the status output format, and adds automatic visualization of Docker image pull operations as virtual commands.
10
+
11
+ Timeline terminology changes:
12
+ - The `│` prefixed output format is now consistently referred to as "timeline" format throughout the codebase
13
+ - All deprecated "spine" names remain available for backwards compatibility
14
+ - API changes are reflected in the Rust library (no breaking changes in JS)
15
+
16
+ Virtual command visualization for Docker:
17
+ - When Docker isolation requires pulling an image, it now appears as a separate `$ docker pull <image>` command
18
+ - Pull output is streamed in real-time with success (✓) or failure (✗) markers
19
+ - Only shown when the image actually needs to be pulled (not when using cached images)
20
+ - Provides better visibility into what's happening during Docker-based command execution
21
+
22
+ Version bumped to 0.20.0 to match the Rust library version.
23
+
24
+ Fixes #70
25
+
3
26
  ## 0.19.1
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "start-command",
3
- "version": "0.19.1",
3
+ "version": "0.20.0",
4
4
  "description": "Gamification of coding, execute any command with ability to auto-report issues on GitHub",
5
5
  "main": "src/bin/cli.js",
6
6
  "exports": {