nx
Nx
GitHub
Nx
Workspace
GitHub
CI Pipeline Executions
Filtered
Runs
Demo
Insights
Compare tasks
Analytics
Sign in
Toggle sidebar
Overview
⌘K
Nx
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Status
Fix filter
Filter
Fuzzy
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
GitHub
Nx
Workspace
Failed
36823
d7d213a0 feat(core): move the snapshot opt-out under a target-level sandbox key Renames the per-target opt-out from a flat `ioSnapshots: false` to the config shape CLOUD-5144 specifies: { "cache": true, "sandbox": { "enabled": false } } The nested key is where the remaining sandboxing knobs land (ignoredReads, ignoredWrites, backpropagate), so opting a target out of snapshot-backed hashing now reads as one facet of sandboxing rather than its own top-level flag. Only `enabled` is implemented here; the other knobs are deferred with the rest of CLOUD-5144. Rust `Target.io_snapshots: Option<bool>` becomes `Target.sandbox: Option<TargetSandbox>`, a napi object carrying `enabled`. `nx show target` reports it under the new key. The `sandbox` object is left open in both JSON schemas rather than sealed with additionalProperties:false, so the `'...'` merge sentinel is still valid in a target's sandbox block.
by FrozenPandaz
F
Failed
36823
f19bb819 feat(core): fold the disk-backed files input into fileset as includeIgnored A fileset only sees files in the workspace file map, so gitignored and generated files could not be task inputs. This shipped as a separate `{ files: [...] }` input type; it is now a modifier on the existing fileset instead: `{ "fileset": "dist/**", "includeIgnored": true }`. "A set of files" is one user-facing concept. Whether Nx reads it from the file map or walks the disk is an implementation detail, not a second keyword to learn, and folding it in means token resolution, negations and validation are shared rather than reimplemented per input type. All of a task's includeIgnored filesets aggregate into one HashInstruction::Files group so a negation filters across entries, matching how map-backed filesets already aggregate. A negation must itself carry includeIgnored to filter a disk-backed match; collect_negations skips them so they are not applied twice. Removes FilesInput and Input::Files, narrowing the napi union to Either9.
by FrozenPandaz
F
Failed
36823
8ab1d7a9 feat(core): print the none I/O snapshot status only under --verbose used and fallback always print in nx show target; none prints in text only with --verbose so non-Cloud workspaces stay quiet. --json always carries snapshot.
by FrozenPandaz
F
Previous
Next