@laplace.live/event-bridge-server 0.3.2 → 0.3.18

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 (3) hide show
  1. package/CHANGELOG.md +96 -0
  2. package/README.md +1 -1
  3. package/package.json +11 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,101 @@
1
1
  # @laplace.live/event-bridge-server
2
2
 
3
+ ## 0.3.18
4
+
5
+ ### Patch Changes
6
+
7
+ - b87f081: fix npm provenance
8
+
9
+ ## 0.3.17
10
+
11
+ ### Patch Changes
12
+
13
+ - f3f6286: fix npm provenance
14
+
15
+ ## 0.3.16
16
+
17
+ ### Patch Changes
18
+
19
+ - 2430a1b: fix npm provenance
20
+
21
+ ## 0.3.15
22
+
23
+ ### Patch Changes
24
+
25
+ - 243d904: fix npm provenance
26
+
27
+ ## 0.3.14
28
+
29
+ ### Patch Changes
30
+
31
+ - 8cce02c: fix npm provenance
32
+
33
+ ## 0.3.13
34
+
35
+ ### Patch Changes
36
+
37
+ - b829fdc: fix npm provenance
38
+
39
+ ## 0.3.12
40
+
41
+ ### Patch Changes
42
+
43
+ - f20220d: fix npm provenance
44
+
45
+ ## 0.3.11
46
+
47
+ ### Patch Changes
48
+
49
+ - f6f3920: fix npm provenance
50
+
51
+ ## 0.3.10
52
+
53
+ ### Patch Changes
54
+
55
+ - e2be04f: fix npm provenance
56
+
57
+ ## 0.3.9
58
+
59
+ ### Patch Changes
60
+
61
+ - ba807e1: fix npm provenance
62
+
63
+ ## 0.3.8
64
+
65
+ ### Patch Changes
66
+
67
+ - 20c7cd2: try update npm
68
+
69
+ ## 0.3.7
70
+
71
+ ### Patch Changes
72
+
73
+ - 08f01ed: add provenance config
74
+
75
+ ## 0.3.6
76
+
77
+ ### Patch Changes
78
+
79
+ - 1597fc5: fix oidc
80
+
81
+ ## 0.3.5
82
+
83
+ ### Patch Changes
84
+
85
+ - 828f963: migrate to npm trusted publisher with oidc
86
+
87
+ ## 0.3.4
88
+
89
+ ### Patch Changes
90
+
91
+ - 5d020ec: Missing meta info for provenance
92
+
93
+ ## 0.3.3
94
+
95
+ ### Patch Changes
96
+
97
+ - 655aa47: Provenance statements for packages
98
+
3
99
  ## 0.3.2
4
100
 
5
101
  ### Patch Changes
package/README.md CHANGED
@@ -20,7 +20,7 @@ The event bridge enables various use cases:
20
20
 
21
21
  ## Requirements
22
22
 
23
- - [Bun](https://bun.sh/) v1.0.0 or higher
23
+ - [Bun](https://bun.com/) v1.0.0 or higher
24
24
 
25
25
  ## Installation
26
26
 
package/package.json CHANGED
@@ -1,18 +1,28 @@
1
1
  {
2
2
  "name": "@laplace.live/event-bridge-server",
3
3
  "description": "LAPLACE Event Bridge Server",
4
- "version": "0.3.2",
4
+ "version": "0.3.18",
5
5
  "license": "AGPL-3.0",
6
6
  "type": "module",
7
7
  "module": "index.ts",
8
8
  "main": "index.ts",
9
9
  "types": "index.ts",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/laplace-live/event-bridge.git",
13
+ "directory": "packages/server-bun"
14
+ },
15
+ "homepage": "https://chat.laplace.live",
10
16
  "scripts": {
11
17
  "start": "bun run index.ts",
12
18
  "dev": "bun --hot run index.ts",
13
19
  "build": "bun build ./index.ts --outdir ./dist --target node --minify --sourcemap",
14
20
  "prepublishOnly": "bun run build"
15
21
  },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "provenance": true
25
+ },
16
26
  "dependencies": {
17
27
  "@laplace.live/event-types": "^2.0.4"
18
28
  },