Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@capgo/cli

Cap-go56.6kApache 2.07.13.0TypeScript support: included

A CLI to upload to capgo servers

appflow alternative, ionic, capacitor, auto update, live update, capgo, cli, upload, capgo-cli, sdk

readme

Capgo CLI

Capgo - Instant updates for capacitor

A CLI to upload and download files from the Capgo Cloud.

You can find the most up to date version of this doc in our web doc: https://capgo.app/docs/cli/overview/

Usage

Before use the CLI, you should register here : https://capgo.app/

Then go to your account in apikey section and click in the all key to copy it.

Follow the documentation here : "https://capacitorjs.com/docs/getting-started/

📑 Capgo CLI Commands

📋 Table of Contents

🚀 Init

Alias: i

npx @capgo/cli@latest init

🚀 Initialize a new app in Capgo Cloud with step-by-step guidance. This includes adding code for updates, building, uploading your app, and verifying update functionality.

Example:

npx @capgo/cli@latest init YOUR_API_KEY com.example.app

Options

Param Type Description
-n, string App name for display in Capgo Cloud
-i, string App icon path for display in Capgo Cloud
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

👨‍⚕️ Doctor

npx @capgo/cli@latest doctor

👨‍⚕️ Check if your Capgo app installation is up-to-date and gather information useful for bug reports. This command helps diagnose issues with your setup.

Example:

npx @capgo/cli@latest doctor

Options

Param Type Description
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)

🔑 Login

Alias: l

npx @capgo/cli@latest login

🔑 Save your Capgo API key to your machine or local folder for easier access to Capgo Cloud services. Use --apikey=**** in any command to override it.

Example:

npx @capgo/cli@latest login YOUR_API_KEY

Options

Param Type Description
--local boolean Only save in local folder, git ignored for security.
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

📦 Bundle

📦 Manage app bundles for deployment in Capgo Cloud, including upload, compatibility checks, and encryption.

⬆️ Upload

Alias: u

npx @capgo/cli@latest bundle upload

⬆️ Upload a new app bundle to Capgo Cloud for distribution, optionally linking to a channel or external URL. External option supports privacy concerns or large apps (>200MB) by storing only the link. Capgo never inspects external content. Encryption adds a trustless security layer. Version must be > 0.0.0 and unique.

ℹ️ External option helps with corporate privacy concerns and apps larger than 200MB by storing only the link.

ℹ️ Capgo Cloud never looks at the content in the link for external options or in the code when stored.

ℹ️ You can add a second layer of security with encryption, making Capgo trustless.

ℹ️ Version should be greater than "0.0.0" and cannot be overridden or reused after deletion for security reasons.

Example:

npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel production

Options:

Param Type Description
-a, string API key to link to your account
-p, string Path of the folder to upload, if not provided it will use the webDir set in capacitor.config
-c, string Channel to link to
-e, string Link to external URL instead of upload to Capgo Cloud
--iv-session-key string Set the IV and session key for bundle URL external
--s3-region string Region for your S3 bucket
--s3-apikey string API key for your S3 endpoint
--s3-apisecret string API secret for your S3 endpoint
--s3-endoint string URL of S3 endpoint
--s3-bucket-name string Name for your AWS S3 bucket
--s3-port string Port for your S3 endpoint
--no-s3-ssl boolean Disable SSL for S3 upload
--key-v2 string Custom path for private signing key (v2 system)
--key-data-v2 string Private signing key (v2 system)
--bundle-url boolean Prints bundle URL into stdout
--no-key boolean Ignore signing key and send clear update
--no-code-check boolean Ignore checking if notifyAppReady() is called in source code and index present in root folder
--display-iv-session boolean Show in the console the IV and session key used to encrypt the update
-b, string Bundle version number of the bundle to upload
--link string Link to external resource (e.g. GitHub release)
--comment string Comment about this version, could be a release note, a commit hash, a commit message, etc.
--min-update-version string Minimal version required to update to this version. Used only if the disable auto update is set to metadata in channel
--auto-min-update-version boolean Set the min update version based on native packages
--ignore-metadata-check boolean Ignores the metadata (node_modules) check when uploading
--ignore-checksum-check boolean Ignores the checksum check when uploading
--timeout string Timeout for the upload process in seconds
--multipart boolean Uses multipart protocol to upload data to S3, Deprecated, use tus instead
--zip boolean Upload the bundle using zip to Capgo cloud (legacy)
--tus boolean Upload the bundle using TUS to Capgo cloud
--tus-chunk-size string Chunk size for the TUS upload
--partial boolean Upload partial files to Capgo cloud (deprecated, use --delta instead)
--partial-only boolean Upload only partial files to Capgo cloud, skip the zipped file, useful for big bundle (deprecated, use --delta-only instead)
--delta boolean Upload delta update to Capgo cloud (old name: --partial)
--delta-only boolean Upload only delta update to Capgo cloud, skip the zipped file, useful for big bundle (old name: --partial-only)
--encrypted-checksum string An encrypted checksum (signature). Used only when uploading an external bundle.
--auto-set-bundle boolean Set the bundle in capacitor.config.json
--dry-upload boolean Dry upload the bundle process, mean it will not upload the files but add the row in database (Used by Capgo for internal testing)
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)
--node-modules string A list of paths to node_modules. Useful for monorepos (comma separated ex: ../../node_modules,./node_modules)
--encrypt-partial boolean Encrypt the partial update files (automatically applied for updater > 6.14.4)
--delete-linked-bundle-on-upload boolean Locates the currently linked bundle in the channel you are trying to upload to, and deletes it
--no-brotli-patterns string Glob patterns for files to exclude from brotli compression (comma-separated)
--disable-brotli boolean Completely disable brotli compression even if updater version supports it
--version-exists-ok boolean Exit successfully if bundle version already exists, useful for CI/CD workflows with monorepos
--self-assign boolean Allow device to self-assign to this channel, this will update the channel, if not provided it will leave the channel as is
--supa-host string Supabase host URL, for self-hosted Capgo or testing
--supa-anon string Supabase anon token, for self-hosted Capgo or testing

🧪 Compatibility

npx @capgo/cli@latest bundle compatibility

🧪 Check compatibility of a bundle with a specific channel in Capgo Cloud to ensure updates are safe.

Example:

npx @capgo/cli@latest bundle compatibility com.example.app --channel production

Options:

Param Type Description
-a, string API key to link to your account
-c, string Channel to check the compatibility with
--text boolean Output text instead of emojis
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)
--node-modules string A list of paths to node_modules. Useful for monorepos (comma separated ex: ../../node_modules,./node_modules)
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

🗑️ Delete

Alias: d

npx @capgo/cli@latest bundle delete

🗑️ Delete a specific bundle from Capgo Cloud, optionally targeting a single version.

Example:

npx @capgo/cli@latest bundle delete BUNDLE_ID com.example.app

Options:

Param Type Description
-a, string API key to link to your account
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

📋 List

Alias: l

npx @capgo/cli@latest bundle list

📋 List all bundles uploaded for an app in Capgo Cloud.

Example:

npx @capgo/cli@latest bundle list com.example.app

Options:

Param Type Description
-a, string API key to link to your account
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

🧹 Cleanup

Alias: c

npx @capgo/cli@latest bundle cleanup

🧹 Cleanup old bundles in Capgo Cloud, keeping a specified number of recent versions or those linked to channels. Ignores bundles in use.

Example:

npx @capgo/cli@latest bundle cleanup com.example.app --bundle=1.0 --keep=3

Options:

Param Type Description
-b, string Bundle version number of the app to delete
-a, string API key to link to your account
-k, string Number of versions to keep
-f, string Force removal
--ignore-channel boolean Delete all versions even if linked to a channel, this will delete channel as well
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

🔒 Encrypt

npx @capgo/cli@latest bundle encrypt

🔒 Encrypt a zip bundle using the new encryption method for secure external storage or testing. Used with external sources or for testing, prints ivSessionKey for upload or decryption. The command will return the ivSessionKey for upload or decryption. The checksum is the checksum of the zip file, you can get it with the --json option of the zip command.

Example:

npx @capgo/cli@latest bundle encrypt ./myapp.zip CHECKSUM

Options:

Param Type Description
--key string Custom path for private signing key
--key-data string Private signing key
-j, string Output in JSON

🔓 Decrypt

npx @capgo/cli@latest bundle decrypt

🔓 Decrypt a zip bundle using the new encryption method, mainly for testing purposes. Prints the base64 decrypted session key for verification.

Example:

npx @capgo/cli@latest bundle decrypt ./myapp_encrypted.zip CHECKSUM

Options:

Param Type Description
--key string Custom path for private signing key
--key-data string Private signing key
--checksum string Checksum of the bundle, to verify the integrity of the bundle

🔹 Zip

npx @capgo/cli@latest bundle zip

🗜️ Create a zip file of your app bundle for upload or local storage. Useful for preparing bundles before encryption or upload. The command will return the checksum of the zip file, you can use it to encrypt the zip file with the --key-v2 option.

Example:

npx @capgo/cli@latest bundle zip com.example.app --path ./dist

Options:

Param Type Description
-p, string Path of the folder to upload, if not provided it will use the webDir set in capacitor.config
-b, string Bundle version number to name the zip file
-n, string Name of the zip file
-j, string Output in JSON
--no-code-check boolean Ignore checking if notifyAppReady() is called in source code and index present in root folder
--key-v2 boolean Use encryption v2
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)

📱 App

📱 Manage your Capgo app settings and configurations in Capgo Cloud.

Add

Alias: a

npx @capgo/cli@latest app add

➕ Add a new app to Capgo Cloud with a unique app ID in the format com.test.app. All options can be guessed from config if not provided.

Example:

npx @capgo/cli@latest app add com.example.app --name "My App" --icon ./icon.png

Options:

Param Type Description
-n, string App name for display in Capgo Cloud
-i, string App icon path for display in Capgo Cloud
-a, string API key to link to your account
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

🗑️ Delete

npx @capgo/cli@latest app delete

🗑️ Delete an app from Capgo Cloud, optionally specifying a version to delete only that bundle.

Example:

npx @capgo/cli@latest app delete com.example.app

Options:

Param Type Description
-a, string API key to link to your account
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

📋 List

Alias: l

npx @capgo/cli@latest app list

📋 List all apps registered under your account in Capgo Cloud.

Example:

npx @capgo/cli@latest app list

Options:

Param Type Description
-a, string API key to link to your account
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

🐞 Debug

npx @capgo/cli@latest app debug

🐞 Listen for live update events in Capgo Cloud to debug your app. Optionally target a specific device for detailed diagnostics.

Example:

npx @capgo/cli@latest app debug com.example.app --device DEVICE_ID

Options:

Param Type Description
-a, string API key to link to your account
-d, string The specific device ID to debug
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

⚙️ Setting

npx @capgo/cli@latest app setting

⚙️ Modify Capacitor configuration programmatically by specifying the path to the setting. (e.g., plugins.CapacitorUpdater.defaultChannel). You MUST provide either --string or --bool.

Example:

npx @capgo/cli@latest app setting plugins.CapacitorUpdater.defaultChannel --string "Production"

Options:

Param Type Description
--bool string A value for the setting to modify as a boolean, ex: --bool true
--string string A value for the setting to modify as a string, ex: --string "Production"

⚙️ Set

Alias: s

npx @capgo/cli@latest app set

⚙️ Update settings for an existing app in Capgo Cloud, such as name, icon, or retention period for bundles. Retention of 0 means infinite storage.

Example:

npx @capgo/cli@latest app set com.example.app --name "Updated App" --retention 30

Options:

Param Type Description
-n, string App name for display in Capgo Cloud
-i, string App icon path for display in Capgo Cloud
-a, string API key to link to your account
-r, string Retention period of app bundle in days, 0 by default = infinite
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

📢 Channel

📢 Manage distribution channels for app updates in Capgo Cloud, controlling how updates are delivered to devices.

Add

Alias: a

npx @capgo/cli@latest channel add

➕ Create a new channel for app distribution in Capgo Cloud to manage update delivery.

Example:

npx @capgo/cli@latest channel add production com.example.app --default

Options:

Param Type Description
-d, string Set the channel as default
--self-assign boolean Allow device to self-assign to this channel
-a, string API key to link to your account
--supa-host string Supabase host URL, for self-hosted Capgo or testing
--supa-anon string Supabase anon token, for self-hosted Capgo or testing

🗑️ Delete

Alias: d

npx @capgo/cli@latest channel delete

🗑️ Delete a channel from Capgo Cloud, optionally removing associated bundles to free up resources.

Example:

npx @capgo/cli@latest channel delete production com.example.app

Options:

Param Type Description
-a, string API key to link to your account
--delete-bundle boolean Delete the bundle associated with the channel
--success-if-not-found boolean Success if the channel is not found
--supa-host string Supabase host URL, for self-hosted Capgo or testing
--supa-anon string Supabase anon token, for self-hosted Capgo or testing

📋 List

Alias: l

npx @capgo/cli@latest channel list

📋 List all channels configured for an app in Capgo Cloud to review distribution settings.

Example:

npx @capgo/cli@latest channel list com.example.app

Options:

Param Type Description
-a, string API key to link to your account
--supa-host string Supabase host URL, for self-hosted Capgo or testing
--supa-anon string Supabase anon token, for self-hosted Capgo or testing

📦 CurrentBundle

npx @capgo/cli@latest channel currentBundle

📦 Get the current bundle linked to a specific channel in Capgo Cloud for update tracking.

Example:

npx @capgo/cli@latest channel currentBundle production com.example.app

Options:

Param Type Description
-c, string Channel to get the current bundle from
-a, string API key to link to your account
--quiet boolean Only print the bundle version
--supa-host string Supabase host URL, for self-hosted Capgo or testing
--supa-anon string Supabase anon token, for self-hosted Capgo or testing

⚙️ Set

Alias: s

npx @capgo/cli@latest channel set

⚙️ Configure settings for a channel, such as linking a bundle, setting update strategies (major, minor, metadata, patch, none), or device targeting (iOS, Android, dev, emulator). One channel must be default.

Example:

npx @capgo/cli@latest channel set production com.example.app --bundle 1.0.0 --state default

Options:

Param Type Description
-a, string API key to link to your account
-b, string Bundle version number of the file to set
-s, string Set the state of the channel, default or normal
--latest-remote boolean Get the latest bundle uploaded in capgo cloud and set it to the channel
--latest boolean Get the latest version key in the package.json to set it to the channel
--downgrade boolean Allow to downgrade to version under native one
--no-downgrade boolean Disable downgrade to version under native one
--ios boolean Allow sending update to iOS devices
--no-ios boolean Disable sending update to iOS devices
--android boolean Allow sending update to Android devices
--no-android boolean Disable sending update to Android devices
--self-assign boolean Allow device to self-assign to this channel
--no-self-assign boolean Disable devices to self-assign to this channel
--disable-auto-update string Disable auto update strategy for this channel. The possible options are: major, minor, metadata, patch, none
--dev boolean Allow sending update to development devices
--no-dev boolean Disable sending update to development devices
--emulator boolean Allow sending update to emulator devices
--no-emulator boolean Disable sending update to emulator devices
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)
--ignore-metadata-check boolean Ignore checking node_modules compatibility if present in the bundle
--supa-host string Supabase host URL, for self-hosted Capgo or testing
--supa-anon string Supabase anon token, for self-hosted Capgo or testing

🔐 Key

🔐 Manage encryption keys for secure bundle distribution in Capgo Cloud, supporting end-to-end encryption with RSA and AES combination.

🔹 Save

npx @capgo/cli@latest key save

💾 Save the public key in the Capacitor config, useful for CI environments. Recommended not to commit the key for security.

Example:

npx @capgo/cli@latest key save --key ./path/to/key.pub

Options:

Param Type Description
-f, string Force generate a new one
--key string Key path to save in Capacitor config
--key-data string Key data to save in Capacitor config

🔨 Create

npx @capgo/cli@latest key create

🔨 Create a new encryption key pair for end-to-end encryption in Capgo Cloud. Do not commit or share the private key; save it securely. This command will create a new key pair with the name .capgo_key_v2 and .capgo_key_v2.pub in the root of the project. The public key is used to decrypt the zip file in the mobile app. The public key will also be stored in the capacitor config. This is the one used in the mobile app. The file is just a backup. The private key is used to encrypt the zip file in the CLI.

Example:

npx @capgo/cli@latest key create

Options:

Param Type Description
-f, string Force generate a new one

🗑️ Delete_old

npx @capgo/cli@latest key delete_old

🧹 Delete the old encryption key from the Capacitor config to ensure only the current key is used.

Example:

npx @capgo/cli@latest key delete_old

👤 Account

👤 Manage your Capgo account details and retrieve information for support or collaboration.

🔹 Id

npx @capgo/cli@latest account id

🪪 Retrieve your account ID, safe to share for collaboration or support purposes in Discord or other platforms.

Example:

npx @capgo/cli@latest account id

Options:

Param Type Description
-a, string API key to link to your account

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

7.13.0 (2025-07-24)

Features

  • enhance step11 function to handle delta updates and provide clearer instructions for standard updates (f3a3004)

7.12.1 (2025-07-22)

Bug Fixes

  • enhance test banner and body padding for safe area insets (4dcc0ca)

7.12.0 (2025-07-21)

Features

  • add build confirmation and execution after modifications in init process (2c4e2ea)

7.11.19 (2025-07-21)

Bug Fixes

  • change directInstall to directUpdate in step4 function (91fc3bf)

7.11.18 (2025-07-21)

Bug Fixes

  • prioritize HTML file modification and enhance test banner styling (6c7cd8a)
  • use semver for automatic patch version bump and improve logging (ea30a60)

7.11.17 (2025-07-21)

Bug Fixes

  • update log messages to instruct users to background the app before reopening (bac4fe7)

7.11.16 (2025-07-21)

Bug Fixes

  • update project type check message in step7 function (1e26ab6)

7.11.15 (2025-07-21)

Bug Fixes

  • update status messages in step4 function for installation and config update (78d95bf)

7.11.14 (2025-07-21)

Bug Fixes

  • force installation of @capgo/capacitor-updater in step4 function (4d98557)

7.11.13 (2025-07-21)

7.11.12 (2025-07-21)

Bug Fixes

  • move direct install option for instant updates to the correct position in step4 function (abbd1d9)

7.11.11 (2025-07-21)

Bug Fixes

  • add error handling for empty organizations in getOrganization function (0a72e37)

7.11.10 (2025-07-20)

7.11.9 (2025-07-20)

Bug Fixes

  • update version to install Capacitor v6 and add direct install option for instant updates (65a1c28)

7.11.8 (2025-07-14)

7.11.7 (2025-07-14)

7.11.6 (2025-07-14)

7.11.5 (2025-07-14)

Bug Fixes

  • upload never ending issue (c5874a0)

7.11.4 (2025-06-30)

7.11.3 (2025-06-29)

Bug Fixes

7.11.2 (2025-06-29)

Bug Fixes

7.11.1 (2025-06-29)

Bug Fixes

7.11.0 (2025-06-29)

Features

  • reuse file instead of re upload them (b503a9b)

7.10.4 (2025-06-23)

Bug Fixes

  • use new endpoing for upload_link (0345163)

7.10.3 (2025-06-23)

Bug Fixes

7.10.2 (2025-06-23)

Bug Fixes

  • delete channel when device assigned (603ea52)

7.10.1 (2025-06-21)

Bug Fixes

7.10.0 (2025-06-21)

Features

  • add export for SDK usage to allow whitelabel upload (e1213a3)

7.9.7 (2025-06-17)

Bug Fixes

  • do not unset self assign in upload command (173f095)

7.9.6 (2025-06-17)

Bug Fixes

7.9.5 (2025-06-17)

Bug Fixes

7.9.4 (2025-06-17)

Bug Fixes

  • change name use --version-exists-ok instead of silent fail (0218f3b)

7.9.3 (2025-06-16)

7.9.2 (2025-06-14)

Bug Fixes

7.9.1 (2025-06-14)

Bug Fixes

7.9.0 (2025-06-14)

Features

  • allow to create channel with self assign (a822fee)

7.8.0 (2025-06-10)

Features

7.7.8 (2025-06-04)

Bug Fixes

7.7.7 (2025-06-04)

Bug Fixes

7.7.6 (2025-06-03)

7.7.5 (2025-06-03)

7.7.4 (2025-05-30)

Bug Fixes

7.7.3 (2025-05-29)

Bug Fixes

7.7.2 (2025-05-28)

7.7.1 (2025-05-28)

7.7.0 (2025-05-28)

Features

  • add Supabase options for custom setups in CLI commands (9d13542)

7.6.4 (2025-05-27)

Bug Fixes

7.6.3 (2025-05-27)

7.6.2 (2025-05-27)

Bug Fixes

  • enhance channel compatibility checks and logging (a991353)

7.6.1 (2025-05-27)

Bug Fixes

7.6.0 (2025-05-27)

Features

  • add metadata check in cset channel and option to ignore it (859a30d)

7.5.5 (2025-05-18)

Bug Fixes

7.5.4 (2025-05-18)

Bug Fixes

7.5.3 (2025-05-13)

Bug Fixes

7.5.2 (2025-05-09)

Bug Fixes

7.5.1 (2025-05-07)

7.5.0 (2025-05-06)

Features

  • add successIfNotFound option for channel delete (35504a1)

7.4.18 (2025-05-06)

Bug Fixes

7.4.17 (2025-05-06)

Bug Fixes

  • replace wrong char in version npm (46ca1e7)

7.4.16 (2025-05-05)

7.4.15 (2025-05-02)

Bug Fixes

  • make sure channel exist first (77e73a4)

7.4.14 (2025-05-02)

Bug Fixes

7.4.13 (2025-05-02)

Bug Fixes

7.4.12 (2025-05-02)

Bug Fixes

  • add error for wrong state + add latest remote (f60a62c)

7.4.11 (2025-05-02)

Bug Fixes

7.4.10 (2025-05-01)

Bug Fixes

7.4.9 (2025-05-01)

Bug Fixes

  • perfect remove toc on website as it's already on the side (4057444)

7.4.8 (2025-05-01)

Bug Fixes

7.4.7 (2025-05-01)

Bug Fixes

  • better render of website (e0e61a7)

7.4.6 (2025-05-01)

Bug Fixes

7.4.5 (2025-05-01)

Bug Fixes

7.4.4 (2025-05-01)

Bug Fixes

7.4.3 (2025-05-01)

7.4.2 (2025-05-01)

Bug Fixes

  • add webdoc do repo to allow copy (d04110c)

7.4.1 (2025-05-01)

Bug Fixes

7.4.0 (2025-05-01)

Features

Bug Fixes

  • assume Capacitor V7 for linked versions of the updater (4d67285)
  • build before genrerate docs (9e1dc89)

7.3.3 (2025-05-01)

7.3.2 (2025-05-01)

7.3.1 (2025-04-30)

7.3.0 (2025-04-29)

Features

  • add in CLI to cleanup the ignore channel option (bddd773)

7.2.11 (2025-04-29)

Bug Fixes

  • allow set supaHost and supaKey from options (7af2074)

7.2.10 (2025-04-21)

7.2.9 (2025-04-15)

7.2.8 (2025-04-07)

7.2.7 (2025-04-03)

Bug Fixes

  • add userID in addAppInternal (5bb199f)

7.2.6 (2025-03-29)

Bug Fixes

  • auto enable encrypt-partial for updater > 6.14.4 (c2e4e1d)

7.2.5 (2025-03-29)

Bug Fixes

  • brotli issue allow ignore for certain files (d367491)

7.2.4 (2025-03-24)

7.2.3 (2025-03-21)

Bug Fixes

  • add better doc of dry run (a400b86)

7.2.2 (2025-03-17)

Bug Fixes

7.2.1 (2025-03-17)

Bug Fixes

7.2.0 (2025-03-13)

Features

  • add link and comment in bundle (3b68ca6)

7.1.21 (2025-03-13)

Bug Fixes

7.1.20 (2025-03-12)

Bug Fixes

7.1.19 (2025-03-11)

Bug Fixes

  • correct typo in package.json homepage URL (b1f4816), closes #390

7.1.18 (2025-03-11)

Bug Fixes

7.1.17 (2025-03-10)

7.1.16 (2025-03-04)

Bug Fixes

7.1.15 (2025-03-04)

Bug Fixes

7.1.14 (2025-03-04)

7.1.13 (2025-03-04)

Bug Fixes

7.1.12 (2025-03-03)

Bug Fixes

  • cleanVersion issue check compat (a1afb10)

7.1.11 (2025-03-03)

Bug Fixes

  • better error when s3 issue (a47f087)
  • rject partial with incorrect updater version (e02bee0)

7.1.10 (2025-03-03)

Bug Fixes

  • version parse for non semver (28f3ca6)

7.1.9 (2025-03-03)

Bug Fixes

7.1.8 (2025-03-03)

Bug Fixes

7.1.7 (2025-03-03)

Bug Fixes

7.1.6 (2025-03-03)

Bug Fixes

7.1.5 (2025-03-03)

Bug Fixes

  • semver issue + prevent partial name with space (5799ed6)

7.1.4 (2025-02-25)

Bug Fixes

  • make cannot found fail to (3631cd8)

7.1.3 (2025-02-24)

7.1.2 (2025-02-21)

Bug Fixes

  • add ignore list for manifest to reduce bundle size (077e323)

7.1.1 (2025-02-19)

Bug Fixes

  • for broken semver usage (1ef818b)

7.1.0 (2025-02-19)

Features

  • fix partial for empty files (1ea127b)

7.0.17 (2025-02-19)

Bug Fixes

7.0.16 (2025-02-19)

Bug Fixes

7.0.15 (2025-02-19)

Bug Fixes

7.0.14 (2025-02-19)

Bug Fixes

7.0.13 (2025-02-19)

Bug Fixes

  • add missing checksum parameter for encrypt command (84d0e1d)

7.0.12 (2025-02-19)

Bug Fixes

7.0.11 (2025-02-19)

Bug Fixes

7.0.10 (2025-02-19)

Bug Fixes

7.0.9 (2025-02-19)

Bug Fixes

7.0.8 (2025-02-19)

Bug Fixes

7.0.7 (2025-02-18)

Bug Fixes

7.0.6 (2025-02-18)

Bug Fixes

  • make text using correct (ab444f2)

7.0.5 (2025-02-10)

Bug Fixes

  • clean the version if prefixed (816491a)

7.0.4 (2025-02-10)

Bug Fixes

7.0.3 (2025-02-10)

Bug Fixes

7.0.2 (2025-02-09)

Bug Fixes

  • do new checksum for only new v7 (e549f2b)

7.0.1 (2025-02-09)

Bug Fixes

5.1.1 (2025-02-09)

5.1.0 (2025-02-09)

Features

  • warnings and better plan (08c25db)
  • warnings and better plan (1a9750e)

5.0.0 (2025-02-09)

⚠ BREAKING CHANGES

  • remove old key encryption

Features

  • remove old key encryption (4757ef9)

4.34.6 (2025-02-06)

Bug Fixes

4.34.5 (2025-02-06)

Bug Fixes

4.34.4 (2025-02-06)

Bug Fixes

4.34.3 (2025-02-06)

Bug Fixes

4.34.2 (2025-02-05)

Bug Fixes

4.34.1 (2025-02-02)

Bug Fixes

4.34.0 (2025-01-25)

Features

  • add a monorepo check on upload (41a0087)
  • improve init for monorepos (6edb337)

Bug Fixes

  • better msg for upload apikey (fb41e66)
  • key perms for channel delete (7a69ed5)

4.33.0 (2025-01-25)

Features

  • do not encrypt bundle when using Capacitor V5 (02a52e3)

4.32.4 (2025-01-21)

Bug Fixes

4.32.3 (2025-01-21)

Bug Fixes

4.32.2 (2025-01-21)

Bug Fixes

4.32.1 (2025-01-17)

4.32.0 (2025-01-15)

Features

  • allow auto delete bundle with channel (80d4417)

4.31.0 (2025-01-15)

Features

  • delete-linked-bundle-on-upload (18cc22e)

4.30.10 (2025-01-15)

Bug Fixes

4.30.9 (2025-01-14)

Bug Fixes

4.30.8 (2025-01-13)

4.30.7 (2025-01-13)

Bug Fixes

4.30.6 (2025-01-13)

4.30.5 (2025-01-13)

Bug Fixes

4.30.4 (2025-01-08)

Bug Fixes

4.30.3 (2025-01-08)

Bug Fixes

  • issue with readPackageJson (c572881)

4.30.2 (2025-01-07)

Bug Fixes

  • add message to unlock mono repo users (ff2cef1)

4.30.1 (2025-01-07)

Bug Fixes

4.30.0 (2025-01-07)

Features

Bug Fixes

4.29.1 (2025-01-06)

Bug Fixes

  • get_orgs_v5 -> get_orgs_v6 (1975532)

4.29.0 (2025-01-05)

Features

  • remove legacy upload command (57c8402)

4.28.2 (2025-01-04)

4.28.1 (2025-01-03)

Bug Fixes

  • dependency allow multi package json as well (d81c8b5)
  • error display (bfc7279)
  • the dir for multi packages (fbfee5b)

4.28.0 (2025-01-03)

Features

4.27.9 (2025-01-02)

Bug Fixes

4.27.8 (2025-01-01)

Bug Fixes

4.27.7 (2024-12-31)

4.27.6 (2024-12-31)

Bug Fixes

4.27.5 (2024-12-20)

Bug Fixes

4.27.4 (2024-12-20)

Bug Fixes

4.27.3 (2024-12-20)

Bug Fixes

4.27.2 (2024-12-20)

4.27.1 (2024-12-20)

Bug Fixes

4.27.0 (2024-12-20)

Features

  • remove old device_override (02b001b)

4.26.14 (2024-12-18)

4.26.13 (2024-12-18)

Bug Fixes

  • stop users to have wrong dist folders format (c9cd264)

4.26.12 (2024-12-18)

Bug Fixes

4.26.11 (2024-12-09)

Bug Fixes

  • prevent user use default appID (2ab5bd3)

4.26.10 (2024-12-09)

Bug Fixes

4.26.9 (2024-12-05)

Bug Fixes

  • add alert message to switch to v2 encrypt (cef28ff)

4.26.8 (2024-12-04)

4.26.7 (2024-12-04)

4.26.6 (2024-12-04)

Bug Fixes

  • disable partial for windows for now (f3ac79e)

4.26.5 (2024-12-02)

4.26.4 (2024-11-25)

4.26.3 (2024-11-20)

Bug Fixes

4.26.2 (2024-11-20)

Bug Fixes

  • compatibility table with semver (805044e)

4.26.1 (2024-11-20)

Bug Fixes

4.26.0 (2024-11-20)

Features

  • setup supabase in the config on init (05ff1c5)

4.25.6 (2024-11-18)

Bug Fixes

4.25.5 (2024-11-18)

4.25.4 (2024-11-15)

Bug Fixes

4.25.3 (2024-11-14)

Bug Fixes

4.25.2 (2024-11-12)

Bug Fixes

  • now use getAppId everywhere (64acfa3)

4.25.1 (2024-11-12)

Bug Fixes

  • appId for broken cap config (053fac5)

4.25.0 (2024-11-12)

Features

4.24.2 (2024-11-08)

Bug Fixes

4.24.1 (2024-11-07)

Bug Fixes

  • better error message to help debug (49e5c90)

4.24.0 (2024-11-06)

Features

  • add checkValidOptions to add message for user when then combine wrong options (caecf99)

4.23.2 (2024-11-05)

Bug Fixes

4.23.1 (2024-11-04)

4.23.0 (2024-10-30)

Features

  • add auto set config file (e4247fd)

4.22.11 (2024-10-30)

Bug Fixes

4.22.10 (2024-10-30)

Bug Fixes

4.22.9 (2024-10-30)

Bug Fixes

4.22.8 (2024-10-30)

4.22.7 (2024-10-30)

Bug Fixes

4.22.6 (2024-10-30)

Bug Fixes

4.22.5 (2024-10-29)

Bug Fixes

4.22.4 (2024-10-24)

Bug Fixes

4.22.3 (2024-10-24)

4.22.2 (2024-10-24)

Bug Fixes

4.22.1 (2024-10-23)

4.22.0 (2024-10-23)

Features

  • allow the user to select package.json path (fcb47d6)

4.21.36 (2024-10-22)

Bug Fixes

4.21.35 (2024-10-21)

4.21.34 (2024-10-21)

Bug Fixes

4.21.33 (2024-10-21)

Bug Fixes

4.21.32 (2024-10-21)

Bug Fixes

4.21.31 (2024-10-21)

Bug Fixes

4.21.30 (2024-10-17)

Bug Fixes

  • use new names for table (8fec9d3)

4.21.29 (2024-10-17)

Bug Fixes

4.21.28 (2024-10-17)

Bug Fixes

4.21.27 (2024-10-17)

Bug Fixes

4.21.26 (2024-10-17)

Bug Fixes

4.21.25 (2024-10-17)

Bug Fixes

4.21.24 (2024-10-17)

Bug Fixes

4.21.23 (2024-10-17)

Bug Fixes

4.21.22 (2024-10-16)

Bug Fixes

  • better message for partial (562534c)

4.21.21 (2024-10-16)

Bug Fixes

4.21.20 (2024-10-16)

Bug Fixes

4.21.19 (2024-10-16)

Bug Fixes

4.21.18 (2024-10-16)

Bug Fixes

4.21.17 (2024-10-16)

Bug Fixes

  • wait test to run before release (b768c92)

4.21.16 (2024-10-16)

Bug Fixes

4.21.15 (2024-10-16)

Bug Fixes

4.21.14 (2024-10-16)

Bug Fixes

4.21.13 (2024-10-15)

Bug Fixes

  • names usage for override (bb8c4e4)

4.21.12 (2024-10-15)

Bug Fixes

4.21.11 (2024-10-15)

Bug Fixes

4.21.10 (2024-10-15)

4.21.9 (2024-10-14)

4.21.8 (2024-10-12)

Bug Fixes

4.21.7 (2024-10-08)

Bug Fixes

  • use brotli instead of gzip (9d78254)

4.21.6 (2024-10-08)

Bug Fixes

4.21.5 (2024-10-08)

4.21.4 (2024-10-08)

Bug Fixes

  • add version in the command intro (a99ec6c)

4.21.3 (2024-10-08)

Bug Fixes

  • make checksum like we always do (30e9ce5)

4.21.2 (2024-10-07)

Bug Fixes

4.21.1 (2024-10-07)

Bug Fixes

4.21.0 (2024-10-07)

Features

  • use new domain for files (36666f6)

4.20.8 (2024-10-07)

4.20.7 (2024-10-03)

Bug Fixes

4.20.6 (2024-10-03)

Bug Fixes

  • better error message when issue (369e8a3)

4.20.5 (2024-10-02)

Bug Fixes

  • add finish step for TUS (b822cc8)

4.20.4 (2024-10-01)

4.20.3 (2024-10-01)

4.20.2 (2024-10-01)

Bug Fixes

4.20.1 (2024-10-01)

Bug Fixes

  • make partial percent by number of file instead of size for now (b1d2bb5)

4.20.0 (2024-10-01)

Features

  • add partial thanks to TUS (8e55c2a)

4.19.2 (2024-09-30)

Bug Fixes

4.19.1 (2024-09-29)

Bug Fixes

4.19.0 (2024-09-29)

Features

4.18.2 (2024-09-25)

Bug Fixes

4.18.1 (2024-09-25)

Bug Fixes

4.18.0 (2024-09-25)

Features

4.17.0 (2024-09-23)

Features

  • add json output for encryptionv2 (23de60e)

4.16.6 (2024-09-23)

Bug Fixes

4.16.5 (2024-09-23)

4.16.4 (2024-09-19)

Bug Fixes

4.16.3 (2024-09-17)

Bug Fixes

4.16.2 (2024-09-16)

4.16.1 (2024-09-11)

Bug Fixes

4.16.0 (2024-09-10)

Features

  • add in the CLI to ask file path if not found for main (5a7ed1d)

4.15.2 (2024-09-10)

Bug Fixes

4.15.1 (2024-09-09)

4.15.0 (2024-09-08)

Features

  • add 'encrypted-checksum' flag into upload (f40f9e4)

4.14.16 (2024-09-04)

Bug Fixes

4.14.15 (2024-09-03)

Bug Fixes

4.14.14 (2024-09-02)

4.14.13 (2024-08-27)

Bug Fixes

4.14.12 (2024-08-27)

Bug Fixes

  • lint and update packages (7a5bb2d)

4.14.11 (2024-08-27)

4.14.10 (2024-08-27)

4.14.9 (2024-08-27)

Bug Fixes

4.14.8 (2024-08-22)

4.14.7 (2024-08-22)

Bug Fixes

  • how setVersionInChannel (ba8cab0)

4.14.6 (2024-08-20)

Bug Fixes

4.14.5 (2024-08-20)

4.14.4 (2024-08-20)

4.14.3 (2024-08-20)

Bug Fixes

  • make clear diff in code (0dd825f)

4.14.2 (2024-08-17)

4.14.1 (2024-08-16)

4.14.0 (2024-08-16)

Features

  • auto setup options in cap config (aae3740)

4.13.34 (2024-08-16)

Bug Fixes

  • use in CLI new appID if present (feef04b)

4.13.33 (2024-08-12)

4.13.32 (2024-08-12)

4.13.31 (2024-08-06)

Bug Fixes

  • better message when delete bundle (8151f45)

4.13.30 (2024-08-06)

Bug Fixes

  • separate partial code in other file (5aced56)

4.13.29 (2024-08-06)

Bug Fixes

  • comment partial for lint (10b290d)

4.13.28 (2024-08-06)

Bug Fixes

  • disable partial for now as it lag on many users (9b297d5)

4.13.27 (2024-08-06)

Bug Fixes

4.13.26 (2024-08-06)

Bug Fixes

4.13.25 (2024-08-05)

4.13.24 (2024-08-04)

Bug Fixes

4.13.23 (2024-08-04)

Bug Fixes

4.13.22 (2024-08-03)

Bug Fixes

  • error message encryption (e95be76)

4.13.21 (2024-08-03)

Bug Fixes

4.13.20 (2024-08-03)

Bug Fixes

4.13.19 (2024-08-03)

4.13.18 (2024-08-03)

Bug Fixes

4.13.17 (2024-08-02)

4.13.16 (2024-08-02)

4.13.15 (2024-08-02)

4.13.14 (2024-07-31)

4.13.13 (2024-07-29)

4.13.12 (2024-07-29)

4.13.11 (2024-07-20)

Bug Fixes

  • use old dep for parsing config file (04d5c29)

4.13.10 (2024-07-19)

Bug Fixes

  • revert change who read the config file (6e40042)

4.13.9 (2024-07-18)

Bug Fixes

  • disable deploy until fixed (142e0a3)

4.13.8 (2024-07-18)

Bug Fixes

4.13.7 (2024-07-18)

Bug Fixes

4.13.6 (2024-07-18)

Bug Fixes

  • better error message to debug windows users (bc57433)

4.13.5 (2024-07-18)

Bug Fixes

4.13.4 (2024-07-18)

Bug Fixes

  • path for upload mono repo (e164253)

4.13.3 (2024-07-18)

Bug Fixes

  • try to optimize publish (3d32bb9)

4.13.2 (2024-07-18)

Bug Fixes

  • use esbuild with embed modules (2e582b5)

4.13.1 (2024-07-18)

Bug Fixes

4.13.0 (2024-07-18)

Features

Bug Fixes

4.12.15 (2024-07-18)

Bug Fixes

4.12.14 (2024-07-18)

4.12.13 (2024-07-17)

Bug Fixes

4.12.12 (2024-07-15)

4.12.11 (2024-07-14)

Bug Fixes

  • external missing session key (8fbee32)

4.12.10 (2024-07-12)

Bug Fixes

4.12.9 (2024-07-12)

4.12.8 (2024-07-12)

4.12.7 (2024-07-12)

4.12.6 (2024-07-09)

Bug Fixes

  • remove error if no checksum found it's normal (41c211a)

4.12.5 (2024-07-09)

Bug Fixes

4.12.4 (2024-07-09)

Bug Fixes

  • make better compression on windows (dc93876)
  • use custom function to read recurst dir to fix windows issue (cbd2217)
  • version error (6ec20c7)

4.12.3 (2024-07-08)

Bug Fixes

  • getLocalDepenencies for windows (ca7bf4e)

4.12.2 (2024-07-08)

Bug Fixes

4.12.1 (2024-07-08)

Bug Fixes

4.12.0 (2024-07-08)

Features

  • add check for duplicated checksum (0204005)

4.11.7 (2024-07-01)

4.11.6 (2024-06-28)

4.11.5 (2024-06-23)

Bug Fixes

  • remove old package and use only clack (f243b9e)

4.11.4 (2024-06-23)

Bug Fixes

4.11.3 (2024-06-23)

Bug Fixes

  • use better win detection (2020dc1)

4.11.2 (2024-06-23)

Bug Fixes

4.11.1 (2024-06-23)

Bug Fixes

  • use JSZip for all windows (c5bff16)

4.11.0 (2024-06-23)

Features

4.10.77 (2024-06-23)

4.10.76 (2024-06-22)

4.10.75 (2024-06-21)

Bug Fixes

  • delete ios setup for now as we cannot manage to make it work easy (cadec4e)

4.10.74 (2024-06-21)

Bug Fixes

4.10.73 (2024-06-21)

Bug Fixes

4.10.72 (2024-06-21)

Bug Fixes

4.10.71 (2024-06-21)

Bug Fixes

4.10.70 (2024-06-21)

Bug Fixes

4.10.69 (2024-06-21)

Bug Fixes

4.10.68 (2024-06-21)

Bug Fixes

4.10.67 (2024-06-21)

Bug Fixes

4.10.66 (2024-06-21)

Bug Fixes

  • try different way to init swift and do it first step to test (26d32ea)

4.10.65 (2024-06-21)

Bug Fixes

4.10.64 (2024-06-21)

Bug Fixes

  • add test in swift as well (9dfd7e6)

4.10.63 (2024-06-21)

Bug Fixes

4.10.62 (2024-06-21)

Bug Fixes

4.10.61 (2024-06-21)

Bug Fixes

4.10.60 (2024-06-21)

Bug Fixes

4.10.59 (2024-06-21)

Bug Fixes

4.10.58 (2024-06-21)

Bug Fixes

4.10.57 (2024-06-21)

Bug Fixes

4.10.56 (2024-06-21)

Bug Fixes

4.10.55 (2024-06-21)

Bug Fixes

  • try to force correct path (c639d9e)

4.10.54 (2024-06-21)

Bug Fixes

  • test the new path system (73551e9)

4.10.53 (2024-06-21)

Bug Fixes

  • update test to fail like updater (4a9a75d)

4.10.52 (2024-06-21)

Bug Fixes

4.10.51 (2024-06-21)

Bug Fixes

4.10.50 (2024-06-21)

Bug Fixes

4.10.49 (2024-06-21)

Bug Fixes

  • disable on build + add back java (e131c54)

4.10.48 (2024-06-21)

Bug Fixes

4.10.47 (2024-06-21)

Bug Fixes

4.10.46 (2024-06-21)

Bug Fixes

4.10.45 (2024-06-21)

Bug Fixes

4.10.44 (2024-06-21)

Bug Fixes

4.10.43 (2024-06-21)

Bug Fixes

4.10.42 (2024-06-21)

Bug Fixes

4.10.41 (2024-06-21)

Bug Fixes

4.10.40 (2024-06-21)

Bug Fixes

4.10.39 (2024-06-21)

Bug Fixes

  • add missing java file and control test linux (bcb0141)

4.10.38 (2024-06-21)

Bug Fixes

  • try artifact v4 and add java command (1ba8907)

4.10.37 (2024-06-21)

4.10.36 (2024-06-21)

Bug Fixes

  • add other file for better test (9757a93)
  • get info with zipinfo (5d7ecdc)

4.10.35 (2024-06-21)

Bug Fixes

4.10.34 (2024-06-21)

Bug Fixes

4.10.33 (2024-06-21)

Bug Fixes

4.10.32 (2024-06-21)

Bug Fixes

4.10.31 (2024-06-21)

Bug Fixes

4.10.30 (2024-06-21)

Bug Fixes

4.10.29 (2024-06-21)

4.10.28 (2024-06-20)

Bug Fixes

4.10.27 (2024-06-20)

Bug Fixes

4.10.26 (2024-06-20)

Bug Fixes

4.10.25 (2024-06-20)

Bug Fixes

4.10.24 (2024-06-19)

Bug Fixes

  • add message for multipart (db2fc69)

4.10.23 (2024-06-19)

4.10.22 (2024-06-19)

Bug Fixes

  • disable windows powershell (83d0c6a)

4.10.21 (2024-06-18)

Bug Fixes

4.10.20 (2024-06-18)

Bug Fixes

4.10.19 (2024-06-18)

4.10.18 (2024-06-17)

Bug Fixes

  • add log message for the user (e8b7437)

4.10.17 (2024-06-13)

Bug Fixes

4.10.16 (2024-06-13)

Bug Fixes

  • issue auto delete failed (62fef1d)

4.10.15 (2024-06-12)

Bug Fixes

  • remove crc32 from presigned (fb1c6b6)

4.10.14 (2024-06-09)

Bug Fixes

  • better report error in init command (af3dbf9)

4.10.13 (2024-06-08)

Bug Fixes

4.10.12 (2024-06-07)

Bug Fixes

4.10.11 (2024-06-05)

Bug Fixes

  • rename method to get id (60fa77b)

4.10.10 (2024-06-03)

Bug Fixes

4.10.9 (2024-06-03)

Bug Fixes

4.10.8 (2024-05-27)

Bug Fixes

4.10.7 (2024-05-27)

Bug Fixes

  • add snag for multipart upload (eef8d38)

4.10.6 (2024-05-24)

Bug Fixes

4.10.5 (2024-05-21)

Bug Fixes

  • issue returning channel list (aee3ed5)

4.10.4 (2024-05-15)

4.10.3 (2024-05-14)

Bug Fixes

4.10.2 (2024-05-14)

Bug Fixes

4.10.1 (2024-05-14)

Bug Fixes

  • add missing new userID in logsnag (0dcf806)

4.10.0 (2024-05-14)

Features

  • allow get userId from CLI (2f3857e)

4.9.3 (2024-05-14)

4.9.2 (2024-05-13)

Bug Fixes

4.9.1 (2024-05-13)

Bug Fixes

4.9.0 (2024-05-13)

Features

  • search for root dir for mono repo (1581130)

4.8.3 (2024-05-13)

Bug Fixes

  • issue find-package-manager (66667cf)

4.8.2 (2024-05-11)

4.8.1 (2024-05-11)

4.8.0 (2024-05-10)

Features

  • auto select package manager and runner (94f8bef)

4.7.0 (2024-05-10)

Features

  • add upload time + correct PM name (af61757)

4.6.3 (2024-05-10)

Bug Fixes

4.6.2 (2024-05-08)

Bug Fixes

  • better handle nuxt and nextjs (7f9c0a0)

4.6.1 (2024-05-08)

Bug Fixes

  • force encryption when init and exist (f6be928)

4.6.0 (2024-05-08)

Features

  • allow set dev device and emulators (bdb3517)
  • Show migration for v5 apps, but allow work (df4de91)

4.5.0 (2024-05-02)

Features

  • remove old code and cleanup eslint (963a50d)

4.4.5 (2024-04-25)

Bug Fixes

  • better message recomendation for CLI (23aad3e)

4.4.4 (2024-04-23)

Bug Fixes

  • use nodejs 18 compat version (06c478a)

4.4.3 (2024-04-23)

Bug Fixes

  • make node18 as min version (d052828)

4.4.2 (2024-04-23)

Bug Fixes

  • downgrade min version to node 18 (b2da10b)

4.4.1 (2024-04-21)

Bug Fixes

4.4.0 (2024-04-21)

Features

  • add auto delete Failed Versions upload (8ba691c)

4.3.6 (2024-04-21)

Bug Fixes

4.3.5 (2024-04-18)

4.3.4 (2024-04-17)

4.3.3 (2024-04-16)

4.3.2 (2024-04-14)

4.3.1 (2024-04-14)

4.3.0 (2024-03-31)

Features

4.2.12 (2024-03-29)

Bug Fixes

4.2.11 (2024-03-25)

4.2.10 (2024-03-25)

4.2.9 (2024-03-23)

Bug Fixes

4.2.8 (2024-03-23)

4.2.7 (2024-03-23)

Bug Fixes

4.2.6 (2024-03-23)

Bug Fixes

4.2.5 (2024-03-22)

Bug Fixes

4.2.4 (2024-03-22)

Bug Fixes

4.2.3 (2024-03-12)

Bug Fixes

4.2.2 (2024-03-11)

4.2.1 (2024-03-08)

Bug Fixes

4.2.0 (2024-03-04)

Features

  • allow ussage of version in Capcitor config instead of package.json (7b2084a)

4.1.0 (2024-02-27)

Features

4.0.14 (2024-02-27)

4.0.13 (2024-02-26)

Bug Fixes

  • add back lint with same config as usual (8542260)
  • formating with clack of doctor command (4bd7182)

4.0.12 (2024-02-26)

4.0.11 (2024-02-25)

Bug Fixes

  • deploy new is_good_plan_v5 (38bc592)

4.0.10 (2024-02-24)

Bug Fixes

4.0.9 (2024-02-23)

Bug Fixes

4.0.8 (2024-02-19)

Bug Fixes

  • prevent usage of default appId (8fa2002)

4.0.7 (2024-02-18)

Bug Fixes

4.0.6 (2024-02-18)

Bug Fixes

4.0.5 (2024-02-18)

Bug Fixes

4.0.4 (2024-02-18)

Bug Fixes

4.0.3 (2024-02-18)

Bug Fixes

4.0.2 (2024-02-17)

Bug Fixes

  • add log when using custom supabase (8a22378)

4.0.1 (2024-02-10)

Bug Fixes

4.0.0 (2024-02-10)

⚠ BREAKING CHANGES

  • use node 20

Features

3.14.71 (2024-02-10)

3.14.70 (2024-02-10)

Bug Fixes

3.14.69 (2024-02-10)

Bug Fixes

3.14.68 (2024-02-10)

Bug Fixes

3.14.67 (2024-02-10)

Bug Fixes

3.14.66 (2024-02-10)

Bug Fixes

3.14.65 (2024-02-08)

Bug Fixes

3.14.64 (2024-02-06)

3.14.63 (2024-02-02)

3.14.62 (2024-02-01)

3.14.61 (2024-01-22)

3.14.60 (2024-01-15)

3.14.59 (2024-01-08)

3.14.58 (2024-01-01)

3.14.57 (2023-12-30)

Bug Fixes

3.14.56 (2023-12-29)

3.14.51-alpha.0 (2023-12-02)

3.14.44-alpha.1 (2023-11-23)

3.14.55 (2023-12-29)

3.14.54 (2023-12-11)

3.14.53 (2023-12-11)

3.14.52 (2023-12-04)

3.14.51 (2023-12-04)

3.14.50 (2023-11-27)

3.14.49 (2023-11-27)

Bug Fixes

3.14.48 (2023-11-27)

Bug Fixes

3.14.47 (2023-11-27)

Bug Fixes

3.14.46 (2023-11-27)

3.14.45 (2023-11-23)

Bug Fixes

3.14.44 (2023-11-23)

Bug Fixes

3.14.44-alpha.0 (2023-11-20)

3.0.0-alpha.3 (2023-02-20)

3.14.43 (2023-11-17)

3.14.42 (2023-11-13)

Bug Fixes

  • message to look less problematic (c641706)

3.14.41 (2023-11-13)

3.14.40 (2023-11-13)

3.14.39 (2023-11-11)

3.14.38 (2023-11-11)

Bug Fixes

  • deps: update dependency @capacitor/cli to v5.5.1 (080b120)

3.14.37 (2023-11-11)

3.14.36 (2023-11-11)

3.14.35 (2023-11-10)

3.14.34 (2023-11-07)

3.14.33 (2023-11-02)

3.14.32 (2023-11-02)

Bug Fixes

  • getRemoteDepenencies use appID (dac09a5)

3.14.31 (2023-11-02)

Bug Fixes

3.14.30 (2023-11-02)

Bug Fixes

3.14.29 (2023-11-02)

Bug Fixes

  • issue reading file in certain os (d7dca17)

3.14.28 (2023-11-01)

3.14.27 (2023-10-31)

Bug Fixes

  • is_app_owner in the CLI (5440fd4)

3.14.26 (2023-10-31)

Bug Fixes

  • add appId on list app command (2b36ede)

3.14.25 (2023-10-31)

Bug Fixes

3.14.24 (2023-10-31)

3.14.23 (2023-10-30)

Bug Fixes

  • init issue with core version (1e3971b)

3.14.22 (2023-10-30)

Bug Fixes

  • cli issue not cheking app right properly (0f9a80b)
  • error messages format (c976d49)

3.14.21 (2023-10-23)

3.14.20 (2023-10-20)

Bug Fixes

  • use remote config instead of in code config (9c2f3ad)

3.14.19 (2023-10-16)

3.14.18 (2023-10-16)

Bug Fixes

  • deps: update dependency commander to v11.1.0 (e18b072)

3.14.17 (2023-10-16)

3.14.16 (2023-10-13)

Bug Fixes

  • deps: update dependency @capacitor/cli to v5.5.0 (1d7d46c)

3.14.15 (2023-10-13)

3.14.14 (2023-10-13)

3.14.13 (2023-10-12)

3.14.12 (2023-10-12)

3.14.11 (2023-10-12)

3.14.10 (2023-10-12)

3.14.9 (2023-10-12)

3.14.8 (2023-10-12)

Bug Fixes

3.14.7 (2023-10-12)

Bug Fixes

3.14.6 (2023-10-12)

Bug Fixes

3.14.5 (2023-10-12)

3.14.4 (2023-10-09)

Bug Fixes

  • add node version in doctor command (a69018f)

3.14.3 (2023-10-06)

Bug Fixes

3.14.2 (2023-09-29)

Bug Fixes

  • prevent v4 users to install capgo (e0342c3)

3.14.1 (2023-09-27)

3.14.0 (2023-09-27)

Features

  • add index check in upload (09bcecc)

3.13.31 (2023-09-20)

Bug Fixes

3.13.30 (2023-09-19)

Bug Fixes

3.13.29 (2023-09-19)

Bug Fixes

  • comment old cloudflare for now (e7f0b26)

3.13.28 (2023-09-19)

3.13.27 (2023-09-19)

Bug Fixes

3.13.26 (2023-09-19)

Bug Fixes

  • missing ivSessionKey arg (6d079f5)

3.13.25 (2023-09-19)

Bug Fixes

3.13.24 (2023-09-19)

Bug Fixes

  • stop trial warning when paying (ec05657)

3.13.23 (2023-09-19)

3.13.22 (2023-09-19)

3.13.21 (2023-09-19)

3.13.20 (2023-09-18)

3.13.19 (2023-09-18)

3.13.18 (2023-09-18)

3.13.17 (2023-09-17)

3.13.16 (2023-09-06)

Bug Fixes

3.13.15 (2023-09-05)

Bug Fixes

3.13.14 (2023-08-30)

3.13.13 (2023-08-29)

Bug Fixes

3.13.12 (2023-08-29)

Bug Fixes

3.13.11 (2023-08-28)

3.13.10 (2023-08-26)

Bug Fixes

3.13.9 (2023-08-26)

3.13.8 (2023-08-24)

3.13.7 (2023-08-24)

3.13.6 (2023-08-23)

Bug Fixes

3.13.5 (2023-08-21)

3.13.4 (2023-08-17)

3.13.3 (2023-08-17)

Bug Fixes

3.13.2 (2023-08-17)

Bug Fixes

  • CLI save retention in secs (19fbb8e)

3.13.1 (2023-08-17)

Bug Fixes

3.13.0 (2023-08-17)

Features

  • added option to set bundle retention on app (6378bd1)

3.12.7 (2023-08-17)

Bug Fixes

3.12.6 (2023-08-11)

Bug Fixes

3.12.5 (2023-08-10)

Bug Fixes

3.12.4 (2023-07-27)

3.12.3 (2023-07-27)

Bug Fixes

  • behavior cleanup command (1ffffc2)

3.12.2 (2023-07-24)

Bug Fixes

  • add deviceId for debug command (99c235b)

3.12.1 (2023-07-04)

Bug Fixes

3.12.0 (2023-07-03)

Features

3.11.7 (2023-06-27)

Bug Fixes

  • catch better errors uploadUrl (f1a0066)

3.11.6 (2023-06-26)

Bug Fixes

3.11.5 (2023-06-23)

Bug Fixes

3.11.4 (2023-06-23)

Bug Fixes

  • make error when use set channel with wrong key (8b9380c)

3.11.3 (2023-06-23)

Bug Fixes

3.11.2 (2023-06-23)

Bug Fixes

3.11.1 (2023-06-22)

Bug Fixes

3.11.0 (2023-06-21)

Features

  • use new direct upload ! (57ab2b9)

Bug Fixes

3.10.21 (2023-06-21)

Bug Fixes

3.10.20 (2023-05-24)

Bug Fixes

  • deps: update dependency @capacitor/cli to v5 (e88af39)

3.10.19 (2023-05-24)

Bug Fixes

  • deps: update dependency cloudflared to ^0.4.0 (48b5d82)
  • upgrade cloudflared from 0.3.5 to 0.4.0 (deaf8d6)

3.10.18 (2023-05-22)

3.10.17 (2023-05-17)

Bug Fixes

  • storage_provider as external when external (216bd11)

3.10.16 (2023-05-15)

3.10.15 (2023-05-12)

Bug Fixes

  • deps: update dependency @capacitor/cli to v4.8.0 (affafb9)

3.10.14 (2023-05-12)

3.10.13 (2023-05-12)

3.10.12 (2023-05-11)

3.10.11 (2023-05-11)

3.10.10 (2023-04-25)

Bug Fixes

  • remove deprecated package (117ec69)

3.10.9 (2023-04-24)

Bug Fixes

3.10.8 (2023-04-24)

Bug Fixes

3.10.7 (2023-04-24)

Bug Fixes

3.10.6 (2023-04-23)

Bug Fixes

3.10.5 (2023-04-23)

Bug Fixes

3.10.4 (2023-04-23)

3.10.3 (2023-04-23)

Bug Fixes

3.10.2 (2023-04-15)

Bug Fixes

3.10.1 (2023-04-12)

Bug Fixes

3.10.0 (2023-04-12)

Features

  • use clack everywhere to prompt (8224ba4)

3.9.2 (2023-04-12)

Bug Fixes

3.9.1 (2023-04-12)

Bug Fixes

3.9.0 (2023-04-10)

Features

3.8.5 (2023-04-04)

Bug Fixes

3.8.4 (2023-03-23)

Bug Fixes

3.8.3 (2023-03-23)

Bug Fixes

3.8.2 (2023-03-23)

Bug Fixes

3.8.1 (2023-03-23)

3.8.0 (2023-03-23)

Features

3.7.1 (2023-03-22)

Bug Fixes

3.7.0 (2023-03-22)

Features

  • add the wait log system (41f1f04)

3.6.7 (2023-03-20)

3.6.6 (2023-03-10)

Bug Fixes

3.6.5 (2023-03-07)

Bug Fixes

3.6.4 (2023-03-07)

Bug Fixes

  • add snag for new onboarding (263fcbe)

3.6.3 (2023-03-07)

Bug Fixes

3.6.2 (2023-03-06)

Bug Fixes

  • issue get-latest-version with multi npmrc (0d83df0)

3.6.1 (2023-03-05)

Bug Fixes

3.6.0 (2023-03-05)

Features

3.5.6 (2023-03-05)

Bug Fixes

  • add deprecated notice to old upload command (f929782)

3.5.5 (2023-03-04)

Bug Fixes

  • check dist path before upload (80739cf)

3.5.4 (2023-03-02)

Bug Fixes

3.5.3 (2023-03-01)

Bug Fixes

  • init modify the message (89648e3)

3.5.2 (2023-03-01)

Bug Fixes

3.5.1 (2023-03-01)

Bug Fixes

  • init find without comma (8b2dd12)

3.5.0 (2023-03-01)

Features

3.4.1 (2023-03-01)

Bug Fixes

3.4.0 (2023-03-01)

Features

  • allow end-to-end in init (5b2bae3)

3.3.0 (2023-03-01)

Features

  • add unlink command and prompts (a178363)

3.2.0 (2023-02-28)

Features

  • better init, and upload auto increment version if not found (cec556d)

3.1.0 (2023-02-28)

Features

3.0.14 (2023-02-27)

3.0.13 (2023-02-27)

3.0.12 (2023-02-22)

Bug Fixes

3.0.11 (2023-02-20)

3.0.10 (2023-02-20)

Bug Fixes

3.0.9 (2023-02-20)

Bug Fixes

3.0.8 (2023-02-20)

Bug Fixes

3.0.7 (2023-02-20)

Bug Fixes

3.0.6 (2023-02-20)

Bug Fixes

  • thorw error if no key found (898e8d1)

3.0.5 (2023-02-20)

Bug Fixes

3.0.4 (2023-02-20)

Bug Fixes

3.0.3 (2023-02-20)

Bug Fixes

3.0.2 (2023-02-20)

Bug Fixes

  • deps: update dependency cli-progress to v3.12.0 (da4d35b)

3.0.1 (2023-02-20)

3.0.0 (2023-02-20)

Bug Fixes

3.0.0-alpha.2 (2023-02-10)

Bug Fixes

3.0.0-alpha.1 (2023-02-04)

⚠ BREAKING CHANGES

  • trigger ci

Bug Fixes

2.5.10-alpha.0 (2023-02-04)

Bug Fixes

3.0.0-alpha.0 (2023-02-03)

⚠ BREAKING CHANGES

  • add new commands and refactor for sub commands

Features

  • add new commands and refactor for sub commands (c3aab3a)

3.0.0-alpha.2 (2023-02-10)

Bug Fixes

3.0.0-alpha.1 (2023-02-04)

⚠ BREAKING CHANGES

  • trigger ci

Bug Fixes

2.5.10-alpha.0 (2023-02-04)

Bug Fixes

3.0.0-alpha.0 (2023-02-03)

⚠ BREAKING CHANGES

  • add new commands and refactor for sub commands

Features

  • add new commands and refactor for sub commands (c3aab3a)

3.0.0-alpha.1 (2023-02-04)

⚠ BREAKING CHANGES

  • trigger ci

Bug Fixes

2.5.10-alpha.0 (2023-02-04)

2.6.1 (2023-02-10)

Bug Fixes

2.6.0 (2023-02-10)

Features

2.5.12 (2023-02-06)

Bug Fixes

  • deps: update dependency @capacitor/cli to v4.6.3 (fc3be28)

2.5.11 (2023-02-06)

2.5.10 (2023-02-04)

Bug Fixes

2.5.9 (2023-02-04)

Bug Fixes

2.5.8 (2023-01-30)

2.5.7 (2023-01-30)

2.5.6 (2023-01-28)

Bug Fixes

2.5.5 (2023-01-27)

Bug Fixes

2.5.4 (2023-01-27)

Bug Fixes

2.5.3 (2023-01-23)

2.5.2 (2023-01-23)

Bug Fixes

  • add blog on optimize assets (ebcf9c4)

2.5.1 (2023-01-23)

Bug Fixes

  • deps: update dependency @capacitor/cli to v4.6.2 (c34685f)

2.5.0 (2023-01-17)

Features

  • add create delete channel (695ea3b)

2.4.7 (2023-01-16)

2.4.6 (2023-01-16)

2.4.5 (2023-01-09)

2.4.4 (2023-01-09)

2.4.3 (2023-01-08)

Bug Fixes

2.4.2 (2023-01-08)

Bug Fixes

  • error message set and upload (dbfbed6)

2.4.1 (2023-01-05)

Bug Fixes

  • disable method if app not exist (a05a004)

2.4.0 (2023-01-04)

Features

  • force nodejs engine to be 14 (96d86d1)

Bug Fixes

2.3.27 (2023-01-04)

2.3.26 (2023-01-04)

2.3.25 (2023-01-02)

2.3.24 (2023-01-02)

2.3.23 (2022-12-27)

Bug Fixes

  • login missing try catch (a470e16)

2.3.22 (2022-12-26)

Bug Fixes

  • make cache longer for upload (6497477)

2.3.21 (2022-12-26)

2.3.20 (2022-12-19)

2.3.19 (2022-12-19)

Bug Fixes

  • deps: update dependency @capacitor/cli to v4.6.1 (910d864)

2.3.18 (2022-12-17)

Bug Fixes

2.3.17 (2022-12-17)

Bug Fixes

  • better message app exist (1718932)

2.3.16 (2022-12-17)

Bug Fixes

  • cli detect if app exist (0cb964e)

2.3.15 (2022-12-12)

2.3.14 (2022-12-12)

2.3.13 (2022-12-11)

Bug Fixes

  • allow display IvSession in upload (63773cb)

2.3.12 (2022-12-11)

Bug Fixes

2.3.11 (2022-12-07)

Bug Fixes

2.3.10 (2022-12-07)

Bug Fixes

2.3.9 (2022-12-07)

Bug Fixes

  • cleanup stop use single (edea602)

2.3.8 (2022-12-07)

Bug Fixes

2.3.7 (2022-12-06)

Bug Fixes

  • use right log method with multibar (40df752)

2.3.6 (2022-12-06)

Bug Fixes

  • add message for encryption (696adb5)

2.3.5 (2022-12-06)

Bug Fixes

2.3.4 (2022-12-06)

Bug Fixes

2.3.3 (2022-12-06)

Bug Fixes

2.3.2 (2022-12-06)

Bug Fixes

2.3.1 (2022-12-06)

Bug Fixes

2.3.0 (2022-12-06)

Features

  • better list display and allow cleanup without bundle (a01cc4a)

2.2.10 (2022-12-06)

Bug Fixes

2.2.9 (2022-12-06)

Bug Fixes

2.2.8 (2022-12-03)

Bug Fixes

  • deps: update dependency @capacitor/cli to v4.6.0 (2d683cf)

2.2.7 (2022-12-03)

Bug Fixes

2.2.6 (2022-12-03)

2.2.5 (2022-12-03)

Bug Fixes

  • better instruction for key storing (06805c4)

2.2.4 (2022-12-03)

Bug Fixes

2.2.3 (2022-12-03)

Bug Fixes

2.2.2 (2022-12-03)

Bug Fixes

2.2.1 (2022-12-03)

Bug Fixes

2.2.0 (2022-12-03)

Features

  • add key save command for CLI and document (7fc5fd2)

2.1.12 (2022-12-02)

Bug Fixes

2.1.11 (2022-12-02)

Bug Fixes

2.1.10 (2022-12-02)

Bug Fixes

2.1.9 (2022-12-02)

Bug Fixes

2.1.8 (2022-12-02)

Bug Fixes

2.1.7 (2022-12-02)

Bug Fixes

  • AES use size allowed on android (42bc076)

2.1.6 (2022-12-02)

Bug Fixes

  • checksum do after encryption (8ca3f5b)

2.1.5 (2022-12-01)

2.1.4 (2022-12-01)

Bug Fixes

2.1.3 (2022-12-01)

Bug Fixes

2.1.2 (2022-11-30)

2.1.1 (2022-11-30)

Bug Fixes

  • deps: update dependency fs-extra to v11 (b011994)

2.1.0 (2022-11-25)

Features

2.0.1 (2022-11-24)

Bug Fixes

  • encode use AES to encode the file (8f6524e)

2.0.0 (2022-11-24)

⚠ BREAKING CHANGES

  • rename version in bundle to remove arg conflict

Features

  • add --version (66a8601)
  • add add feature (322e340)
  • add all channel option in set method (20eac06)
  • add channel system (f11b86a)
  • add checksum upload (e266f01)
  • add delete app method (d7d211c)
  • add encrypted bool to app_version (db424a0)
  • Add force option to cleanup command #26 (6a011d1)
  • add front lock if not paying (224c879)
  • add hard limit of big app, max 30mb (146fde8)
  • add is_trial alert (e7264f9)
  • add key gen method and decode (6d3f9c4)
  • add latest option to restore the old behavior (55c03bc)
  • add login system (ace1ec5)
  • add logsnag (c467070)
  • allow decode from base64 privateKey (4b79567)
  • allow external url for upload (03041a3)
  • allow format switch (ccb9c67)
  • allow set chanel state (bdc67e8)
  • convert to supabase edge functions (9d59ed1)
  • make upload work (5d4950b)
  • remove upload limit (0c80652)
  • rename version in bundle to remove arg conflict (1a7d477)
  • update package and allow delete only one version (8c0ad83)
  • use supbase function instead of netlify to handle timeout (14a19de)

Bug Fixes

1.6.2 (2022-11-24)

Fix

  • better clean privatekey

1.6.1 (2022-11-24)

Fix

  • key generation

1.6.0 (2022-11-23)

Feat

  • add encrypted bool to app_version

1.5.1 (2022-11-23)

Fix

  • rename var to privateKey in decode

1.5.0 (2022-11-23)

Feat

  • allow decode from base64 privateKey

1.4.4 (2022-11-23)

Fix

  • make key function use less deps + make config simpler

1.4.3 (2022-11-22)

Fix

  • return app versions ordered by id

1.4.2 (2022-11-22)

Fix

  • use latest webpack cli

1.4.1 (2022-11-21)

Fix

  • upload without key

1.4.0 (2022-11-21)

Feat

  • add key gen method and decode

Fix

  • path

1.3.2 (2022-11-21)

Fix

  • error formating + better import

1.3.1 (2022-11-17)

Fix

  • better loggin

1.3.0 (2022-11-17)

Feat

  • Add force option to cleanup command #26

Fix

  • Keep is only removing the first version, not the given option. #25

1.2.3 (2022-11-17)

Fix

  • CLI command descriptions

1.2.2 (2022-11-17)

Fix

  • name function

1.2.1 (2022-11-16)

Fix

  • doc of cli

1.2.0 (2022-11-16)

Feat

  • add latest option to restore the old behavior

1.1.13 (2022-11-16)

Fix

  • readme add keep option

1.1.12 (2022-11-16)

Fix

  • code norm + add keep option

1.1.11 (2022-11-16)

Fix

  • message order

1.1.10 (2022-11-10)

Fix

  • types

1.1.9 (2022-11-09)

Fix

  • dep issue

1.1.8 (2022-11-09)

Fix

  • lock file

1.1.7 (2022-11-09)

Fix

  • pnpm version

1.1.6 (2022-11-09)

Fix

  • pnpm build

1.1.5 (2022-11-09)

Fix

  • build issue + update deps

1.1.4 (2022-11-09)

Fix

  • upgrade commander from 9.2.0 to 9.4.1

1.1.3 (2022-11-09)

Fix

  • upgrade cli-progress from 3.11.0 to 3.11.2

1.1.2 (2022-11-07)

Fix

  • update to new is_good_plan + use is_paying

1.1.1 (2022-11-07)

Fix

  • doc + require option

1.1.0 (2022-11-07)

Feat

  • add all channel option in set method

1.0.3 (2022-10-27)

Fix

  • redirection usage

1.0.2 (2022-10-05)

Fix

  • ensure bundle option recognized

1.0.1 (2022-10-05)

Fix

  • bundle option

1.0.0 (2022-10-05)

Feat

  • rename version in bundle to remove arg conflict

0.16.5 (2022-10-02)

Fix

  • semver issue use official regex

0.16.4 (2022-09-06)

Fix

  • remove dup code + fix list display

0.16.3 (2022-09-06)

Fix

  • CLI log

0.16.2 (2022-09-06)

Fix

  • validation issue semver

0.16.1 (2022-08-21)

Fix

  • readme

0.16.0 (2022-08-16)

Feat

  • remove upload limit

0.15.1 (2022-08-03)

Fix

  • logsnag

0.15.0 (2022-08-03)

Feat

  • add logsnag

0.14.0 (2022-08-02)

Feat

  • add checksum upload

0.13.14 (2022-07-30)

Fix

  • stats add automatic unknown and builtin version

0.13.13 (2022-07-22)

Fix

  • delete message

0.13.12 (2022-06-17)

Fix

  • remove install

0.13.11 (2022-06-17)

Fix

  • remove all --apikey usage

0.13.10 (2022-06-17)

Fix

  • usage instructions

0.13.9 (2022-06-17)

Fix

  • install command

0.13.8 (2022-06-17)

Fix

  • disable upload non semver

0.13.7 (2022-06-11)

Fix

  • addcheck exist_app_versions in upload

0.13.6 (2022-06-10)

Fix

  • typo

0.13.5 (2022-06-10)

Fix

  • issue with add and typo in text

0.13.4 (2022-06-09)

Fix

  • issue upload and set channel

0.13.3 (2022-06-07)

Fix

  • issue warning for upload

0.13.2 (2022-06-07)

Fix

  • remove useless comment

0.13.1 (2022-06-07)

Fix

  • latest version

0.13.0 (2022-06-06)

Feat

  • add front lock if not paying

0.12.1 (2022-06-01)

Fix

  • use hostWeb instead of hardcoded

0.12.0 (2022-06-01)

Feat

  • add is_trial alert

0.11.7 (2022-06-01)

Fix

  • upload issue

0.11.6 (2022-06-01)

Fix

  • host for prod

0.11.5 (2022-06-01)

Fix

  • for delete allow only all

0.11.4 (2022-06-01)

Fix

  • use the prod env

0.11.3 (2022-06-01)

Fix

  • message for delete version

0.11.2 (2022-06-01)

Fix

  • check if version exist

0.11.1 (2022-06-01)

Fix

  • add check if version exist

0.11.0 (2022-06-01)

Feat

  • add login system

0.10.1 (2022-06-01)

Fix

  • lint issue

0.10.0 (2022-06-01)

Fix

  • remove useless import
  • types
  • error message system
  • remove old deps
  • add back limit in upload
  • right issue in cli
  • upload issue
  • upload
  • add method
  • replace all console.error by program exit
  • lint + do set

0.9.0 (2022-05-24)

Fix

  • supa config
  • typing issues

Feat

  • convert to supabase edge functions

0.8.6 (2022-05-11)

Fix

  • typo

0.8.5 (2022-05-11)

Fix

  • lint issue

0.8.4 (2022-05-11)

Fix

  • issue for app less than 1mb

0.8.3 (2022-05-05)

Fix

  • remove debug comments
  • build and add auto retry

0.8.2 (2022-04-29)

Fix

  • external typo

0.8.1 (2022-04-29)

Fix

  • lint issue

0.8.0 (2022-04-29)

Feat

  • add --version

0.7.6 (2022-04-21)

Fix

  • use back binary

0.7.5 (2022-04-21)

Fix

  • remove useless

0.7.4 (2022-04-21)

Fix

  • upload use base64 to have more portable

0.7.3 (2022-04-20)

Fix

  • error mb limit

0.7.2 (2022-04-16)

Fix

  • tigger CI

0.7.1 (2022-04-16)

Fix

  • migrate to new npm namespace

0.7.0 (2022-04-08)

Feat

  • add hard limit of big app, max 30mb

0.6.1 (2022-04-08)

Fix

  • upload in new supabase method

0.6.0 (2022-04-06)

Feat

  • allow external url for upload

0.5.6 (2022-04-06)

Fix

  • mobile app url

0.5.5 (2022-04-05)

Fix

  • CLI messages

0.5.4 (2022-04-05)

Fix

  • upload multipart on new supabase function

0.5.3 (2022-04-05)

Fix

  • remove useless key for now

0.5.2 (2022-04-05)

Fix

  • revert to old upload logic

0.5.1 (2022-04-01)

Fix

  • put all env var in same file

0.5.0 (2022-04-01)

Feat

  • use supbase function instead of netlify to handle timeout

0.4.5 (2022-03-31)

Fix

  • npm listing

0.4.4 (2022-03-31)

Fix

  • issue in npm listing

0.4.3 (2022-03-24)

Fix

  • make channel optional

0.4.2 (2022-03-24)

Fix

  • remove version from mendatory field in set

0.4.1 (2022-03-24)

Fix

  • better logs for set

0.4.0 (2022-03-24)

Feat

  • allow set chanel state

0.3.1 (2022-03-17)

Fix

  • format upload

0.3.0 (2022-03-17)

Feat

  • allow format switch

0.2.1 (2022-03-16)

Fix

  • keywords npm

0.2.0 (2022-03-14)

Feat

  • update package and allow delete only one version
  • add channel system
  • add delete app method
  • add add feature
  • make upload work

Fix

  • delete logs
  • deploy new version builded
  • better error throw
  • cli throw error when upload fail
  • delete wrong log
  • publish right version
  • naming in doc and cli
  • pack version for deploy
  • url use new one
  • version number
  • upload for folder bigger than 6 mb
  • error message
  • test other error log
  • description
  • add default path for icon
  • upload allow channel
  • remove production option and use only channel
  • deploy to npm
  • host to service
  • upload
  • use appId as identifier
  • dep issue