@4cloudguru/pipeline-task-ado 0.4.3 → 0.4.4

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/README.md +13 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -45,6 +45,19 @@ is proven on something harmless before anything security-bearing moves:
45
45
  - [x] `http-client` — proxy-aware, HTTPS-pinned client wiring over `-core`
46
46
  - [ ] `registry-version-resolver`
47
47
  - [ ] `https-client`
48
+ - [ ] `secure-temp` — secret-bearing temp file writer (0600 + exclusive create).
49
+ `azure-pipelines-terraform`'s copy adds Windows ACL hardening and a
50
+ scrub-before-unlink pass that `azure-pipelines-packer`'s copy is missing;
51
+ moving the terraform copy here fixes that drift for both extensions at once.
52
+ - [ ] `environment-variables` — tracked env var + secret registration helper.
53
+ `azure-pipelines-terraform`'s copy adds `registerSecret`/
54
+ `getTrackedSecretValues` for exact-match secret redaction on build
55
+ attachments that `azure-pipelines-packer`'s copy is missing.
56
+ - [ ] `id-token-generator` — OIDC token exchange for federated credentials.
57
+ `azure-pipelines-terraform`'s copy validates `SYSTEM_OIDCREQUESTURI`'s
58
+ hostname against an allowlist before sending the `System.AccessToken`
59
+ bearer credential to it; `azure-pipelines-packer`'s copy only checks the
60
+ URL scheme is `https:` and is missing that allowlist check.
48
61
 
49
62
  ## A warning to anyone moving a module here
50
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4cloudguru/pipeline-task-ado",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Azure DevOps-specific task primitives shared by the Azure Pipelines task extensions.",
5
5
  "license": "Apache-2.0",
6
6
  "private": false,