@baeta/subscriptions-pubsub 2.0.0-next.0 → 2.0.0-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/package.json +7 -7
package/CHANGELOG.md ADDED
@@ -0,0 +1,49 @@
1
+ # @baeta/subscriptions-pubsub
2
+
3
+ ## 2.0.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix release version
8
+
9
+ ## 2.0.0-next.0
10
+
11
+ ### Major Changes
12
+
13
+ - [#214](https://github.com/andreisergiu98/baeta/pull/214) [`31d1a50`](https://github.com/andreisergiu98/baeta/commit/31d1a509f96535b43ae85d19c770eb1a5f09dc94) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - Baeta v2 – major refactor
14
+ - **Side-effect-free type generation & resolver definitions.**
15
+ The types generator and resolver definitions were reworked to be side-effect free, improving type safety.
16
+ - **Stricter type safety.**
17
+ You must now **explicitly define resolvers for every field** during development—breakages that used to surface at runtime are now caught at compile time.
18
+ - **Removed `@baeta/compiler`.**
19
+ Since modern runtimes can execute TypeScript natively, the separate compiler package is no longer needed. Use your runtime’s native TS support or your existing build setup.
20
+ - **Subscriptions update.**
21
+ `@baeta/subscriptions-pubsub` now targets **`graphql-subscriptions` v3**.
22
+
23
+ ## 1.0.9
24
+
25
+ ### Patch Changes
26
+
27
+ - [`583014f`](https://github.com/andreisergiu98/baeta/commit/583014f0bac810b25d9a8226bda2df4c9039f5e3) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - Update dependencies
28
+
29
+ ## 1.0.8
30
+
31
+ ### Patch Changes
32
+
33
+ - [#189](https://github.com/andreisergiu98/baeta/pull/189) [`d500378`](https://github.com/andreisergiu98/baeta/commit/d500378198e0a9c48298c4242913bca8ad348228) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - add jsdocs
34
+
35
+ - [#165](https://github.com/andreisergiu98/baeta/pull/165) [`1334c2a`](https://github.com/andreisergiu98/baeta/commit/1334c2a866676c88f0f3d380b22133d81c4e98bc) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - mark as stable
36
+
37
+ ## 0.0.2
38
+
39
+ ### Patch Changes
40
+
41
+ - [`b59db50`](https://github.com/andreisergiu98/baeta/commit/b59db501a83275ab2d964933080e688a3a5d8820) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - add readme
42
+
43
+ ## 0.0.1
44
+
45
+ ### Patch Changes
46
+
47
+ - [#180](https://github.com/andreisergiu98/baeta/pull/180) [`483c709`](https://github.com/andreisergiu98/baeta/commit/483c70932f815fd114732c00b74f9488d7924c72) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - Raise minimum required NodeJS version to 22.12.0. Drop CommonJS builds in favor of the require_esm feature from NodeJS 22.12.0 onwards.
48
+
49
+ - [`de6e89c`](https://github.com/andreisergiu98/baeta/commit/de6e89c1b592e280967c73a4137d24ee56ef1857) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - raise es target to 2024
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baeta/subscriptions-pubsub",
3
- "version": "2.0.0-next.0",
3
+ "version": "2.0.0-next.1",
4
4
  "keywords": [
5
5
  "baeta",
6
6
  "graphql",
@@ -27,8 +27,8 @@
27
27
  "type": "module",
28
28
  "exports": {
29
29
  ".": {
30
- "types": "./index.ts",
31
- "default": "./index.ts"
30
+ "types": "./dist/index.d.ts",
31
+ "default": "./dist/index.js"
32
32
  }
33
33
  },
34
34
  "types": "dist/index.d.ts",
@@ -44,9 +44,9 @@
44
44
  "types": "tsc --noEmit"
45
45
  },
46
46
  "devDependencies": {
47
- "@baeta/builder": "workspace:^",
48
- "@baeta/testing": "workspace:^",
49
- "@baeta/tsconfig": "workspace:^",
47
+ "@baeta/builder": "^0.0.0",
48
+ "@baeta/testing": "^0.0.0",
49
+ "@baeta/tsconfig": "^0.0.0",
50
50
  "graphql": "^16.11.0",
51
51
  "graphql-subscriptions": "^3.0.0",
52
52
  "typescript": "^5.9.3"
@@ -89,4 +89,4 @@
89
89
  "alphabetical-ignoring-documents"
90
90
  ]
91
91
  }
92
- }
92
+ }