@solidxai/core 0.1.13 → 0.1.14

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 (43) hide show
  1. package/CHANGELOG.md +2373 -0
  2. package/dist/constants/media-file-types.d.ts +14 -0
  3. package/dist/constants/media-file-types.d.ts.map +1 -1
  4. package/dist/constants/media-file-types.js +83 -15
  5. package/dist/constants/media-file-types.js.map +1 -1
  6. package/dist/controllers/field-metadata.controller.d.ts +4 -0
  7. package/dist/controllers/field-metadata.controller.d.ts.map +1 -1
  8. package/dist/controllers/view-metadata.controller.d.ts +4 -0
  9. package/dist/controllers/view-metadata.controller.d.ts.map +1 -1
  10. package/dist/helpers/field-crud-managers/LongTextFieldCrudManager.d.ts.map +1 -1
  11. package/dist/helpers/field-crud-managers/LongTextFieldCrudManager.js +3 -2
  12. package/dist/helpers/field-crud-managers/LongTextFieldCrudManager.js.map +1 -1
  13. package/dist/helpers/field-crud-managers/MediaFieldCrudManager.d.ts +2 -0
  14. package/dist/helpers/field-crud-managers/MediaFieldCrudManager.d.ts.map +1 -1
  15. package/dist/helpers/field-crud-managers/MediaFieldCrudManager.js +10 -52
  16. package/dist/helpers/field-crud-managers/MediaFieldCrudManager.js.map +1 -1
  17. package/dist/helpers/field-crud-managers/ShortTextFieldCrudManager.d.ts.map +1 -1
  18. package/dist/helpers/field-crud-managers/ShortTextFieldCrudManager.js +3 -2
  19. package/dist/helpers/field-crud-managers/ShortTextFieldCrudManager.js.map +1 -1
  20. package/dist/helpers/field-crud-managers/textFieldCrudManagerUtils.d.ts +3 -0
  21. package/dist/helpers/field-crud-managers/textFieldCrudManagerUtils.d.ts.map +1 -0
  22. package/dist/helpers/field-crud-managers/textFieldCrudManagerUtils.js +17 -0
  23. package/dist/helpers/field-crud-managers/textFieldCrudManagerUtils.js.map +1 -0
  24. package/dist/services/crud.service.d.ts.map +1 -1
  25. package/dist/services/crud.service.js +2 -1
  26. package/dist/services/crud.service.js.map +1 -1
  27. package/dist/services/field-metadata.service.d.ts +4 -0
  28. package/dist/services/field-metadata.service.d.ts.map +1 -1
  29. package/dist/services/field-metadata.service.js +1 -0
  30. package/dist/services/field-metadata.service.js.map +1 -1
  31. package/dist/services/view-metadata.service.d.ts +4 -0
  32. package/dist/services/view-metadata.service.d.ts.map +1 -1
  33. package/dist/services/view-metadata.service.js +2 -0
  34. package/dist/services/view-metadata.service.js.map +1 -1
  35. package/package.json +1 -1
  36. package/src/constants/media-file-types.ts +95 -10
  37. package/src/helpers/field-crud-managers/LongTextFieldCrudManager.ts +3 -2
  38. package/src/helpers/field-crud-managers/MediaFieldCrudManager.ts +12 -64
  39. package/src/helpers/field-crud-managers/ShortTextFieldCrudManager.ts +3 -2
  40. package/src/helpers/field-crud-managers/textFieldCrudManagerUtils.ts +14 -0
  41. package/src/services/crud.service.ts +2 -1
  42. package/src/services/field-metadata.service.ts +2 -1
  43. package/src/services/view-metadata.service.ts +4 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1193 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.14] - 2026-08-20
4
+
5
+ ### Added
6
+
7
+ - update media file type definitions to expose only necessary fields for better clarity
8
+ - enhance media type handling by consolidating media file types and updating related services
9
+ - expose media type mappings and improve field label handling in MediaFieldCrudManager
10
+ - add normalization utilities for text fields and integrate them into LongTextFieldCrudManager and ShortTextFieldCrudManager
11
+ - add security header options for iframe embedding and customize frame-ancestors
12
+ - add createdAt field to PostChatterMessageDto and set default in service
13
+ - implement transaction handling for unpublishing records and restore previous version
14
+ - add progress reporting functionality to test runner and reporters
15
+ - add viewWidget attribute for fileSize in metadata
16
+ - add configurable UI timeouts for testing steps and update documentation
17
+ - enhance internationalisation by adding applyCreateDefaults method for localeName on create DTOs
18
+ - implement promoteRecoveredDraftPublishVersion method and integrate with CRUDService for soft-deleted records
19
+ - add default locale name for internationalised entries in test data seeding
20
+ - implement draft/publish versioning support and refactor related services
21
+ - add DraftPublishHelperService for managing draft and publish workflows
22
+ - add workflow field data provider support and related interfaces
23
+ - add asynchronous execution for workflows and enhance execution status retrieval
24
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
25
+ - enhance workflow definition management and add Python runtime node
26
+ - add SolidX integration nodes for login, email, and SMS
27
+ - add support for versioning and publishing in CRUD operations, including new fields in entities and filters
28
+ - enhance http.request node with query parameters and body modes
29
+ - refactor node structure and add sequential and switch nodes
30
+ - update workflow execution and definition handling
31
+ - implement workflow execution services and nodes
32
+ - implement API key generation for system admin users in ModuleMetadataSeederService
33
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
34
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
35
+ - enhance migration process with build and seed commands
36
+ - enhance datasource introspection with primary key detection and migration support
37
+ - enhance role creation with module linkage and resolve module metadata
38
+ - enhance action, role, and view metadata services with change detection and JSON normalization
39
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
40
+ - add new dashboard controller actions to permissions
41
+ - simplify queue health permissions by consolidating patterns
42
+ - implement explicit widget permissions and unauthorized response handling
43
+ - enhance widget permission checks and add unauthorized response handling
44
+ - add Queue SLA heatmap provider and update metadata
45
+ - update queue health menu item and reorder messages
46
+ - add various dashboard providers and runtime services
47
+ - implement WhatsApp Cloud API integration
48
+ - add gupshup whatsapp provider
49
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
50
+ - add updateCustomNoteMessage action to ChatterMessageController
51
+ - add secure custom-note edit API with attachment add/remove support
52
+ - implemented social media oath for facebook and microsoft
53
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
54
+ - implemented social media oath for facebook and microsoft
55
+ - add Message Tree Action and corresponding view for mqMessage
56
+ - implement processing timeout for RabbitMQ subscriber
57
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
58
+ - Migrate date/time transformers to UtcDateTimeTransformer.
59
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
60
+
61
+ ### Fixed
62
+
63
+ - make currentValue optional in CreateModelSequenceDto and update seeding logic to exclude it
64
+ - change matched column type from bit to default nullable boolean
65
+ - improve error message for media deletion restriction
66
+ - use transactions entitymanager for all subscribers only for embedded db projects
67
+ - update consuming project name resolution to use parent directory
68
+ - update solidx directory path to include consuming project name
69
+ - correct package name in model generation command and update error handling in module metadata retrieval
70
+ - username
71
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
72
+ - handle null or empty security rule configuration strings in repository
73
+
74
+ ### Changed
75
+
76
+ - update media type handling in CreateFieldMetadataDto and FieldMetadataService
77
+ - remove onDelete cascade option from ManyToOne relationships in entity definitions
78
+ - unify datetime column types across entities using helper function
79
+ - remove explicit timestamp type for nullable date columns across entities
80
+ - update CommonEntity properties to be optional and adjust types in WorkflowTriggerExecution
81
+ - rename create-draft-publish-helper.service to draft-publish-helper.service and update imports
82
+ - inject InternationalisationHelperService in ModuleTestDataService and CrudHelperService
83
+ - separate generic delete from draft-publish and i18n cleanup in CRUDService
84
+ - remove unused boolean type and related system column definitions from DatasourceIntrospectionService
85
+ - update CrudHelperService to initialize DraftPublishHelperService directly in the class refactor: remove publishedAt sorting logic from getLayout method in ViewMetadataService
86
+ - simplify published version filtering in CRUDService
87
+ - remove handleSeedLocales method to streamline locale seeding process
88
+ - remove legacy dashboard files and add new dashboarding architecture guide
89
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
90
+ - remove redundant null check in resolveSecurityRuleConfig
91
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
92
+ - update legacy entity fields to be nullable and support null types
93
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
94
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
95
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
96
+
97
+ ### Documentation
98
+
99
+ - update expired discord link
100
+
101
+ ### Other
102
+
103
+ - ## Phase 6 — Global Multer upload size limit
104
+ - ## Phase 5 — Dangerous-extension checks on menu-icon & settings uploads
105
+ - ## Phase 4 — Route chatter attachments through `MediaFieldCrudManager`
106
+ - ## Phase 3 — Close the `mediaMultiple` size/category gap, and align `validateAllowedExtensions`'s placement
107
+ - ## Phase 2 — Make `mediaTypes` category resolution extension-authoritative
108
+ - Per-field extension allowlist (`mediaAllowedExtensions`)
109
+ - mpin scheme version changes
110
+ - mpin related changes
111
+ - Add safe percent-decoding for uploaded file names to prevent bypassing extension checks
112
+ - Revert "Revert "Deliverable A now stands as: cache TTL (with the store swap that make…""
113
+ - Revert "Deliverable A now stands as: cache TTL (with the store swap that make…"
114
+ - fixes around handling concurrent logins properly using per deviceKey buckets.
115
+ - Deliverable A now stands as: cache TTL (with the store swap that makes it actually work), the me() null guard it necessitates, the logout verify/idempotency fix, previousValidUntil replacing the timer, and the dead validate() removed.
116
+ - fixed the request body limit to keep it as 10mb instead of 25mb by default
117
+ - changes around files name sanitization and normalization
118
+ - changes to handle variations in extension while uploading dangerous extension files
119
+ - change request body max to 25mb
120
+ - Comment out countGroupedRecords method implementation for refactoring
121
+ - show theme toggle
122
+ - changes to support passing an explicit createdAt while posting a chatter message
123
+ - Enhance countGroupedRecords and passed internationalisation and draft publish workflow parameters in executeGroupPipeline
124
+ - rename theme registry
125
+ - remove add permisson from permisson-list-view
126
+ - removed indexes on username and mobile since it is a conditional index and it breaks for mssql since multiple nulls are not allowed on unique columns
127
+ - readme changes
128
+ - removed hardcoded type against a boolean type
129
+ - changes to the default testing setting timeout to pick from env as well
130
+ - remove duplicate code
131
+ - refactoring around chatter media security fix
132
+ - add media extension support for post chatter
133
+ - Add media upload action and validation in MediaService
134
+ - add media extension support for post chatter
135
+ - changes to ensure only id and field are returned while populating the user in chatter
136
+ - Update defaultValue types in solid-core-metadata.json to strings
137
+ - 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
138
+ - Add getMentionableUsers permission
139
+ - Add endpoint to retrieve mentionable users with search and limit options
140
+ - Add error handling nodes and enhance workflow node definitions
141
+ - Add skipHooks option to seed command and related services
142
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
143
+ - Enhance workflow node definitions and runtime context handling
144
+ - remvoing redundent code
145
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
146
+ - changes
147
+ - changes
148
+ - sql injection vulnerability closed in filter queries
149
+ - Remove LocalPath
150
+ - revert changes
151
+ - revert changes
152
+ - revert changes
153
+ - re revert
154
+ - revert changes
155
+ - private-file-cleanup
156
+ - add downlaodurl
157
+ - changes to allow overriding the is allowed api keys flag thru extension user
158
+ - Revert "user enumeration"
159
+ - remove validation from username and mobile
160
+ - user create validation bugs
161
+ - add normalize for otp based also
162
+ - Disable metadata pruning by default in seed command configuration
163
+ - Update seed command to enable metadata pruning by default
164
+ - handle-case-sensitive-for-email
165
+ - Add delete permissions for ImportTransactionController in solid-core metadata
166
+ - Add permissions for import/export functionality in solid-core metadata
167
+ - Refactor role assignment for admin users to handle capability roles individually
168
+ - discard changes
169
+ - add support for static file
170
+ - Add capability roles for admin users in module metadata seeder
171
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
172
+ - attachment
173
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
174
+ - make isPublic default true
175
+ - changes to show the image inline
176
+ - cleanup againts media's
177
+ - inline role crate false
178
+ - Implement chatter mention notification system with email templates and queue handling
179
+ - Add messageBodyMentions field to chatter message DTOs and entity
180
+ - fix-audit-bug
181
+ - changes to include signed url token for private media
182
+ - Revert "Revert "rename function name""
183
+ - Revert "Revert "add private media support""
184
+ - Add media file type constants and enhance security for media uploads
185
+ - remove some unusable code
186
+ - some changes
187
+ - handle technical error messages due to missing resource in static resources folder
188
+ - Revert "add private media support"
189
+ - Revert "rename function name"
190
+ - rename function name
191
+ - add private media support
192
+ - some fixes
193
+ - solidx session invalid changes
194
+ - add validation on get chatter message
195
+ - updatedAt value is updating now
196
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
197
+ - add security against chatter
198
+ - chatter message endpoint made public
199
+ - removed embedded db support
200
+ - Add default sorting by ID if not explicitly specified in order options
201
+ - solidx theme settings
202
+ - add icons across all the models in solid core
203
+ - media upload added behind auth
204
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
205
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
206
+ - class serializer interceptor added for impact of Exclude and Expose
207
+ - Enhance datasource introspection with primary key validation and user key resolution
208
+ - Concurrent Login Feature
209
+ - user enumeration
210
+ - add helper text key on settings object .........
211
+ - changes to handle case insenstive filter operations if the values are other than string by casting
212
+ - menus item fix
213
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
214
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
215
+ - display name changed
216
+ - name changed
217
+ - added settings for configure the row click on solid list view
218
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
219
+ - fixed legacy entity files names
220
+ - view metadata type field - selection static and roles required false from menu-item
221
+ - Fix for this issue > stop applying lower for numeric fields.
222
+ - refactor and add migration command
223
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
224
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
225
+ - changes to take in option for seeding with modules in current seed method
226
+ - Fix validation logic to parse string field values as integers before applying validations
227
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
228
+ - ad changes
229
+ - Add locale seeding functionality and enhance locale management
230
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
231
+ - changes to avoid extra module checks before dynamically loading it
232
+ - defaulted to modulemetadataseederservice if no seeder provided
233
+ - Add Date field in Instructions Response
234
+ - ai interaction cleanup changes
235
+ - enabling create,edit,import,export on permission and lov modules
236
+ - added module to rolemetadata list view
237
+ - roles group by module changes
238
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
239
+ - Implement Datasource Management functionality with controller, service, and DTO
240
+ - added index to fields newly added as sortable and searchable
241
+ - Add archiver package to dependencies
242
+ - removed unnecessary seed file
243
+ - Add TypeORM migration helper functions and export in index
244
+ - fixes
245
+ - reverted accidental removal of the layout builder root menu
246
+ - pending cleanup of solid core menu items
247
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
248
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
249
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
250
+ - changes for IAM
251
+ - Add clearPackageRuntime functionality and corresponding metadata action
252
+ - Add archiver dependency and implement module package export functionality
253
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
254
+ - 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
255
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
256
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
257
+ - Remove unused database bootstrap service and related SQL cleanup procedures
258
+ - cleanup
259
+ - Add view and action metadata tree views with updated permissions and searchable fields
260
+ - Add view and action metadata tree views with updated permissions and searchable fields
261
+ - menu item model cleanup
262
+ - Add resumable import handling and transaction management in module package service
263
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
264
+ - 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.
265
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
266
+ - many to one left join issue fixed
267
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
268
+ - 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
269
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
270
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
271
+ - Implement module metadata explorer with CRUD operations and search functionality
272
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
273
+ - Bug fixs
274
+ - added frontend base url as well to the default settings
275
+ - minor cleanup
276
+ - changes to cleanup legacy table related fields
277
+ - changes for new dashboards functionality
278
+ - always print server startup line regardless of log level
279
+ - Add field quality checks and fixes checklist for backend validation
280
+ - typeo issue
281
+ - Agent table clean up
282
+ - Add manual interaction step for Playwright and update README
283
+ - provision made to unlink data rather than having to teardown everything
284
+ - provision made to unlink data rather than having to teardown everything
285
+ - changes to colour the server startup line
286
+ - Agent table clean up
287
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
288
+ - removed id command options and retained the singular name option only for consistency purposes
289
+ - 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
290
+ - 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
291
+ - MCP table solid changes
292
+ - playwrite added as dependency instead
293
+ - changes to the test runner
294
+ - chatter message user resolution chagnes
295
+ - bug fix in chatter message user resolution after we moved to queues.
296
+ - moved back to beta3
297
+ - failed login attempts field added to the json and update dto and exposed in entity
298
+ - removed un-necessary index on newvalue display
299
+ - ts changes error: any
300
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
301
+ - changed model metadata service default form layout to be single column
302
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
303
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
304
+ - normalised @ApiTags
305
+ - enum for passwordless modes
306
+ - bug fix in how alternative actions are rendered
307
+ - queue related bug fixes
308
+ - changes to add a websocket adaptor to the bootstrap server routine
309
+ - license changes
310
+ - type fixes
311
+ - removed min and max from long text mapping
312
+ - bug fix for shortext field mapping
313
+ - changes to post the testing results to a webhook api with a test payload
314
+ - added import multer this fixes un-necessary ts errors in vscode
315
+ - ts errors fixed
316
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
317
+ - formatting changes
318
+ - facebook oauth
319
+ - Status required false
320
+ - updated gitignore
321
+ - dleete un-necessary docs
322
+ - deleted un-necessary files
323
+ - changes related to more grooming
324
+ - api added in cors
325
+ - refactor Oauth strategy
326
+ - Revert "Ft social media login"
327
+ - bug fix
328
+ - bug fix
329
+ - add new api me endpoint and role based settings
330
+ - setting changes for new ui architecture
331
+ - changes for new settings structure
332
+ - chatter task subtype and related changes
333
+ - bug fix
334
+ - fixes
335
+ - 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
336
+ - changes to handle import logs as well, thru configured winston log level
337
+ - change isMultiSelect to true in solid-core-metadata.json
338
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
339
+ - 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
340
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
341
+ - bug fix: passwordless registration should create a user with active false
342
+ - apikeys attribute was not exposed
343
+ - refactor Oauth strategy
344
+ - 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)
345
+ - bug fix
346
+ - null check on role
347
+ - made provision to seed custom permissions
348
+ - handled seed scenario too
349
+ - upload File and expectHidden changes
350
+ - extension user cleanup and checks added
351
+ - fixed types for cleanup
352
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
353
+ - fixes bare shell imports with relative imports
354
+ - dynamic import fix
355
+ - removed unnecessary file
356
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
357
+ - removed base abstract class
358
+ - added interface too
359
+ - changes
360
+ - changes to test data seeding & fixed the type for authenticationService.signup method
361
+ - changes to user dto to include the api keys toggle
362
+ - add default role to the user only if there are no roles resolved against a user
363
+ - 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
364
+ - Only forward --debug when explicitly enabled.
365
+ - toolOutput field changes to json
366
+ - adding user api key entity to export
367
+ - minor optimisation to how dynamic modules are loaded
368
+ - Add Discord badge to top of README
369
+ - Fix broken BSL license link and add Discord link to README
370
+ - Add BSL 1.1 license and update package.json license field
371
+ - Seed user and roles in testing data
372
+ - removed readme.txt
373
+ - moved type and interfaces in interfaces.ts and refactored accordingly
374
+ - changed to md
375
+ - added readme
376
+ - Ai setting model change
377
+ - changes to allow encrypting setting keys
378
+ - form view clean up
379
+ - Agent table list view changes
380
+ - synchronize false
381
+ - changes to resolve the selection dynamic provider by name and token both
382
+ - changes to bypass swagger urls from csp policy
383
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
384
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
385
+ - changes to implement the sso code and sso exchange use cases
386
+ - removed orm types / exported api key entity
387
+ - added provision to control if api key creation is allowed for the user
388
+ - api key changes for backend
389
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
390
+ - fix to call addRoles only if role names are present
391
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
392
+ - refactor: update legacy entity fields to be nullable and support null types
393
+ - Json structure change
394
+ - Agent table metadata clean up changes
395
+ - longtext
396
+ - longtext changes
397
+ - Agent tables clean up
398
+ - fixes to seed many-to-many relation for tests
399
+ - changes to seed media in testing data
400
+ - Chatter modelUserkey and excel many to one issue
401
+ - keeping the default selectionValueType as string since this is a good default
402
+ - bug fixes around how media is done
403
+ - bug fixes
404
+ - try catch inside logEvent
405
+ - media has card based metadata
406
+ - Refresh token activity
407
+ - changes to implement the sso code and sso exchange use cases
408
+ - cleanup
409
+ - enabled kanban view on mq message
410
+ - Agent table changes
411
+ - changes to disallow deleting a model or module in production
412
+ - changelog version bumped
413
+ - changelog added
414
+ - changes to control the logging using env variables & set appropriate defaults basis environment
415
+ - chnages for logging
416
+ - Chatter queue fixs
417
+ - one more "beta" for ozzy
418
+ - additional loggging in cors helper
419
+ - changes
420
+ - Redis Queue component and rabbitMQ folder changes
421
+ - changes to track old and new fields as part of the delete entity operation
422
+ - optimizations done for audit subcriber
423
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
424
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
425
+ - formatting changes
426
+ - 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
427
+ - qs depth config increased
428
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
429
+ - cached model metadata queries
430
+ - changse
431
+ - disabled extra loggign
432
+ - chagnes
433
+ - reduced concurrency in computed fields
434
+ - additional loggign
435
+ - added indexes to mobile & email since those are frequently queries upon
436
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
437
+ - Redis background job changes
438
+ - Chatter Rationalizing
439
+ - changes
440
+ - changes
441
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
442
+ - changes to export bootstrap helpers for server & cli nest applications
443
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
444
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
445
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
446
+ - added index on message id in mq message table
447
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
448
+ - changes to save model sequence id as part of post compute instead of pre compute
449
+ - changse
450
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
451
+ - High concurrency fix for alpha num and sequence num computed fields
452
+ - bug fix in cron evalutaion
453
+ - tighter logging around roles
454
+ - scheduler now supports env based specific jobs starting and others not
455
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
456
+ - revert cross db changes for view-metadata-entity
457
+ - fixes
458
+ - changes to handle cross-db compatibility
459
+ - added type as simple-json
460
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
461
+ - Revert "Merge branch 'media-update' into 'main'"
462
+ - Mysql related changes
463
+ - ts-morph and media storage fix
464
+ - dashboard layout menu item added
465
+ - dashboard changes
466
+ - scheduler bug fix
467
+ - made provision to execute scheduled jobs manually
468
+ - changes
469
+ - cleanup
470
+ - logging related changes and made user activity history tree view
471
+ - changes to return the wall clock time as utc for chatter as well to keep it...
472
+ - changes around dashboard question refactoring
473
+ - default tree view and action added on code generation
474
+ - Date time format changes in audit
475
+ - user activity history on otp login
476
+ - changes
477
+ - changelog added
478
+ - reverted legacy and common entity to use local date time transformer only
479
+ - added changelog
480
+ - made playwright dependency lazy
481
+ - ai interaction table user is nullable now
482
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
483
+ - formatting changes
484
+ - Version info changes
485
+ - dummy otp can now be enabled on a per user basis
486
+ - jwt token optimisation
487
+ - optimised the authentication flow in microservice adapter to cache access token
488
+ - deleted file containing secrets
489
+ - changes
490
+ - optimisation around how dummy otp is managed
491
+ - isSeeded added
492
+ - bug fix for fetch layouts
493
+ - view modes added in layout
494
+ - One to many crud manager fixes
495
+ - one-to-many-crud-manager-fixes
496
+ - Many to many crud field manager fixes
497
+ - patch endpoint added in role controller
498
+ - many-to-many field fixes
499
+ - modelSequenceFormViewChangeHandler added on field change
500
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
501
+ - changes to format group values consistently
502
+ - fixes for normalizing group values
503
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
504
+ - changes to return groupValue in the group meta response as well. groupValue is...
505
+ - changes to return groupValue in the group meta response as well. groupValue is...
506
+ - filter_field_granularity_supported_added_for_date_fields
507
+ - password registration/login cleanup + max failed login attempts checks added
508
+ - removed unsafe inline from CSP
509
+ - removed incorrect comment
510
+ - changes
511
+ - Revert "replaced playwright with lazy dependency"
512
+ - replaced playwright with lazy dependency
513
+ - count and average
514
+ - fixes to solid core metadata configuration
515
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
516
+ - solid seed now prints proper exception stack trace
517
+ - added playwright dependencies as peer dependencies
518
+ - changed playwright import to make it lazy
519
+ - issue fixes
520
+ - formatting changes
521
+ - formatting changes
522
+ - changes for test setup
523
+ - package changes
524
+ - Changes to generate an SA user with the default password for simpler experience during setup
525
+ - more changes to support form data based uploads
526
+ - changes
527
+ - changes around testing workflow
528
+ - unified testing utitlities
529
+ - added comments to the slug code
530
+ - refactored queue namespacign
531
+ - queue namespacing related chanes
532
+ - removed todo
533
+ - queue name related changes
534
+ - cag
535
+ - changrs
536
+ - queues names are now namespaced by service naem
537
+ - enabled logs
538
+ - debug logs
539
+ - testing docs updated
540
+ - changes
541
+ - cleanup
542
+ - removed old testing related fiels
543
+ - testing infra now supports data based interpolation
544
+ - testing changes: now we support fully custom test specs
545
+ - changes for test automation
546
+ - changes to tsconfig for playwright tests
547
+ - exporting typeorm db helper
548
+ - removed the files section
549
+ - changes for playwright testing
550
+ - changes to disable service controller seed method
551
+ - formatting changes
552
+ - oom issue
553
+ - logger added for chatter
554
+ - changed arg to kebab case instead of came case in schematic service
555
+ - default menu icons added
556
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
557
+ - removed un-necessary log
558
+ - fix for handling non existence of fieldNamesForRemoval arg
559
+ - foirmatting canges
560
+ - Archived/solidstarters main
561
+ - version changes
562
+ - changed org : @solidstarters -> @solidxai
563
+ - removed publish script, since it is replaced with solidctl release
564
+ - chanes
565
+ - Revert "@solidstarters namespace changed to @solidx"
566
+ - @solidstarters namespace changed to @solidx
567
+ - file service interface changes
568
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
569
+ - 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
570
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
571
+ - test data workflow
572
+ - test-data command
573
+ - seed command updated
574
+ - changes
575
+ - changes
576
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
577
+ - seeding now supports seedData allowing us to seed fixtures for testing.
578
+ - precomputations now skip computation if value is already provided
579
+ - added utility for findOneByUserKey
580
+ - pruning related chagnes
581
+ - changes
582
+ - more changes related to pruning metadata
583
+ - pruen logs added
584
+ - module metadata seeder now does prune also
585
+ - reformatting to improve readability
586
+ - changes
587
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
588
+ - bug fixes
589
+ - changes to cleanup the implementation by having the write method of file service return the url post write
590
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
591
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
592
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
593
+ - file service abstraction cleanup
594
+ - chagnes
595
+ - Dashboard Question Responsive
596
+
597
+ ## [0.1.14-beta.0] - 2026-08-20
598
+
599
+ ### Added
600
+
601
+ - update media file type definitions to expose only necessary fields for better clarity
602
+ - enhance media type handling by consolidating media file types and updating related services
603
+ - expose media type mappings and improve field label handling in MediaFieldCrudManager
604
+ - add normalization utilities for text fields and integrate them into LongTextFieldCrudManager and ShortTextFieldCrudManager
605
+ - add security header options for iframe embedding and customize frame-ancestors
606
+ - add createdAt field to PostChatterMessageDto and set default in service
607
+ - implement transaction handling for unpublishing records and restore previous version
608
+ - add progress reporting functionality to test runner and reporters
609
+ - add viewWidget attribute for fileSize in metadata
610
+ - add configurable UI timeouts for testing steps and update documentation
611
+ - enhance internationalisation by adding applyCreateDefaults method for localeName on create DTOs
612
+ - implement promoteRecoveredDraftPublishVersion method and integrate with CRUDService for soft-deleted records
613
+ - add default locale name for internationalised entries in test data seeding
614
+ - implement draft/publish versioning support and refactor related services
615
+ - add DraftPublishHelperService for managing draft and publish workflows
616
+ - add workflow field data provider support and related interfaces
617
+ - add asynchronous execution for workflows and enhance execution status retrieval
618
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
619
+ - enhance workflow definition management and add Python runtime node
620
+ - add SolidX integration nodes for login, email, and SMS
621
+ - add support for versioning and publishing in CRUD operations, including new fields in entities and filters
622
+ - enhance http.request node with query parameters and body modes
623
+ - refactor node structure and add sequential and switch nodes
624
+ - update workflow execution and definition handling
625
+ - implement workflow execution services and nodes
626
+ - implement API key generation for system admin users in ModuleMetadataSeederService
627
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
628
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
629
+ - enhance migration process with build and seed commands
630
+ - enhance datasource introspection with primary key detection and migration support
631
+ - enhance role creation with module linkage and resolve module metadata
632
+ - enhance action, role, and view metadata services with change detection and JSON normalization
633
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
634
+ - add new dashboard controller actions to permissions
635
+ - simplify queue health permissions by consolidating patterns
636
+ - implement explicit widget permissions and unauthorized response handling
637
+ - enhance widget permission checks and add unauthorized response handling
638
+ - add Queue SLA heatmap provider and update metadata
639
+ - update queue health menu item and reorder messages
640
+ - add various dashboard providers and runtime services
641
+ - implement WhatsApp Cloud API integration
642
+ - add gupshup whatsapp provider
643
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
644
+ - add updateCustomNoteMessage action to ChatterMessageController
645
+ - add secure custom-note edit API with attachment add/remove support
646
+ - implemented social media oath for facebook and microsoft
647
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
648
+ - implemented social media oath for facebook and microsoft
649
+ - add Message Tree Action and corresponding view for mqMessage
650
+ - implement processing timeout for RabbitMQ subscriber
651
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
652
+ - Migrate date/time transformers to UtcDateTimeTransformer.
653
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
654
+
655
+ ### Fixed
656
+
657
+ - make currentValue optional in CreateModelSequenceDto and update seeding logic to exclude it
658
+ - change matched column type from bit to default nullable boolean
659
+ - improve error message for media deletion restriction
660
+ - use transactions entitymanager for all subscribers only for embedded db projects
661
+ - update consuming project name resolution to use parent directory
662
+ - update solidx directory path to include consuming project name
663
+ - correct package name in model generation command and update error handling in module metadata retrieval
664
+ - username
665
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
666
+ - handle null or empty security rule configuration strings in repository
667
+
668
+ ### Changed
669
+
670
+ - update media type handling in CreateFieldMetadataDto and FieldMetadataService
671
+ - remove onDelete cascade option from ManyToOne relationships in entity definitions
672
+ - unify datetime column types across entities using helper function
673
+ - remove explicit timestamp type for nullable date columns across entities
674
+ - update CommonEntity properties to be optional and adjust types in WorkflowTriggerExecution
675
+ - rename create-draft-publish-helper.service to draft-publish-helper.service and update imports
676
+ - inject InternationalisationHelperService in ModuleTestDataService and CrudHelperService
677
+ - separate generic delete from draft-publish and i18n cleanup in CRUDService
678
+ - remove unused boolean type and related system column definitions from DatasourceIntrospectionService
679
+ - update CrudHelperService to initialize DraftPublishHelperService directly in the class refactor: remove publishedAt sorting logic from getLayout method in ViewMetadataService
680
+ - simplify published version filtering in CRUDService
681
+ - remove handleSeedLocales method to streamline locale seeding process
682
+ - remove legacy dashboard files and add new dashboarding architecture guide
683
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
684
+ - remove redundant null check in resolveSecurityRuleConfig
685
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
686
+ - update legacy entity fields to be nullable and support null types
687
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
688
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
689
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
690
+
691
+ ### Documentation
692
+
693
+ - update expired discord link
694
+
695
+ ### Other
696
+
697
+ - ## Phase 6 — Global Multer upload size limit
698
+ - ## Phase 5 — Dangerous-extension checks on menu-icon & settings uploads
699
+ - ## Phase 4 — Route chatter attachments through `MediaFieldCrudManager`
700
+ - ## Phase 3 — Close the `mediaMultiple` size/category gap, and align `validateAllowedExtensions`'s placement
701
+ - ## Phase 2 — Make `mediaTypes` category resolution extension-authoritative
702
+ - Per-field extension allowlist (`mediaAllowedExtensions`)
703
+ - mpin scheme version changes
704
+ - mpin related changes
705
+ - Add safe percent-decoding for uploaded file names to prevent bypassing extension checks
706
+ - Revert "Revert "Deliverable A now stands as: cache TTL (with the store swap that make…""
707
+ - Revert "Deliverable A now stands as: cache TTL (with the store swap that make…"
708
+ - fixes around handling concurrent logins properly using per deviceKey buckets.
709
+ - Deliverable A now stands as: cache TTL (with the store swap that makes it actually work), the me() null guard it necessitates, the logout verify/idempotency fix, previousValidUntil replacing the timer, and the dead validate() removed.
710
+ - fixed the request body limit to keep it as 10mb instead of 25mb by default
711
+ - changes around files name sanitization and normalization
712
+ - changes to handle variations in extension while uploading dangerous extension files
713
+ - change request body max to 25mb
714
+ - Comment out countGroupedRecords method implementation for refactoring
715
+ - show theme toggle
716
+ - changes to support passing an explicit createdAt while posting a chatter message
717
+ - Enhance countGroupedRecords and passed internationalisation and draft publish workflow parameters in executeGroupPipeline
718
+ - rename theme registry
719
+ - remove add permisson from permisson-list-view
720
+ - removed indexes on username and mobile since it is a conditional index and it breaks for mssql since multiple nulls are not allowed on unique columns
721
+ - readme changes
722
+ - removed hardcoded type against a boolean type
723
+ - changes to the default testing setting timeout to pick from env as well
724
+ - remove duplicate code
725
+ - refactoring around chatter media security fix
726
+ - add media extension support for post chatter
727
+ - Add media upload action and validation in MediaService
728
+ - add media extension support for post chatter
729
+ - changes to ensure only id and field are returned while populating the user in chatter
730
+ - Update defaultValue types in solid-core-metadata.json to strings
731
+ - 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
732
+ - Add getMentionableUsers permission
733
+ - Add endpoint to retrieve mentionable users with search and limit options
734
+ - Add error handling nodes and enhance workflow node definitions
735
+ - Add skipHooks option to seed command and related services
736
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
737
+ - Enhance workflow node definitions and runtime context handling
738
+ - remvoing redundent code
739
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
740
+ - changes
741
+ - changes
742
+ - sql injection vulnerability closed in filter queries
743
+ - Remove LocalPath
744
+ - revert changes
745
+ - revert changes
746
+ - revert changes
747
+ - re revert
748
+ - revert changes
749
+ - private-file-cleanup
750
+ - add downlaodurl
751
+ - changes to allow overriding the is allowed api keys flag thru extension user
752
+ - Revert "user enumeration"
753
+ - remove validation from username and mobile
754
+ - user create validation bugs
755
+ - add normalize for otp based also
756
+ - Disable metadata pruning by default in seed command configuration
757
+ - Update seed command to enable metadata pruning by default
758
+ - handle-case-sensitive-for-email
759
+ - Add delete permissions for ImportTransactionController in solid-core metadata
760
+ - Add permissions for import/export functionality in solid-core metadata
761
+ - Refactor role assignment for admin users to handle capability roles individually
762
+ - discard changes
763
+ - add support for static file
764
+ - Add capability roles for admin users in module metadata seeder
765
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
766
+ - attachment
767
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
768
+ - make isPublic default true
769
+ - changes to show the image inline
770
+ - cleanup againts media's
771
+ - inline role crate false
772
+ - Implement chatter mention notification system with email templates and queue handling
773
+ - Add messageBodyMentions field to chatter message DTOs and entity
774
+ - fix-audit-bug
775
+ - changes to include signed url token for private media
776
+ - Revert "Revert "rename function name""
777
+ - Revert "Revert "add private media support""
778
+ - Add media file type constants and enhance security for media uploads
779
+ - remove some unusable code
780
+ - some changes
781
+ - handle technical error messages due to missing resource in static resources folder
782
+ - Revert "add private media support"
783
+ - Revert "rename function name"
784
+ - rename function name
785
+ - add private media support
786
+ - some fixes
787
+ - solidx session invalid changes
788
+ - add validation on get chatter message
789
+ - updatedAt value is updating now
790
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
791
+ - add security against chatter
792
+ - chatter message endpoint made public
793
+ - removed embedded db support
794
+ - Add default sorting by ID if not explicitly specified in order options
795
+ - solidx theme settings
796
+ - add icons across all the models in solid core
797
+ - media upload added behind auth
798
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
799
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
800
+ - class serializer interceptor added for impact of Exclude and Expose
801
+ - Enhance datasource introspection with primary key validation and user key resolution
802
+ - Concurrent Login Feature
803
+ - user enumeration
804
+ - add helper text key on settings object .........
805
+ - changes to handle case insenstive filter operations if the values are other than string by casting
806
+ - menus item fix
807
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
808
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
809
+ - display name changed
810
+ - name changed
811
+ - added settings for configure the row click on solid list view
812
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
813
+ - fixed legacy entity files names
814
+ - view metadata type field - selection static and roles required false from menu-item
815
+ - Fix for this issue > stop applying lower for numeric fields.
816
+ - refactor and add migration command
817
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
818
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
819
+ - changes to take in option for seeding with modules in current seed method
820
+ - Fix validation logic to parse string field values as integers before applying validations
821
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
822
+ - ad changes
823
+ - Add locale seeding functionality and enhance locale management
824
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
825
+ - changes to avoid extra module checks before dynamically loading it
826
+ - defaulted to modulemetadataseederservice if no seeder provided
827
+ - Add Date field in Instructions Response
828
+ - ai interaction cleanup changes
829
+ - enabling create,edit,import,export on permission and lov modules
830
+ - added module to rolemetadata list view
831
+ - roles group by module changes
832
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
833
+ - Implement Datasource Management functionality with controller, service, and DTO
834
+ - added index to fields newly added as sortable and searchable
835
+ - Add archiver package to dependencies
836
+ - removed unnecessary seed file
837
+ - Add TypeORM migration helper functions and export in index
838
+ - fixes
839
+ - reverted accidental removal of the layout builder root menu
840
+ - pending cleanup of solid core menu items
841
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
842
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
843
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
844
+ - changes for IAM
845
+ - Add clearPackageRuntime functionality and corresponding metadata action
846
+ - Add archiver dependency and implement module package export functionality
847
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
848
+ - 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
849
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
850
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
851
+ - Remove unused database bootstrap service and related SQL cleanup procedures
852
+ - cleanup
853
+ - Add view and action metadata tree views with updated permissions and searchable fields
854
+ - Add view and action metadata tree views with updated permissions and searchable fields
855
+ - menu item model cleanup
856
+ - Add resumable import handling and transaction management in module package service
857
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
858
+ - 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.
859
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
860
+ - many to one left join issue fixed
861
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
862
+ - 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
863
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
864
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
865
+ - Implement module metadata explorer with CRUD operations and search functionality
866
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
867
+ - Bug fixs
868
+ - added frontend base url as well to the default settings
869
+ - minor cleanup
870
+ - changes to cleanup legacy table related fields
871
+ - changes for new dashboards functionality
872
+ - always print server startup line regardless of log level
873
+ - Add field quality checks and fixes checklist for backend validation
874
+ - typeo issue
875
+ - Agent table clean up
876
+ - Add manual interaction step for Playwright and update README
877
+ - provision made to unlink data rather than having to teardown everything
878
+ - provision made to unlink data rather than having to teardown everything
879
+ - changes to colour the server startup line
880
+ - Agent table clean up
881
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
882
+ - removed id command options and retained the singular name option only for consistency purposes
883
+ - 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
884
+ - 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
885
+ - MCP table solid changes
886
+ - playwrite added as dependency instead
887
+ - changes to the test runner
888
+ - chatter message user resolution chagnes
889
+ - bug fix in chatter message user resolution after we moved to queues.
890
+ - moved back to beta3
891
+ - failed login attempts field added to the json and update dto and exposed in entity
892
+ - removed un-necessary index on newvalue display
893
+ - ts changes error: any
894
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
895
+ - changed model metadata service default form layout to be single column
896
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
897
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
898
+ - normalised @ApiTags
899
+ - enum for passwordless modes
900
+ - bug fix in how alternative actions are rendered
901
+ - queue related bug fixes
902
+ - changes to add a websocket adaptor to the bootstrap server routine
903
+ - license changes
904
+ - type fixes
905
+ - removed min and max from long text mapping
906
+ - bug fix for shortext field mapping
907
+ - changes to post the testing results to a webhook api with a test payload
908
+ - added import multer this fixes un-necessary ts errors in vscode
909
+ - ts errors fixed
910
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
911
+ - formatting changes
912
+ - facebook oauth
913
+ - Status required false
914
+ - updated gitignore
915
+ - dleete un-necessary docs
916
+ - deleted un-necessary files
917
+ - changes related to more grooming
918
+ - api added in cors
919
+ - refactor Oauth strategy
920
+ - Revert "Ft social media login"
921
+ - bug fix
922
+ - bug fix
923
+ - add new api me endpoint and role based settings
924
+ - setting changes for new ui architecture
925
+ - changes for new settings structure
926
+ - chatter task subtype and related changes
927
+ - bug fix
928
+ - fixes
929
+ - 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
930
+ - changes to handle import logs as well, thru configured winston log level
931
+ - change isMultiSelect to true in solid-core-metadata.json
932
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
933
+ - 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
934
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
935
+ - bug fix: passwordless registration should create a user with active false
936
+ - apikeys attribute was not exposed
937
+ - refactor Oauth strategy
938
+ - 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)
939
+ - bug fix
940
+ - null check on role
941
+ - made provision to seed custom permissions
942
+ - handled seed scenario too
943
+ - upload File and expectHidden changes
944
+ - extension user cleanup and checks added
945
+ - fixed types for cleanup
946
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
947
+ - fixes bare shell imports with relative imports
948
+ - dynamic import fix
949
+ - removed unnecessary file
950
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
951
+ - removed base abstract class
952
+ - added interface too
953
+ - changes
954
+ - changes to test data seeding & fixed the type for authenticationService.signup method
955
+ - changes to user dto to include the api keys toggle
956
+ - add default role to the user only if there are no roles resolved against a user
957
+ - 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
958
+ - Only forward --debug when explicitly enabled.
959
+ - toolOutput field changes to json
960
+ - adding user api key entity to export
961
+ - minor optimisation to how dynamic modules are loaded
962
+ - Add Discord badge to top of README
963
+ - Fix broken BSL license link and add Discord link to README
964
+ - Add BSL 1.1 license and update package.json license field
965
+ - Seed user and roles in testing data
966
+ - removed readme.txt
967
+ - moved type and interfaces in interfaces.ts and refactored accordingly
968
+ - changed to md
969
+ - added readme
970
+ - Ai setting model change
971
+ - changes to allow encrypting setting keys
972
+ - form view clean up
973
+ - Agent table list view changes
974
+ - synchronize false
975
+ - changes to resolve the selection dynamic provider by name and token both
976
+ - changes to bypass swagger urls from csp policy
977
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
978
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
979
+ - changes to implement the sso code and sso exchange use cases
980
+ - removed orm types / exported api key entity
981
+ - added provision to control if api key creation is allowed for the user
982
+ - api key changes for backend
983
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
984
+ - fix to call addRoles only if role names are present
985
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
986
+ - refactor: update legacy entity fields to be nullable and support null types
987
+ - Json structure change
988
+ - Agent table metadata clean up changes
989
+ - longtext
990
+ - longtext changes
991
+ - Agent tables clean up
992
+ - fixes to seed many-to-many relation for tests
993
+ - changes to seed media in testing data
994
+ - Chatter modelUserkey and excel many to one issue
995
+ - keeping the default selectionValueType as string since this is a good default
996
+ - bug fixes around how media is done
997
+ - bug fixes
998
+ - try catch inside logEvent
999
+ - media has card based metadata
1000
+ - Refresh token activity
1001
+ - changes to implement the sso code and sso exchange use cases
1002
+ - cleanup
1003
+ - enabled kanban view on mq message
1004
+ - Agent table changes
1005
+ - changes to disallow deleting a model or module in production
1006
+ - changelog version bumped
1007
+ - changelog added
1008
+ - changes to control the logging using env variables & set appropriate defaults basis environment
1009
+ - chnages for logging
1010
+ - Chatter queue fixs
1011
+ - one more "beta" for ozzy
1012
+ - additional loggging in cors helper
1013
+ - changes
1014
+ - Redis Queue component and rabbitMQ folder changes
1015
+ - changes to track old and new fields as part of the delete entity operation
1016
+ - optimizations done for audit subcriber
1017
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
1018
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
1019
+ - formatting changes
1020
+ - 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
1021
+ - qs depth config increased
1022
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
1023
+ - cached model metadata queries
1024
+ - changse
1025
+ - disabled extra loggign
1026
+ - chagnes
1027
+ - reduced concurrency in computed fields
1028
+ - additional loggign
1029
+ - added indexes to mobile & email since those are frequently queries upon
1030
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
1031
+ - Redis background job changes
1032
+ - Chatter Rationalizing
1033
+ - changes
1034
+ - changes
1035
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
1036
+ - changes to export bootstrap helpers for server & cli nest applications
1037
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
1038
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
1039
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
1040
+ - added index on message id in mq message table
1041
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
1042
+ - changes to save model sequence id as part of post compute instead of pre compute
1043
+ - changse
1044
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
1045
+ - High concurrency fix for alpha num and sequence num computed fields
1046
+ - bug fix in cron evalutaion
1047
+ - tighter logging around roles
1048
+ - scheduler now supports env based specific jobs starting and others not
1049
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
1050
+ - revert cross db changes for view-metadata-entity
1051
+ - fixes
1052
+ - changes to handle cross-db compatibility
1053
+ - added type as simple-json
1054
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
1055
+ - Revert "Merge branch 'media-update' into 'main'"
1056
+ - Mysql related changes
1057
+ - ts-morph and media storage fix
1058
+ - dashboard layout menu item added
1059
+ - dashboard changes
1060
+ - scheduler bug fix
1061
+ - made provision to execute scheduled jobs manually
1062
+ - changes
1063
+ - cleanup
1064
+ - logging related changes and made user activity history tree view
1065
+ - changes to return the wall clock time as utc for chatter as well to keep it...
1066
+ - changes around dashboard question refactoring
1067
+ - default tree view and action added on code generation
1068
+ - Date time format changes in audit
1069
+ - user activity history on otp login
1070
+ - changes
1071
+ - changelog added
1072
+ - reverted legacy and common entity to use local date time transformer only
1073
+ - added changelog
1074
+ - made playwright dependency lazy
1075
+ - ai interaction table user is nullable now
1076
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
1077
+ - formatting changes
1078
+ - Version info changes
1079
+ - dummy otp can now be enabled on a per user basis
1080
+ - jwt token optimisation
1081
+ - optimised the authentication flow in microservice adapter to cache access token
1082
+ - deleted file containing secrets
1083
+ - changes
1084
+ - optimisation around how dummy otp is managed
1085
+ - isSeeded added
1086
+ - bug fix for fetch layouts
1087
+ - view modes added in layout
1088
+ - One to many crud manager fixes
1089
+ - one-to-many-crud-manager-fixes
1090
+ - Many to many crud field manager fixes
1091
+ - patch endpoint added in role controller
1092
+ - many-to-many field fixes
1093
+ - modelSequenceFormViewChangeHandler added on field change
1094
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
1095
+ - changes to format group values consistently
1096
+ - fixes for normalizing group values
1097
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
1098
+ - changes to return groupValue in the group meta response as well. groupValue is...
1099
+ - changes to return groupValue in the group meta response as well. groupValue is...
1100
+ - filter_field_granularity_supported_added_for_date_fields
1101
+ - password registration/login cleanup + max failed login attempts checks added
1102
+ - removed unsafe inline from CSP
1103
+ - removed incorrect comment
1104
+ - changes
1105
+ - Revert "replaced playwright with lazy dependency"
1106
+ - replaced playwright with lazy dependency
1107
+ - count and average
1108
+ - fixes to solid core metadata configuration
1109
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
1110
+ - solid seed now prints proper exception stack trace
1111
+ - added playwright dependencies as peer dependencies
1112
+ - changed playwright import to make it lazy
1113
+ - issue fixes
1114
+ - formatting changes
1115
+ - formatting changes
1116
+ - changes for test setup
1117
+ - package changes
1118
+ - Changes to generate an SA user with the default password for simpler experience during setup
1119
+ - more changes to support form data based uploads
1120
+ - changes
1121
+ - changes around testing workflow
1122
+ - unified testing utitlities
1123
+ - added comments to the slug code
1124
+ - refactored queue namespacign
1125
+ - queue namespacing related chanes
1126
+ - removed todo
1127
+ - queue name related changes
1128
+ - cag
1129
+ - changrs
1130
+ - queues names are now namespaced by service naem
1131
+ - enabled logs
1132
+ - debug logs
1133
+ - testing docs updated
1134
+ - changes
1135
+ - cleanup
1136
+ - removed old testing related fiels
1137
+ - testing infra now supports data based interpolation
1138
+ - testing changes: now we support fully custom test specs
1139
+ - changes for test automation
1140
+ - changes to tsconfig for playwright tests
1141
+ - exporting typeorm db helper
1142
+ - removed the files section
1143
+ - changes for playwright testing
1144
+ - changes to disable service controller seed method
1145
+ - formatting changes
1146
+ - oom issue
1147
+ - logger added for chatter
1148
+ - changed arg to kebab case instead of came case in schematic service
1149
+ - default menu icons added
1150
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
1151
+ - removed un-necessary log
1152
+ - fix for handling non existence of fieldNamesForRemoval arg
1153
+ - foirmatting canges
1154
+ - Archived/solidstarters main
1155
+ - version changes
1156
+ - changed org : @solidstarters -> @solidxai
1157
+ - removed publish script, since it is replaced with solidctl release
1158
+ - chanes
1159
+ - Revert "@solidstarters namespace changed to @solidx"
1160
+ - @solidstarters namespace changed to @solidx
1161
+ - file service interface changes
1162
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
1163
+ - 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
1164
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
1165
+ - test data workflow
1166
+ - test-data command
1167
+ - seed command updated
1168
+ - changes
1169
+ - changes
1170
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
1171
+ - seeding now supports seedData allowing us to seed fixtures for testing.
1172
+ - precomputations now skip computation if value is already provided
1173
+ - added utility for findOneByUserKey
1174
+ - pruning related chagnes
1175
+ - changes
1176
+ - more changes related to pruning metadata
1177
+ - pruen logs added
1178
+ - module metadata seeder now does prune also
1179
+ - reformatting to improve readability
1180
+ - changes
1181
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
1182
+ - bug fixes
1183
+ - changes to cleanup the implementation by having the write method of file service return the url post write
1184
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
1185
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
1186
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
1187
+ - file service abstraction cleanup
1188
+ - chagnes
1189
+ - Dashboard Question Responsive
1190
+
3
1191
  ## [0.1.13] - 2026-08-20
4
1192
 
5
1193
  ### Added
@@ -590,6 +1778,1191 @@
590
1778
  - chagnes
591
1779
  - Dashboard Question Responsive
592
1780
 
1781
+ ## [0.1.13-beta.23] - 2026-08-19
1782
+
1783
+ ### Added
1784
+
1785
+ - update media file type definitions to expose only necessary fields for better clarity
1786
+ - enhance media type handling by consolidating media file types and updating related services
1787
+ - expose media type mappings and improve field label handling in MediaFieldCrudManager
1788
+ - add normalization utilities for text fields and integrate them into LongTextFieldCrudManager and ShortTextFieldCrudManager
1789
+ - add security header options for iframe embedding and customize frame-ancestors
1790
+ - add createdAt field to PostChatterMessageDto and set default in service
1791
+ - implement transaction handling for unpublishing records and restore previous version
1792
+ - add progress reporting functionality to test runner and reporters
1793
+ - add viewWidget attribute for fileSize in metadata
1794
+ - add configurable UI timeouts for testing steps and update documentation
1795
+ - enhance internationalisation by adding applyCreateDefaults method for localeName on create DTOs
1796
+ - implement promoteRecoveredDraftPublishVersion method and integrate with CRUDService for soft-deleted records
1797
+ - add default locale name for internationalised entries in test data seeding
1798
+ - implement draft/publish versioning support and refactor related services
1799
+ - add DraftPublishHelperService for managing draft and publish workflows
1800
+ - add workflow field data provider support and related interfaces
1801
+ - add asynchronous execution for workflows and enhance execution status retrieval
1802
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
1803
+ - enhance workflow definition management and add Python runtime node
1804
+ - add SolidX integration nodes for login, email, and SMS
1805
+ - add support for versioning and publishing in CRUD operations, including new fields in entities and filters
1806
+ - enhance http.request node with query parameters and body modes
1807
+ - refactor node structure and add sequential and switch nodes
1808
+ - update workflow execution and definition handling
1809
+ - implement workflow execution services and nodes
1810
+ - implement API key generation for system admin users in ModuleMetadataSeederService
1811
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
1812
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
1813
+ - enhance migration process with build and seed commands
1814
+ - enhance datasource introspection with primary key detection and migration support
1815
+ - enhance role creation with module linkage and resolve module metadata
1816
+ - enhance action, role, and view metadata services with change detection and JSON normalization
1817
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
1818
+ - add new dashboard controller actions to permissions
1819
+ - simplify queue health permissions by consolidating patterns
1820
+ - implement explicit widget permissions and unauthorized response handling
1821
+ - enhance widget permission checks and add unauthorized response handling
1822
+ - add Queue SLA heatmap provider and update metadata
1823
+ - update queue health menu item and reorder messages
1824
+ - add various dashboard providers and runtime services
1825
+ - implement WhatsApp Cloud API integration
1826
+ - add gupshup whatsapp provider
1827
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
1828
+ - add updateCustomNoteMessage action to ChatterMessageController
1829
+ - add secure custom-note edit API with attachment add/remove support
1830
+ - implemented social media oath for facebook and microsoft
1831
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
1832
+ - implemented social media oath for facebook and microsoft
1833
+ - add Message Tree Action and corresponding view for mqMessage
1834
+ - implement processing timeout for RabbitMQ subscriber
1835
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
1836
+ - Migrate date/time transformers to UtcDateTimeTransformer.
1837
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
1838
+
1839
+ ### Fixed
1840
+
1841
+ - make currentValue optional in CreateModelSequenceDto and update seeding logic to exclude it
1842
+ - change matched column type from bit to default nullable boolean
1843
+ - improve error message for media deletion restriction
1844
+ - use transactions entitymanager for all subscribers only for embedded db projects
1845
+ - update consuming project name resolution to use parent directory
1846
+ - update solidx directory path to include consuming project name
1847
+ - correct package name in model generation command and update error handling in module metadata retrieval
1848
+ - username
1849
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
1850
+ - handle null or empty security rule configuration strings in repository
1851
+
1852
+ ### Changed
1853
+
1854
+ - update media type handling in CreateFieldMetadataDto and FieldMetadataService
1855
+ - remove onDelete cascade option from ManyToOne relationships in entity definitions
1856
+ - unify datetime column types across entities using helper function
1857
+ - remove explicit timestamp type for nullable date columns across entities
1858
+ - update CommonEntity properties to be optional and adjust types in WorkflowTriggerExecution
1859
+ - rename create-draft-publish-helper.service to draft-publish-helper.service and update imports
1860
+ - inject InternationalisationHelperService in ModuleTestDataService and CrudHelperService
1861
+ - separate generic delete from draft-publish and i18n cleanup in CRUDService
1862
+ - remove unused boolean type and related system column definitions from DatasourceIntrospectionService
1863
+ - update CrudHelperService to initialize DraftPublishHelperService directly in the class refactor: remove publishedAt sorting logic from getLayout method in ViewMetadataService
1864
+ - simplify published version filtering in CRUDService
1865
+ - remove handleSeedLocales method to streamline locale seeding process
1866
+ - remove legacy dashboard files and add new dashboarding architecture guide
1867
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
1868
+ - remove redundant null check in resolveSecurityRuleConfig
1869
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
1870
+ - update legacy entity fields to be nullable and support null types
1871
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
1872
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
1873
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
1874
+
1875
+ ### Documentation
1876
+
1877
+ - update expired discord link
1878
+
1879
+ ### Other
1880
+
1881
+ - ## Phase 6 — Global Multer upload size limit
1882
+ - ## Phase 5 — Dangerous-extension checks on menu-icon & settings uploads
1883
+ - ## Phase 4 — Route chatter attachments through `MediaFieldCrudManager`
1884
+ - ## Phase 3 — Close the `mediaMultiple` size/category gap, and align `validateAllowedExtensions`'s placement
1885
+ - ## Phase 2 — Make `mediaTypes` category resolution extension-authoritative
1886
+ - Per-field extension allowlist (`mediaAllowedExtensions`)
1887
+ - mpin scheme version changes
1888
+ - mpin related changes
1889
+ - Add safe percent-decoding for uploaded file names to prevent bypassing extension checks
1890
+ - Revert "Revert "Deliverable A now stands as: cache TTL (with the store swap that make…""
1891
+ - Revert "Deliverable A now stands as: cache TTL (with the store swap that make…"
1892
+ - fixes around handling concurrent logins properly using per deviceKey buckets.
1893
+ - Deliverable A now stands as: cache TTL (with the store swap that makes it actually work), the me() null guard it necessitates, the logout verify/idempotency fix, previousValidUntil replacing the timer, and the dead validate() removed.
1894
+ - fixed the request body limit to keep it as 10mb instead of 25mb by default
1895
+ - changes around files name sanitization and normalization
1896
+ - changes to handle variations in extension while uploading dangerous extension files
1897
+ - change request body max to 25mb
1898
+ - Comment out countGroupedRecords method implementation for refactoring
1899
+ - show theme toggle
1900
+ - changes to support passing an explicit createdAt while posting a chatter message
1901
+ - Enhance countGroupedRecords and passed internationalisation and draft publish workflow parameters in executeGroupPipeline
1902
+ - rename theme registry
1903
+ - remove add permisson from permisson-list-view
1904
+ - removed indexes on username and mobile since it is a conditional index and it breaks for mssql since multiple nulls are not allowed on unique columns
1905
+ - readme changes
1906
+ - removed hardcoded type against a boolean type
1907
+ - changes to the default testing setting timeout to pick from env as well
1908
+ - remove duplicate code
1909
+ - refactoring around chatter media security fix
1910
+ - add media extension support for post chatter
1911
+ - Add media upload action and validation in MediaService
1912
+ - add media extension support for post chatter
1913
+ - changes to ensure only id and field are returned while populating the user in chatter
1914
+ - Update defaultValue types in solid-core-metadata.json to strings
1915
+ - 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
1916
+ - Add getMentionableUsers permission
1917
+ - Add endpoint to retrieve mentionable users with search and limit options
1918
+ - Add error handling nodes and enhance workflow node definitions
1919
+ - Add skipHooks option to seed command and related services
1920
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
1921
+ - Enhance workflow node definitions and runtime context handling
1922
+ - remvoing redundent code
1923
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
1924
+ - changes
1925
+ - changes
1926
+ - sql injection vulnerability closed in filter queries
1927
+ - Remove LocalPath
1928
+ - revert changes
1929
+ - revert changes
1930
+ - revert changes
1931
+ - re revert
1932
+ - revert changes
1933
+ - private-file-cleanup
1934
+ - add downlaodurl
1935
+ - changes to allow overriding the is allowed api keys flag thru extension user
1936
+ - Revert "user enumeration"
1937
+ - remove validation from username and mobile
1938
+ - user create validation bugs
1939
+ - add normalize for otp based also
1940
+ - Disable metadata pruning by default in seed command configuration
1941
+ - Update seed command to enable metadata pruning by default
1942
+ - handle-case-sensitive-for-email
1943
+ - Add delete permissions for ImportTransactionController in solid-core metadata
1944
+ - Add permissions for import/export functionality in solid-core metadata
1945
+ - Refactor role assignment for admin users to handle capability roles individually
1946
+ - discard changes
1947
+ - add support for static file
1948
+ - Add capability roles for admin users in module metadata seeder
1949
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
1950
+ - attachment
1951
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
1952
+ - make isPublic default true
1953
+ - changes to show the image inline
1954
+ - cleanup againts media's
1955
+ - inline role crate false
1956
+ - Implement chatter mention notification system with email templates and queue handling
1957
+ - Add messageBodyMentions field to chatter message DTOs and entity
1958
+ - fix-audit-bug
1959
+ - changes to include signed url token for private media
1960
+ - Revert "Revert "rename function name""
1961
+ - Revert "Revert "add private media support""
1962
+ - Add media file type constants and enhance security for media uploads
1963
+ - remove some unusable code
1964
+ - some changes
1965
+ - handle technical error messages due to missing resource in static resources folder
1966
+ - Revert "add private media support"
1967
+ - Revert "rename function name"
1968
+ - rename function name
1969
+ - add private media support
1970
+ - some fixes
1971
+ - solidx session invalid changes
1972
+ - add validation on get chatter message
1973
+ - updatedAt value is updating now
1974
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
1975
+ - add security against chatter
1976
+ - chatter message endpoint made public
1977
+ - removed embedded db support
1978
+ - Add default sorting by ID if not explicitly specified in order options
1979
+ - solidx theme settings
1980
+ - add icons across all the models in solid core
1981
+ - media upload added behind auth
1982
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
1983
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
1984
+ - class serializer interceptor added for impact of Exclude and Expose
1985
+ - Enhance datasource introspection with primary key validation and user key resolution
1986
+ - Concurrent Login Feature
1987
+ - user enumeration
1988
+ - add helper text key on settings object .........
1989
+ - changes to handle case insenstive filter operations if the values are other than string by casting
1990
+ - menus item fix
1991
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
1992
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
1993
+ - display name changed
1994
+ - name changed
1995
+ - added settings for configure the row click on solid list view
1996
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
1997
+ - fixed legacy entity files names
1998
+ - view metadata type field - selection static and roles required false from menu-item
1999
+ - Fix for this issue > stop applying lower for numeric fields.
2000
+ - refactor and add migration command
2001
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
2002
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
2003
+ - changes to take in option for seeding with modules in current seed method
2004
+ - Fix validation logic to parse string field values as integers before applying validations
2005
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
2006
+ - ad changes
2007
+ - Add locale seeding functionality and enhance locale management
2008
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
2009
+ - changes to avoid extra module checks before dynamically loading it
2010
+ - defaulted to modulemetadataseederservice if no seeder provided
2011
+ - Add Date field in Instructions Response
2012
+ - ai interaction cleanup changes
2013
+ - enabling create,edit,import,export on permission and lov modules
2014
+ - added module to rolemetadata list view
2015
+ - roles group by module changes
2016
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
2017
+ - Implement Datasource Management functionality with controller, service, and DTO
2018
+ - added index to fields newly added as sortable and searchable
2019
+ - Add archiver package to dependencies
2020
+ - removed unnecessary seed file
2021
+ - Add TypeORM migration helper functions and export in index
2022
+ - fixes
2023
+ - reverted accidental removal of the layout builder root menu
2024
+ - pending cleanup of solid core menu items
2025
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
2026
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
2027
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
2028
+ - changes for IAM
2029
+ - Add clearPackageRuntime functionality and corresponding metadata action
2030
+ - Add archiver dependency and implement module package export functionality
2031
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
2032
+ - 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
2033
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
2034
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
2035
+ - Remove unused database bootstrap service and related SQL cleanup procedures
2036
+ - cleanup
2037
+ - Add view and action metadata tree views with updated permissions and searchable fields
2038
+ - Add view and action metadata tree views with updated permissions and searchable fields
2039
+ - menu item model cleanup
2040
+ - Add resumable import handling and transaction management in module package service
2041
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
2042
+ - 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.
2043
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
2044
+ - many to one left join issue fixed
2045
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
2046
+ - 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
2047
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
2048
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
2049
+ - Implement module metadata explorer with CRUD operations and search functionality
2050
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
2051
+ - Bug fixs
2052
+ - added frontend base url as well to the default settings
2053
+ - minor cleanup
2054
+ - changes to cleanup legacy table related fields
2055
+ - changes for new dashboards functionality
2056
+ - always print server startup line regardless of log level
2057
+ - Add field quality checks and fixes checklist for backend validation
2058
+ - typeo issue
2059
+ - Agent table clean up
2060
+ - Add manual interaction step for Playwright and update README
2061
+ - provision made to unlink data rather than having to teardown everything
2062
+ - provision made to unlink data rather than having to teardown everything
2063
+ - changes to colour the server startup line
2064
+ - Agent table clean up
2065
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
2066
+ - removed id command options and retained the singular name option only for consistency purposes
2067
+ - 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
2068
+ - 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
2069
+ - MCP table solid changes
2070
+ - playwrite added as dependency instead
2071
+ - changes to the test runner
2072
+ - chatter message user resolution chagnes
2073
+ - bug fix in chatter message user resolution after we moved to queues.
2074
+ - moved back to beta3
2075
+ - failed login attempts field added to the json and update dto and exposed in entity
2076
+ - removed un-necessary index on newvalue display
2077
+ - ts changes error: any
2078
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
2079
+ - changed model metadata service default form layout to be single column
2080
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
2081
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
2082
+ - normalised @ApiTags
2083
+ - enum for passwordless modes
2084
+ - bug fix in how alternative actions are rendered
2085
+ - queue related bug fixes
2086
+ - changes to add a websocket adaptor to the bootstrap server routine
2087
+ - license changes
2088
+ - type fixes
2089
+ - removed min and max from long text mapping
2090
+ - bug fix for shortext field mapping
2091
+ - changes to post the testing results to a webhook api with a test payload
2092
+ - added import multer this fixes un-necessary ts errors in vscode
2093
+ - ts errors fixed
2094
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
2095
+ - formatting changes
2096
+ - facebook oauth
2097
+ - Status required false
2098
+ - updated gitignore
2099
+ - dleete un-necessary docs
2100
+ - deleted un-necessary files
2101
+ - changes related to more grooming
2102
+ - api added in cors
2103
+ - refactor Oauth strategy
2104
+ - Revert "Ft social media login"
2105
+ - bug fix
2106
+ - bug fix
2107
+ - add new api me endpoint and role based settings
2108
+ - setting changes for new ui architecture
2109
+ - changes for new settings structure
2110
+ - chatter task subtype and related changes
2111
+ - bug fix
2112
+ - fixes
2113
+ - 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
2114
+ - changes to handle import logs as well, thru configured winston log level
2115
+ - change isMultiSelect to true in solid-core-metadata.json
2116
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
2117
+ - 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
2118
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
2119
+ - bug fix: passwordless registration should create a user with active false
2120
+ - apikeys attribute was not exposed
2121
+ - refactor Oauth strategy
2122
+ - 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)
2123
+ - bug fix
2124
+ - null check on role
2125
+ - made provision to seed custom permissions
2126
+ - handled seed scenario too
2127
+ - upload File and expectHidden changes
2128
+ - extension user cleanup and checks added
2129
+ - fixed types for cleanup
2130
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
2131
+ - fixes bare shell imports with relative imports
2132
+ - dynamic import fix
2133
+ - removed unnecessary file
2134
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
2135
+ - removed base abstract class
2136
+ - added interface too
2137
+ - changes
2138
+ - changes to test data seeding & fixed the type for authenticationService.signup method
2139
+ - changes to user dto to include the api keys toggle
2140
+ - add default role to the user only if there are no roles resolved against a user
2141
+ - 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
2142
+ - Only forward --debug when explicitly enabled.
2143
+ - toolOutput field changes to json
2144
+ - adding user api key entity to export
2145
+ - minor optimisation to how dynamic modules are loaded
2146
+ - Add Discord badge to top of README
2147
+ - Fix broken BSL license link and add Discord link to README
2148
+ - Add BSL 1.1 license and update package.json license field
2149
+ - Seed user and roles in testing data
2150
+ - removed readme.txt
2151
+ - moved type and interfaces in interfaces.ts and refactored accordingly
2152
+ - changed to md
2153
+ - added readme
2154
+ - Ai setting model change
2155
+ - changes to allow encrypting setting keys
2156
+ - form view clean up
2157
+ - Agent table list view changes
2158
+ - synchronize false
2159
+ - changes to resolve the selection dynamic provider by name and token both
2160
+ - changes to bypass swagger urls from csp policy
2161
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
2162
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
2163
+ - changes to implement the sso code and sso exchange use cases
2164
+ - removed orm types / exported api key entity
2165
+ - added provision to control if api key creation is allowed for the user
2166
+ - api key changes for backend
2167
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
2168
+ - fix to call addRoles only if role names are present
2169
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
2170
+ - refactor: update legacy entity fields to be nullable and support null types
2171
+ - Json structure change
2172
+ - Agent table metadata clean up changes
2173
+ - longtext
2174
+ - longtext changes
2175
+ - Agent tables clean up
2176
+ - fixes to seed many-to-many relation for tests
2177
+ - changes to seed media in testing data
2178
+ - Chatter modelUserkey and excel many to one issue
2179
+ - keeping the default selectionValueType as string since this is a good default
2180
+ - bug fixes around how media is done
2181
+ - bug fixes
2182
+ - try catch inside logEvent
2183
+ - media has card based metadata
2184
+ - Refresh token activity
2185
+ - changes to implement the sso code and sso exchange use cases
2186
+ - cleanup
2187
+ - enabled kanban view on mq message
2188
+ - Agent table changes
2189
+ - changes to disallow deleting a model or module in production
2190
+ - changelog version bumped
2191
+ - changelog added
2192
+ - changes to control the logging using env variables & set appropriate defaults basis environment
2193
+ - chnages for logging
2194
+ - Chatter queue fixs
2195
+ - one more "beta" for ozzy
2196
+ - additional loggging in cors helper
2197
+ - changes
2198
+ - Redis Queue component and rabbitMQ folder changes
2199
+ - changes to track old and new fields as part of the delete entity operation
2200
+ - optimizations done for audit subcriber
2201
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
2202
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
2203
+ - formatting changes
2204
+ - 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
2205
+ - qs depth config increased
2206
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
2207
+ - cached model metadata queries
2208
+ - changse
2209
+ - disabled extra loggign
2210
+ - chagnes
2211
+ - reduced concurrency in computed fields
2212
+ - additional loggign
2213
+ - added indexes to mobile & email since those are frequently queries upon
2214
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
2215
+ - Redis background job changes
2216
+ - Chatter Rationalizing
2217
+ - changes
2218
+ - changes
2219
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
2220
+ - changes to export bootstrap helpers for server & cli nest applications
2221
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
2222
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
2223
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
2224
+ - added index on message id in mq message table
2225
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
2226
+ - changes to save model sequence id as part of post compute instead of pre compute
2227
+ - changse
2228
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
2229
+ - High concurrency fix for alpha num and sequence num computed fields
2230
+ - bug fix in cron evalutaion
2231
+ - tighter logging around roles
2232
+ - scheduler now supports env based specific jobs starting and others not
2233
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
2234
+ - revert cross db changes for view-metadata-entity
2235
+ - fixes
2236
+ - changes to handle cross-db compatibility
2237
+ - added type as simple-json
2238
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
2239
+ - Revert "Merge branch 'media-update' into 'main'"
2240
+ - Mysql related changes
2241
+ - ts-morph and media storage fix
2242
+ - dashboard layout menu item added
2243
+ - dashboard changes
2244
+ - scheduler bug fix
2245
+ - made provision to execute scheduled jobs manually
2246
+ - changes
2247
+ - cleanup
2248
+ - logging related changes and made user activity history tree view
2249
+ - changes to return the wall clock time as utc for chatter as well to keep it...
2250
+ - changes around dashboard question refactoring
2251
+ - default tree view and action added on code generation
2252
+ - Date time format changes in audit
2253
+ - user activity history on otp login
2254
+ - changes
2255
+ - changelog added
2256
+ - reverted legacy and common entity to use local date time transformer only
2257
+ - added changelog
2258
+ - made playwright dependency lazy
2259
+ - ai interaction table user is nullable now
2260
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
2261
+ - formatting changes
2262
+ - Version info changes
2263
+ - dummy otp can now be enabled on a per user basis
2264
+ - jwt token optimisation
2265
+ - optimised the authentication flow in microservice adapter to cache access token
2266
+ - deleted file containing secrets
2267
+ - changes
2268
+ - optimisation around how dummy otp is managed
2269
+ - isSeeded added
2270
+ - bug fix for fetch layouts
2271
+ - view modes added in layout
2272
+ - One to many crud manager fixes
2273
+ - one-to-many-crud-manager-fixes
2274
+ - Many to many crud field manager fixes
2275
+ - patch endpoint added in role controller
2276
+ - many-to-many field fixes
2277
+ - modelSequenceFormViewChangeHandler added on field change
2278
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
2279
+ - changes to format group values consistently
2280
+ - fixes for normalizing group values
2281
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
2282
+ - changes to return groupValue in the group meta response as well. groupValue is...
2283
+ - changes to return groupValue in the group meta response as well. groupValue is...
2284
+ - filter_field_granularity_supported_added_for_date_fields
2285
+ - password registration/login cleanup + max failed login attempts checks added
2286
+ - removed unsafe inline from CSP
2287
+ - removed incorrect comment
2288
+ - changes
2289
+ - Revert "replaced playwright with lazy dependency"
2290
+ - replaced playwright with lazy dependency
2291
+ - count and average
2292
+ - fixes to solid core metadata configuration
2293
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
2294
+ - solid seed now prints proper exception stack trace
2295
+ - added playwright dependencies as peer dependencies
2296
+ - changed playwright import to make it lazy
2297
+ - issue fixes
2298
+ - formatting changes
2299
+ - formatting changes
2300
+ - changes for test setup
2301
+ - package changes
2302
+ - Changes to generate an SA user with the default password for simpler experience during setup
2303
+ - more changes to support form data based uploads
2304
+ - changes
2305
+ - changes around testing workflow
2306
+ - unified testing utitlities
2307
+ - added comments to the slug code
2308
+ - refactored queue namespacign
2309
+ - queue namespacing related chanes
2310
+ - removed todo
2311
+ - queue name related changes
2312
+ - cag
2313
+ - changrs
2314
+ - queues names are now namespaced by service naem
2315
+ - enabled logs
2316
+ - debug logs
2317
+ - testing docs updated
2318
+ - changes
2319
+ - cleanup
2320
+ - removed old testing related fiels
2321
+ - testing infra now supports data based interpolation
2322
+ - testing changes: now we support fully custom test specs
2323
+ - changes for test automation
2324
+ - changes to tsconfig for playwright tests
2325
+ - exporting typeorm db helper
2326
+ - removed the files section
2327
+ - changes for playwright testing
2328
+ - changes to disable service controller seed method
2329
+ - formatting changes
2330
+ - oom issue
2331
+ - logger added for chatter
2332
+ - changed arg to kebab case instead of came case in schematic service
2333
+ - default menu icons added
2334
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
2335
+ - removed un-necessary log
2336
+ - fix for handling non existence of fieldNamesForRemoval arg
2337
+ - foirmatting canges
2338
+ - Archived/solidstarters main
2339
+ - version changes
2340
+ - changed org : @solidstarters -> @solidxai
2341
+ - removed publish script, since it is replaced with solidctl release
2342
+ - chanes
2343
+ - Revert "@solidstarters namespace changed to @solidx"
2344
+ - @solidstarters namespace changed to @solidx
2345
+ - file service interface changes
2346
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
2347
+ - 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
2348
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
2349
+ - test data workflow
2350
+ - test-data command
2351
+ - seed command updated
2352
+ - changes
2353
+ - changes
2354
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
2355
+ - seeding now supports seedData allowing us to seed fixtures for testing.
2356
+ - precomputations now skip computation if value is already provided
2357
+ - added utility for findOneByUserKey
2358
+ - pruning related chagnes
2359
+ - changes
2360
+ - more changes related to pruning metadata
2361
+ - pruen logs added
2362
+ - module metadata seeder now does prune also
2363
+ - reformatting to improve readability
2364
+ - changes
2365
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
2366
+ - bug fixes
2367
+ - changes to cleanup the implementation by having the write method of file service return the url post write
2368
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
2369
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
2370
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
2371
+ - file service abstraction cleanup
2372
+ - chagnes
2373
+ - Dashboard Question Responsive
2374
+
2375
+ ## [0.1.13-beta.22] - 2026-08-17
2376
+
2377
+ ### Added
2378
+
2379
+ - add normalization utilities for text fields and integrate them into LongTextFieldCrudManager and ShortTextFieldCrudManager
2380
+ - add security header options for iframe embedding and customize frame-ancestors
2381
+ - add createdAt field to PostChatterMessageDto and set default in service
2382
+ - implement transaction handling for unpublishing records and restore previous version
2383
+ - add progress reporting functionality to test runner and reporters
2384
+ - add viewWidget attribute for fileSize in metadata
2385
+ - add configurable UI timeouts for testing steps and update documentation
2386
+ - enhance internationalisation by adding applyCreateDefaults method for localeName on create DTOs
2387
+ - implement promoteRecoveredDraftPublishVersion method and integrate with CRUDService for soft-deleted records
2388
+ - add default locale name for internationalised entries in test data seeding
2389
+ - implement draft/publish versioning support and refactor related services
2390
+ - add DraftPublishHelperService for managing draft and publish workflows
2391
+ - add workflow field data provider support and related interfaces
2392
+ - add asynchronous execution for workflows and enhance execution status retrieval
2393
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
2394
+ - enhance workflow definition management and add Python runtime node
2395
+ - add SolidX integration nodes for login, email, and SMS
2396
+ - add support for versioning and publishing in CRUD operations, including new fields in entities and filters
2397
+ - enhance http.request node with query parameters and body modes
2398
+ - refactor node structure and add sequential and switch nodes
2399
+ - update workflow execution and definition handling
2400
+ - implement workflow execution services and nodes
2401
+ - implement API key generation for system admin users in ModuleMetadataSeederService
2402
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
2403
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
2404
+ - enhance migration process with build and seed commands
2405
+ - enhance datasource introspection with primary key detection and migration support
2406
+ - enhance role creation with module linkage and resolve module metadata
2407
+ - enhance action, role, and view metadata services with change detection and JSON normalization
2408
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
2409
+ - add new dashboard controller actions to permissions
2410
+ - simplify queue health permissions by consolidating patterns
2411
+ - implement explicit widget permissions and unauthorized response handling
2412
+ - enhance widget permission checks and add unauthorized response handling
2413
+ - add Queue SLA heatmap provider and update metadata
2414
+ - update queue health menu item and reorder messages
2415
+ - add various dashboard providers and runtime services
2416
+ - implement WhatsApp Cloud API integration
2417
+ - add gupshup whatsapp provider
2418
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
2419
+ - add updateCustomNoteMessage action to ChatterMessageController
2420
+ - add secure custom-note edit API with attachment add/remove support
2421
+ - implemented social media oath for facebook and microsoft
2422
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
2423
+ - implemented social media oath for facebook and microsoft
2424
+ - add Message Tree Action and corresponding view for mqMessage
2425
+ - implement processing timeout for RabbitMQ subscriber
2426
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
2427
+ - Migrate date/time transformers to UtcDateTimeTransformer.
2428
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
2429
+
2430
+ ### Fixed
2431
+
2432
+ - make currentValue optional in CreateModelSequenceDto and update seeding logic to exclude it
2433
+ - change matched column type from bit to default nullable boolean
2434
+ - improve error message for media deletion restriction
2435
+ - use transactions entitymanager for all subscribers only for embedded db projects
2436
+ - update consuming project name resolution to use parent directory
2437
+ - update solidx directory path to include consuming project name
2438
+ - correct package name in model generation command and update error handling in module metadata retrieval
2439
+ - username
2440
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
2441
+ - handle null or empty security rule configuration strings in repository
2442
+
2443
+ ### Changed
2444
+
2445
+ - update media type handling in CreateFieldMetadataDto and FieldMetadataService
2446
+ - remove onDelete cascade option from ManyToOne relationships in entity definitions
2447
+ - unify datetime column types across entities using helper function
2448
+ - remove explicit timestamp type for nullable date columns across entities
2449
+ - update CommonEntity properties to be optional and adjust types in WorkflowTriggerExecution
2450
+ - rename create-draft-publish-helper.service to draft-publish-helper.service and update imports
2451
+ - inject InternationalisationHelperService in ModuleTestDataService and CrudHelperService
2452
+ - separate generic delete from draft-publish and i18n cleanup in CRUDService
2453
+ - remove unused boolean type and related system column definitions from DatasourceIntrospectionService
2454
+ - update CrudHelperService to initialize DraftPublishHelperService directly in the class refactor: remove publishedAt sorting logic from getLayout method in ViewMetadataService
2455
+ - simplify published version filtering in CRUDService
2456
+ - remove handleSeedLocales method to streamline locale seeding process
2457
+ - remove legacy dashboard files and add new dashboarding architecture guide
2458
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
2459
+ - remove redundant null check in resolveSecurityRuleConfig
2460
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
2461
+ - update legacy entity fields to be nullable and support null types
2462
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
2463
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
2464
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
2465
+
2466
+ ### Documentation
2467
+
2468
+ - update expired discord link
2469
+
2470
+ ### Other
2471
+
2472
+ - ## Phase 6 — Global Multer upload size limit
2473
+ - ## Phase 5 — Dangerous-extension checks on menu-icon & settings uploads
2474
+ - ## Phase 4 — Route chatter attachments through `MediaFieldCrudManager`
2475
+ - ## Phase 3 — Close the `mediaMultiple` size/category gap, and align `validateAllowedExtensions`'s placement
2476
+ - ## Phase 2 — Make `mediaTypes` category resolution extension-authoritative
2477
+ - Per-field extension allowlist (`mediaAllowedExtensions`)
2478
+ - mpin scheme version changes
2479
+ - mpin related changes
2480
+ - Add safe percent-decoding for uploaded file names to prevent bypassing extension checks
2481
+ - Revert "Revert "Deliverable A now stands as: cache TTL (with the store swap that make…""
2482
+ - Revert "Deliverable A now stands as: cache TTL (with the store swap that make…"
2483
+ - fixes around handling concurrent logins properly using per deviceKey buckets.
2484
+ - Deliverable A now stands as: cache TTL (with the store swap that makes it actually work), the me() null guard it necessitates, the logout verify/idempotency fix, previousValidUntil replacing the timer, and the dead validate() removed.
2485
+ - fixed the request body limit to keep it as 10mb instead of 25mb by default
2486
+ - changes around files name sanitization and normalization
2487
+ - changes to handle variations in extension while uploading dangerous extension files
2488
+ - change request body max to 25mb
2489
+ - Comment out countGroupedRecords method implementation for refactoring
2490
+ - show theme toggle
2491
+ - changes to support passing an explicit createdAt while posting a chatter message
2492
+ - Enhance countGroupedRecords and passed internationalisation and draft publish workflow parameters in executeGroupPipeline
2493
+ - rename theme registry
2494
+ - remove add permisson from permisson-list-view
2495
+ - removed indexes on username and mobile since it is a conditional index and it breaks for mssql since multiple nulls are not allowed on unique columns
2496
+ - readme changes
2497
+ - removed hardcoded type against a boolean type
2498
+ - changes to the default testing setting timeout to pick from env as well
2499
+ - remove duplicate code
2500
+ - refactoring around chatter media security fix
2501
+ - add media extension support for post chatter
2502
+ - Add media upload action and validation in MediaService
2503
+ - add media extension support for post chatter
2504
+ - changes to ensure only id and field are returned while populating the user in chatter
2505
+ - Update defaultValue types in solid-core-metadata.json to strings
2506
+ - 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
2507
+ - Add getMentionableUsers permission
2508
+ - Add endpoint to retrieve mentionable users with search and limit options
2509
+ - Add error handling nodes and enhance workflow node definitions
2510
+ - Add skipHooks option to seed command and related services
2511
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
2512
+ - Enhance workflow node definitions and runtime context handling
2513
+ - remvoing redundent code
2514
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
2515
+ - changes
2516
+ - changes
2517
+ - sql injection vulnerability closed in filter queries
2518
+ - Remove LocalPath
2519
+ - revert changes
2520
+ - revert changes
2521
+ - revert changes
2522
+ - re revert
2523
+ - revert changes
2524
+ - private-file-cleanup
2525
+ - add downlaodurl
2526
+ - changes to allow overriding the is allowed api keys flag thru extension user
2527
+ - Revert "user enumeration"
2528
+ - remove validation from username and mobile
2529
+ - user create validation bugs
2530
+ - add normalize for otp based also
2531
+ - Disable metadata pruning by default in seed command configuration
2532
+ - Update seed command to enable metadata pruning by default
2533
+ - handle-case-sensitive-for-email
2534
+ - Add delete permissions for ImportTransactionController in solid-core metadata
2535
+ - Add permissions for import/export functionality in solid-core metadata
2536
+ - Refactor role assignment for admin users to handle capability roles individually
2537
+ - discard changes
2538
+ - add support for static file
2539
+ - Add capability roles for admin users in module metadata seeder
2540
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
2541
+ - attachment
2542
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
2543
+ - make isPublic default true
2544
+ - changes to show the image inline
2545
+ - cleanup againts media's
2546
+ - inline role crate false
2547
+ - Implement chatter mention notification system with email templates and queue handling
2548
+ - Add messageBodyMentions field to chatter message DTOs and entity
2549
+ - fix-audit-bug
2550
+ - changes to include signed url token for private media
2551
+ - Revert "Revert "rename function name""
2552
+ - Revert "Revert "add private media support""
2553
+ - Add media file type constants and enhance security for media uploads
2554
+ - remove some unusable code
2555
+ - some changes
2556
+ - handle technical error messages due to missing resource in static resources folder
2557
+ - Revert "add private media support"
2558
+ - Revert "rename function name"
2559
+ - rename function name
2560
+ - add private media support
2561
+ - some fixes
2562
+ - solidx session invalid changes
2563
+ - add validation on get chatter message
2564
+ - updatedAt value is updating now
2565
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
2566
+ - add security against chatter
2567
+ - chatter message endpoint made public
2568
+ - removed embedded db support
2569
+ - Add default sorting by ID if not explicitly specified in order options
2570
+ - solidx theme settings
2571
+ - add icons across all the models in solid core
2572
+ - media upload added behind auth
2573
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
2574
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
2575
+ - class serializer interceptor added for impact of Exclude and Expose
2576
+ - Enhance datasource introspection with primary key validation and user key resolution
2577
+ - Concurrent Login Feature
2578
+ - user enumeration
2579
+ - add helper text key on settings object .........
2580
+ - changes to handle case insenstive filter operations if the values are other than string by casting
2581
+ - menus item fix
2582
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
2583
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
2584
+ - display name changed
2585
+ - name changed
2586
+ - added settings for configure the row click on solid list view
2587
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
2588
+ - fixed legacy entity files names
2589
+ - view metadata type field - selection static and roles required false from menu-item
2590
+ - Fix for this issue > stop applying lower for numeric fields.
2591
+ - refactor and add migration command
2592
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
2593
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
2594
+ - changes to take in option for seeding with modules in current seed method
2595
+ - Fix validation logic to parse string field values as integers before applying validations
2596
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
2597
+ - ad changes
2598
+ - Add locale seeding functionality and enhance locale management
2599
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
2600
+ - changes to avoid extra module checks before dynamically loading it
2601
+ - defaulted to modulemetadataseederservice if no seeder provided
2602
+ - Add Date field in Instructions Response
2603
+ - ai interaction cleanup changes
2604
+ - enabling create,edit,import,export on permission and lov modules
2605
+ - added module to rolemetadata list view
2606
+ - roles group by module changes
2607
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
2608
+ - Implement Datasource Management functionality with controller, service, and DTO
2609
+ - added index to fields newly added as sortable and searchable
2610
+ - Add archiver package to dependencies
2611
+ - removed unnecessary seed file
2612
+ - Add TypeORM migration helper functions and export in index
2613
+ - fixes
2614
+ - reverted accidental removal of the layout builder root menu
2615
+ - pending cleanup of solid core menu items
2616
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
2617
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
2618
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
2619
+ - changes for IAM
2620
+ - Add clearPackageRuntime functionality and corresponding metadata action
2621
+ - Add archiver dependency and implement module package export functionality
2622
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
2623
+ - 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
2624
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
2625
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
2626
+ - Remove unused database bootstrap service and related SQL cleanup procedures
2627
+ - cleanup
2628
+ - Add view and action metadata tree views with updated permissions and searchable fields
2629
+ - Add view and action metadata tree views with updated permissions and searchable fields
2630
+ - menu item model cleanup
2631
+ - Add resumable import handling and transaction management in module package service
2632
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
2633
+ - 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.
2634
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
2635
+ - many to one left join issue fixed
2636
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
2637
+ - 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
2638
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
2639
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
2640
+ - Implement module metadata explorer with CRUD operations and search functionality
2641
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
2642
+ - Bug fixs
2643
+ - added frontend base url as well to the default settings
2644
+ - minor cleanup
2645
+ - changes to cleanup legacy table related fields
2646
+ - changes for new dashboards functionality
2647
+ - always print server startup line regardless of log level
2648
+ - Add field quality checks and fixes checklist for backend validation
2649
+ - typeo issue
2650
+ - Agent table clean up
2651
+ - Add manual interaction step for Playwright and update README
2652
+ - provision made to unlink data rather than having to teardown everything
2653
+ - provision made to unlink data rather than having to teardown everything
2654
+ - changes to colour the server startup line
2655
+ - Agent table clean up
2656
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
2657
+ - removed id command options and retained the singular name option only for consistency purposes
2658
+ - 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
2659
+ - 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
2660
+ - MCP table solid changes
2661
+ - playwrite added as dependency instead
2662
+ - changes to the test runner
2663
+ - chatter message user resolution chagnes
2664
+ - bug fix in chatter message user resolution after we moved to queues.
2665
+ - moved back to beta3
2666
+ - failed login attempts field added to the json and update dto and exposed in entity
2667
+ - removed un-necessary index on newvalue display
2668
+ - ts changes error: any
2669
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
2670
+ - changed model metadata service default form layout to be single column
2671
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
2672
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
2673
+ - normalised @ApiTags
2674
+ - enum for passwordless modes
2675
+ - bug fix in how alternative actions are rendered
2676
+ - queue related bug fixes
2677
+ - changes to add a websocket adaptor to the bootstrap server routine
2678
+ - license changes
2679
+ - type fixes
2680
+ - removed min and max from long text mapping
2681
+ - bug fix for shortext field mapping
2682
+ - changes to post the testing results to a webhook api with a test payload
2683
+ - added import multer this fixes un-necessary ts errors in vscode
2684
+ - ts errors fixed
2685
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
2686
+ - formatting changes
2687
+ - facebook oauth
2688
+ - Status required false
2689
+ - updated gitignore
2690
+ - dleete un-necessary docs
2691
+ - deleted un-necessary files
2692
+ - changes related to more grooming
2693
+ - api added in cors
2694
+ - refactor Oauth strategy
2695
+ - Revert "Ft social media login"
2696
+ - bug fix
2697
+ - bug fix
2698
+ - add new api me endpoint and role based settings
2699
+ - setting changes for new ui architecture
2700
+ - changes for new settings structure
2701
+ - chatter task subtype and related changes
2702
+ - bug fix
2703
+ - fixes
2704
+ - 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
2705
+ - changes to handle import logs as well, thru configured winston log level
2706
+ - change isMultiSelect to true in solid-core-metadata.json
2707
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
2708
+ - 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
2709
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
2710
+ - bug fix: passwordless registration should create a user with active false
2711
+ - apikeys attribute was not exposed
2712
+ - refactor Oauth strategy
2713
+ - 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)
2714
+ - bug fix
2715
+ - null check on role
2716
+ - made provision to seed custom permissions
2717
+ - handled seed scenario too
2718
+ - upload File and expectHidden changes
2719
+ - extension user cleanup and checks added
2720
+ - fixed types for cleanup
2721
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
2722
+ - fixes bare shell imports with relative imports
2723
+ - dynamic import fix
2724
+ - removed unnecessary file
2725
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
2726
+ - removed base abstract class
2727
+ - added interface too
2728
+ - changes
2729
+ - changes to test data seeding & fixed the type for authenticationService.signup method
2730
+ - changes to user dto to include the api keys toggle
2731
+ - add default role to the user only if there are no roles resolved against a user
2732
+ - 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
2733
+ - Only forward --debug when explicitly enabled.
2734
+ - toolOutput field changes to json
2735
+ - adding user api key entity to export
2736
+ - minor optimisation to how dynamic modules are loaded
2737
+ - Add Discord badge to top of README
2738
+ - Fix broken BSL license link and add Discord link to README
2739
+ - Add BSL 1.1 license and update package.json license field
2740
+ - Seed user and roles in testing data
2741
+ - removed readme.txt
2742
+ - moved type and interfaces in interfaces.ts and refactored accordingly
2743
+ - changed to md
2744
+ - added readme
2745
+ - Ai setting model change
2746
+ - changes to allow encrypting setting keys
2747
+ - form view clean up
2748
+ - Agent table list view changes
2749
+ - synchronize false
2750
+ - changes to resolve the selection dynamic provider by name and token both
2751
+ - changes to bypass swagger urls from csp policy
2752
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
2753
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
2754
+ - changes to implement the sso code and sso exchange use cases
2755
+ - removed orm types / exported api key entity
2756
+ - added provision to control if api key creation is allowed for the user
2757
+ - api key changes for backend
2758
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
2759
+ - fix to call addRoles only if role names are present
2760
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
2761
+ - refactor: update legacy entity fields to be nullable and support null types
2762
+ - Json structure change
2763
+ - Agent table metadata clean up changes
2764
+ - longtext
2765
+ - longtext changes
2766
+ - Agent tables clean up
2767
+ - fixes to seed many-to-many relation for tests
2768
+ - changes to seed media in testing data
2769
+ - Chatter modelUserkey and excel many to one issue
2770
+ - keeping the default selectionValueType as string since this is a good default
2771
+ - bug fixes around how media is done
2772
+ - bug fixes
2773
+ - try catch inside logEvent
2774
+ - media has card based metadata
2775
+ - Refresh token activity
2776
+ - changes to implement the sso code and sso exchange use cases
2777
+ - cleanup
2778
+ - enabled kanban view on mq message
2779
+ - Agent table changes
2780
+ - changes to disallow deleting a model or module in production
2781
+ - changelog version bumped
2782
+ - changelog added
2783
+ - changes to control the logging using env variables & set appropriate defaults basis environment
2784
+ - chnages for logging
2785
+ - Chatter queue fixs
2786
+ - one more "beta" for ozzy
2787
+ - additional loggging in cors helper
2788
+ - changes
2789
+ - Redis Queue component and rabbitMQ folder changes
2790
+ - changes to track old and new fields as part of the delete entity operation
2791
+ - optimizations done for audit subcriber
2792
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
2793
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
2794
+ - formatting changes
2795
+ - 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
2796
+ - qs depth config increased
2797
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
2798
+ - cached model metadata queries
2799
+ - changse
2800
+ - disabled extra loggign
2801
+ - chagnes
2802
+ - reduced concurrency in computed fields
2803
+ - additional loggign
2804
+ - added indexes to mobile & email since those are frequently queries upon
2805
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
2806
+ - Redis background job changes
2807
+ - Chatter Rationalizing
2808
+ - changes
2809
+ - changes
2810
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
2811
+ - changes to export bootstrap helpers for server & cli nest applications
2812
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
2813
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
2814
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
2815
+ - added index on message id in mq message table
2816
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
2817
+ - changes to save model sequence id as part of post compute instead of pre compute
2818
+ - changse
2819
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
2820
+ - High concurrency fix for alpha num and sequence num computed fields
2821
+ - bug fix in cron evalutaion
2822
+ - tighter logging around roles
2823
+ - scheduler now supports env based specific jobs starting and others not
2824
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
2825
+ - revert cross db changes for view-metadata-entity
2826
+ - fixes
2827
+ - changes to handle cross-db compatibility
2828
+ - added type as simple-json
2829
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
2830
+ - Revert "Merge branch 'media-update' into 'main'"
2831
+ - Mysql related changes
2832
+ - ts-morph and media storage fix
2833
+ - dashboard layout menu item added
2834
+ - dashboard changes
2835
+ - scheduler bug fix
2836
+ - made provision to execute scheduled jobs manually
2837
+ - changes
2838
+ - cleanup
2839
+ - logging related changes and made user activity history tree view
2840
+ - changes to return the wall clock time as utc for chatter as well to keep it...
2841
+ - changes around dashboard question refactoring
2842
+ - default tree view and action added on code generation
2843
+ - Date time format changes in audit
2844
+ - user activity history on otp login
2845
+ - changes
2846
+ - changelog added
2847
+ - reverted legacy and common entity to use local date time transformer only
2848
+ - added changelog
2849
+ - made playwright dependency lazy
2850
+ - ai interaction table user is nullable now
2851
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
2852
+ - formatting changes
2853
+ - Version info changes
2854
+ - dummy otp can now be enabled on a per user basis
2855
+ - jwt token optimisation
2856
+ - optimised the authentication flow in microservice adapter to cache access token
2857
+ - deleted file containing secrets
2858
+ - changes
2859
+ - optimisation around how dummy otp is managed
2860
+ - isSeeded added
2861
+ - bug fix for fetch layouts
2862
+ - view modes added in layout
2863
+ - One to many crud manager fixes
2864
+ - one-to-many-crud-manager-fixes
2865
+ - Many to many crud field manager fixes
2866
+ - patch endpoint added in role controller
2867
+ - many-to-many field fixes
2868
+ - modelSequenceFormViewChangeHandler added on field change
2869
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
2870
+ - changes to format group values consistently
2871
+ - fixes for normalizing group values
2872
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
2873
+ - changes to return groupValue in the group meta response as well. groupValue is...
2874
+ - changes to return groupValue in the group meta response as well. groupValue is...
2875
+ - filter_field_granularity_supported_added_for_date_fields
2876
+ - password registration/login cleanup + max failed login attempts checks added
2877
+ - removed unsafe inline from CSP
2878
+ - removed incorrect comment
2879
+ - changes
2880
+ - Revert "replaced playwright with lazy dependency"
2881
+ - replaced playwright with lazy dependency
2882
+ - count and average
2883
+ - fixes to solid core metadata configuration
2884
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
2885
+ - solid seed now prints proper exception stack trace
2886
+ - added playwright dependencies as peer dependencies
2887
+ - changed playwright import to make it lazy
2888
+ - issue fixes
2889
+ - formatting changes
2890
+ - formatting changes
2891
+ - changes for test setup
2892
+ - package changes
2893
+ - Changes to generate an SA user with the default password for simpler experience during setup
2894
+ - more changes to support form data based uploads
2895
+ - changes
2896
+ - changes around testing workflow
2897
+ - unified testing utitlities
2898
+ - added comments to the slug code
2899
+ - refactored queue namespacign
2900
+ - queue namespacing related chanes
2901
+ - removed todo
2902
+ - queue name related changes
2903
+ - cag
2904
+ - changrs
2905
+ - queues names are now namespaced by service naem
2906
+ - enabled logs
2907
+ - debug logs
2908
+ - testing docs updated
2909
+ - changes
2910
+ - cleanup
2911
+ - removed old testing related fiels
2912
+ - testing infra now supports data based interpolation
2913
+ - testing changes: now we support fully custom test specs
2914
+ - changes for test automation
2915
+ - changes to tsconfig for playwright tests
2916
+ - exporting typeorm db helper
2917
+ - removed the files section
2918
+ - changes for playwright testing
2919
+ - changes to disable service controller seed method
2920
+ - formatting changes
2921
+ - oom issue
2922
+ - logger added for chatter
2923
+ - changed arg to kebab case instead of came case in schematic service
2924
+ - default menu icons added
2925
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
2926
+ - removed un-necessary log
2927
+ - fix for handling non existence of fieldNamesForRemoval arg
2928
+ - foirmatting canges
2929
+ - Archived/solidstarters main
2930
+ - version changes
2931
+ - changed org : @solidstarters -> @solidxai
2932
+ - removed publish script, since it is replaced with solidctl release
2933
+ - chanes
2934
+ - Revert "@solidstarters namespace changed to @solidx"
2935
+ - @solidstarters namespace changed to @solidx
2936
+ - file service interface changes
2937
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
2938
+ - 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
2939
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
2940
+ - test data workflow
2941
+ - test-data command
2942
+ - seed command updated
2943
+ - changes
2944
+ - changes
2945
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
2946
+ - seeding now supports seedData allowing us to seed fixtures for testing.
2947
+ - precomputations now skip computation if value is already provided
2948
+ - added utility for findOneByUserKey
2949
+ - pruning related chagnes
2950
+ - changes
2951
+ - more changes related to pruning metadata
2952
+ - pruen logs added
2953
+ - module metadata seeder now does prune also
2954
+ - reformatting to improve readability
2955
+ - changes
2956
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
2957
+ - bug fixes
2958
+ - changes to cleanup the implementation by having the write method of file service return the url post write
2959
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
2960
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
2961
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
2962
+ - file service abstraction cleanup
2963
+ - chagnes
2964
+ - Dashboard Question Responsive
2965
+
593
2966
  ## [0.1.13-beta.21] - 2026-08-14
594
2967
 
595
2968
  ### Added