You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.19.0] - 2026-04-20
9
+
10
+
### Added
11
+
-`IGNORE_APP_RELATIONSHIP` env var. When set, the `app` field in target configs is ignored — targets are no longer triggered just because their corresponding app is tainted (only direct changes, lockfile changes, and tainted workspace imports apply).
12
+
8
13
## [0.18.1] - 2026-04-13
9
14
10
15
### Changed
@@ -257,6 +262,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|`LOG_LEVEL`| Logging verbosity. `BASIC` for standard logging, `DEBUG` for verbose AST/taint tracing to stderr |_(no logging)_|
63
-
|`INCLUDE_TYPES`| When set to any non-empty value, includes type-only changes (interfaces, type aliases, type annotations) in taint propagation |_(disabled)_|
64
-
|`INCLUDE_CSS`| When set to any non-empty value, enables CSS/SCSS change detection and taint propagation through `@use`/`@import` chains |_(disabled)_|
65
-
|`COMPARE_COMMIT`| Specific git commit hash to compare against (overrides branch-based comparison) |_(empty)_|
66
-
|`COMPARE_BRANCH`| Git branch to compute merge base against |`origin/master`|
67
-
|`TARGETS`| Comma-delimited list of target names to include in output. Supports `*` wildcard (e.g. `*backstop*,@gooddata/sdk-*`). |_(all targets)_|
|`LOG_LEVEL`| Logging verbosity. `BASIC` for standard logging, `DEBUG` for verbose AST/taint tracing to stderr |_(no logging)_|
63
+
|`INCLUDE_TYPES`| When set to any non-empty value, includes type-only changes (interfaces, type aliases, type annotations) in taint propagation |_(disabled)_|
64
+
|`INCLUDE_CSS`| When set to any non-empty value, enables CSS/SCSS change detection and taint propagation through `@use`/`@import` chains |_(disabled)_|
65
+
|`COMPARE_COMMIT`| Specific git commit hash to compare against (overrides branch-based comparison) |_(empty)_|
66
+
|`COMPARE_BRANCH`| Git branch to compute merge base against |`origin/master`|
67
+
|`TARGETS`| Comma-delimited list of target names to include in output. Supports `*` wildcard (e.g. `*backstop*,@gooddata/sdk-*`). |_(all targets)_|
68
+
|`IGNORE_APP_RELATIONSHIP`| When set to any non-empty value, ignores the `app` field in target configs. Targets are no longer triggered solely because their corresponding app is tainted. |_(disabled)_|
68
69
69
70
## Library vs app detection
70
71
@@ -124,7 +125,7 @@ Each target is triggered by any of these conditions:
124
125
1.**Direct file changes** -- files matching `changeDirs` globs changed (excluding ignored paths). Defaults to `**/*` (entire project) when `changeDirs` is not set.
125
126
2.**External dependency changes** -- a dependency version changed in `pnpm-lock.yaml`
126
127
3.**Tainted workspace imports** -- a file matching `changeDirs` globs imports a tainted symbol from a workspace library
127
-
4.**Corresponding app is tainted** -- the app specified by `app` is affected (any of the above conditions)
128
+
4.**Corresponding app is tainted** -- the app specified by `app` is affected (any of the above conditions). Disabled when `IGNORE_APP_RELATIONSHIP` env var is set.
0 commit comments