Skip to content

v1.11.0-beta

Compare
Choose a tag to compare
@rub8n rub8n released this 18 May 22:36
· 315 commits to master since this release

This release introduces support for connecting to the CodePush server via a proxy, and includes a few improvements to the release-* commands. It is available now on NPM and can be installed by running npm i -g code-push-cli@latest.

New Features

  1. Proxied connections The code-push login command will now check for the presence of a system-wide proxy, and use it to connect to the CodePush server. If you don't want the CLI to use this behavior, you can specify the --noProxy parameter to connect directly to CodePush. Additionally, if you'd like to use a proxy connection to CodePush, which isn't configured system-wide, you can specify the --proxy parameter.

    # Ignore any system proxy settings
    code-push login --noProxy
    
    # Specify an explicit proxy server
    code-push login --proxy https://foo.bar:4563
  2. PhoneGap support The release-cordova command now supports automatically preparing/building your app if you have the PhoneGap CLI installed as opposed to requiring Cordova.

Bug Fixes

  1. The release-react command now correctly generates your JS bundle file on machines with case-sensitive file systems (e.g. Linux).