Skip to content

Releases: levibostian/decaf

1.0.0-alpha.14

16 Jul 12:58
Compare
Choose a tag to compare

What's Changed

  • feat: add optional details about the simulated deployment inside of PR by @levibostian in #76

Full Changelog: 1.0.0-alpha.13...1.0.0-alpha.14

1.0.0-alpha.13

12 Jul 11:53
Compare
Choose a tag to compare

What's Changed

  • feat: fix merge conflicts between alpha and latest branch to prevent failed deployments by @levibostian in #75
  • feat: new name! rename new-deployment-tool to decaf by @levibostian in #74

Full Changelog: 1.0.0-alpha.12...1.0.0-alpha.13

1.0.0-alpha.12

09 Jul 12:03
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.0-alpha.11...1.0.0-alpha.12

1.0.0-alpha.11

08 Jul 12:21
Compare
Choose a tag to compare

What's Changed

  • fix: some command line arguments not passed into the tool by @levibostian in #69
  • Circleci project setup by @levibostian in #70
  • refactor: make install script for CI to install binary faster by @levibostian in #71
  • fix: hide github actions debug logs for non-github action environments by @levibostian in #72

Full Changelog: 1.0.0-alpha.10...1.0.0-alpha.11

1.0.0-alpha.10

02 Jul 12:57
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.0-alpha.9...1.0.0-alpha.10

1.0.0-alpha.9

20 Jun 12:22
Compare
Choose a tag to compare

What's Changed

  • docs: how to run multiple merge types in test mode by @levibostian in #54
  • feat!: all step logic passed in from user by @levibostian in #56
  • feat: run git fetch before deployment steps to allow user to git checkout by @levibostian in #57
  • build: fix deployment of project unrelated history error when trying to merge code into latest branch by @levibostian in #58
  • build: fix deployment not able to create new github release by @levibostian in #60
  • build: trying again to fix getting gh release to work for deployment by @levibostian in #62
  • build: attempt 3 at getting gh release to work by @levibostian in #63

Full Changelog: 1.0.0-alpha.8...1.0.0-alpha.9

1.0.0-alpha.8

02 May 12:21
Compare
Choose a tag to compare
build: compile binary with deno 2.2 because potential bug found in 2.3

The CI server upgraded to v2.3.1 today over 2.2. The compiled binary hit a runtime exception and so as a fix, I am locking to 2.2 and reporting the bug.

Error I got:

error: Uncaught (in promise) NotCapable: Requires env access to "NODE_V8_COVERAGE", specify the required permissions during compilation using `deno compile --allow-env`
if (global.FinalizationRegistry && !process.env.NODE_V8_COVERAGE) {
                                                ^
    at Object.getEnv [as get] (ext:deno_os/30_os.js:124:10)
    at denoEnvGet (ext:deno_node/_process/process.ts:27:21)
    at Object.get (ext:deno_node/_process/process.ts:44:22)
    at Object.<anonymous> (file:///tmp/deno-compile-deployer/.deno_compile_node_modules/localhost/undici/5.28.4/lib/core/connect.js:18:49)
    at Object.<anonymous> (file:///tmp/deno-compile-deployer/.deno_compile_node_modules/localhost/undici/5.28.4/lib/core/connect.js:191:4)
    at Module._compile (node:module:745:34)
    at loadMaybeCjs (node:module:770:10)
    at Object.Module._extensions..js (node:module:755:12)
    at Module.load (node:module:662:32)
    at Module._load (node:module:534:12)

1.0.0-alpha.7

24 Apr 12:24
Compare
Choose a tag to compare
fix: simulated merge commit message matches GitHub

1.0.0-alpha.6

03 Apr 12:33
Compare
Choose a tag to compare
fix: tool creates and updates only 1 comment in PR

Expected behavior: tool only ever has 1 comment existing in a PR. It updates the same one over and over.
Actual behavior: 2+ comments exist in a PR.

1.0.0-alpha.5

02 Apr 12:46
f105879
Compare
Choose a tag to compare
fix: bug where tool says there are zero commits even after simulated …