Skip to content

Releases: junobuild/cli

v0.2.14

19 Apr 14:08
Compare
Choose a tag to compare

Features

  • Replace custom implementation to clean version with minVersion from semver lib.
  • Use Juno crates v0.1.0 in Rust template for juno dev eject.

v0.2.13

18 Apr 12:30
Compare
Choose a tag to compare

Features

  • Generate and append new juno:package custom section to WASM when building serverless functions in Rust (still support juno:build for backwards compatibility).

v0.2.12

12 Apr 17:25
Compare
Choose a tag to compare

Features

  • Support for configuring projects for development using either a production-like setup or a minimal setup via juno dev start, even for projects that are not yet configured.

Note: As a result, the configuration templates have been updated to include both production and development settings.

Example:

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

export default defineConfig({
  satellite: {
    ids: {
      development: '<DEV_SATELLITE_ID>',
      production: '<PROD_SATELLITE_ID>'
    },
    source: '<SOURCE>',
    predeploy: ['<COMMAND> build']
  }
});

v0.2.11

11 Apr 04:56
Compare
Choose a tag to compare

Features

  • Don't exit hot reload while wathcing build on JS/TS compile errors.

v0.2.10

08 Apr 16:38
Compare
Choose a tag to compare

Features

  • Use @junbuild/[email protected] which supports fetching version using the public custom section juno:package with fallback on deprecated version() functions.

v0.2.9

06 Apr 09:40
Compare
Choose a tag to compare

Features

  • Add metadata (name of the project, version, etc.) as banner of the mjs bundled when running juno dev build for JS/TS. Those are then use by the Docker container when bundling to WASM to generate the public custom section juno:package.
  • Get version from juno:package when running juno --version.

Refactoring

  • Extract utils to read (developer) package json.

Build

  • Bump dependencies.

v0.2.8

03 Apr 11:21
Compare
Choose a tag to compare

Features

  • Print success or errors on juno config.

Fix

  • Mode was not interpreted when running e.g. juno config --mode staging.

v0.2.7

29 Mar 18:31
Compare
Choose a tag to compare

Features

  • Add all hooks and assertions to Sputnik templates.

v0.2.6

26 Mar 13:46
Compare
Choose a tag to compare

Features

  • Print a message when starting local emulator.

v0.2.5

26 Mar 13:11
Compare
Choose a tag to compare

Features

  • Add support for juno dev start --watch with the same options as juno dev build.

Fixes

  • Fixed recursive constant imports that caused undefined to appear instead of section titles in the help output.