@systemfsoftware/rx-effect 0.6.0 → 0.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @systemfsoftware/rx-effect
2
2
 
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cut over to effect v4 (4.0.0-rc.108): public surface derives from effect types; peers flip effect ^3→^4
8
+
9
+ ### Patch Changes
10
+
11
+ - Array types are spelled one way. `Array<T>` and `ReadonlyArray<T>` in emitted
12
+ declarations become `T[]` and `readonly T[]`, which the type checker cannot tell
13
+ apart: no exported type changes, only how it is written.
14
+
15
+ - New version is published through npm trusted publishing, so it carries a provenance attestation you can verify.
16
+
3
17
  ## 0.6.0
4
18
 
5
19
  ### Minor Changes
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.0",
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": [
@@ -47,9 +47,9 @@
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",
50
+ "@systemfsoftware/effect-gherkin-spec": "^2.0.0",
51
51
  "@systemfsoftware/oxlint-config": "^0.1.0",
52
- "@systemfsoftware/tsconfig": "^1.3.2",
52
+ "@systemfsoftware/tsconfig": "^1.3.3",
53
53
  "@systemfsoftware/vitest-config": "^0.1.0"
54
54
  },
55
55
  "peerDependencies": {