@flowfuse/file-server 2.23.2-a7ae2e2-202510271032.0 → 2.24.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,11 @@
1
+ #### 2.24.0: Release
2
+
3
+ - Bump actions/checkout from 5.0.0 to 5.0.1 (#181)
4
+ - Bump flowfuse/github-actions-workflows from 0.42.0 to 0.43.0 (#176)
5
+ - Bump js-yaml from 4.1.0 to 4.1.1 (#180) @app/dependabot
6
+ - Passes context.options.ssl to postgres driver (#179) @hardillb
7
+ - Bump validator from 13.9.0 to 13.15.20 (#177) @app/dependabot
8
+
1
9
  #### 2.23.1: Release
2
10
 
3
11
 
package/README.md CHANGED
@@ -178,6 +178,7 @@ context:
178
178
  type: postgres
179
179
  host: 127.0.0.1
180
180
  port: 5432
181
+ ssl: true
181
182
  database: ff-context
182
183
  username: user
183
184
  password: password
@@ -71,6 +71,7 @@ module.exports = {
71
71
  } else if (dbOptions.dialect === 'postgres') {
72
72
  dbOptions.host = app.config.context.options.host || 'postgres'
73
73
  dbOptions.port = app.config.context.options.port || 5432
74
+ dbOptions.ssl = app.config.context.options.ssl
74
75
  dbOptions.username = app.config.context.options.username
75
76
  dbOptions.password = app.config.context.options.password
76
77
  dbOptions.database = app.config.context.options.database || 'ff-context'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/file-server",
3
- "version": "2.23.2-a7ae2e2-202510271032.0",
3
+ "version": "2.24.0",
4
4
  "description": "A basic Object Storage backend",
5
5
  "main": "index.js",
6
6
  "scripts": {