@daml-tools/daml-lint 0.9.2 → 0.9.3

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 +5 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -250,6 +250,11 @@ Removed v1/v2 compatibility fields and their structured replacements:
250
250
  | `stmt.Create.raw` | `template_name` + `argument` (`Expr`) | `argument` is the created payload. |
251
251
  | `stmt.Exercise.raw` | `cid` + `choice_name` + `argument` (`Expr`) | `argument` is the choice argument, if present. |
252
252
  | `choice.controllers` | `controller_exprs` (`Expr[]`) | Flatten list expressions in the rule if you want list-literal party semantics. |
253
+ | `choice.authorities` | `authority_exprs` (`Expr[]`) | Source-level `authority` metadata clauses on choices. |
254
+ | `interface_instance.view` | `view_expr` (`Expr \| null`) | Source-level `view = ...` on interface instances, distinct from method names. |
255
+ | `case_alt.guards` | `branches[].guards` (`CaseGuard[]`) | Boolean and pattern guards on case alternative branches. |
256
+ | `case_alt.where` | `where_bindings` (`LetBinding[]`) | Alternative-local `where` helper bindings on case alternatives. |
257
+ | `import.package` | `package_label` (`string \| null`) | Decoded package string from `import "pkg" Module`; not an LF `PackageId`. |
253
258
  | `template.signatories`, `template.observers` | `signatory_exprs`, `observer_exprs` (`Expr[]`) | Structured party expressions only. |
254
259
 
255
260
  `stmt.Other.raw` and the `Unknown` expression's `raw` are deliberate raw-source
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daml-tools/daml-lint",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "Static analysis scanner for Daml smart contracts",
5
5
  "keywords": [
6
6
  "daml",
@@ -23,10 +23,10 @@
23
23
  "node": ">=18"
24
24
  },
25
25
  "optionalDependencies": {
26
- "@daml-tools/daml-lint-darwin-arm64": "0.9.2",
27
- "@daml-tools/daml-lint-linux-arm64": "0.9.2",
28
- "@daml-tools/daml-lint-linux-x64": "0.9.2",
29
- "@daml-tools/daml-lint-win32-x64": "0.9.2"
26
+ "@daml-tools/daml-lint-darwin-arm64": "0.9.3",
27
+ "@daml-tools/daml-lint-linux-arm64": "0.9.3",
28
+ "@daml-tools/daml-lint-linux-x64": "0.9.3",
29
+ "@daml-tools/daml-lint-win32-x64": "0.9.3"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"