@produtype/core 0.82.0 → 0.83.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.
@@ -46,6 +46,21 @@ async function detectGdpr(ctx) {
46
46
  */
47
47
  /anonymi[sz]e[_-]?(user|account)/i,
48
48
  /user[_-]?anonymi[sz]/i,
49
+ /**
50
+ * The regulation's own name, next to the act.
51
+ *
52
+ * `deleteUser(id)` was measured and withdrawn because delete is every admin
53
+ * screen ever written. GDPR is not an ordinary word: an identifier that carries
54
+ * it beside a deletion is somebody naming the article they are answering. forem
55
+ * runs its erasure through `Users::DeleteWorker` and records a
56
+ * `GDPRDeleteRequest`, and was told at `high` that it has no erasure flow.
57
+ *
58
+ * The pattern was already in this file, one capability down — the retention
59
+ * needle reads `(gdpr|privacy).*(retention|purge|delete)`, so the line was being
60
+ * found and filed under the wrong question.
61
+ */
62
+ /gdpr[_\- ]?(delete|deletion|eras|removal|forget)/i,
63
+ /(delete|deletion|eras|removal)[_\- ]?gdpr/i,
49
64
  ], 20);
50
65
  /**
51
66
  * `deleteUser(id)` is not article 17 — it is every admin screen ever written, and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@produtype/core",
3
- "version": "0.82.0",
3
+ "version": "0.83.0",
4
4
  "description": "Deterministic CLI and library that analyzes a web application repository and reports how far it is from production-ready for the kind of product it is meant to be.",
5
5
  "license": "MIT",
6
6
  "bin": {