Releases: levibostian/decaf
Releases · levibostian/decaf
1.0.0-alpha.14
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
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
What's Changed
- fix circle ci issues when running in PR test mode by @levibostian in #73
Full Changelog: 1.0.0-alpha.11...1.0.0-alpha.12
1.0.0-alpha.11
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
What's Changed
- build: fix get latest release script to get latest release on development branch by @levibostian in #66
- build: fix alpha releases not being marked as latest. by @levibostian in #64
- go back to deno 2.3 by @levibostian in #67
- feat: tool is a cli. run it by passing in args. by @levibostian in #68
Full Changelog: 1.0.0-alpha.9...1.0.0-alpha.10
1.0.0-alpha.9
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
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
fix: simulated merge commit message matches GitHub
1.0.0-alpha.6
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
fix: bug where tool says there are zero commits even after simulated …