paqad-ai 1.69.0 → 1.70.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # paqad-ai
2
2
 
3
+ ## 1.70.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 39f86ea: Verify framework reuse claims against the version you actually have installed (#397).
8
+
9
+ A plan could already declare it was reusing a framework API — "I'll use React's `useId()`
10
+ instead of hand-rolling one" — but nothing checked the claim. Now paqad reads the
11
+ declaration files shipped inside the installed package and answers two questions before
12
+ the plan compiles: does that symbol exist at your installed version, and is it
13
+ `@deprecated`? A plan naming a removed API fails with the nearest existing symbol; one
14
+ naming a deprecated API fails citing the deprecation message. No AI, no network.
15
+
16
+ New: `paqad-ai index framework-api build` and `paqad-ai index framework-api query
17
+ <package> <symbol>`.
18
+
19
+ Nothing new is installed for this. `typescript` is an optional peer dependency resolved
20
+ from your own project, so a Laravel, Flutter, or Python project pays nothing for a
21
+ JS-only check, and a project without it degrades to a visible warning rather than a
22
+ block. Anything paqad cannot verify statically — a dynamically-provided member, an
23
+ unindexed package, a missing index — warns instead of failing, because a false "this
24
+ does not exist" would block a perfectly good plan.
25
+
3
26
  ## 1.69.0
4
27
 
5
28
  ### Minor Changes