better-sqlite3-multiple-ciphers 7.4.5-beta.0 → 7.4.5

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.
@@ -35,3 +35,15 @@ jobs:
35
35
  - run: apk add build-base git python3 --update-cache
36
36
  - run: npm install --ignore-scripts
37
37
  - run: npx --no-install prebuild -r node -t 10.20.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 --include-regex 'better_sqlite3.node$' -u ${{ secrets.GITHUB_TOKEN }}
38
+
39
+ prebuild-alpine-arm64:
40
+ name: Prebuild on alpine (arm64)
41
+ runs-on: ubuntu-latest
42
+ steps:
43
+ - uses: docker/setup-qemu-action@v1
44
+ - run: |
45
+ docker run --rm --entrypoint /bin/sh --platform linux/arm64 node:16-alpine -c "apk add build-base git python3 --update-cache && \
46
+ git clone ${{ github.event.repository.clone_url }} && \
47
+ cd ${{ github.event.repository.name }} && \
48
+ npm install --ignore-scripts && \
49
+ npx --no-install prebuild -r node -t 10.20.0 -t 12.0.0 -t 14.0.0 -t 16.0.0 --include-regex 'better_sqlite3.node$' -u ${{ secrets.GITHUB_TOKEN }}"
@@ -44,3 +44,16 @@ jobs:
44
44
  - run: npm install --ignore-scripts
45
45
  - run: npm run build-debug
46
46
  - run: npm test
47
+
48
+ test-alpine-arm64:
49
+ name: Testing Node 16 on apline (arm64)
50
+ runs-on: ubuntu-latest
51
+ steps:
52
+ - uses: docker/setup-qemu-action@v1
53
+ - run: |
54
+ docker run --rm --entrypoint /bin/sh --platform linux/arm64 node:16-alpine -c "apk add build-base git python3 --update-cache && \
55
+ git clone ${{ github.event.repository.clone_url }} && \
56
+ cd ${{ github.event.repository.name }} && \
57
+ npm install --ignore-scripts && \
58
+ npm run build-debug && \
59
+ npm test"
package/README.md CHANGED
@@ -21,7 +21,7 @@ The fastest and simplest library for SQLite3 in Node.js. This particular fork su
21
21
  ## Current versions
22
22
 
23
23
  - ### Stable
24
- - **better-sqlite3-multiple-ciphers** - `7.4.4`
24
+ - **better-sqlite3-multiple-ciphers** - [`7.4.5`](https://www.npmjs.com/package/better-sqlite3-multiple-ciphers/v/7.4.5)
25
25
  - **SQLite** - `3.36.0`
26
26
  - **SQLite3 Multiple Ciphers** - `1.3.4`
27
27
 
package/deps/sqlite3.gyp CHANGED
@@ -63,6 +63,10 @@
63
63
  ['OS=="win"', {
64
64
  'cflags!': ['-maes', '-msse4.2'],
65
65
  }],
66
+ ['target_arch=="arm64"', {
67
+ 'cflags!': ['-maes', '-msse4.2'],
68
+ 'cflags': ['-march=native'],
69
+ }],
66
70
  ],
67
71
  'configurations': {
68
72
  'Debug': {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-sqlite3-multiple-ciphers",
3
- "version": "7.4.5-beta.0",
3
+ "version": "7.4.5",
4
4
  "description": "better-sqlite3 with multiple-cipher encryption support",
5
5
  "homepage": "https://github.com/m4heshd/better-sqlite3-multiple-ciphers",
6
6
  "author": "Mahesh Bandara Wijerathna (m4heshd) <m4heshd@gmail.com>",