Skip to content

Commit

Permalink
Upgrade mkcert to version 1.4.2
Browse files Browse the repository at this point in the history
This now includes the separate arm64 binary.
  • Loading branch information
aral committed Nov 4, 2020
1 parent 4f837a7 commit 3882cb6
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [6.1.0] - 2020-11-04

### Changed

- Upgrade mkcert to version 1.4.2.
- Include separate mkcert arm64 build.

## [6.0.0] - 2020-11-03

### Changed
Expand Down
4 changes: 2 additions & 2 deletions lib/mkcertBinaryForThisMachine.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function mkcertBinaryForThisMachine (settingsPath) {

const architectureMap = {
arm: 'arm',
arm64: 'arm',
arm64: 'arm64',
x64: 'amd64'
}

Expand All @@ -30,7 +30,7 @@ function mkcertBinaryForThisMachine (settingsPath) {
if (platform === undefined) throw new Error('Unsupported platform', os.platform())
if (architecture === undefined) throw new Error('Unsupported architecture', os.arch())

const mkcertVersion = '1.4.1'
const mkcertVersion = '1.4.2'

const mkcertBinaryName = `mkcert-v${mkcertVersion}-${platform}-${architecture}`
const mkcertBinaryRelativePath = path.join('..', 'mkcert-bin', mkcertBinaryName)
Expand Down
Binary file removed mkcert-bin/mkcert-v1.4.1-darwin-amd64
Binary file not shown.
Binary file removed mkcert-bin/mkcert-v1.4.1-linux-amd64
Binary file not shown.
Binary file removed mkcert-bin/mkcert-v1.4.1-linux-arm
Binary file not shown.
Binary file removed mkcert-bin/mkcert-v1.4.1-windows-amd64.exe
Binary file not shown.
Binary file added mkcert-bin/mkcert-v1.4.2-darwin-amd64
Binary file not shown.
Binary file added mkcert-bin/mkcert-v1.4.2-linux-amd64
Binary file not shown.
Binary file added mkcert-bin/mkcert-v1.4.2-linux-arm
Binary file not shown.
Binary file added mkcert-bin/mkcert-v1.4.2-linux-arm64
Binary file not shown.
Binary file added mkcert-bin/mkcert-v1.4.2-windows-amd64.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@small-tech/auto-encrypt-localhost",
"version": "6.0.0",
"version": "6.1.0",
"description": "Automatically provisions and installs locally-trusted TLS certificates for Node.js https servers (including Express.js, etc.) using mkcert.",
"keywords": [
"mkcert",
Expand Down

0 comments on commit 3882cb6

Please sign in to comment.