pepr 0.51.5-nightly.0 → 0.51.5-nightly.10
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/dist/cli/init/templates.d.ts +1 -0
- package/dist/cli/init/templates.d.ts.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/controller.js +1 -1
- package/dist/lib/core/queue.d.ts +1 -1
- package/dist/lib/core/queue.d.ts.map +1 -1
- package/dist/lib/processors/watch-processor.d.ts.map +1 -1
- package/dist/lib/types.d.ts +1 -1
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/lib.js +6 -6
- package/dist/lib.js.map +2 -2
- package/package.json +4 -3
- package/src/lib/core/queue.ts +1 -1
- package/src/lib/processors/watch-processor.ts +2 -1
- package/src/lib/types.ts +1 -1
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"!src/fixtures/**",
|
|
17
17
|
"!dist/**/*.test.d.ts*"
|
|
18
18
|
],
|
|
19
|
-
"version": "0.51.5-nightly.
|
|
19
|
+
"version": "0.51.5-nightly.10",
|
|
20
20
|
"main": "dist/lib.js",
|
|
21
21
|
"types": "dist/lib.d.ts",
|
|
22
22
|
"scripts": {
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
"heredoc": "^1.3.1",
|
|
62
62
|
"http-status-codes": "^2.3.0",
|
|
63
63
|
"json-pointer": "^0.6.2",
|
|
64
|
-
"kubernetes-fluent-client": "3.
|
|
64
|
+
"kubernetes-fluent-client": "3.8.0",
|
|
65
65
|
"pino": "9.7.0",
|
|
66
66
|
"pino-pretty": "13.0.0",
|
|
67
67
|
"prom-client": "15.1.3",
|
|
68
|
-
"ramda": "0.
|
|
68
|
+
"ramda": "0.31.3",
|
|
69
69
|
"sigstore": "3.1.0",
|
|
70
70
|
"ts-morph": "^26.0.0"
|
|
71
71
|
},
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"@types/node": "24.x.x",
|
|
80
80
|
"@types/node-forge": "1.3.11",
|
|
81
81
|
"@types/uuid": "10.0.0",
|
|
82
|
+
"@types/ws": "^8.18.1",
|
|
82
83
|
"@vitest/coverage-v8": "^3.2.3",
|
|
83
84
|
"fast-check": "^4.0.0",
|
|
84
85
|
"globals": "^16.0.0",
|
package/src/lib/core/queue.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
|
2
2
|
// SPDX-FileCopyrightText: 2023-Present The Pepr Authors
|
|
3
3
|
import { KubernetesObject } from "@kubernetes/client-node";
|
|
4
|
-
import { WatchPhase } from "kubernetes-fluent-client/dist/fluent/types";
|
|
4
|
+
import { WatchPhase } from "kubernetes-fluent-client/dist/fluent/shared-types";
|
|
5
5
|
import { randomBytes } from "node:crypto";
|
|
6
6
|
import Log from "../telemetry/logger";
|
|
7
7
|
|
|
@@ -12,7 +12,8 @@ import {
|
|
|
12
12
|
GenericClass,
|
|
13
13
|
} from "kubernetes-fluent-client";
|
|
14
14
|
import { Queue } from "../core/queue";
|
|
15
|
-
import {
|
|
15
|
+
import { WatcherType } from "kubernetes-fluent-client/dist/fluent/types";
|
|
16
|
+
import { WatchPhase } from "kubernetes-fluent-client/dist/fluent/shared-types";
|
|
16
17
|
import { KubernetesListObject } from "kubernetes-fluent-client/dist/types";
|
|
17
18
|
import { filterNoMatchReason } from "../filter/filter";
|
|
18
19
|
import { metricsCollector, MetricsCollectorInstance } from "../telemetry/metrics";
|
package/src/lib/types.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import { GenericClass, GroupVersionKind, KubernetesObject } from "kubernetes-fluent-client";
|
|
5
5
|
import { Event } from "./enums";
|
|
6
|
-
import { WatchPhase } from "kubernetes-fluent-client/dist/fluent/types";
|
|
6
|
+
import { WatchPhase } from "kubernetes-fluent-client/dist/fluent/shared-types";
|
|
7
7
|
import { Logger } from "pino";
|
|
8
8
|
import { PeprMutateRequest } from "./mutate-request";
|
|
9
9
|
import { PeprValidateRequest } from "./validate-request";
|