@solidxai/core 0.1.13-beta.5 → 0.1.13-beta.7

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