@beauraines/node-helpers 4.0.5 → 4.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,7 +13,7 @@ jobs:
13
13
 
14
14
  strategy:
15
15
  matrix:
16
- node-version: [16.x]
16
+ node-version: [16.x,18.x,20.x]
17
17
 
18
18
  steps:
19
19
  - uses: actions/checkout@v3
package/CHANGELOG.md CHANGED
@@ -2,12 +2,21 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- ### [4.0.5](https://github.com/beauraines/node-helpers/compare/v4.0.4...v4.0.5) (2023-07-16)
5
+ ### [4.0.6](https://github.com/beauraines/node-helpers/compare/v4.0.4...v4.0.6) (2023-12-28)
6
6
 
7
7
 
8
8
  ### Bug Fixes
9
9
 
10
+ * **deps:** bump @azure/storage-blob from 12.14.0 to 12.15.0 ([3253e14](https://github.com/beauraines/node-helpers/commit/3253e14673cf645abcb0c964576bd7046b97fd29))
11
+ * **deps:** bump @azure/storage-blob from 12.15.0 to 12.16.0 ([5a058ce](https://github.com/beauraines/node-helpers/commit/5a058ce3baffd1bd79fe434ebd082ccba7fed667))
12
+ * **deps:** bump @azure/storage-blob from 12.16.0 to 12.17.0 ([8d17b3c](https://github.com/beauraines/node-helpers/commit/8d17b3ce1ef1e19f3ba804c6a391c279dcd13b86))
13
+ * **deps:** bump @azure/storage-queue from 12.13.0 to 12.14.0 ([317a87c](https://github.com/beauraines/node-helpers/commit/317a87c2fed24f3180b080a3fe0f1986fc886c64))
14
+ * **deps:** bump @azure/storage-queue from 12.14.0 to 12.15.0 ([1480375](https://github.com/beauraines/node-helpers/commit/14803753cee6c9b21eb4912d9ea08f772fcbee68))
15
+ * **deps:** bump @azure/storage-queue from 12.15.0 to 12.16.0 ([883fee4](https://github.com/beauraines/node-helpers/commit/883fee4bc959e1e02ea14e44a43d1cfaa2b40bea))
16
+ * **deps:** bump dayjs from 1.11.9 to 1.11.10 ([69be1aa](https://github.com/beauraines/node-helpers/commit/69be1aace097f6d6e244874315e65d2429353ee1))
17
+ * **deps:** bump node-fetch from 2.6.12 to 2.7.0 ([727c31c](https://github.com/beauraines/node-helpers/commit/727c31c4d789797f37b07af98b5aa00f77fe10f4))
10
18
  * **deps:** bump sqlite from 4.2.1 to 5.0.1 ([#54](https://github.com/beauraines/node-helpers/issues/54)) ([1066aec](https://github.com/beauraines/node-helpers/commit/1066aec108fe771c268e76975fb0151bf5f1ef40))
19
+ * **deps:** bump sqlite from 5.0.1 to 5.1.1 ([30f2b0e](https://github.com/beauraines/node-helpers/commit/30f2b0ef9687d20ef2a58778a43ba43251901a91))
11
20
 
12
21
  ### [4.0.4](https://github.com/beauraines/node-helpers/compare/v4.0.1...v4.0.4) (2023-07-16)
13
22
 
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # Node Helpers
2
2
 
3
- This is a set of helpers for node. They're written for quick reuse rather than robust functions or efficiency. For instance, the database functions will create a new database connection every time. This is not efficient, but it makes making the function call simple.
3
+ This is a set of helpers for NodeJS. They're written for quick reuse rather than robust functions or efficiency. For instance, the database functions will create a new database connection every time. This is not efficient, but it makes making the function call simple.
4
4
 
5
- My use is primarily in quicker one off scripts that sometime morph into something long lasting...
5
+ My use is primarily in quicker one-off scripts that sometimes morph into something long-lasting...
6
6
 
7
7
 
8
8
  ## Azure Storage
9
9
 
10
- Get blob from Azure example, downloads `bar.jpg` from `foo` container to `baz.jgp`
10
+ Get blob from Azure example, downloads `bar.jpg` from `foo` container to `baz.jpg`
11
11
 
12
12
  ```javascript
13
13
  const AzureStorage = require('./src/azure.js')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/node-helpers",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "description": "Collection of node helpers",
5
5
  "main": "index.js",
6
6
  "scripts": {