@flowfuse/file-server 2.7.2-d6d4bfe-202408081537.0 → 2.8.1-3a382e1-202409021734.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ #### 2.8.0: Release
2
+
3
+
1
4
  #### 2.7.1: Release
2
5
 
3
6
  - Add locking in the app to avoid deadlock (#123) @knolleary
package/forge/auth.js CHANGED
@@ -22,7 +22,7 @@ module.exports = fp(async function (app, opts, done) {
22
22
  authorization: `Bearer ${token}`
23
23
  }
24
24
  })
25
- return project.body
25
+ return JSON.parse(project.body)
26
26
  }
27
27
 
28
28
  async function checkAuth (request, reply) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/file-server",
3
- "version": "2.7.2-d6d4bfe-202408081537.0",
3
+ "version": "2.8.1-3a382e1-202409021734.0",
4
4
  "description": "A basic Object Storage backend",
5
5
  "main": "index.js",
6
6
  "scripts": {