Skip to content

Commit

Permalink
v11.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
flowzone-app[bot] committed Mar 8, 2024
1 parent 1e15988 commit f6c5d78
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 11 deletions.
32 changes: 25 additions & 7 deletions .versionbot/CHANGELOG.yml
@@ -1,3 +1,14 @@
- commits:
- subject: Bump node-gyp
hash: 147394c5b59fdc4a720eb65604debd6619e50216
body: ""
footer:
Change-type: patch
change-type: patch
author: Otavio Jacobi
version: 11.2.2
title: ""
date: 2024-03-08T11:29:37.555Z
- commits:
- subject: Replace deprecated flowzone input tests_run_on
hash: 961183e410973cee6824c665ad9239cd1bb49703
Expand Down Expand Up @@ -710,7 +721,8 @@
body: >-
Due to a bug caused by V8's change of build system, prebuilds
fail on older Node versions with `gyp: name 'build_v8_with_gn' is not defined`.
fail on older Node versions with `gyp: name 'build_v8_with_gn' is not
defined`.
This will only prebuild on Node 10 to avoid this issue, while still
Expand Down Expand Up @@ -1797,15 +1809,17 @@
In scripts/linux.sh line 25:
diskinfo=($(lsblk -b -d $device --output SIZE,RO,RM,MODEL | ignore_first_line))
diskinfo=($(lsblk -b -d $device --output SIZE,RO,RM,MODEL |
ignore_first_line))
^-- SC2086: Double quote to prevent globbing and word splitting.
In scripts/linux.sh line 29:
description=${diskinfo[@]:3}
^-- SC2124: Assigning an array to a string! Assign as array, or use * instead of @ to concatenate.
^-- SC2124: Assigning an array to a string! Assign as array, or use *
instead of @ to concatenate.
In scripts/linux.sh line 30:
Expand Down Expand Up @@ -1942,13 +1956,15 @@
In scripts/darwin.sh line 27:
size=`echo "$diskinfo" | sed 's/Disk Size/Total Size/g' | get_key "Total Size" | perl -n -e'/\((\d+)\sBytes\)/ && print $1'`
size=`echo "$diskinfo" | sed 's/Disk Size/Total Size/g' | get_key "Total
Size" | perl -n -e'/\((\d+)\sBytes\)/ && print $1'`
^-- SC2006: Use $(..) instead of legacy `..`.
In scripts/darwin.sh line 29:
mountpoints=`echo "$mount_output" | perl -n -e'm{^'"${disk}"'(s[0-9]+)? on (.*) \(.*\)$} && print "$2\n"'`
mountpoints=`echo "$mount_output" | perl -n -e'm{^'"${disk}"'(s[0-9]+)?
on (.*) \(.*\)$} && print "$2\n"'`
^-- SC2006: Use $(..) instead of legacy `..`.
Expand Down Expand Up @@ -2014,7 +2030,8 @@
SMART Status: Not Supported
Disk Size: 500.1 GB (500107862016 Bytes) (exactly 976773168512-Byte-Units)
Disk Size: 500.1 GB (500107862016 Bytes) (exactly
976773168512-Byte-Units)
Device Block Size: 512 Bytes
Expand Down Expand Up @@ -2113,7 +2130,8 @@
SMART Status: Verified
Disk Size: 2.0 TB (2000398934016 Bytes) (exactly 3907029168 512-Byte-Units)
Disk Size: 2.0 TB (2000398934016 Bytes) (exactly
3907029168 512-Byte-Units)
Device Block Size: 512 Bytes
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).

# v11.2.2
## (2024-03-08)

* Bump node-gyp [Otavio Jacobi]

# v11.2.1
## (2024-02-15)

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "drivelist",
"version": "11.2.1",
"version": "11.2.2",
"description": "List all connected drives in your computer, in all major operating systems",
"main": "js/index.js",
"homepage": "https://github.com/balena-io-modules/drivelist",
Expand Down Expand Up @@ -66,6 +66,6 @@
]
},
"versionist": {
"publishedAt": "2024-02-15T00:26:48.249Z"
"publishedAt": "2024-03-08T11:29:37.735Z"
}
}

0 comments on commit f6c5d78

Please sign in to comment.