@effect-app/vue 4.0.0-beta.186 → 4.0.0-beta.188

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,26 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 4.0.0-beta.188
4
+
5
+ ### Minor Changes
6
+
7
+ - f16e766: Remove legacy `mutateToResult` stream mutation factory, `wrapStream` command builder, and standard command progress reporting (`running`/`progress` from the old stream factory path). Keep only the `mutate` path for use with `streamFn` combinators. Remove obsolete types (`StreamMutationWithExtensions`, `StreamCommandWithExtensions`, `StreamFnExtension`, `MutateStreamCallOptions`) and the internal `makeStreamMutation` function. Rename `mutate.wrapStream` shorthand to `mutate.wrap` to match the non-stream convention.
8
+
9
+ ### Patch Changes
10
+
11
+ - ed1b8a9: `mutate.wrap` on stream handlers now works the same as on command/query handlers: it can be called without arguments or with only combinators, with the underlying stream handler pre-baked in.
12
+ - b2e438f: Remove Operations service and repo
13
+ - Updated dependencies [b2e438f]
14
+ - effect-app@4.0.0-beta.188
15
+
16
+ ## 4.0.0-beta.187
17
+
18
+ ### Patch Changes
19
+
20
+ - 0d4e0b8: Fix `isGeneratorFunction` using `isObject` instead of `isFunction`: generator functions have `typeof === "function"`, not `"object"`, so the check always returned `false`. This caused `Command.streamFn` generator-form handlers to silently pass a raw `Generator` object rather than an `Effect<Stream>`, meaning the mutation was never executed.
21
+ - Updated dependencies [0d4e0b8]
22
+ - effect-app@4.0.0-beta.187
23
+
3
24
  ## 4.0.0-beta.186
4
25
 
5
26
  ### Patch Changes