Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hooks/telemetry.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { join, dirname } from "path";
import { homedir } from "os";
var BRIDGE_ENDPOINT = "https://telemetry.vercel.com/api/vercel-plugin/v1/events";
var FLUSH_TIMEOUT_MS = 3e3;
var PLUGIN_VERSION = true ? "0.45.0" : "0.43.0";
var PLUGIN_VERSION = true ? "0.45.1" : "0.43.0";
var ACTIVE_SESSION_TTL_MS = 60 * 60 * 1e3;
var DAU_STAMP_PATH = join(homedir(), ".config", "vercel-plugin", "dau-stamp");
var FIRST_USE_STAMP_PATH = join(homedir(), ".config", "vercel-plugin", "first-use-stamp");
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vercel-plugin",
"version": "0.45.0",
"version": "0.45.1",
"private": true,
"bin": {
"vercel-plugin": "src/cli/index.ts"
Expand Down
4 changes: 2 additions & 2 deletions tests/telemetry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ describe("telemetry controls", () => {
expect(result.activeSessionMarker).toEqual({
schema: 1,
active: true,
pluginVersion: "0.45.0",
pluginVersion: "0.45.1",
updatedAt: Date.parse("2026-05-15T12:00:00.000Z"),
expiresAt: Date.parse("2026-05-15T13:00:00.000Z"),
});
Expand All @@ -131,7 +131,7 @@ describe("telemetry controls", () => {
}),
expect.objectContaining({
key: "plugin:version",
value: "0.45.0",
value: "0.45.1",
}),
],
]);
Expand Down
Loading