@7n/rules-ci-azure 2.1.0 → 2.1.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.1.2] - 2026-08-29
4
+
5
+ ### Changed
6
+
7
+ - feat(rules-core): native-фікси T3 — text/oxfmt, text/markdownlint, nginx-default-tpl/template (§2.67) (#536)
8
+
9
+ ## [2.1.1] - 2026-08-27
10
+
11
+ ### Changed
12
+
13
+ - `engines.bun` піднято з `>=1.3` до `>=1.4` — репо-мінімум `js.package_json` (репо фактично вимагає 1.4)
14
+
3
15
  ## [2.1.0] - 2026-07-29
4
16
 
5
17
  ### Removed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7n/rules-ci-azure",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Плагін @7n/rules: канон Azure Pipelines (azure-pipelines.yml) — структура, lint-степ, VS Code",
5
5
  "keywords": [
6
6
  "azure-pipelines",
@@ -49,7 +49,7 @@
49
49
  "access": "public"
50
50
  },
51
51
  "engines": {
52
- "bun": ">=1.3",
52
+ "bun": ">=1.4",
53
53
  "node": ">=24"
54
54
  },
55
55
  "dependencies": {
@@ -7,6 +7,14 @@
7
7
  #
8
8
  # Конвенція проєкту — `import rego.v1` + multi-value `deny contains msg if { … }`
9
9
  # (conftest.mdc). Лінт — `n-rules lint rego` (regal).
10
+ #
11
+ # `%q` → `\"%v\"` (parser-агностична правка, `crates/plugin-ci-azure/src/lib.rs`
12
+ # доккомент модуля, і `docs/plans/2026-08-05-open-questions-register.md` §2.66):
13
+ # `regorus` відхиляє Go-формат-верб `%q` як HARD RUNTIME ERROR (не тихий
14
+ # деградейшн). `\"%v\"` дає БІТ-У-БІТ той самий рядок під `conftest` (Go's
15
+ # `sprintf("%q", s)` для звичайного ASCII-рядка без спецсимволів — це
16
+ # рівно `"` + s + `"`), тож 55+ `conftest verify`-тестів цієї теки лишаються
17
+ # зеленими без жодної зміни видимого тексту.
10
18
  package azure_pipelines.vscode_extensions
11
19
 
12
20
  import rego.v1
@@ -14,5 +22,5 @@ import rego.v1
14
22
  deny contains msg if {
15
23
  some rec in data.template.snippet.recommendations
16
24
  not rec in {r | some r in object.get(input, "recommendations", [])}
17
- msg := sprintf(".vscode/extensions.json: recommendations має містити %q (azure-pipelines.mdc)", [rec])
25
+ msg := sprintf(".vscode/extensions.json: recommendations має містити \"%v\" (azure-pipelines.mdc)", [rec])
18
26
  }