Skip to content

Commit e16bbc5

Browse files
authored
quick uptick (#114)
1 parent bdfdb87 commit e16bbc5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

hooks/telemetry.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { join, dirname } from "path";
55
import { homedir } from "os";
66
var BRIDGE_ENDPOINT = "https://telemetry.vercel.com/api/vercel-plugin/v1/events";
77
var FLUSH_TIMEOUT_MS = 3e3;
8-
var PLUGIN_VERSION = true ? "0.45.0" : "0.43.0";
8+
var PLUGIN_VERSION = true ? "0.45.1" : "0.43.0";
99
var ACTIVE_SESSION_TTL_MS = 60 * 60 * 1e3;
1010
var DAU_STAMP_PATH = join(homedir(), ".config", "vercel-plugin", "dau-stamp");
1111
var FIRST_USE_STAMP_PATH = join(homedir(), ".config", "vercel-plugin", "first-use-stamp");

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vercel-plugin",
3-
"version": "0.45.0",
3+
"version": "0.45.1",
44
"private": true,
55
"bin": {
66
"vercel-plugin": "src/cli/index.ts"

tests/telemetry.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ describe("telemetry controls", () => {
115115
expect(result.activeSessionMarker).toEqual({
116116
schema: 1,
117117
active: true,
118-
pluginVersion: "0.45.0",
118+
pluginVersion: "0.45.1",
119119
updatedAt: Date.parse("2026-05-15T12:00:00.000Z"),
120120
expiresAt: Date.parse("2026-05-15T13:00:00.000Z"),
121121
});
@@ -131,7 +131,7 @@ describe("telemetry controls", () => {
131131
}),
132132
expect.objectContaining({
133133
key: "plugin:version",
134-
value: "0.45.0",
134+
value: "0.45.1",
135135
}),
136136
],
137137
]);

0 commit comments

Comments
 (0)