@systemfsoftware/rx-effect 0.6.0 → 0.7.1

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,27 @@
1
1
  # @systemfsoftware/rx-effect
2
2
 
3
+ ## 0.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - The peer requirements for `effect` and for the Effect test-runner integration now accept any compatible `4.0.0-rc` release, instead of demanding one exact release candidate.
8
+
9
+ Installing alongside a newer release candidate no longer reports an unmet peer dependency or resolves a second copy of `effect` into the dependency tree.
10
+
11
+ ## 0.7.0
12
+
13
+ ### Minor Changes
14
+
15
+ - cut over to effect v4 (4.0.0-rc.108): public surface derives from effect types; peers flip effect ^3→^4
16
+
17
+ ### Patch Changes
18
+
19
+ - Array types are spelled one way. `Array<T>` and `ReadonlyArray<T>` in emitted
20
+ declarations become `T[]` and `readonly T[]`, which the type checker cannot tell
21
+ apart: no exported type changes, only how it is written.
22
+
23
+ - New version is published through npm trusted publishing, so it carries a provenance attestation you can verify.
24
+
3
25
  ## 0.6.0
4
26
 
5
27
  ### Minor Changes
@@ -0,0 +1,6 @@
1
+ import * as Rx from 'rxjs';
2
+ import { Stream } from 'effect';
3
+
4
+ export declare const fromObservable: <E>(onError: (error: unknown) => E) => <A>(observable: Rx.Observable<A>) => Stream.Stream<A, E>;
5
+
6
+ export { }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@systemfsoftware/rx-effect",
3
3
  "license": "Apache-2.0",
4
- "version": "0.6.0",
4
+ "version": "0.7.1",
5
5
  "author": "Ryan Lee <drdgvhbh@gmail.com>",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
9
- "directory": "packages/rx-effect"
9
+ "directory": "packages/core/effect/rx/rx-effect"
10
10
  },
11
- "homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/rx-effect#readme",
11
+ "homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/core/effect/rx/rx-effect#readme",
12
12
  "bugs": "https://github.com/systemfsoftware/systemfsoftware/issues",
13
13
  "description": "Bridge RxJS and Effect-TS — turn an Observable into a typed Effect Stream with backpressure and proper interruption.",
14
14
  "keywords": [
@@ -35,25 +35,25 @@
35
35
  "dist"
36
36
  ],
37
37
  "devDependencies": {
38
- "@effect/vitest": "4.0.0-rc.108",
38
+ "@effect/vitest": "4.0.0-rc.111",
39
39
  "@microsoft/api-extractor": "^7.58.7",
40
40
  "@systemfsoftware/arethetypeswrong-cli": "^1.1.1",
41
41
  "@types/node": "^24",
42
42
  "@vitest/coverage-v8": "^4",
43
- "effect": "4.0.0-rc.108",
43
+ "effect": "4.0.0-rc.111",
44
44
  "fast-check": "^4",
45
45
  "oxlint": "^1.77.0",
46
46
  "rimraf": "^6.1.3",
47
47
  "rxjs": "^7.8.2",
48
48
  "tsdown": "^0.22.14",
49
49
  "vitest": "^4.1.10",
50
- "@systemfsoftware/effect-gherkin-spec": "^1.0.0",
51
- "@systemfsoftware/oxlint-config": "^0.1.0",
52
- "@systemfsoftware/tsconfig": "^1.3.2",
53
- "@systemfsoftware/vitest-config": "^0.1.0"
50
+ "@systemfsoftware/effect-gherkin-spec": "^2.0.1",
51
+ "@systemfsoftware/vitest-config": "^0.1.0",
52
+ "@systemfsoftware/tsconfig": "^1.3.3",
53
+ "@systemfsoftware/oxlint-config": "^0.1.0"
54
54
  },
55
55
  "peerDependencies": {
56
- "effect": "4.0.0-rc.108",
56
+ "effect": "^4.0.0-rc.111",
57
57
  "rxjs": "^7"
58
58
  },
59
59
  "publishConfig": {