Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: websockets/utf-8-validate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.0.6
Choose a base ref
...
head repository: websockets/utf-8-validate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.0.7
Choose a head ref
  • 4 commits
  • 2 files changed
  • 1 contributor

Commits on Oct 13, 2021

  1. Copy the full SHA
    24cdc59 View commit details
  2. Copy the full SHA
    f87fd0e View commit details
  3. Copy the full SHA
    a83ff97 View commit details
  4. [dist] 5.0.7

    lpinca committed Oct 13, 2021
    Copy the full SHA
    c3a9e8a View commit details
Showing with 2 additions and 13 deletions.
  1. +0 −10 .github/workflows/ci.yml
  2. +2 −3 package.json
10 changes: 0 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -41,10 +41,6 @@ jobs:
if:
matrix.node == 14 && matrix.os == 'macos-11' && startsWith(github.ref,
'refs/tags/')
- run: npm run prebuild-linux-arm
if:
matrix.node == 14 && matrix.os == 'ubuntu-18.04' &&
startsWith(github.ref, 'refs/tags/')
- uses: actions/upload-artifact@v2
if: matrix.node == 14 && startsWith(github.ref, 'refs/tags/')
with:
@@ -65,12 +61,6 @@ jobs:
- run:
tar -cvf "${{ steps.get_version.outputs.version
}}-darwin-x64+arm64.tar" -C "prebuilds/macos-11" .
- run:
tar -cvf "${{ steps.get_version.outputs.version }}-linux-arm.tar" -C
"prebuilds/ubuntu-18.04" linux-arm
- run:
tar -cvf "${{ steps.get_version.outputs.version }}-linux-arm64.tar" -C
"prebuilds/ubuntu-18.04" linux-arm64
- run:
tar -cvf "${{ steps.get_version.outputs.version }}-linux-x64.tar" -C
"prebuilds/ubuntu-18.04" linux-x64
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "utf-8-validate",
"version": "5.0.6",
"version": "5.0.7",
"description": "Check if a buffer contains valid UTF-8",
"main": "index.js",
"engines": {
@@ -10,7 +10,6 @@
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --strip",
"prebuild-darwin-x64+arm64": "prebuildify --arch x64+arm64 --napi --strip",
"prebuild-linux-arm": "prebuildify-cross -i linux-armv6 -i linux-armv7 -i linux-arm64 --napi --strip",
"test": "mocha"
},
"repository": {
@@ -27,7 +26,7 @@
},
"homepage": "https://github.com/websockets/utf-8-validate",
"dependencies": {
"node-gyp-build": "^4.2.0"
"node-gyp-build": "^4.3.0"
},
"devDependencies": {
"mocha": "^9.0.3",