diff --git a/CHANGELOG.md b/CHANGELOG.md index f914c41619..1a86033a42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +#### 1.7.2: Release + + - Fix permissions for nr-tools-plugin accessing user team list (backport #2196) (#2197) @app/github-actions + - Update link to mosquitto-go-auth (backport #2187) (#2188) @app/github-actions + - misc: Remove extra backtick (backport #2178) (#2179) @app/github-actions + - docs: Link to template concept (backport #2144) (#2150) @app/github-actions + #### 1.7.1: Release - Docs: Add additional SSO config notes on signed responses (backport #2149) (#2151) @github-actions diff --git a/forge/db/controllers/StorageCredentials.js b/forge/db/controllers/StorageCredentials.js index 2f03f04653..e2f11267d4 100644 --- a/forge/db/controllers/StorageCredentials.js +++ b/forge/db/controllers/StorageCredentials.js @@ -1,4 +1,3 @@ - module.exports = { async updateOrCreateForProject (app, project, newCredentials = {}, { transaction } = {}) { let origCredentials = await app.db.models.StorageCredentials.byProject(project.id) diff --git a/forge/db/controllers/StorageFlows.js b/forge/db/controllers/StorageFlows.js index fe8bb5b93c..a6b9924cee 100644 --- a/forge/db/controllers/StorageFlows.js +++ b/forge/db/controllers/StorageFlows.js @@ -1,4 +1,3 @@ - module.exports = { async updateOrCreateForProject (app, project, newFlows = {}, { transaction } = {}) { let currentProjectFlows = await app.db.models.StorageFlow.byProject(project.id) diff --git a/forge/db/controllers/TeamType.js b/forge/db/controllers/TeamType.js index 6f9ca064a5..020bba5aa9 100644 --- a/forge/db/controllers/TeamType.js +++ b/forge/db/controllers/TeamType.js @@ -1,4 +1,3 @@ - module.exports = { getSetting: function (app, teamType, key) { return app.config.teams?.[teamType.name]?.[key] diff --git a/forge/ee/db/controllers/Subscription.js b/forge/ee/db/controllers/Subscription.js index afabcec2bf..44c8eff11a 100644 --- a/forge/ee/db/controllers/Subscription.js +++ b/forge/ee/db/controllers/Subscription.js @@ -1,4 +1,3 @@ - module.exports = { createSubscription: async function (app, team, subscription, customer) { // Check to see if there is an existing subscription for this team. diff --git a/forge/routes/api/admin.js b/forge/routes/api/admin.js index d67f555cad..283268f3cd 100644 --- a/forge/routes/api/admin.js +++ b/forge/routes/api/admin.js @@ -1,4 +1,3 @@ - module.exports = async function (app) { async function getStats () { const userCount = await app.db.models.User.count({ attributes: ['admin'], group: 'admin' }) diff --git a/frontend/src/api/application.js b/frontend/src/api/application.js index 3fa4ea001d..16fbd8b5f0 100644 --- a/frontend/src/api/application.js +++ b/frontend/src/api/application.js @@ -1,4 +1,3 @@ - import product from '../services/product.js' import daysSince from '../utils/daysSince.js' diff --git a/frontend/src/services/audit-events.js b/frontend/src/services/audit-events.js index f3cdf52bd5..cd5d7e55ef 100644 --- a/frontend/src/services/audit-events.js +++ b/frontend/src/services/audit-events.js @@ -1,4 +1,3 @@ - import AuditEventsGrouped from '../data/audit-events.json' /* diff --git a/frontend/src/services/product.js b/frontend/src/services/product.js index d3a2cb18b6..35db03592e 100644 --- a/frontend/src/services/product.js +++ b/frontend/src/services/product.js @@ -1,4 +1,3 @@ - /** * * @param {String} userId - the unique identifier for the user diff --git a/package.json b/package.json index 302829512a..68f01408bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@flowforge/flowforge", - "version": "1.7.1", + "version": "1.7.2", "description": "An open source low-code development platform", "homepage": "https://github.com/flowforge/flowforge#readme", "bugs": {