@rightkit/release 0.2.3 → 0.2.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rightkit/release",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Portable Right Suite release CLI/SDK: signed installers, updater artifacts, patch/update routing, hardening, R2 publish, and RightApps registration.",
5
5
  "type": "module",
6
6
  "bin": {
package/release.mjs CHANGED
@@ -9,11 +9,11 @@ const HARDENING_SCAN = path.resolve(TOOL_ROOT, "hardeningscan.mjs");
9
9
  const UPLOAD_LARGE = path.resolve(TOOL_ROOT, "upload-large.mjs");
10
10
  const SIGN_WINDOWS = path.resolve(TOOL_ROOT, "sign-windows.mjs");
11
11
  const SIGN_UPDATER = path.resolve(TOOL_ROOT, "sign-updater.mjs");
12
- const VERSION = "0.2.3";
12
+ const VERSION = "0.2.4";
13
13
  const TIERS = new Set(["patch", "update"]);
14
14
  const RIGHTKIT_EXPECTED = new Map([
15
15
  ["@rightkit/license", "^0.1.3"],
16
- ["@rightkit/logs", "^0.1.1"],
16
+ ["@rightkit/logs", "^0.1.2"],
17
17
  ["@rightkit/release", `^${VERSION}`],
18
18
  ]);
19
19
  const FORBIDDEN_RIGHTKIT_SPEC = /^(?:git|file|link|workspace):|github|github\.com/i;
package/release.test.mjs CHANGED
@@ -17,8 +17,8 @@ function fixture({ signed = true, publish = false, packageJson } = {}) {
17
17
  packageJson ?? {
18
18
  name: "fixture",
19
19
  scripts: { "release:patch:win": "right-release --platform win --tier patch" },
20
- dependencies: { "@rightkit/license": "^0.1.3", "@rightkit/logs": "^0.1.1" },
21
- devDependencies: { "@rightkit/release": "^0.2.3" },
20
+ dependencies: { "@rightkit/license": "^0.1.3", "@rightkit/logs": "^0.1.2" },
21
+ devDependencies: { "@rightkit/release": "^0.2.4" },
22
22
  },
23
23
  null,
24
24
  2,
@@ -7,8 +7,8 @@ import test from "node:test";
7
7
  const workspace = path.resolve(new URL("../..", import.meta.url).pathname.replace(/^\/(\w:)/, "$1"));
8
8
  const pubkey = "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDI5Mzk1RjlGRjQ2NjI2MUQKUldRZEptYjBuMTg1S1VSUXlBdFM4WmtzaHArYko0U2hRMDVlSDJmSExVZG82Q0hoQ2srUlhqanAK";
9
9
  const licensePackage = "^0.1.3";
10
- const logsPackage = "^0.1.1";
11
- const releasePackage = "^0.2.3";
10
+ const logsPackage = "^0.1.2";
11
+ const releasePackage = "^0.2.4";
12
12
  const apps = [
13
13
  { key: "viewright", root: "viewright", tauri: "src-tauri/tauri.conf.json", host: "viewright.cc" },
14
14
  { key: "scraperight", root: "scraperight", tauri: "src-tauri/tauri.conf.json", host: "scraperight.cc" },