File tree 5 files changed +13
-4
lines changed
5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
1
+ 4.9.0
2
+ ---
3
+ ### Bugfixes
4
+ - Pact value infos fixed (#1287 )
5
+
6
+ ### Features
7
+ - Webauthn support (#1193 )
8
+
9
+
1
10
4.8.0
2
11
---
3
12
### Bugfixes
Original file line number Diff line number Diff line change @@ -1134,7 +1134,7 @@ enforcePactValue :: Pretty n => (Term n) -> Eval e PactValue
1134
1134
enforcePactValue t = case toPactValue t of
1135
1135
Left s -> evalError' t $ " Only value-level terms permitted: " <> pretty s
1136
1136
Right v -> do
1137
- elide <- ifExecutionFlagSet' FlagDisablePact48 id stripAllPactValueInfo
1137
+ elide <- ifExecutionFlagSet' FlagDisablePact49 id stripAllPactValueInfo
1138
1138
return (elide v)
1139
1139
1140
1140
reduceApp :: App (Term Ref ) -> Eval e (Term Name )
Original file line number Diff line number Diff line change 852
852
(continue-pact 1))
853
853
854
854
(begin-tx)
855
- (env-exec-config ["DisablePact48 "])
855
+ (env-exec-config ["DisablePact49 "])
856
856
857
857
; pact 48 caps
858
858
(interface ops
Original file line number Diff line number Diff line change 3
3
(expect "hash roundtrip" (hash "hello") (tx-hash))
4
4
5
5
(begin-tx)
6
- (env-exec-config ["DisablePact48 "])
6
+ (env-exec-config ["DisablePact49 "])
7
7
(interface iface
8
8
(defun f:bool (a:module{iface}))
9
9
)
Original file line number Diff line number Diff line change 626
626
(create-table mstbl)
627
627
628
628
; Test principal caps created pre-info eliding
629
- (env-exec-config ["DisablePact48 "])
629
+ (env-exec-config ["DisablePact49 "])
630
630
(write-principal 'a (create-principal (create-capability-guard (test-cap m))))
631
631
632
632
(write-principal 'b (create-principal (create-capability-guard (test-cap m))))
You can’t perform that action at this time.
0 commit comments