Skip to content

Releases: denoland/deployctl

1.9.1

04 Jan 10:58
7a82532

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.9.0...1.9.1

1.9.0

01 Dec 14:11
48c9c67

Choose a tag to compare

deployctl 1.9.0: token provisioning, config file, and much more!

With the 1.9.0 release of deployctl, manual access-token handling is a thing of
the past! 🎉 Starting with this release, if a token is not provided via arg or
env, a new one will be provisioned using an OAuth authorization flow.

Additionally, several other improvements have been introduced to simplify the
user experience of the tool: this version introduces support for a config file
where some settings like project, entrypoint, include and exclude can be
configured and shared. This config file is created at the end of a deployment if
it does not exist yet. It defaults to deno.json (integrating with the rest of
deno CLI configuration), and looks like this:

{
  ...
  "deploy": {
    "project": "6067570b-ee11-4e2e-b7df-692d11e049d5",
    "exclude": [],
    "include": [
      "main.ts",
      "deps.ts"
    ],
    "entrypoint": "main.ts"
  }
}

You can continue to perform deployments using the --entrypoint and --project
flags (which now will create the project automatically during deployment if it
does not exist). However, we have introduced some heuristics to try and make
deployments even more simple. Now deployctl guesses the project name of the
deployment based on the Git repository it is in (or directory name if the
deployment is not performed within a repository). Similarly, it guesses the
entrypoint by looking for files with common entrypoint names (main.ts,
src/main.ts, etc), so that, most of the time, having your code deployed around
the globe can be as simple as running:

deployctl deploy

What's Changed

New Contributors

Full Changelog: 1.8.2...1.9.0

1.8.2

12 Sep 06:49
b841621

Choose a tag to compare

What's Changed

Full Changelog: 1.8.1...1.8.2

1.8.1

21 Aug 16:54
fe510d9

Choose a tag to compare

What's Changed

Full Changelog: 1.8.0...1.8.1

1.8.0

28 Jul 03:47
3b83e58

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.7.0...1.8.0

1.7.0

13 Jun 15:57
736f6ed

Choose a tag to compare

What's Changed

Full Changelog: 1.6.0...1.7.0

1.6.0

15 May 05:01
3c0c2ab

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.5.0...1.6.0

1.5.0

16 Jan 15:07
fd713ff

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.4.0...1.5.0

1.4.0

31 Oct 13:23
7bd577a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.3.0...1.4.0

1.3.0

21 Jul 12:44
7f117f3

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.2.0...1.3.0