@flowfuse/driver-localfs 2.15.1-ac76f40-202503251010.0 → 2.16.0

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.
@@ -19,7 +19,7 @@ on:
19
19
 
20
20
  jobs:
21
21
  build:
22
- uses: 'flowfuse/github-actions-workflows/.github/workflows/build_node_package.yml@v0.38.0'
22
+ uses: 'flowfuse/github-actions-workflows/.github/workflows/build_node_package.yml@v0.39.0'
23
23
  with:
24
24
  node: '[
25
25
  {"version": "18", "tests": false, "lint": true},
@@ -30,7 +30,7 @@ jobs:
30
30
  if: |
31
31
  ( github.event_name == 'push' && github.ref == 'refs/heads/main' ) ||
32
32
  ( github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' )
33
- uses: 'flowfuse/github-actions-workflows/.github/workflows/publish_node_package.yml@v0.38.0'
33
+ uses: 'flowfuse/github-actions-workflows/.github/workflows/publish_node_package.yml@v0.39.0'
34
34
  with:
35
35
  package_name: driver-localfs
36
36
  publish_package: true
@@ -46,7 +46,7 @@ jobs:
46
46
  steps:
47
47
  - name: Generate a token
48
48
  id: generate_token
49
- uses: tibdex/github-app-token@v2
49
+ uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
50
50
  with:
51
51
  app_id: ${{ secrets.GH_BOT_APP_ID }}
52
52
  private_key: ${{ secrets.GH_BOT_APP_KEY }}
@@ -8,11 +8,11 @@ jobs:
8
8
  publish:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@v4
12
- - uses: actions/setup-node@v4
11
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
12
+ - uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
13
13
  with:
14
14
  node-version: 18
15
15
  - run: npm ci --omit=dev
16
- - uses: JS-DevTools/npm-publish@v3
16
+ - uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
17
17
  with:
18
18
  token: ${{ secrets.NPM_PUBLISH_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ #### 2.16.0: Release
2
+
3
+ - chore: fix lint script (#172)
4
+ - Bump @babel/runtime from 7.26.7 to 7.27.0 (#171) @app/dependabot
5
+ - chore: Pin external actions to commit hash (#170) @ppawlowski
6
+
1
7
  #### 2.15.0: Release
2
8
 
3
9
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@flowfuse/driver-localfs",
3
- "version": "2.15.1-ac76f40-202503251010.0",
3
+ "version": "2.16.0",
4
4
  "description": "Local Filesystem FlowFuse Project driver",
5
5
  "main": "localfs.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
- "lint": "eslint -c .eslintrc *.js",
9
- "lint:fix": "eslint -c .eslintrc *.js --fix"
8
+ "lint": "eslint -c .eslintrc \"**/*.js\"",
9
+ "lint:fix": "eslint -c .eslintrc \"**/*.js\" --fix"
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",
@@ -21,8 +21,8 @@
21
21
  },
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
+ "@flowfuse/nr-launcher": "^2.16.0",
24
25
  "@flowfuse/mqtt-schema-agent": "^1.0.0",
25
- "@flowfuse/nr-launcher": "2.15.1-48a41d3-202503251009.0",
26
26
  "form-data": "^4.0.0",
27
27
  "got": "^11.8.5",
28
28
  "semver": "^7.3.8"