Skip to content

Commit

Permalink
Merge branch 'release/1.1.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Jan 28, 2021
2 parents 3ec22b5 + 430545f commit cf77784
Show file tree
Hide file tree
Showing 6 changed files with 2,734 additions and 6,304 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [1.1.13] - 2021-01-28
### Changed
* Update dependencies

## [1.1.12] - 2021-01-16
### Changed
* Update dependencies
Expand Down Expand Up @@ -150,7 +154,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
* Deploy to Netlify
* Comment on GitHub PR

[Unreleased]: https://github.com/nwtgck/actions-netlify/compare/v1.1.12...HEAD
[Unreleased]: https://github.com/nwtgck/actions-netlify/compare/v1.1.13...HEAD
[1.1.13]: https://github.com/nwtgck/actions-netlify/compare/v1.1.12...v1.1.13
[1.1.12]: https://github.com/nwtgck/actions-netlify/compare/v1.1.11...v1.1.12
[1.1.11]: https://github.com/nwtgck/actions-netlify/compare/v1.1.10...v1.1.11
[1.1.10]: https://github.com/nwtgck/actions-netlify/compare/v1.1.9...v1.1.10
Expand Down
Binary file added dist/elf_cam_bg.wasm
Binary file not shown.
8,727 changes: 2,560 additions & 6,167 deletions dist/index.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/thread.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const handlers = {
.pipe(hasher)
.on('error', reject)
.on('finish', () => {
const {buffer} = hasher.read();
const {buffer} = new Uint8Array(hasher.read());
resolve({value: buffer, transferList: [buffer]});
});
}),
Expand All @@ -35,8 +35,8 @@ const handlers = {
hasher.update(input);
}

const hash = hasher.digest().buffer;
return {value: hash, transferList: [hash]};
const {buffer} = new Uint8Array(hasher.digest());
return {value: buffer, transferList: [buffer]};
}
};

Expand Down
Loading

5 comments on commit cf77784

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.