Skip to content

Releases: junobuild/cli

v0.0.65

09 May 09:40
Compare
Choose a tag to compare

Features

  • Update last version of the Satellite in the eject template.

v0.0.64

09 May 07:43
Compare
Choose a tag to compare

Features

  • Support for authentication configuration derivation_origin.

Build

  • Bump agent-js v1.3.0.

v0.0.63

16 Apr 19:28
Compare
Choose a tag to compare

Features

  • Workaround for juno clear: list and set custom domains before and after deleting the assets. Relates to issue junobuild/juno#484 that needs to be addressed.
  • Move functions used in various CLI of Juno into @junobuild/cli-tools.

v0.0.62

09 Apr 20:07
Compare
Choose a tag to compare

Features

  • Support for juno open -b safari.
  • Propose to execute login on juno init if no controller / configuration is set.

v0.0.61

29 Mar 16:13
Compare
Choose a tag to compare

Fix

  • Bump satellite version to 0.0.16-patch.2 in juno dev eject template to incorporate the fix for the default memory (v0.0.16 again).

v0.0.60

29 Mar 12:03
Compare
Choose a tag to compare

Fix

  • Bump satellite version to 0.0.16-patch.1 in juno dev eject template to incorporate the correct stock version (v0.0.16).

v0.0.59

29 Mar 08:31
Compare
Choose a tag to compare

Features

  • Bump satellite version to 0.0.16 in juno dev eject template.

Build

  • Bump agent-js v1.2.0.
  • Bump juno libs.
  • Bump dev dependencies.

v0.0.58

07 Mar 15:10
Compare
Choose a tag to compare

Features

  • Bump satellite version to 0.0.15-patch.3 in juno dev eject template.

Fix

  • Support for juno.config.js|.mjs with dependency on @junobuild/config.

v0.0.57

01 Mar 16:57
Compare
Choose a tag to compare

Features

  • Bump satellite version to 0.0.15-patch.2 in juno dev eject template.

v0.0.56

29 Feb 11:22
Compare
Choose a tag to compare

Breaking Changes ⚠️

  • The satelliteId and orbiterId configurations are marked as deprecated, and the satellitesIds property has been removed. Instead, use id and ids for configuring satellites and orbiters in juno.config.ts|js|json.

Examples:

Old configuration file:

import { defineConfig } from "@junobuild/config";

export default defineConfig({
  satellite: {
    satelliteId: "ucnx3-...",
    source: "build"
  },
  orbiter: {
    orbiterId: "3iier-..."
  }
});

New configuration file:

import { defineConfig } from "@junobuild/config";

export default defineConfig({
  satellite: {
    id: "ucnx3-...",
    source: "build"
  },
  orbiter: {
    id: "3iier-..."
  }
});