openship 0.4.0 → 0.4.1

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.
@@ -13116,7 +13116,7 @@ function renderEnv(opts, host) {
13116
13116
  // (hides the local row). Written explicitly so the policy is visible in .env.
13117
13117
  `OPENSHIP_HOST_CONTROL=${opts.noHostControl ? "false" : "true"}`,
13118
13118
  `OPENSHIP_IMAGE_REGISTRY=${opts.registry || "ghcr.io/oblien"}`,
13119
- `OPENSHIP_VERSION=${opts.version || (true ? "0.4.0" : "latest")}`,
13119
+ `OPENSHIP_VERSION=${opts.version || (true ? "0.4.1" : "latest")}`,
13120
13120
  `POSTGRES_PASSWORD=${keepSecret(prev, "POSTGRES_PASSWORD")}`,
13121
13121
  `BETTER_AUTH_SECRET=${keepSecret(prev, "BETTER_AUTH_SECRET")}`,
13122
13122
  `INTERNAL_TOKEN=${keepSecret(prev, "INTERNAL_TOKEN")}`
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  importMigratedSites,
3
3
  waitForApiHealth
4
- } from "./chunk-RBZPFTHV.js";
4
+ } from "./chunk-QWFNE5NS.js";
5
5
  import "./chunk-QKFRZNKN.js";
6
6
  import "./chunk-XIFRMKYT.js";
7
7
  import "./chunk-5ZCKQ2MI.js";
package/dist/index.js CHANGED
@@ -19,7 +19,7 @@ import {
19
19
  remoteSha,
20
20
  shortSha,
21
21
  sourceBuildDir
22
- } from "./chunk-RBZPFTHV.js";
22
+ } from "./chunk-QWFNE5NS.js";
23
23
  import "./chunk-QKFRZNKN.js";
24
24
  import "./chunk-XIFRMKYT.js";
25
25
  import "./chunk-5ZCKQ2MI.js";
@@ -1951,7 +1951,7 @@ async function runForeground(opts, source) {
1951
1951
  const uiSpinner = ora("Preparing the dashboard\u2026").start();
1952
1952
  try {
1953
1953
  const bundle = await ensureDashboard({
1954
- tag: source ? "local" : opts.uiVersion || `v${"0.4.0"}`,
1954
+ tag: source ? "local" : opts.uiVersion || `v${"0.4.1"}`,
1955
1955
  onProgress: (received, total) => {
1956
1956
  if (total) {
1957
1957
  uiSpinner.text = `Downloading dashboard\u2026 ${Math.round(received / total * 100)}%`;
@@ -6560,7 +6560,7 @@ function detectPackageManager2(override) {
6560
6560
  var updateCommand = new Command26("update").description("Update the Openship CLI + bundled server to the latest release").option("--check", "Only report the current + latest version; don't install").option("--via <manager>", "Package manager to update with: bun | npm").option("--rebuild", "From-source installs: rebuild even if already at the remote tip").action(async (opts) => {
6561
6561
  const source = readSourceInstall();
6562
6562
  if (source) return runSourceUpdate(source, opts);
6563
- const current = "0.4.0";
6563
+ const current = "0.4.1";
6564
6564
  let latest;
6565
6565
  try {
6566
6566
  latest = (await resolveLatestTag()).replace(/^v/, "");
@@ -7112,7 +7112,7 @@ async function runWizard() {
7112
7112
  }
7113
7113
  }
7114
7114
  }
7115
- const uiTag = `v${"0.4.0"}`;
7115
+ const uiTag = `v${"0.4.1"}`;
7116
7116
  if (method === "bare") {
7117
7117
  const dl = spinner4();
7118
7118
  dl.start("Pulling the Openship dist from GitHub");
@@ -7180,7 +7180,7 @@ async function runWizard() {
7180
7180
  const up = composeUp({
7181
7181
  publicUrl,
7182
7182
  trustProxy: behindProxy,
7183
- version: "0.4.0",
7183
+ version: "0.4.1",
7184
7184
  noHostControl: !allowHostControl
7185
7185
  });
7186
7186
  if (!up.ok) {
@@ -7542,7 +7542,7 @@ ${chalk20.dim("Dashboard".padEnd(11))}${dashUrl}
7542
7542
 
7543
7543
  // src/index.ts
7544
7544
  var program = new Command28();
7545
- program.name("openship").description("Openship CLI \u2014 install, run, and manage Openship from your terminal").version("0.4.0").option("--json", "Machine-readable JSON output (stdout data only)").hook("preAction", (thisCommand) => {
7545
+ program.name("openship").description("Openship CLI \u2014 install, run, and manage Openship from your terminal").version("0.4.1").option("--json", "Machine-readable JSON output (stdout data only)").hook("preAction", (thisCommand) => {
7546
7546
  if (thisCommand.opts().json) setJsonMode(true);
7547
7547
  }).action(async () => {
7548
7548
  if (serviceStatus().installed && !isSetupInProgress()) await runControl();
@@ -190220,7 +190220,7 @@ var package_default;
190220
190220
  var init_package = __esm(() => {
190221
190221
  package_default = {
190222
190222
  name: "@repo/api",
190223
- version: "0.4.0",
190223
+ version: "0.4.1",
190224
190224
  license: "Apache-2.0",
190225
190225
  private: true,
190226
190226
  type: "module",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openship",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Openship CLI - deploy, manage, and open your Openship platform from the terminal",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {