Skip to content

Releases: tidev/titanium-cli

v7.1.5

04 Oct 14:16
a97f1bd
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.1.4...v7.1.5

v7.1.4

04 Aug 21:20
274f861
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.1.3...v7.1.4

v7.1.3

01 Aug 05:50
29b0287
Compare
Choose a tag to compare

What's Changed

  • fix: Invalid --platform wasn't being validated by @cb1kenobi in #673

Full Changelog: v7.1.2...v7.1.3

v7.1.2

01 Aug 03:01
ad5354a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.1.1...v7.1.2

v7.1.1

31 Jul 00:21
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.1.0...v7.1.1

v7.1.0

25 May 17:02
5c61794
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.0...v7.1.0

v7.0.0

10 May 19:46
92ce047
Compare
Choose a tag to compare

Titanium CLI 7 is here! This is a massive release with a complete refactor ESM, dead code removed, slight performance enhancements, drop Node 16, and much more! Please read the blog post for the details:

Blog Post: https://tidev.io/blog/cli_7_0_0_ga
Changelog: https://github.com/tidev/titanium-cli/blob/main/CHANGELOG.md#700-5102024

v7.0.0-rc2

22 Mar 03:19
Compare
Choose a tag to compare
v7.0.0-rc2 Pre-release
Pre-release
npm i -g titanium@next

Titanium CLI v7 is a almost an entire rewrite. Old dead code has been removed, deprecated dependencies have been replaced, code completely refactored to ECMAScript modules and latest JavaScript features, and performance has been improved. This release has been tested to work on the latest Node.js releases and unlocks the Titanium SDK to begin dropping dead code, adopt ESM, and update dependencies.

BREAKING CHANGES:

  • Require Node.js 18 or newer
  • Refactored entire codebase using ESM
  • Removed login, logout, plugin, and status commands
  • ti config
    • Replaced --output json with --output json-object output
  • ti info
    • Removed haxm info
    • Removed genymotion and VirtualBox info
    • Removed macOS info including Xcode CLI Tools
    • Removed jarsigner from JDK detection; no longer used thanks to Gradle
    • Removed nodeAppcVer from Titanium CLI and Titanium SDKs in info
  • ti module
    • Removed global iphone modules as it was just a copy of ios modules
    • Modules with platform other than android, commonjs, ios, and
      iphone will be ignored
    • Modules with invalid semantic version will be ignored
  • ti sdk
    • Removed activeSDK from JSON result
  • ti setup
    • Removed Windows Store publishing info
    • Removed haxm info
    • Removed sdk setup
    • Removed user locale setup
    • Removed Xcode CLI tools detection
    • Removed Titanium CLI Dependencies section from check
    • Removed Java-based connection test from check
  • Trace and debug log messages written to stderr instead of stdout

New Features

  • --sdk <ver> is now a global option
    • Defaults to latest installed SDK version
    • If executing the create command without any options, it will prompt for
      the SDK version to use
  • -d, --project-dir is now a global option
    • Used to be build, clean, and project commands only, but needed so
      the CLI can read the tiapp.xml and determine the <sdk-version>;
      defaults to the current working directory
    • Since this conflicts with the create command's -d, --workspace-dir
      option, special handling treats these two options the same
  • Added a new --debug global flag to output CLI debug logging
  • Added --json flag to ti config, ti info, ti sdk, ti sdk list
  • Logger changes:
    • Replaced "winston" based logger with lighter weight logger
    • Added total run time trace message at end
    • --timestamp option enabled only when command has --log-level option
  • Performance improvements:
    • Lazy load modules as much as possible, within reason
    • Removed tons of old dead code
    • Use smaller alternative dependencies

Improvements

  • Removed all analytics/telemetry code
  • Removed i18n logic; all output rendered in English
  • Removed incomplete tab completion code
  • Removed "default" SDK; <sdk-version> in tiapp.xml is source of truth,
    override with --sdk <ver> arg
  • Replaced custom CLI arg parser (based on optimist) with Commander.js
    • Order of arguments matter; command options must come after command
  • ti sdk install --default flag has no effect
  • ti sdk select command has no effect
  • Updated dependencies, replaced deprecated dependencies
    • Replaced colors with chalk
    • Replaced fields with prompts
    • Replaced humanize with pretty-bytes
    • Replaced request with undici

Full Changelog: v6.1.1...v7.0.0-rc2

v7.0.0-rc

07 Mar 04:17
Compare
Choose a tag to compare
v7.0.0-rc Pre-release
Pre-release
npm i -g titanium@next

Titanium CLI v7 is a almost an entire rewrite. Old dead code has been removed, deprecated dependencies have been replaced, code completely refactored to ECMAScript modules and latest JavaScript features, and performance has been improved. This release has been tested to work on the latest Node.js releases and unlocks the Titanium SDK to begin dropping dead code, adopt ESM, and update dependencies.

BREAKING CHANGES:

  • Require Node.js 18 or newer
  • Refactored entire codebase using ESM
  • Removed login, logout, plugin, and status commands
  • ti config
    • Replaced --output json with --output json-object output
  • ti info
    • Removed haxm info
    • Removed genymotion and VirtualBox info
    • Removed macOS info including Xcode CLI Tools
    • Removed jarsigner from JDK detection; no longer used thanks to Gradle
    • Removed nodeAppcVer from Titanium CLI and Titanium SDKs in info
  • ti module
    • Removed global iphone modules as it was just a copy of ios modules
    • Modules with platform other than android, commonjs, ios, and
      iphone will be ignored
    • Modules with invalid semantic version will be ignored
  • ti sdk
    • Removed activeSDK from JSON result
  • ti setup
    • Removed Windows Store publishing info
    • Removed haxm info
    • Removed sdk setup
    • Removed user locale setup
    • Removed Xcode CLI tools detection
    • Removed Titanium CLI Dependencies section from check
    • Removed Java-based connection test from check
  • Trace and debug log messages written to stderr instead of stdout

New Features

  • --sdk <ver> is now a global option
    • Defaults to latest installed SDK version
    • If executing the create command without any options, it will prompt for
      the SDK version to use
  • -d, --project-dir is now a global option
    • Used to be build, clean, and project commands only, but needed so
      the CLI can read the tiapp.xml and determine the <sdk-version>;
      defaults to the current working directory
    • Since this conflicts with the create command's -d, --workspace-dir
      option, special handling treats these two options the same
  • Added a new --debug global flag to output CLI debug logging
  • Added --json flag to ti config, ti info, ti sdk, ti sdk list
  • Logger changes:
    • Replaced "winston" based logger with lighter weight logger
    • Added total run time trace message at end
    • --timestamp option enabled only when command has --log-level option
  • Performance improvements:
    • Lazy load modules as much as possible, within reason
    • Removed tons of old dead code
    • Use smaller alternative dependencies

Improvements

  • Removed all analytics/telemetry code
  • Removed i18n logic; all output rendered in English
  • Removed incomplete tab completion code
  • Removed "default" SDK; <sdk-version> in tiapp.xml is source of truth,
    override with --sdk <ver> arg
  • Replaced custom CLI arg parser (based on optimist) with Commander.js
    • Order of arguments matter; command options must come after command
  • ti sdk install --default flag has no effect
  • ti sdk select command has no effect
  • Updated dependencies, replaced deprecated dependencies
    • Replaced colors with chalk
    • Replaced fields with prompts
    • Replaced humanize with pretty-bytes
    • Replaced request with undici

Full Changelog: v6.1.1...v7.0.0-rc

v7.0.0-beta9

07 Feb 09:02
Compare
Choose a tag to compare
v7.0.0-beta9 Pre-release
Pre-release
npm i -g titanium@next

Titanium CLI v7 is a almost an entire rewrite. Old dead code has been removed, deprecated dependencies have been replaced, code completely refactored to ECMAScript modules and latest JavaScript features, and performance has been improved. This release has been tested to work on the latest Node.js releases and unlocks the Titanium SDK to begin dropping dead code, adopt ESM, and update dependencies.

BREAKING CHANGES:

  • Require Node.js 18 or newer
  • Refactored entire codebase using ESM
  • Removed login, logout, plugin, and status commands
  • ti config
    • Replaced --output json with --output json-object output
  • ti info
    • Removed haxm info
    • Removed genymotion and VirtualBox info
    • Removed macOS info including Xcode CLI Tools
    • Removed jarsigner from JDK detection; no longer used thanks to Gradle
    • Removed nodeAppcVer from Titanium CLI and Titanium SDKs in info
  • ti module
    • Removed global iphone modules as it was just a copy of ios modules
    • Modules with platform other than android, commonjs, ios, and
      iphone will be ignored
    • Modules with invalid semantic version will be ignored
  • ti sdk
    • Removed activeSDK from JSON result
  • ti setup
    • Removed Windows Store publishing info
    • Removed haxm info
    • Removed sdk setup
    • Removed user locale setup
    • Removed Xcode CLI tools detection
    • Removed Titanium CLI Dependencies section from check
    • Removed Java-based connection test from check
  • Trace and debug log messages written to stderr instead of stdout

New Features

  • --sdk <ver> is now a global option
    • Defaults to latest installed SDK version
    • If executing the create command without any options, it will prompt for
      the SDK version to use
  • -d, --project-dir is now a global option
    • Used to be build, clean, and project commands only, but needed so
      the CLI can read the tiapp.xml and determine the <sdk-version>;
      defaults to the current working directory
    • Since this conflicts with the create command's -d, --workspace-dir
      option, special handling treats these two options the same
  • Added a new --debug global flag to output CLI debug logging
  • Added --json flag to ti config, ti info, ti sdk, ti sdk list
  • Logger changes:
    • Replaced "winston" based logger with lighter weight logger
    • Added total run time trace message at end
    • --timestamp option enabled only when command has --log-level option
  • Performance improvements:
    • Lazy load modules as much as possible, within reason
    • Removed tons of old dead code
    • Use smaller alternative dependencies

Improvements

  • Removed all analytics/telemetry code
  • Removed i18n logic; all output rendered in English
  • Removed incomplete tab completion code
  • Removed "default" SDK; <sdk-version> in tiapp.xml is source of truth,
    override with --sdk <ver> arg
  • Replaced custom CLI arg parser (based on optimist) with Commander.js
    • Order of arguments matter; command options must come after command
  • ti sdk install --default flag has no effect
  • ti sdk select command has no effect
  • Updated dependencies, replaced deprecated dependencies
    • Replaced colors with chalk
    • Replaced fields with prompts
    • Replaced humanize with pretty-bytes
    • Replaced request with undici

Full Changelog: v6.1.1...v7.0.0-beta9