Skip to content

Commit 464bb38

Browse files
release: v1.1.0 (cloudflare#37)
1 parent e5d2c29 commit 464bb38

3 files changed

Lines changed: 42 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# `binary-install` changelog
2+
3+
## v1.1.0
4+
5+
### Features
6+
7+
- Adds an optional third argument to `new Binary` to configure the installation directory - @wighawag, PR #29
8+
9+
Example: `new Binary("my-binary", "https://example.com/my-binary.tar.gz", { "installDirectory": "/tmp/custom-dir" })`
10+
11+
### Maintenance
12+
13+
- Updates `binary-install-example` to download Intel binaries by default for Apple Silicon machines - @maxdeviant, PR #24
14+
15+
- Fix log suppression configuration - @maxdeviant, PR #23
16+
17+
This PR makes the `suppressLogs` behavior actually respected, before it was inverted and would log messages incorrectly.
18+
19+
- Wait for a complete install before running a binary - @wighawag, PR #28 fixes #27
20+
21+
Sometimes installation wouldn't complete before the binary was run, this PR rewrites the code to fully complete installation before continuing to execution.
22+
23+
- Fix up integration tests - @EverlastingBugstopper, PR #31
24+
25+
This relied on overriding `installDirectory` with the new feature in this release, thanks @wighawag!
26+
27+
## [<= v1.0.6]
28+
29+
There are no changelog entries pre-v1.1.0.

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/binary-install/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "binary-install",
3-
"version": "1.0.6",
3+
"version": "1.1.0",
44
"description": "Install binary applications via npm",
55
"main": "./index.js",
66
"engines": {

0 commit comments

Comments
 (0)