arvo-event-handler 2.2.10 → 2.2.13

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/package.json +16 -5
  2. package/CHANGELOG.md +0 -49
  3. package/biome.json +0 -58
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-event-handler",
3
- "version": "2.2.10",
3
+ "version": "2.2.13",
4
4
  "description": "Type-safe event handler system with versioning, telemetry, and contract validation for distributed Arvo event-driven architectures, featuring routing and multi-handler support.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -12,7 +12,15 @@
12
12
  "format": "biome format --fix",
13
13
  "doc": "npx typedoc"
14
14
  },
15
- "keywords": ["arvo", "event-driven architecture", "xorca", "core", "cloudevent", "opentelemetry", "orchestrator"],
15
+ "keywords": [
16
+ "arvo",
17
+ "event-driven architecture",
18
+ "xorca",
19
+ "core",
20
+ "cloudevent",
21
+ "opentelemetry",
22
+ "orchestrator"
23
+ ],
16
24
  "author": "Saad Ahmad <saadkwi12@hotmail.com>",
17
25
  "license": "MIT",
18
26
  "devDependencies": {
@@ -45,8 +53,11 @@
45
53
  "dependencies": {
46
54
  "@opentelemetry/api": "^1.9.0",
47
55
  "@opentelemetry/core": "^1.30.1",
48
- "arvo-core": "^2.2.10",
49
- "uuid": "^11.0.5",
50
- "zod": "^3.24.1"
56
+ "arvo-core": "^2.2.13",
57
+ "uuid": "^11.1.0",
58
+ "zod": "^3.25.67"
59
+ },
60
+ "engines": {
61
+ "node": ">=18.0.0"
51
62
  }
52
63
  }
package/CHANGELOG.md DELETED
@@ -1,49 +0,0 @@
1
- # Changelog
2
-
3
- ## [0.0.1] - 2024-09-07
4
-
5
- - Finalised version 0.0.1 of the event handlers for Arvo
6
-
7
- ## [0.0.4] - 2024-09-09
8
-
9
- - Finalised Event Handler implementation
10
-
11
- ## [0.0.5] - 2024-09-10
12
-
13
- - Updated routing
14
-
15
- ## [1.0.0] - 2024-09-10
16
-
17
- - First version rrelease
18
-
19
- ## [1.0.2] - 2024-09-10
20
-
21
- - Added ArvoEventRouter as a mechanism to group ArvoEventHandlers
22
-
23
- ## [1.1.0] - 2024-09-30
24
-
25
- - Added Abstract handler class and bound all handlers to it
26
-
27
- ## [2.0.0] - 2024-11-26
28
-
29
- - Added support for versioned contracts in event handler for better versioning support
30
-
31
- ## [2.1.1] - 2024-12-10
32
-
33
- - Updated the telemetry implementation to be more streamlined, fixed some minor bugs and added better telemetry logging
34
-
35
- ## [2.1.4] - 2024-12-19
36
-
37
- - Updated the opentelemetry core version and arvo core versions
38
-
39
- ## [2.2.0] - 2024-12-25
40
-
41
- - Stable release for arvo event handler version 2
42
-
43
- ## [2.2.5] - 2024-12-25
44
-
45
- - Added better error boundaries for the handlers
46
- ## [2.2.10] - 2025-01-29
47
-
48
- - Updated dependency versions and added more tests
49
-
package/biome.json DELETED
@@ -1,58 +0,0 @@
1
- {
2
- "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3
- "vcs": {
4
- "enabled": false,
5
- "clientKind": "git",
6
- "useIgnoreFile": false
7
- },
8
- "files": {
9
- "ignoreUnknown": false,
10
- "ignore": [
11
- "**/dist/**",
12
- "**/node_modules/**",
13
- "**/.turbo/**",
14
- "**/coverage/**",
15
- "**/.github/**",
16
- "**/docs/**",
17
- "*.md"
18
- ]
19
- },
20
- "formatter": {
21
- "enabled": true,
22
- "formatWithErrors": false,
23
- "ignore": [],
24
- "attributePosition": "auto",
25
- "indentStyle": "space",
26
- "indentWidth": 2,
27
- "lineWidth": 120,
28
- "lineEnding": "lf"
29
- },
30
- "organizeImports": {
31
- "enabled": true
32
- },
33
- "linter": {
34
- "enabled": true,
35
- "rules": {
36
- "recommended": true,
37
- "correctness": {
38
- "noUnusedImports": "warn"
39
- },
40
- "suspicious": {
41
- "noExplicitAny": "off"
42
- }
43
- }
44
- },
45
- "javascript": {
46
- "jsxRuntime": "reactClassic",
47
- "formatter": {
48
- "quoteStyle": "single",
49
- "arrowParentheses": "always",
50
- "bracketSameLine": false,
51
- "bracketSpacing": true,
52
- "jsxQuoteStyle": "single",
53
- "quoteProperties": "asNeeded",
54
- "semicolons": "always",
55
- "trailingCommas": "all"
56
- }
57
- }
58
- }