@solidxai/core 0.1.16-beta.0 → 0.1.16-beta.2

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +1308 -0
  2. package/CLAUDE.md +26 -0
  3. package/dist/controllers/authentication.controller.d.ts.map +1 -1
  4. package/dist/controllers/authentication.controller.js +3 -2
  5. package/dist/controllers/authentication.controller.js.map +1 -1
  6. package/dist/enums/signup-intent.enum.d.ts +6 -0
  7. package/dist/enums/signup-intent.enum.d.ts.map +1 -0
  8. package/dist/enums/signup-intent.enum.js +10 -0
  9. package/dist/enums/signup-intent.enum.js.map +1 -0
  10. package/dist/index.d.ts +1 -0
  11. package/dist/index.d.ts.map +1 -1
  12. package/dist/index.js +1 -0
  13. package/dist/index.js.map +1 -1
  14. package/dist/resources/images/solid-core-menu-icon.png +0 -0
  15. package/dist/seeders/module-metadata-seeder.service.d.ts.map +1 -1
  16. package/dist/seeders/module-metadata-seeder.service.js +4 -1
  17. package/dist/seeders/module-metadata-seeder.service.js.map +1 -1
  18. package/dist/seeders/module-test-data.service.d.ts.map +1 -1
  19. package/dist/seeders/module-test-data.service.js +3 -1
  20. package/dist/seeders/module-test-data.service.js.map +1 -1
  21. package/dist/seeders/seed-data/solid-core-metadata.json +1 -1
  22. package/dist/services/authentication.service.d.ts +4 -2
  23. package/dist/services/authentication.service.d.ts.map +1 -1
  24. package/dist/services/authentication.service.js +73 -45
  25. package/dist/services/authentication.service.js.map +1 -1
  26. package/dist/services/crud.service.d.ts.map +1 -1
  27. package/dist/services/crud.service.js +2 -1
  28. package/dist/services/crud.service.js.map +1 -1
  29. package/dist/services/module-metadata.service.js +4 -4
  30. package/dist/services/module-metadata.service.js.map +1 -1
  31. package/dist/services/user.service.d.ts +4 -0
  32. package/dist/services/user.service.d.ts.map +1 -1
  33. package/dist/services/user.service.js +15 -0
  34. package/dist/services/user.service.js.map +1 -1
  35. package/dist/testing/contracts/testing-metadata.types.d.ts +1 -0
  36. package/dist/testing/contracts/testing-metadata.types.d.ts.map +1 -1
  37. package/dist/testing/contracts/testing-metadata.types.js.map +1 -1
  38. package/package.json +4 -2
  39. package/postman/signup-intent-verification.postman_collection.json +573 -0
  40. package/postman/signup-issues +2 -0
  41. package/resources/images/solid-core-menu-icon.png +0 -0
  42. package/src/controllers/authentication.controller.ts +5 -2
  43. package/src/enums/signup-intent.enum.ts +22 -0
  44. package/src/index.ts +1 -0
  45. package/src/seeders/module-metadata-seeder.service.ts +38 -5
  46. package/src/seeders/module-test-data.service.ts +9 -1
  47. package/src/seeders/seed-data/solid-core-metadata.json +1 -1
  48. package/src/services/authentication.service.ts +170 -59
  49. package/src/services/crud.service.ts +2 -1
  50. package/src/services/module-metadata.service.ts +4 -4
  51. package/src/services/user.service.ts +34 -0
  52. package/src/testing/contracts/testing-metadata.types.ts +12 -0
  53. package/postman/instant-logout.postman_collection.json +0 -1493
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1313 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.16-beta.2] - 2026-09-01
4
+
5
+ ### Added
6
+
7
+ - create OTP registrations through the extension user provider
8
+ - let seed metadata declare which users are extension users
9
+ - replace signup key-sniffing with an explicit SignupIntent
10
+ - add ModuleIconAssetService to manage module icon installation
11
+ - remove delete button visibility for user activity history
12
+ - implement default value application for required fields in import transactions
13
+ - add default values for required fields in import transactions
14
+ - enhance media type mapping to support multiple categories per extension in MediaFieldCrudManager
15
+ - update media file type definitions to expose only necessary fields for better clarity
16
+ - enhance media type handling by consolidating media file types and updating related services
17
+ - add SecretResolutionController and related DTO for reading secrets safely
18
+ - expose media type mappings and improve field label handling in MediaFieldCrudManager
19
+ - add resolve and resolveMany methods for secret management
20
+ - add normalization utilities for text fields and integrate them into LongTextFieldCrudManager and ShortTextFieldCrudManager
21
+ - implement eager installation of Chromium for Playwright UI tests
22
+ - add security header options for iframe embedding and customize frame-ancestors
23
+ - implement transaction handling for unpublishing records and restore previous version
24
+ - add createdAt field to PostChatterMessageDto and set default in service
25
+ - implement transaction handling for unpublishing records and restore previous version
26
+ - add progress reporting functionality to test runner and reporters
27
+ - add viewWidget attribute for fileSize in metadata
28
+ - add configurable UI timeouts for testing steps and update documentation
29
+ - enhance internationalisation by adding applyCreateDefaults method for localeName on create DTOs
30
+ - implement promoteRecoveredDraftPublishVersion method and integrate with CRUDService for soft-deleted records
31
+ - add default locale name for internationalised entries in test data seeding
32
+ - implement draft/publish versioning support and refactor related services
33
+ - add DraftPublishHelperService for managing draft and publish workflows
34
+ - add workflow field data provider support and related interfaces
35
+ - add asynchronous execution for workflows and enhance execution status retrieval
36
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
37
+ - enhance workflow definition management and add Python runtime node
38
+ - add SolidX integration nodes for login, email, and SMS
39
+ - add support for versioning and publishing in CRUD operations, including new fields in entities and filters
40
+ - enhance http.request node with query parameters and body modes
41
+ - refactor node structure and add sequential and switch nodes
42
+ - update workflow execution and definition handling
43
+ - implement workflow execution services and nodes
44
+ - implement API key generation for system admin users in ModuleMetadataSeederService
45
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
46
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
47
+ - enhance migration process with build and seed commands
48
+ - enhance datasource introspection with primary key detection and migration support
49
+ - enhance role creation with module linkage and resolve module metadata
50
+ - enhance action, role, and view metadata services with change detection and JSON normalization
51
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
52
+ - add new dashboard controller actions to permissions
53
+ - simplify queue health permissions by consolidating patterns
54
+ - implement explicit widget permissions and unauthorized response handling
55
+ - enhance widget permission checks and add unauthorized response handling
56
+ - add Queue SLA heatmap provider and update metadata
57
+ - update queue health menu item and reorder messages
58
+ - add various dashboard providers and runtime services
59
+ - implement WhatsApp Cloud API integration
60
+ - add gupshup whatsapp provider
61
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
62
+ - add updateCustomNoteMessage action to ChatterMessageController
63
+ - add secure custom-note edit API with attachment add/remove support
64
+ - implemented social media oath for facebook and microsoft
65
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
66
+ - implemented social media oath for facebook and microsoft
67
+ - add Message Tree Action and corresponding view for mqMessage
68
+ - implement processing timeout for RabbitMQ subscriber
69
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
70
+ - Migrate date/time transformers to UtcDateTimeTransformer.
71
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
72
+
73
+ ### Fixed
74
+
75
+ - enforce allowPublicRegistration on OTP registration
76
+ - update copy-resources script to include new menu icon and correct resource path
77
+ - update copy-resources script to target the correct directory for media files
78
+ - update build script to include resource copying and add copyfiles dependency
79
+ - remove postinstall script for menu icon installation
80
+ - add postinstall script to ensure menu icon is copied to the correct directory
81
+ - ensure file operations for menu icon are awaited in create and update methods
82
+ - update menuIconUrl to point to the correct image path
83
+ - prevent caching of negative lookups in cache helper and permission metadata service
84
+ - use replaceAll for activeUserId in security rule config
85
+ - remove migration command and related services
86
+ - pass model service to convertImportedRecordToDto and apply defaults in the correct order
87
+ - remove delete permission from metadata configuration
88
+ - remove delete permission from global settings
89
+ - make currentValue optional in CreateModelSequenceDto and update seeding logic to exclude it
90
+ - change matched column type from bit to default nullable boolean
91
+ - improve error message for media deletion restriction
92
+ - use transactions entitymanager for all subscribers only for embedded db projects
93
+ - update consuming project name resolution to use parent directory
94
+ - update solidx directory path to include consuming project name
95
+ - correct package name in model generation command and update error handling in module metadata retrieval
96
+ - username
97
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
98
+ - handle null or empty security rule configuration strings in repository
99
+
100
+ ### Changed
101
+
102
+ - remove ModuleIconAssetService from core module
103
+ - rename applyEntityDefaults to applyImportDefaults for clarity
104
+ - update media type handling in CreateFieldMetadataDto and FieldMetadataService
105
+ - remove onDelete cascade option from ManyToOne relationships in entity definitions
106
+ - unify datetime column types across entities using helper function
107
+ - remove explicit timestamp type for nullable date columns across entities
108
+ - update CommonEntity properties to be optional and adjust types in WorkflowTriggerExecution
109
+ - rename create-draft-publish-helper.service to draft-publish-helper.service and update imports
110
+ - inject InternationalisationHelperService in ModuleTestDataService and CrudHelperService
111
+ - separate generic delete from draft-publish and i18n cleanup in CRUDService
112
+ - remove unused boolean type and related system column definitions from DatasourceIntrospectionService
113
+ - update CrudHelperService to initialize DraftPublishHelperService directly in the class refactor: remove publishedAt sorting logic from getLayout method in ViewMetadataService
114
+ - simplify published version filtering in CRUDService
115
+ - remove handleSeedLocales method to streamline locale seeding process
116
+ - remove legacy dashboard files and add new dashboarding architecture guide
117
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
118
+ - remove redundant null check in resolveSecurityRuleConfig
119
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
120
+ - update legacy entity fields to be nullable and support null types
121
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
122
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
123
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
124
+
125
+ ### Documentation
126
+
127
+ - update expired discord link
128
+
129
+ ### Other
130
+
131
+ - changes to ensure full name is also populated alongwith username
132
+ - cross-tyep uniqueness fix
133
+ - instant logout for access token changes
134
+ - vocabulary docs added
135
+ - removed the secrets read endpoint, since it is not required now
136
+ - renamed variables for better naming
137
+ - changes to ensure path segement parsing is consisten for $res and $data fragements in the ops vocabulary e.g currently $res was not supporting brackets but only . while grabbing data from and object
138
+ - ensure missing secrets show up in the report output so the error is presented alongside the scenario step for clarity
139
+ - `${secret:...}` in the test vocabulary
140
+ - Refactor Chromium installation process and remove eager install script
141
+ - changes
142
+ - ## Phase 6 — Global Multer upload size limit
143
+ - ## Phase 5 — Dangerous-extension checks on menu-icon & settings uploads
144
+ - ## Phase 4 — Route chatter attachments through `MediaFieldCrudManager`
145
+ - ## Phase 3 — Close the `mediaMultiple` size/category gap, and align `validateAllowedExtensions`'s placement
146
+ - ## Phase 2 — Make `mediaTypes` category resolution extension-authoritative
147
+ - Per-field extension allowlist (`mediaAllowedExtensions`)
148
+ - mpin scheme version changes
149
+ - mpin related changes
150
+ - Add safe percent-decoding for uploaded file names to prevent bypassing extension checks
151
+ - Revert "Revert "Deliverable A now stands as: cache TTL (with the store swap that make…""
152
+ - Revert "Deliverable A now stands as: cache TTL (with the store swap that make…"
153
+ - fixes around handling concurrent logins properly using per deviceKey buckets.
154
+ - Deliverable A now stands as: cache TTL (with the store swap that makes it actually work), the me() null guard it necessitates, the logout verify/idempotency fix, previousValidUntil replacing the timer, and the dead validate() removed.
155
+ - fixed the request body limit to keep it as 10mb instead of 25mb by default
156
+ - changes around files name sanitization and normalization
157
+ - changes to handle variations in extension while uploading dangerous extension files
158
+ - change request body max to 25mb
159
+ - Comment out countGroupedRecords method implementation for refactoring
160
+ - show theme toggle
161
+ - rename theme registry
162
+ - remove some unusable code
163
+ - some changes
164
+ - solidx theme settings
165
+ - chagesn to testing readme
166
+ - changes to make ui.expectUrl to wait using the navigation timeout
167
+ - type fixes
168
+ - fixes around playwright context
169
+ - Scenario snap shot changes
170
+ - test run payload changes
171
+ - Testhub test run queue changes
172
+ - Screen shoot changes
173
+ - Test Life Cycle Changes.
174
+ - Testing Hub Changes
175
+ - chagesn to testing readme
176
+ - changes to support passing an explicit createdAt while posting a chatter message
177
+ - Enhance countGroupedRecords and passed internationalisation and draft publish workflow parameters in executeGroupPipeline
178
+ - rename theme registry
179
+ - changes to make ui.expectUrl to wait using the navigation timeout
180
+ - type fixes
181
+ - fixes around playwright context
182
+ - Scenario snap shot changes
183
+ - test run payload changes
184
+ - Testhub test run queue changes
185
+ - Screen shoot changes
186
+ - Test Life Cycle Changes.
187
+ - Testing Hub Changes
188
+ - remove add permisson from permisson-list-view
189
+ - removed indexes on username and mobile since it is a conditional index and it breaks for mssql since multiple nulls are not allowed on unique columns
190
+ - readme changes
191
+ - removed hardcoded type against a boolean type
192
+ - changes to the default testing setting timeout to pick from env as well
193
+ - remove duplicate code
194
+ - refactoring around chatter media security fix
195
+ - add media extension support for post chatter
196
+ - Add media upload action and validation in MediaService
197
+ - add media extension support for post chatter
198
+ - changes to ensure only id and field are returned while populating the user in chatter
199
+ - Update defaultValue types in solid-core-metadata.json to strings
200
+ - 1. changes to ensure user populated for chatter and createdBy/updatedBy has only id and fullName populate 2. Added Exclude at property level on user to exclude sensitive fields by default without having to add an exclude at the class level
201
+ - Add getMentionableUsers permission
202
+ - Add endpoint to retrieve mentionable users with search and limit options
203
+ - Add error handling nodes and enhance workflow node definitions
204
+ - Add skipHooks option to seed command and related services
205
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
206
+ - Enhance workflow node definitions and runtime context handling
207
+ - remvoing redundent code
208
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
209
+ - changes
210
+ - changes
211
+ - sql injection vulnerability closed in filter queries
212
+ - Remove LocalPath
213
+ - revert changes
214
+ - revert changes
215
+ - revert changes
216
+ - re revert
217
+ - revert changes
218
+ - private-file-cleanup
219
+ - add downlaodurl
220
+ - changes to allow overriding the is allowed api keys flag thru extension user
221
+ - Revert "user enumeration"
222
+ - remove validation from username and mobile
223
+ - user create validation bugs
224
+ - add normalize for otp based also
225
+ - Disable metadata pruning by default in seed command configuration
226
+ - Update seed command to enable metadata pruning by default
227
+ - handle-case-sensitive-for-email
228
+ - Add delete permissions for ImportTransactionController in solid-core metadata
229
+ - Add permissions for import/export functionality in solid-core metadata
230
+ - Refactor role assignment for admin users to handle capability roles individually
231
+ - discard changes
232
+ - add support for static file
233
+ - Add capability roles for admin users in module metadata seeder
234
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
235
+ - attachment
236
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
237
+ - make isPublic default true
238
+ - changes to show the image inline
239
+ - cleanup againts media's
240
+ - inline role crate false
241
+ - Implement chatter mention notification system with email templates and queue handling
242
+ - Add messageBodyMentions field to chatter message DTOs and entity
243
+ - fix-audit-bug
244
+ - changes to include signed url token for private media
245
+ - Revert "Revert "rename function name""
246
+ - Revert "Revert "add private media support""
247
+ - Add media file type constants and enhance security for media uploads
248
+ - remove some unusable code
249
+ - some changes
250
+ - handle technical error messages due to missing resource in static resources folder
251
+ - Revert "add private media support"
252
+ - Revert "rename function name"
253
+ - rename function name
254
+ - add private media support
255
+ - some fixes
256
+ - solidx session invalid changes
257
+ - add validation on get chatter message
258
+ - updatedAt value is updating now
259
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
260
+ - add security against chatter
261
+ - chatter message endpoint made public
262
+ - removed embedded db support
263
+ - Add default sorting by ID if not explicitly specified in order options
264
+ - solidx theme settings
265
+ - add icons across all the models in solid core
266
+ - media upload added behind auth
267
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
268
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
269
+ - class serializer interceptor added for impact of Exclude and Expose
270
+ - Enhance datasource introspection with primary key validation and user key resolution
271
+ - Concurrent Login Feature
272
+ - user enumeration
273
+ - add helper text key on settings object .........
274
+ - changes to handle case insenstive filter operations if the values are other than string by casting
275
+ - menus item fix
276
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
277
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
278
+ - display name changed
279
+ - name changed
280
+ - added settings for configure the row click on solid list view
281
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
282
+ - fixed legacy entity files names
283
+ - view metadata type field - selection static and roles required false from menu-item
284
+ - Fix for this issue > stop applying lower for numeric fields.
285
+ - refactor and add migration command
286
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
287
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
288
+ - changes to take in option for seeding with modules in current seed method
289
+ - Fix validation logic to parse string field values as integers before applying validations
290
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
291
+ - ad changes
292
+ - Add locale seeding functionality and enhance locale management
293
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
294
+ - changes to avoid extra module checks before dynamically loading it
295
+ - defaulted to modulemetadataseederservice if no seeder provided
296
+ - Add Date field in Instructions Response
297
+ - ai interaction cleanup changes
298
+ - enabling create,edit,import,export on permission and lov modules
299
+ - added module to rolemetadata list view
300
+ - roles group by module changes
301
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
302
+ - Implement Datasource Management functionality with controller, service, and DTO
303
+ - added index to fields newly added as sortable and searchable
304
+ - Add archiver package to dependencies
305
+ - removed unnecessary seed file
306
+ - Add TypeORM migration helper functions and export in index
307
+ - fixes
308
+ - reverted accidental removal of the layout builder root menu
309
+ - pending cleanup of solid core menu items
310
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
311
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
312
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
313
+ - changes for IAM
314
+ - Add clearPackageRuntime functionality and corresponding metadata action
315
+ - Add archiver dependency and implement module package export functionality
316
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
317
+ - Update solid-core-metadata.json to disable create, edit, and delete actions, and set searchable attributes to false for specific fields for media storage provider
318
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
319
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
320
+ - Remove unused database bootstrap service and related SQL cleanup procedures
321
+ - cleanup
322
+ - Add view and action metadata tree views with updated permissions and searchable fields
323
+ - Add view and action metadata tree views with updated permissions and searchable fields
324
+ - menu item model cleanup
325
+ - Add resumable import handling and transaction management in module package service
326
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
327
+ - Enhance module metadata seeder: add validation for module name, streamline array handling for scheduled jobs, saved filters, list of values, security rules, sms templates, email templates, menus, actions, views, users, roles, media storage providers, model sequences, and models metadata.
328
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
329
+ - many to one left join issue fixed
330
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
331
+ - Refactor CRUD and model metadata services to enhance group filtering and pagination; streamline response handling and improve query structure. configuration changes to support tree view in model metadata
332
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
333
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
334
+ - Implement module metadata explorer with CRUD operations and search functionality
335
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
336
+ - Bug fixs
337
+ - added frontend base url as well to the default settings
338
+ - minor cleanup
339
+ - changes to cleanup legacy table related fields
340
+ - changes for new dashboards functionality
341
+ - always print server startup line regardless of log level
342
+ - Add field quality checks and fixes checklist for backend validation
343
+ - typeo issue
344
+ - Agent table clean up
345
+ - Add manual interaction step for Playwright and update README
346
+ - provision made to unlink data rather than having to teardown everything
347
+ - provision made to unlink data rather than having to teardown everything
348
+ - changes to colour the server startup line
349
+ - Agent table clean up
350
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
351
+ - removed id command options and retained the singular name option only for consistency purposes
352
+ - changes to route genertion commands thru solidctl. The refresh-module & refresh-model commands are what are eventually called and end up calling the services only, keeping calling consistent and ensuring everything is route thru solidctl generate
353
+ - got rid of fieldNamesForRefresh and fieldIdsForRefresh dead chain since it is not used now, due to fields being read in the code builder from the metadata json directly
354
+ - MCP table solid changes
355
+ - playwrite added as dependency instead
356
+ - changes to the test runner
357
+ - chatter message user resolution chagnes
358
+ - bug fix in chatter message user resolution after we moved to queues.
359
+ - moved back to beta3
360
+ - failed login attempts field added to the json and update dto and exposed in entity
361
+ - removed un-necessary index on newvalue display
362
+ - ts changes error: any
363
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
364
+ - changed model metadata service default form layout to be single column
365
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
366
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
367
+ - normalised @ApiTags
368
+ - enum for passwordless modes
369
+ - bug fix in how alternative actions are rendered
370
+ - queue related bug fixes
371
+ - changes to add a websocket adaptor to the bootstrap server routine
372
+ - license changes
373
+ - type fixes
374
+ - removed min and max from long text mapping
375
+ - bug fix for shortext field mapping
376
+ - changes to post the testing results to a webhook api with a test payload
377
+ - added import multer this fixes un-necessary ts errors in vscode
378
+ - ts errors fixed
379
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
380
+ - formatting changes
381
+ - facebook oauth
382
+ - Status required false
383
+ - updated gitignore
384
+ - dleete un-necessary docs
385
+ - deleted un-necessary files
386
+ - changes related to more grooming
387
+ - api added in cors
388
+ - refactor Oauth strategy
389
+ - Revert "Ft social media login"
390
+ - bug fix
391
+ - bug fix
392
+ - add new api me endpoint and role based settings
393
+ - setting changes for new ui architecture
394
+ - changes for new settings structure
395
+ - chatter task subtype and related changes
396
+ - bug fix
397
+ - fixes
398
+ - changes to get rid of angular schematics for helping with string case transformation for consistency purpose i.e (lodash is being used on frontend too) and avoid edge cases
399
+ - changes to handle import logs as well, thru configured winston log level
400
+ - change isMultiSelect to true in solid-core-metadata.json
401
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
402
+ - tightened up queue subscriber interface + fixed core subscribers that were not returning anything. all subscribers must either return a promise or if not async then the actual value
403
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
404
+ - bug fix: passwordless registration should create a user with active false
405
+ - apikeys attribute was not exposed
406
+ - refactor Oauth strategy
407
+ - changes to avoid sending out encrypted setting in api responses. also removed menu item and action entries for ai settings. (temporary fix, since setting ui to be revamped soon)
408
+ - bug fix
409
+ - null check on role
410
+ - made provision to seed custom permissions
411
+ - handled seed scenario too
412
+ - upload File and expectHidden changes
413
+ - extension user cleanup and checks added
414
+ - fixed types for cleanup
415
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
416
+ - fixes bare shell imports with relative imports
417
+ - dynamic import fix
418
+ - removed unnecessary file
419
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
420
+ - removed base abstract class
421
+ - added interface too
422
+ - changes
423
+ - changes to test data seeding & fixed the type for authenticationService.signup method
424
+ - changes to user dto to include the api keys toggle
425
+ - add default role to the user only if there are no roles resolved against a user
426
+ - changes to replace current extension user custom user creation logic with the use of dynamic extension user provider. cleans up creation of an extension user
427
+ - Only forward --debug when explicitly enabled.
428
+ - toolOutput field changes to json
429
+ - adding user api key entity to export
430
+ - minor optimisation to how dynamic modules are loaded
431
+ - Add Discord badge to top of README
432
+ - Fix broken BSL license link and add Discord link to README
433
+ - Add BSL 1.1 license and update package.json license field
434
+ - Seed user and roles in testing data
435
+ - removed readme.txt
436
+ - moved type and interfaces in interfaces.ts and refactored accordingly
437
+ - changed to md
438
+ - added readme
439
+ - Ai setting model change
440
+ - changes to allow encrypting setting keys
441
+ - form view clean up
442
+ - Agent table list view changes
443
+ - synchronize false
444
+ - changes to resolve the selection dynamic provider by name and token both
445
+ - changes to bypass swagger urls from csp policy
446
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
447
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
448
+ - changes to implement the sso code and sso exchange use cases
449
+ - removed orm types / exported api key entity
450
+ - added provision to control if api key creation is allowed for the user
451
+ - api key changes for backend
452
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
453
+ - fix to call addRoles only if role names are present
454
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
455
+ - refactor: update legacy entity fields to be nullable and support null types
456
+ - Json structure change
457
+ - Agent table metadata clean up changes
458
+ - longtext
459
+ - longtext changes
460
+ - Agent tables clean up
461
+ - fixes to seed many-to-many relation for tests
462
+ - changes to seed media in testing data
463
+ - Chatter modelUserkey and excel many to one issue
464
+ - keeping the default selectionValueType as string since this is a good default
465
+ - bug fixes around how media is done
466
+ - bug fixes
467
+ - try catch inside logEvent
468
+ - media has card based metadata
469
+ - Refresh token activity
470
+ - changes to implement the sso code and sso exchange use cases
471
+ - cleanup
472
+ - enabled kanban view on mq message
473
+ - Agent table changes
474
+ - changes to disallow deleting a model or module in production
475
+ - changelog version bumped
476
+ - changelog added
477
+ - changes to control the logging using env variables & set appropriate defaults basis environment
478
+ - chnages for logging
479
+ - Chatter queue fixs
480
+ - one more "beta" for ozzy
481
+ - additional loggging in cors helper
482
+ - changes
483
+ - Redis Queue component and rabbitMQ folder changes
484
+ - changes to track old and new fields as part of the delete entity operation
485
+ - optimizations done for audit subcriber
486
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
487
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
488
+ - formatting changes
489
+ - performance optimisations 1. created by updated by subscriber is not querying users again and again 2. rabbit pub / sub can now optinally switch off db persistence
490
+ - qs depth config increased
491
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
492
+ - cached model metadata queries
493
+ - changse
494
+ - disabled extra loggign
495
+ - chagnes
496
+ - reduced concurrency in computed fields
497
+ - additional loggign
498
+ - added indexes to mobile & email since those are frequently queries upon
499
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
500
+ - Redis background job changes
501
+ - Chatter Rationalizing
502
+ - changes
503
+ - changes
504
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
505
+ - changes to export bootstrap helpers for server & cli nest applications
506
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
507
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
508
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
509
+ - added index on message id in mq message table
510
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
511
+ - changes to save model sequence id as part of post compute instead of pre compute
512
+ - changse
513
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
514
+ - High concurrency fix for alpha num and sequence num computed fields
515
+ - bug fix in cron evalutaion
516
+ - tighter logging around roles
517
+ - scheduler now supports env based specific jobs starting and others not
518
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
519
+ - revert cross db changes for view-metadata-entity
520
+ - fixes
521
+ - changes to handle cross-db compatibility
522
+ - added type as simple-json
523
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
524
+ - Revert "Merge branch 'media-update' into 'main'"
525
+ - Mysql related changes
526
+ - ts-morph and media storage fix
527
+ - dashboard layout menu item added
528
+ - dashboard changes
529
+ - scheduler bug fix
530
+ - made provision to execute scheduled jobs manually
531
+ - changes
532
+ - cleanup
533
+ - logging related changes and made user activity history tree view
534
+ - changes to return the wall clock time as utc for chatter as well to keep it...
535
+ - changes around dashboard question refactoring
536
+ - default tree view and action added on code generation
537
+ - Date time format changes in audit
538
+ - user activity history on otp login
539
+ - changes
540
+ - changelog added
541
+ - reverted legacy and common entity to use local date time transformer only
542
+ - added changelog
543
+ - made playwright dependency lazy
544
+ - ai interaction table user is nullable now
545
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
546
+ - formatting changes
547
+ - Version info changes
548
+ - dummy otp can now be enabled on a per user basis
549
+ - jwt token optimisation
550
+ - optimised the authentication flow in microservice adapter to cache access token
551
+ - deleted file containing secrets
552
+ - changes
553
+ - optimisation around how dummy otp is managed
554
+ - isSeeded added
555
+ - bug fix for fetch layouts
556
+ - view modes added in layout
557
+ - One to many crud manager fixes
558
+ - one-to-many-crud-manager-fixes
559
+ - Many to many crud field manager fixes
560
+ - patch endpoint added in role controller
561
+ - many-to-many field fixes
562
+ - modelSequenceFormViewChangeHandler added on field change
563
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
564
+ - changes to format group values consistently
565
+ - fixes for normalizing group values
566
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
567
+ - changes to return groupValue in the group meta response as well. groupValue is...
568
+ - changes to return groupValue in the group meta response as well. groupValue is...
569
+ - filter_field_granularity_supported_added_for_date_fields
570
+ - password registration/login cleanup + max failed login attempts checks added
571
+ - removed unsafe inline from CSP
572
+ - removed incorrect comment
573
+ - changes
574
+ - Revert "replaced playwright with lazy dependency"
575
+ - replaced playwright with lazy dependency
576
+ - count and average
577
+ - fixes to solid core metadata configuration
578
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
579
+ - solid seed now prints proper exception stack trace
580
+ - added playwright dependencies as peer dependencies
581
+ - changed playwright import to make it lazy
582
+ - issue fixes
583
+ - formatting changes
584
+ - formatting changes
585
+ - changes for test setup
586
+ - package changes
587
+ - Changes to generate an SA user with the default password for simpler experience during setup
588
+ - more changes to support form data based uploads
589
+ - changes
590
+ - changes around testing workflow
591
+ - unified testing utitlities
592
+ - added comments to the slug code
593
+ - refactored queue namespacign
594
+ - queue namespacing related chanes
595
+ - removed todo
596
+ - queue name related changes
597
+ - cag
598
+ - changrs
599
+ - queues names are now namespaced by service naem
600
+ - enabled logs
601
+ - debug logs
602
+ - testing docs updated
603
+ - changes
604
+ - cleanup
605
+ - removed old testing related fiels
606
+ - testing infra now supports data based interpolation
607
+ - testing changes: now we support fully custom test specs
608
+ - changes for test automation
609
+ - changes to tsconfig for playwright tests
610
+ - exporting typeorm db helper
611
+ - removed the files section
612
+ - changes for playwright testing
613
+ - changes to disable service controller seed method
614
+ - formatting changes
615
+ - oom issue
616
+ - logger added for chatter
617
+ - changed arg to kebab case instead of came case in schematic service
618
+ - default menu icons added
619
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
620
+ - removed un-necessary log
621
+ - fix for handling non existence of fieldNamesForRemoval arg
622
+ - foirmatting canges
623
+ - Archived/solidstarters main
624
+ - version changes
625
+ - changed org : @solidstarters -> @solidxai
626
+ - removed publish script, since it is replaced with solidctl release
627
+ - chanes
628
+ - Revert "@solidstarters namespace changed to @solidx"
629
+ - @solidstarters namespace changed to @solidx
630
+ - file service interface changes
631
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
632
+ - changes to the publish script to support: 1.reverse merging main to dev to ensure latest package version is synced with dev post publish. 2. added guardrail to allow publishing from main branch only 3. added dry run option and force option i.e (in case we want to publish from another branch, but is hidden) 4. script now pushes the git version tags as well
633
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
634
+ - test data workflow
635
+ - test-data command
636
+ - seed command updated
637
+ - changes
638
+ - changes
639
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
640
+ - seeding now supports seedData allowing us to seed fixtures for testing.
641
+ - precomputations now skip computation if value is already provided
642
+ - added utility for findOneByUserKey
643
+ - pruning related chagnes
644
+ - changes
645
+ - more changes related to pruning metadata
646
+ - pruen logs added
647
+ - module metadata seeder now does prune also
648
+ - reformatting to improve readability
649
+ - changes
650
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
651
+ - bug fixes
652
+ - changes to cleanup the implementation by having the write method of file service return the url post write
653
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
654
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
655
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
656
+ - file service abstraction cleanup
657
+ - chagnes
658
+ - Dashboard Question Responsive
659
+
660
+ ## [0.1.16-beta.1] - 2026-08-31
661
+
662
+ ### Added
663
+
664
+ - add ModuleIconAssetService to manage module icon installation
665
+ - remove delete button visibility for user activity history
666
+ - implement default value application for required fields in import transactions
667
+ - add default values for required fields in import transactions
668
+ - enhance media type mapping to support multiple categories per extension in MediaFieldCrudManager
669
+ - update media file type definitions to expose only necessary fields for better clarity
670
+ - enhance media type handling by consolidating media file types and updating related services
671
+ - add SecretResolutionController and related DTO for reading secrets safely
672
+ - expose media type mappings and improve field label handling in MediaFieldCrudManager
673
+ - add resolve and resolveMany methods for secret management
674
+ - add normalization utilities for text fields and integrate them into LongTextFieldCrudManager and ShortTextFieldCrudManager
675
+ - implement eager installation of Chromium for Playwright UI tests
676
+ - add security header options for iframe embedding and customize frame-ancestors
677
+ - implement transaction handling for unpublishing records and restore previous version
678
+ - add createdAt field to PostChatterMessageDto and set default in service
679
+ - implement transaction handling for unpublishing records and restore previous version
680
+ - add progress reporting functionality to test runner and reporters
681
+ - add viewWidget attribute for fileSize in metadata
682
+ - add configurable UI timeouts for testing steps and update documentation
683
+ - enhance internationalisation by adding applyCreateDefaults method for localeName on create DTOs
684
+ - implement promoteRecoveredDraftPublishVersion method and integrate with CRUDService for soft-deleted records
685
+ - add default locale name for internationalised entries in test data seeding
686
+ - implement draft/publish versioning support and refactor related services
687
+ - add DraftPublishHelperService for managing draft and publish workflows
688
+ - add workflow field data provider support and related interfaces
689
+ - add asynchronous execution for workflows and enhance execution status retrieval
690
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
691
+ - enhance workflow definition management and add Python runtime node
692
+ - add SolidX integration nodes for login, email, and SMS
693
+ - add support for versioning and publishing in CRUD operations, including new fields in entities and filters
694
+ - enhance http.request node with query parameters and body modes
695
+ - refactor node structure and add sequential and switch nodes
696
+ - update workflow execution and definition handling
697
+ - implement workflow execution services and nodes
698
+ - implement API key generation for system admin users in ModuleMetadataSeederService
699
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
700
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
701
+ - enhance migration process with build and seed commands
702
+ - enhance datasource introspection with primary key detection and migration support
703
+ - enhance role creation with module linkage and resolve module metadata
704
+ - enhance action, role, and view metadata services with change detection and JSON normalization
705
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
706
+ - add new dashboard controller actions to permissions
707
+ - simplify queue health permissions by consolidating patterns
708
+ - implement explicit widget permissions and unauthorized response handling
709
+ - enhance widget permission checks and add unauthorized response handling
710
+ - add Queue SLA heatmap provider and update metadata
711
+ - update queue health menu item and reorder messages
712
+ - add various dashboard providers and runtime services
713
+ - implement WhatsApp Cloud API integration
714
+ - add gupshup whatsapp provider
715
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
716
+ - add updateCustomNoteMessage action to ChatterMessageController
717
+ - add secure custom-note edit API with attachment add/remove support
718
+ - implemented social media oath for facebook and microsoft
719
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
720
+ - implemented social media oath for facebook and microsoft
721
+ - add Message Tree Action and corresponding view for mqMessage
722
+ - implement processing timeout for RabbitMQ subscriber
723
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
724
+ - Migrate date/time transformers to UtcDateTimeTransformer.
725
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
726
+
727
+ ### Fixed
728
+
729
+ - update copy-resources script to include new menu icon and correct resource path
730
+ - update copy-resources script to target the correct directory for media files
731
+ - update build script to include resource copying and add copyfiles dependency
732
+ - remove postinstall script for menu icon installation
733
+ - add postinstall script to ensure menu icon is copied to the correct directory
734
+ - ensure file operations for menu icon are awaited in create and update methods
735
+ - update menuIconUrl to point to the correct image path
736
+ - prevent caching of negative lookups in cache helper and permission metadata service
737
+ - use replaceAll for activeUserId in security rule config
738
+ - remove migration command and related services
739
+ - pass model service to convertImportedRecordToDto and apply defaults in the correct order
740
+ - remove delete permission from metadata configuration
741
+ - remove delete permission from global settings
742
+ - make currentValue optional in CreateModelSequenceDto and update seeding logic to exclude it
743
+ - change matched column type from bit to default nullable boolean
744
+ - improve error message for media deletion restriction
745
+ - use transactions entitymanager for all subscribers only for embedded db projects
746
+ - update consuming project name resolution to use parent directory
747
+ - update solidx directory path to include consuming project name
748
+ - correct package name in model generation command and update error handling in module metadata retrieval
749
+ - username
750
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
751
+ - handle null or empty security rule configuration strings in repository
752
+
753
+ ### Changed
754
+
755
+ - remove ModuleIconAssetService from core module
756
+ - rename applyEntityDefaults to applyImportDefaults for clarity
757
+ - update media type handling in CreateFieldMetadataDto and FieldMetadataService
758
+ - remove onDelete cascade option from ManyToOne relationships in entity definitions
759
+ - unify datetime column types across entities using helper function
760
+ - remove explicit timestamp type for nullable date columns across entities
761
+ - update CommonEntity properties to be optional and adjust types in WorkflowTriggerExecution
762
+ - rename create-draft-publish-helper.service to draft-publish-helper.service and update imports
763
+ - inject InternationalisationHelperService in ModuleTestDataService and CrudHelperService
764
+ - separate generic delete from draft-publish and i18n cleanup in CRUDService
765
+ - remove unused boolean type and related system column definitions from DatasourceIntrospectionService
766
+ - update CrudHelperService to initialize DraftPublishHelperService directly in the class refactor: remove publishedAt sorting logic from getLayout method in ViewMetadataService
767
+ - simplify published version filtering in CRUDService
768
+ - remove handleSeedLocales method to streamline locale seeding process
769
+ - remove legacy dashboard files and add new dashboarding architecture guide
770
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
771
+ - remove redundant null check in resolveSecurityRuleConfig
772
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
773
+ - update legacy entity fields to be nullable and support null types
774
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
775
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
776
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
777
+
778
+ ### Documentation
779
+
780
+ - update expired discord link
781
+
782
+ ### Other
783
+
784
+ - instant logout for access token changes
785
+ - vocabulary docs added
786
+ - removed the secrets read endpoint, since it is not required now
787
+ - renamed variables for better naming
788
+ - changes to ensure path segement parsing is consisten for $res and $data fragements in the ops vocabulary e.g currently $res was not supporting brackets but only . while grabbing data from and object
789
+ - ensure missing secrets show up in the report output so the error is presented alongside the scenario step for clarity
790
+ - `${secret:...}` in the test vocabulary
791
+ - Refactor Chromium installation process and remove eager install script
792
+ - changes
793
+ - ## Phase 6 — Global Multer upload size limit
794
+ - ## Phase 5 — Dangerous-extension checks on menu-icon & settings uploads
795
+ - ## Phase 4 — Route chatter attachments through `MediaFieldCrudManager`
796
+ - ## Phase 3 — Close the `mediaMultiple` size/category gap, and align `validateAllowedExtensions`'s placement
797
+ - ## Phase 2 — Make `mediaTypes` category resolution extension-authoritative
798
+ - Per-field extension allowlist (`mediaAllowedExtensions`)
799
+ - mpin scheme version changes
800
+ - mpin related changes
801
+ - Add safe percent-decoding for uploaded file names to prevent bypassing extension checks
802
+ - Revert "Revert "Deliverable A now stands as: cache TTL (with the store swap that make…""
803
+ - Revert "Deliverable A now stands as: cache TTL (with the store swap that make…"
804
+ - fixes around handling concurrent logins properly using per deviceKey buckets.
805
+ - Deliverable A now stands as: cache TTL (with the store swap that makes it actually work), the me() null guard it necessitates, the logout verify/idempotency fix, previousValidUntil replacing the timer, and the dead validate() removed.
806
+ - fixed the request body limit to keep it as 10mb instead of 25mb by default
807
+ - changes around files name sanitization and normalization
808
+ - changes to handle variations in extension while uploading dangerous extension files
809
+ - change request body max to 25mb
810
+ - Comment out countGroupedRecords method implementation for refactoring
811
+ - show theme toggle
812
+ - rename theme registry
813
+ - remove some unusable code
814
+ - some changes
815
+ - solidx theme settings
816
+ - chagesn to testing readme
817
+ - changes to make ui.expectUrl to wait using the navigation timeout
818
+ - type fixes
819
+ - fixes around playwright context
820
+ - Scenario snap shot changes
821
+ - test run payload changes
822
+ - Testhub test run queue changes
823
+ - Screen shoot changes
824
+ - Test Life Cycle Changes.
825
+ - Testing Hub Changes
826
+ - chagesn to testing readme
827
+ - changes to support passing an explicit createdAt while posting a chatter message
828
+ - Enhance countGroupedRecords and passed internationalisation and draft publish workflow parameters in executeGroupPipeline
829
+ - rename theme registry
830
+ - changes to make ui.expectUrl to wait using the navigation timeout
831
+ - type fixes
832
+ - fixes around playwright context
833
+ - Scenario snap shot changes
834
+ - test run payload changes
835
+ - Testhub test run queue changes
836
+ - Screen shoot changes
837
+ - Test Life Cycle Changes.
838
+ - Testing Hub Changes
839
+ - remove add permisson from permisson-list-view
840
+ - removed indexes on username and mobile since it is a conditional index and it breaks for mssql since multiple nulls are not allowed on unique columns
841
+ - readme changes
842
+ - removed hardcoded type against a boolean type
843
+ - changes to the default testing setting timeout to pick from env as well
844
+ - remove duplicate code
845
+ - refactoring around chatter media security fix
846
+ - add media extension support for post chatter
847
+ - Add media upload action and validation in MediaService
848
+ - add media extension support for post chatter
849
+ - changes to ensure only id and field are returned while populating the user in chatter
850
+ - Update defaultValue types in solid-core-metadata.json to strings
851
+ - 1. changes to ensure user populated for chatter and createdBy/updatedBy has only id and fullName populate 2. Added Exclude at property level on user to exclude sensitive fields by default without having to add an exclude at the class level
852
+ - Add getMentionableUsers permission
853
+ - Add endpoint to retrieve mentionable users with search and limit options
854
+ - Add error handling nodes and enhance workflow node definitions
855
+ - Add skipHooks option to seed command and related services
856
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
857
+ - Enhance workflow node definitions and runtime context handling
858
+ - remvoing redundent code
859
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
860
+ - changes
861
+ - changes
862
+ - sql injection vulnerability closed in filter queries
863
+ - Remove LocalPath
864
+ - revert changes
865
+ - revert changes
866
+ - revert changes
867
+ - re revert
868
+ - revert changes
869
+ - private-file-cleanup
870
+ - add downlaodurl
871
+ - changes to allow overriding the is allowed api keys flag thru extension user
872
+ - Revert "user enumeration"
873
+ - remove validation from username and mobile
874
+ - user create validation bugs
875
+ - add normalize for otp based also
876
+ - Disable metadata pruning by default in seed command configuration
877
+ - Update seed command to enable metadata pruning by default
878
+ - handle-case-sensitive-for-email
879
+ - Add delete permissions for ImportTransactionController in solid-core metadata
880
+ - Add permissions for import/export functionality in solid-core metadata
881
+ - Refactor role assignment for admin users to handle capability roles individually
882
+ - discard changes
883
+ - add support for static file
884
+ - Add capability roles for admin users in module metadata seeder
885
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
886
+ - attachment
887
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
888
+ - make isPublic default true
889
+ - changes to show the image inline
890
+ - cleanup againts media's
891
+ - inline role crate false
892
+ - Implement chatter mention notification system with email templates and queue handling
893
+ - Add messageBodyMentions field to chatter message DTOs and entity
894
+ - fix-audit-bug
895
+ - changes to include signed url token for private media
896
+ - Revert "Revert "rename function name""
897
+ - Revert "Revert "add private media support""
898
+ - Add media file type constants and enhance security for media uploads
899
+ - remove some unusable code
900
+ - some changes
901
+ - handle technical error messages due to missing resource in static resources folder
902
+ - Revert "add private media support"
903
+ - Revert "rename function name"
904
+ - rename function name
905
+ - add private media support
906
+ - some fixes
907
+ - solidx session invalid changes
908
+ - add validation on get chatter message
909
+ - updatedAt value is updating now
910
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
911
+ - add security against chatter
912
+ - chatter message endpoint made public
913
+ - removed embedded db support
914
+ - Add default sorting by ID if not explicitly specified in order options
915
+ - solidx theme settings
916
+ - add icons across all the models in solid core
917
+ - media upload added behind auth
918
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
919
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
920
+ - class serializer interceptor added for impact of Exclude and Expose
921
+ - Enhance datasource introspection with primary key validation and user key resolution
922
+ - Concurrent Login Feature
923
+ - user enumeration
924
+ - add helper text key on settings object .........
925
+ - changes to handle case insenstive filter operations if the values are other than string by casting
926
+ - menus item fix
927
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
928
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
929
+ - display name changed
930
+ - name changed
931
+ - added settings for configure the row click on solid list view
932
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
933
+ - fixed legacy entity files names
934
+ - view metadata type field - selection static and roles required false from menu-item
935
+ - Fix for this issue > stop applying lower for numeric fields.
936
+ - refactor and add migration command
937
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
938
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
939
+ - changes to take in option for seeding with modules in current seed method
940
+ - Fix validation logic to parse string field values as integers before applying validations
941
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
942
+ - ad changes
943
+ - Add locale seeding functionality and enhance locale management
944
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
945
+ - changes to avoid extra module checks before dynamically loading it
946
+ - defaulted to modulemetadataseederservice if no seeder provided
947
+ - Add Date field in Instructions Response
948
+ - ai interaction cleanup changes
949
+ - enabling create,edit,import,export on permission and lov modules
950
+ - added module to rolemetadata list view
951
+ - roles group by module changes
952
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
953
+ - Implement Datasource Management functionality with controller, service, and DTO
954
+ - added index to fields newly added as sortable and searchable
955
+ - Add archiver package to dependencies
956
+ - removed unnecessary seed file
957
+ - Add TypeORM migration helper functions and export in index
958
+ - fixes
959
+ - reverted accidental removal of the layout builder root menu
960
+ - pending cleanup of solid core menu items
961
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
962
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
963
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
964
+ - changes for IAM
965
+ - Add clearPackageRuntime functionality and corresponding metadata action
966
+ - Add archiver dependency and implement module package export functionality
967
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
968
+ - Update solid-core-metadata.json to disable create, edit, and delete actions, and set searchable attributes to false for specific fields for media storage provider
969
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
970
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
971
+ - Remove unused database bootstrap service and related SQL cleanup procedures
972
+ - cleanup
973
+ - Add view and action metadata tree views with updated permissions and searchable fields
974
+ - Add view and action metadata tree views with updated permissions and searchable fields
975
+ - menu item model cleanup
976
+ - Add resumable import handling and transaction management in module package service
977
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
978
+ - Enhance module metadata seeder: add validation for module name, streamline array handling for scheduled jobs, saved filters, list of values, security rules, sms templates, email templates, menus, actions, views, users, roles, media storage providers, model sequences, and models metadata.
979
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
980
+ - many to one left join issue fixed
981
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
982
+ - Refactor CRUD and model metadata services to enhance group filtering and pagination; streamline response handling and improve query structure. configuration changes to support tree view in model metadata
983
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
984
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
985
+ - Implement module metadata explorer with CRUD operations and search functionality
986
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
987
+ - Bug fixs
988
+ - added frontend base url as well to the default settings
989
+ - minor cleanup
990
+ - changes to cleanup legacy table related fields
991
+ - changes for new dashboards functionality
992
+ - always print server startup line regardless of log level
993
+ - Add field quality checks and fixes checklist for backend validation
994
+ - typeo issue
995
+ - Agent table clean up
996
+ - Add manual interaction step for Playwright and update README
997
+ - provision made to unlink data rather than having to teardown everything
998
+ - provision made to unlink data rather than having to teardown everything
999
+ - changes to colour the server startup line
1000
+ - Agent table clean up
1001
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
1002
+ - removed id command options and retained the singular name option only for consistency purposes
1003
+ - changes to route genertion commands thru solidctl. The refresh-module & refresh-model commands are what are eventually called and end up calling the services only, keeping calling consistent and ensuring everything is route thru solidctl generate
1004
+ - got rid of fieldNamesForRefresh and fieldIdsForRefresh dead chain since it is not used now, due to fields being read in the code builder from the metadata json directly
1005
+ - MCP table solid changes
1006
+ - playwrite added as dependency instead
1007
+ - changes to the test runner
1008
+ - chatter message user resolution chagnes
1009
+ - bug fix in chatter message user resolution after we moved to queues.
1010
+ - moved back to beta3
1011
+ - failed login attempts field added to the json and update dto and exposed in entity
1012
+ - removed un-necessary index on newvalue display
1013
+ - ts changes error: any
1014
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
1015
+ - changed model metadata service default form layout to be single column
1016
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
1017
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
1018
+ - normalised @ApiTags
1019
+ - enum for passwordless modes
1020
+ - bug fix in how alternative actions are rendered
1021
+ - queue related bug fixes
1022
+ - changes to add a websocket adaptor to the bootstrap server routine
1023
+ - license changes
1024
+ - type fixes
1025
+ - removed min and max from long text mapping
1026
+ - bug fix for shortext field mapping
1027
+ - changes to post the testing results to a webhook api with a test payload
1028
+ - added import multer this fixes un-necessary ts errors in vscode
1029
+ - ts errors fixed
1030
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
1031
+ - formatting changes
1032
+ - facebook oauth
1033
+ - Status required false
1034
+ - updated gitignore
1035
+ - dleete un-necessary docs
1036
+ - deleted un-necessary files
1037
+ - changes related to more grooming
1038
+ - api added in cors
1039
+ - refactor Oauth strategy
1040
+ - Revert "Ft social media login"
1041
+ - bug fix
1042
+ - bug fix
1043
+ - add new api me endpoint and role based settings
1044
+ - setting changes for new ui architecture
1045
+ - changes for new settings structure
1046
+ - chatter task subtype and related changes
1047
+ - bug fix
1048
+ - fixes
1049
+ - changes to get rid of angular schematics for helping with string case transformation for consistency purpose i.e (lodash is being used on frontend too) and avoid edge cases
1050
+ - changes to handle import logs as well, thru configured winston log level
1051
+ - change isMultiSelect to true in solid-core-metadata.json
1052
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
1053
+ - tightened up queue subscriber interface + fixed core subscribers that were not returning anything. all subscribers must either return a promise or if not async then the actual value
1054
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
1055
+ - bug fix: passwordless registration should create a user with active false
1056
+ - apikeys attribute was not exposed
1057
+ - refactor Oauth strategy
1058
+ - changes to avoid sending out encrypted setting in api responses. also removed menu item and action entries for ai settings. (temporary fix, since setting ui to be revamped soon)
1059
+ - bug fix
1060
+ - null check on role
1061
+ - made provision to seed custom permissions
1062
+ - handled seed scenario too
1063
+ - upload File and expectHidden changes
1064
+ - extension user cleanup and checks added
1065
+ - fixed types for cleanup
1066
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
1067
+ - fixes bare shell imports with relative imports
1068
+ - dynamic import fix
1069
+ - removed unnecessary file
1070
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
1071
+ - removed base abstract class
1072
+ - added interface too
1073
+ - changes
1074
+ - changes to test data seeding & fixed the type for authenticationService.signup method
1075
+ - changes to user dto to include the api keys toggle
1076
+ - add default role to the user only if there are no roles resolved against a user
1077
+ - changes to replace current extension user custom user creation logic with the use of dynamic extension user provider. cleans up creation of an extension user
1078
+ - Only forward --debug when explicitly enabled.
1079
+ - toolOutput field changes to json
1080
+ - adding user api key entity to export
1081
+ - minor optimisation to how dynamic modules are loaded
1082
+ - Add Discord badge to top of README
1083
+ - Fix broken BSL license link and add Discord link to README
1084
+ - Add BSL 1.1 license and update package.json license field
1085
+ - Seed user and roles in testing data
1086
+ - removed readme.txt
1087
+ - moved type and interfaces in interfaces.ts and refactored accordingly
1088
+ - changed to md
1089
+ - added readme
1090
+ - Ai setting model change
1091
+ - changes to allow encrypting setting keys
1092
+ - form view clean up
1093
+ - Agent table list view changes
1094
+ - synchronize false
1095
+ - changes to resolve the selection dynamic provider by name and token both
1096
+ - changes to bypass swagger urls from csp policy
1097
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
1098
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
1099
+ - changes to implement the sso code and sso exchange use cases
1100
+ - removed orm types / exported api key entity
1101
+ - added provision to control if api key creation is allowed for the user
1102
+ - api key changes for backend
1103
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
1104
+ - fix to call addRoles only if role names are present
1105
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
1106
+ - refactor: update legacy entity fields to be nullable and support null types
1107
+ - Json structure change
1108
+ - Agent table metadata clean up changes
1109
+ - longtext
1110
+ - longtext changes
1111
+ - Agent tables clean up
1112
+ - fixes to seed many-to-many relation for tests
1113
+ - changes to seed media in testing data
1114
+ - Chatter modelUserkey and excel many to one issue
1115
+ - keeping the default selectionValueType as string since this is a good default
1116
+ - bug fixes around how media is done
1117
+ - bug fixes
1118
+ - try catch inside logEvent
1119
+ - media has card based metadata
1120
+ - Refresh token activity
1121
+ - changes to implement the sso code and sso exchange use cases
1122
+ - cleanup
1123
+ - enabled kanban view on mq message
1124
+ - Agent table changes
1125
+ - changes to disallow deleting a model or module in production
1126
+ - changelog version bumped
1127
+ - changelog added
1128
+ - changes to control the logging using env variables & set appropriate defaults basis environment
1129
+ - chnages for logging
1130
+ - Chatter queue fixs
1131
+ - one more "beta" for ozzy
1132
+ - additional loggging in cors helper
1133
+ - changes
1134
+ - Redis Queue component and rabbitMQ folder changes
1135
+ - changes to track old and new fields as part of the delete entity operation
1136
+ - optimizations done for audit subcriber
1137
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
1138
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
1139
+ - formatting changes
1140
+ - performance optimisations 1. created by updated by subscriber is not querying users again and again 2. rabbit pub / sub can now optinally switch off db persistence
1141
+ - qs depth config increased
1142
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
1143
+ - cached model metadata queries
1144
+ - changse
1145
+ - disabled extra loggign
1146
+ - chagnes
1147
+ - reduced concurrency in computed fields
1148
+ - additional loggign
1149
+ - added indexes to mobile & email since those are frequently queries upon
1150
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
1151
+ - Redis background job changes
1152
+ - Chatter Rationalizing
1153
+ - changes
1154
+ - changes
1155
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
1156
+ - changes to export bootstrap helpers for server & cli nest applications
1157
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
1158
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
1159
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
1160
+ - added index on message id in mq message table
1161
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
1162
+ - changes to save model sequence id as part of post compute instead of pre compute
1163
+ - changse
1164
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
1165
+ - High concurrency fix for alpha num and sequence num computed fields
1166
+ - bug fix in cron evalutaion
1167
+ - tighter logging around roles
1168
+ - scheduler now supports env based specific jobs starting and others not
1169
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
1170
+ - revert cross db changes for view-metadata-entity
1171
+ - fixes
1172
+ - changes to handle cross-db compatibility
1173
+ - added type as simple-json
1174
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
1175
+ - Revert "Merge branch 'media-update' into 'main'"
1176
+ - Mysql related changes
1177
+ - ts-morph and media storage fix
1178
+ - dashboard layout menu item added
1179
+ - dashboard changes
1180
+ - scheduler bug fix
1181
+ - made provision to execute scheduled jobs manually
1182
+ - changes
1183
+ - cleanup
1184
+ - logging related changes and made user activity history tree view
1185
+ - changes to return the wall clock time as utc for chatter as well to keep it...
1186
+ - changes around dashboard question refactoring
1187
+ - default tree view and action added on code generation
1188
+ - Date time format changes in audit
1189
+ - user activity history on otp login
1190
+ - changes
1191
+ - changelog added
1192
+ - reverted legacy and common entity to use local date time transformer only
1193
+ - added changelog
1194
+ - made playwright dependency lazy
1195
+ - ai interaction table user is nullable now
1196
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
1197
+ - formatting changes
1198
+ - Version info changes
1199
+ - dummy otp can now be enabled on a per user basis
1200
+ - jwt token optimisation
1201
+ - optimised the authentication flow in microservice adapter to cache access token
1202
+ - deleted file containing secrets
1203
+ - changes
1204
+ - optimisation around how dummy otp is managed
1205
+ - isSeeded added
1206
+ - bug fix for fetch layouts
1207
+ - view modes added in layout
1208
+ - One to many crud manager fixes
1209
+ - one-to-many-crud-manager-fixes
1210
+ - Many to many crud field manager fixes
1211
+ - patch endpoint added in role controller
1212
+ - many-to-many field fixes
1213
+ - modelSequenceFormViewChangeHandler added on field change
1214
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
1215
+ - changes to format group values consistently
1216
+ - fixes for normalizing group values
1217
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
1218
+ - changes to return groupValue in the group meta response as well. groupValue is...
1219
+ - changes to return groupValue in the group meta response as well. groupValue is...
1220
+ - filter_field_granularity_supported_added_for_date_fields
1221
+ - password registration/login cleanup + max failed login attempts checks added
1222
+ - removed unsafe inline from CSP
1223
+ - removed incorrect comment
1224
+ - changes
1225
+ - Revert "replaced playwright with lazy dependency"
1226
+ - replaced playwright with lazy dependency
1227
+ - count and average
1228
+ - fixes to solid core metadata configuration
1229
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
1230
+ - solid seed now prints proper exception stack trace
1231
+ - added playwright dependencies as peer dependencies
1232
+ - changed playwright import to make it lazy
1233
+ - issue fixes
1234
+ - formatting changes
1235
+ - formatting changes
1236
+ - changes for test setup
1237
+ - package changes
1238
+ - Changes to generate an SA user with the default password for simpler experience during setup
1239
+ - more changes to support form data based uploads
1240
+ - changes
1241
+ - changes around testing workflow
1242
+ - unified testing utitlities
1243
+ - added comments to the slug code
1244
+ - refactored queue namespacign
1245
+ - queue namespacing related chanes
1246
+ - removed todo
1247
+ - queue name related changes
1248
+ - cag
1249
+ - changrs
1250
+ - queues names are now namespaced by service naem
1251
+ - enabled logs
1252
+ - debug logs
1253
+ - testing docs updated
1254
+ - changes
1255
+ - cleanup
1256
+ - removed old testing related fiels
1257
+ - testing infra now supports data based interpolation
1258
+ - testing changes: now we support fully custom test specs
1259
+ - changes for test automation
1260
+ - changes to tsconfig for playwright tests
1261
+ - exporting typeorm db helper
1262
+ - removed the files section
1263
+ - changes for playwright testing
1264
+ - changes to disable service controller seed method
1265
+ - formatting changes
1266
+ - oom issue
1267
+ - logger added for chatter
1268
+ - changed arg to kebab case instead of came case in schematic service
1269
+ - default menu icons added
1270
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
1271
+ - removed un-necessary log
1272
+ - fix for handling non existence of fieldNamesForRemoval arg
1273
+ - foirmatting canges
1274
+ - Archived/solidstarters main
1275
+ - version changes
1276
+ - changed org : @solidstarters -> @solidxai
1277
+ - removed publish script, since it is replaced with solidctl release
1278
+ - chanes
1279
+ - Revert "@solidstarters namespace changed to @solidx"
1280
+ - @solidstarters namespace changed to @solidx
1281
+ - file service interface changes
1282
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
1283
+ - changes to the publish script to support: 1.reverse merging main to dev to ensure latest package version is synced with dev post publish. 2. added guardrail to allow publishing from main branch only 3. added dry run option and force option i.e (in case we want to publish from another branch, but is hidden) 4. script now pushes the git version tags as well
1284
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
1285
+ - test data workflow
1286
+ - test-data command
1287
+ - seed command updated
1288
+ - changes
1289
+ - changes
1290
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
1291
+ - seeding now supports seedData allowing us to seed fixtures for testing.
1292
+ - precomputations now skip computation if value is already provided
1293
+ - added utility for findOneByUserKey
1294
+ - pruning related chagnes
1295
+ - changes
1296
+ - more changes related to pruning metadata
1297
+ - pruen logs added
1298
+ - module metadata seeder now does prune also
1299
+ - reformatting to improve readability
1300
+ - changes
1301
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
1302
+ - bug fixes
1303
+ - changes to cleanup the implementation by having the write method of file service return the url post write
1304
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
1305
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
1306
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
1307
+ - file service abstraction cleanup
1308
+ - chagnes
1309
+ - Dashboard Question Responsive
1310
+
3
1311
  ## [0.1.16-beta.0] - 2026-08-31
4
1312
 
5
1313
  ### Added