@solidxai/core 0.1.13-beta.21 → 0.1.13-beta.23

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 +1185 -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,1190 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.13-beta.23] - 2026-08-19
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.13-beta.22] - 2026-08-17
598
+
599
+ ### Added
600
+
601
+ - add normalization utilities for text fields and integrate them into LongTextFieldCrudManager and ShortTextFieldCrudManager
602
+ - add security header options for iframe embedding and customize frame-ancestors
603
+ - add createdAt field to PostChatterMessageDto and set default in service
604
+ - implement transaction handling for unpublishing records and restore previous version
605
+ - add progress reporting functionality to test runner and reporters
606
+ - add viewWidget attribute for fileSize in metadata
607
+ - add configurable UI timeouts for testing steps and update documentation
608
+ - enhance internationalisation by adding applyCreateDefaults method for localeName on create DTOs
609
+ - implement promoteRecoveredDraftPublishVersion method and integrate with CRUDService for soft-deleted records
610
+ - add default locale name for internationalised entries in test data seeding
611
+ - implement draft/publish versioning support and refactor related services
612
+ - add DraftPublishHelperService for managing draft and publish workflows
613
+ - add workflow field data provider support and related interfaces
614
+ - add asynchronous execution for workflows and enhance execution status retrieval
615
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
616
+ - enhance workflow definition management and add Python runtime node
617
+ - add SolidX integration nodes for login, email, and SMS
618
+ - add support for versioning and publishing in CRUD operations, including new fields in entities and filters
619
+ - enhance http.request node with query parameters and body modes
620
+ - refactor node structure and add sequential and switch nodes
621
+ - update workflow execution and definition handling
622
+ - implement workflow execution services and nodes
623
+ - implement API key generation for system admin users in ModuleMetadataSeederService
624
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
625
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
626
+ - enhance migration process with build and seed commands
627
+ - enhance datasource introspection with primary key detection and migration support
628
+ - enhance role creation with module linkage and resolve module metadata
629
+ - enhance action, role, and view metadata services with change detection and JSON normalization
630
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
631
+ - add new dashboard controller actions to permissions
632
+ - simplify queue health permissions by consolidating patterns
633
+ - implement explicit widget permissions and unauthorized response handling
634
+ - enhance widget permission checks and add unauthorized response handling
635
+ - add Queue SLA heatmap provider and update metadata
636
+ - update queue health menu item and reorder messages
637
+ - add various dashboard providers and runtime services
638
+ - implement WhatsApp Cloud API integration
639
+ - add gupshup whatsapp provider
640
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
641
+ - add updateCustomNoteMessage action to ChatterMessageController
642
+ - add secure custom-note edit API with attachment add/remove support
643
+ - implemented social media oath for facebook and microsoft
644
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
645
+ - implemented social media oath for facebook and microsoft
646
+ - add Message Tree Action and corresponding view for mqMessage
647
+ - implement processing timeout for RabbitMQ subscriber
648
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
649
+ - Migrate date/time transformers to UtcDateTimeTransformer.
650
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
651
+
652
+ ### Fixed
653
+
654
+ - make currentValue optional in CreateModelSequenceDto and update seeding logic to exclude it
655
+ - change matched column type from bit to default nullable boolean
656
+ - improve error message for media deletion restriction
657
+ - use transactions entitymanager for all subscribers only for embedded db projects
658
+ - update consuming project name resolution to use parent directory
659
+ - update solidx directory path to include consuming project name
660
+ - correct package name in model generation command and update error handling in module metadata retrieval
661
+ - username
662
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
663
+ - handle null or empty security rule configuration strings in repository
664
+
665
+ ### Changed
666
+
667
+ - update media type handling in CreateFieldMetadataDto and FieldMetadataService
668
+ - remove onDelete cascade option from ManyToOne relationships in entity definitions
669
+ - unify datetime column types across entities using helper function
670
+ - remove explicit timestamp type for nullable date columns across entities
671
+ - update CommonEntity properties to be optional and adjust types in WorkflowTriggerExecution
672
+ - rename create-draft-publish-helper.service to draft-publish-helper.service and update imports
673
+ - inject InternationalisationHelperService in ModuleTestDataService and CrudHelperService
674
+ - separate generic delete from draft-publish and i18n cleanup in CRUDService
675
+ - remove unused boolean type and related system column definitions from DatasourceIntrospectionService
676
+ - update CrudHelperService to initialize DraftPublishHelperService directly in the class refactor: remove publishedAt sorting logic from getLayout method in ViewMetadataService
677
+ - simplify published version filtering in CRUDService
678
+ - remove handleSeedLocales method to streamline locale seeding process
679
+ - remove legacy dashboard files and add new dashboarding architecture guide
680
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
681
+ - remove redundant null check in resolveSecurityRuleConfig
682
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
683
+ - update legacy entity fields to be nullable and support null types
684
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
685
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
686
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
687
+
688
+ ### Documentation
689
+
690
+ - update expired discord link
691
+
692
+ ### Other
693
+
694
+ - ## Phase 6 — Global Multer upload size limit
695
+ - ## Phase 5 — Dangerous-extension checks on menu-icon & settings uploads
696
+ - ## Phase 4 — Route chatter attachments through `MediaFieldCrudManager`
697
+ - ## Phase 3 — Close the `mediaMultiple` size/category gap, and align `validateAllowedExtensions`'s placement
698
+ - ## Phase 2 — Make `mediaTypes` category resolution extension-authoritative
699
+ - Per-field extension allowlist (`mediaAllowedExtensions`)
700
+ - mpin scheme version changes
701
+ - mpin related changes
702
+ - Add safe percent-decoding for uploaded file names to prevent bypassing extension checks
703
+ - Revert "Revert "Deliverable A now stands as: cache TTL (with the store swap that make…""
704
+ - Revert "Deliverable A now stands as: cache TTL (with the store swap that make…"
705
+ - fixes around handling concurrent logins properly using per deviceKey buckets.
706
+ - 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.
707
+ - fixed the request body limit to keep it as 10mb instead of 25mb by default
708
+ - changes around files name sanitization and normalization
709
+ - changes to handle variations in extension while uploading dangerous extension files
710
+ - change request body max to 25mb
711
+ - Comment out countGroupedRecords method implementation for refactoring
712
+ - show theme toggle
713
+ - changes to support passing an explicit createdAt while posting a chatter message
714
+ - Enhance countGroupedRecords and passed internationalisation and draft publish workflow parameters in executeGroupPipeline
715
+ - rename theme registry
716
+ - remove add permisson from permisson-list-view
717
+ - 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
718
+ - readme changes
719
+ - removed hardcoded type against a boolean type
720
+ - changes to the default testing setting timeout to pick from env as well
721
+ - remove duplicate code
722
+ - refactoring around chatter media security fix
723
+ - add media extension support for post chatter
724
+ - Add media upload action and validation in MediaService
725
+ - add media extension support for post chatter
726
+ - changes to ensure only id and field are returned while populating the user in chatter
727
+ - Update defaultValue types in solid-core-metadata.json to strings
728
+ - 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
729
+ - Add getMentionableUsers permission
730
+ - Add endpoint to retrieve mentionable users with search and limit options
731
+ - Add error handling nodes and enhance workflow node definitions
732
+ - Add skipHooks option to seed command and related services
733
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
734
+ - Enhance workflow node definitions and runtime context handling
735
+ - remvoing redundent code
736
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
737
+ - changes
738
+ - changes
739
+ - sql injection vulnerability closed in filter queries
740
+ - Remove LocalPath
741
+ - revert changes
742
+ - revert changes
743
+ - revert changes
744
+ - re revert
745
+ - revert changes
746
+ - private-file-cleanup
747
+ - add downlaodurl
748
+ - changes to allow overriding the is allowed api keys flag thru extension user
749
+ - Revert "user enumeration"
750
+ - remove validation from username and mobile
751
+ - user create validation bugs
752
+ - add normalize for otp based also
753
+ - Disable metadata pruning by default in seed command configuration
754
+ - Update seed command to enable metadata pruning by default
755
+ - handle-case-sensitive-for-email
756
+ - Add delete permissions for ImportTransactionController in solid-core metadata
757
+ - Add permissions for import/export functionality in solid-core metadata
758
+ - Refactor role assignment for admin users to handle capability roles individually
759
+ - discard changes
760
+ - add support for static file
761
+ - Add capability roles for admin users in module metadata seeder
762
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
763
+ - attachment
764
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
765
+ - make isPublic default true
766
+ - changes to show the image inline
767
+ - cleanup againts media's
768
+ - inline role crate false
769
+ - Implement chatter mention notification system with email templates and queue handling
770
+ - Add messageBodyMentions field to chatter message DTOs and entity
771
+ - fix-audit-bug
772
+ - changes to include signed url token for private media
773
+ - Revert "Revert "rename function name""
774
+ - Revert "Revert "add private media support""
775
+ - Add media file type constants and enhance security for media uploads
776
+ - remove some unusable code
777
+ - some changes
778
+ - handle technical error messages due to missing resource in static resources folder
779
+ - Revert "add private media support"
780
+ - Revert "rename function name"
781
+ - rename function name
782
+ - add private media support
783
+ - some fixes
784
+ - solidx session invalid changes
785
+ - add validation on get chatter message
786
+ - updatedAt value is updating now
787
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
788
+ - add security against chatter
789
+ - chatter message endpoint made public
790
+ - removed embedded db support
791
+ - Add default sorting by ID if not explicitly specified in order options
792
+ - solidx theme settings
793
+ - add icons across all the models in solid core
794
+ - media upload added behind auth
795
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
796
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
797
+ - class serializer interceptor added for impact of Exclude and Expose
798
+ - Enhance datasource introspection with primary key validation and user key resolution
799
+ - Concurrent Login Feature
800
+ - user enumeration
801
+ - add helper text key on settings object .........
802
+ - changes to handle case insenstive filter operations if the values are other than string by casting
803
+ - menus item fix
804
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
805
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
806
+ - display name changed
807
+ - name changed
808
+ - added settings for configure the row click on solid list view
809
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
810
+ - fixed legacy entity files names
811
+ - view metadata type field - selection static and roles required false from menu-item
812
+ - Fix for this issue > stop applying lower for numeric fields.
813
+ - refactor and add migration command
814
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
815
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
816
+ - changes to take in option for seeding with modules in current seed method
817
+ - Fix validation logic to parse string field values as integers before applying validations
818
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
819
+ - ad changes
820
+ - Add locale seeding functionality and enhance locale management
821
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
822
+ - changes to avoid extra module checks before dynamically loading it
823
+ - defaulted to modulemetadataseederservice if no seeder provided
824
+ - Add Date field in Instructions Response
825
+ - ai interaction cleanup changes
826
+ - enabling create,edit,import,export on permission and lov modules
827
+ - added module to rolemetadata list view
828
+ - roles group by module changes
829
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
830
+ - Implement Datasource Management functionality with controller, service, and DTO
831
+ - added index to fields newly added as sortable and searchable
832
+ - Add archiver package to dependencies
833
+ - removed unnecessary seed file
834
+ - Add TypeORM migration helper functions and export in index
835
+ - fixes
836
+ - reverted accidental removal of the layout builder root menu
837
+ - pending cleanup of solid core menu items
838
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
839
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
840
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
841
+ - changes for IAM
842
+ - Add clearPackageRuntime functionality and corresponding metadata action
843
+ - Add archiver dependency and implement module package export functionality
844
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
845
+ - 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
846
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
847
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
848
+ - Remove unused database bootstrap service and related SQL cleanup procedures
849
+ - cleanup
850
+ - Add view and action metadata tree views with updated permissions and searchable fields
851
+ - Add view and action metadata tree views with updated permissions and searchable fields
852
+ - menu item model cleanup
853
+ - Add resumable import handling and transaction management in module package service
854
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
855
+ - 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.
856
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
857
+ - many to one left join issue fixed
858
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
859
+ - 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
860
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
861
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
862
+ - Implement module metadata explorer with CRUD operations and search functionality
863
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
864
+ - Bug fixs
865
+ - added frontend base url as well to the default settings
866
+ - minor cleanup
867
+ - changes to cleanup legacy table related fields
868
+ - changes for new dashboards functionality
869
+ - always print server startup line regardless of log level
870
+ - Add field quality checks and fixes checklist for backend validation
871
+ - typeo issue
872
+ - Agent table clean up
873
+ - Add manual interaction step for Playwright and update README
874
+ - provision made to unlink data rather than having to teardown everything
875
+ - provision made to unlink data rather than having to teardown everything
876
+ - changes to colour the server startup line
877
+ - Agent table clean up
878
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
879
+ - removed id command options and retained the singular name option only for consistency purposes
880
+ - 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
881
+ - 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
882
+ - MCP table solid changes
883
+ - playwrite added as dependency instead
884
+ - changes to the test runner
885
+ - chatter message user resolution chagnes
886
+ - bug fix in chatter message user resolution after we moved to queues.
887
+ - moved back to beta3
888
+ - failed login attempts field added to the json and update dto and exposed in entity
889
+ - removed un-necessary index on newvalue display
890
+ - ts changes error: any
891
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
892
+ - changed model metadata service default form layout to be single column
893
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
894
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
895
+ - normalised @ApiTags
896
+ - enum for passwordless modes
897
+ - bug fix in how alternative actions are rendered
898
+ - queue related bug fixes
899
+ - changes to add a websocket adaptor to the bootstrap server routine
900
+ - license changes
901
+ - type fixes
902
+ - removed min and max from long text mapping
903
+ - bug fix for shortext field mapping
904
+ - changes to post the testing results to a webhook api with a test payload
905
+ - added import multer this fixes un-necessary ts errors in vscode
906
+ - ts errors fixed
907
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
908
+ - formatting changes
909
+ - facebook oauth
910
+ - Status required false
911
+ - updated gitignore
912
+ - dleete un-necessary docs
913
+ - deleted un-necessary files
914
+ - changes related to more grooming
915
+ - api added in cors
916
+ - refactor Oauth strategy
917
+ - Revert "Ft social media login"
918
+ - bug fix
919
+ - bug fix
920
+ - add new api me endpoint and role based settings
921
+ - setting changes for new ui architecture
922
+ - changes for new settings structure
923
+ - chatter task subtype and related changes
924
+ - bug fix
925
+ - fixes
926
+ - 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
927
+ - changes to handle import logs as well, thru configured winston log level
928
+ - change isMultiSelect to true in solid-core-metadata.json
929
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
930
+ - 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
931
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
932
+ - bug fix: passwordless registration should create a user with active false
933
+ - apikeys attribute was not exposed
934
+ - refactor Oauth strategy
935
+ - 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)
936
+ - bug fix
937
+ - null check on role
938
+ - made provision to seed custom permissions
939
+ - handled seed scenario too
940
+ - upload File and expectHidden changes
941
+ - extension user cleanup and checks added
942
+ - fixed types for cleanup
943
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
944
+ - fixes bare shell imports with relative imports
945
+ - dynamic import fix
946
+ - removed unnecessary file
947
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
948
+ - removed base abstract class
949
+ - added interface too
950
+ - changes
951
+ - changes to test data seeding & fixed the type for authenticationService.signup method
952
+ - changes to user dto to include the api keys toggle
953
+ - add default role to the user only if there are no roles resolved against a user
954
+ - 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
955
+ - Only forward --debug when explicitly enabled.
956
+ - toolOutput field changes to json
957
+ - adding user api key entity to export
958
+ - minor optimisation to how dynamic modules are loaded
959
+ - Add Discord badge to top of README
960
+ - Fix broken BSL license link and add Discord link to README
961
+ - Add BSL 1.1 license and update package.json license field
962
+ - Seed user and roles in testing data
963
+ - removed readme.txt
964
+ - moved type and interfaces in interfaces.ts and refactored accordingly
965
+ - changed to md
966
+ - added readme
967
+ - Ai setting model change
968
+ - changes to allow encrypting setting keys
969
+ - form view clean up
970
+ - Agent table list view changes
971
+ - synchronize false
972
+ - changes to resolve the selection dynamic provider by name and token both
973
+ - changes to bypass swagger urls from csp policy
974
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
975
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
976
+ - changes to implement the sso code and sso exchange use cases
977
+ - removed orm types / exported api key entity
978
+ - added provision to control if api key creation is allowed for the user
979
+ - api key changes for backend
980
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
981
+ - fix to call addRoles only if role names are present
982
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
983
+ - refactor: update legacy entity fields to be nullable and support null types
984
+ - Json structure change
985
+ - Agent table metadata clean up changes
986
+ - longtext
987
+ - longtext changes
988
+ - Agent tables clean up
989
+ - fixes to seed many-to-many relation for tests
990
+ - changes to seed media in testing data
991
+ - Chatter modelUserkey and excel many to one issue
992
+ - keeping the default selectionValueType as string since this is a good default
993
+ - bug fixes around how media is done
994
+ - bug fixes
995
+ - try catch inside logEvent
996
+ - media has card based metadata
997
+ - Refresh token activity
998
+ - changes to implement the sso code and sso exchange use cases
999
+ - cleanup
1000
+ - enabled kanban view on mq message
1001
+ - Agent table changes
1002
+ - changes to disallow deleting a model or module in production
1003
+ - changelog version bumped
1004
+ - changelog added
1005
+ - changes to control the logging using env variables & set appropriate defaults basis environment
1006
+ - chnages for logging
1007
+ - Chatter queue fixs
1008
+ - one more "beta" for ozzy
1009
+ - additional loggging in cors helper
1010
+ - changes
1011
+ - Redis Queue component and rabbitMQ folder changes
1012
+ - changes to track old and new fields as part of the delete entity operation
1013
+ - optimizations done for audit subcriber
1014
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
1015
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
1016
+ - formatting changes
1017
+ - 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
1018
+ - qs depth config increased
1019
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
1020
+ - cached model metadata queries
1021
+ - changse
1022
+ - disabled extra loggign
1023
+ - chagnes
1024
+ - reduced concurrency in computed fields
1025
+ - additional loggign
1026
+ - added indexes to mobile & email since those are frequently queries upon
1027
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
1028
+ - Redis background job changes
1029
+ - Chatter Rationalizing
1030
+ - changes
1031
+ - changes
1032
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
1033
+ - changes to export bootstrap helpers for server & cli nest applications
1034
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
1035
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
1036
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
1037
+ - added index on message id in mq message table
1038
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
1039
+ - changes to save model sequence id as part of post compute instead of pre compute
1040
+ - changse
1041
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
1042
+ - High concurrency fix for alpha num and sequence num computed fields
1043
+ - bug fix in cron evalutaion
1044
+ - tighter logging around roles
1045
+ - scheduler now supports env based specific jobs starting and others not
1046
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
1047
+ - revert cross db changes for view-metadata-entity
1048
+ - fixes
1049
+ - changes to handle cross-db compatibility
1050
+ - added type as simple-json
1051
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
1052
+ - Revert "Merge branch 'media-update' into 'main'"
1053
+ - Mysql related changes
1054
+ - ts-morph and media storage fix
1055
+ - dashboard layout menu item added
1056
+ - dashboard changes
1057
+ - scheduler bug fix
1058
+ - made provision to execute scheduled jobs manually
1059
+ - changes
1060
+ - cleanup
1061
+ - logging related changes and made user activity history tree view
1062
+ - changes to return the wall clock time as utc for chatter as well to keep it...
1063
+ - changes around dashboard question refactoring
1064
+ - default tree view and action added on code generation
1065
+ - Date time format changes in audit
1066
+ - user activity history on otp login
1067
+ - changes
1068
+ - changelog added
1069
+ - reverted legacy and common entity to use local date time transformer only
1070
+ - added changelog
1071
+ - made playwright dependency lazy
1072
+ - ai interaction table user is nullable now
1073
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
1074
+ - formatting changes
1075
+ - Version info changes
1076
+ - dummy otp can now be enabled on a per user basis
1077
+ - jwt token optimisation
1078
+ - optimised the authentication flow in microservice adapter to cache access token
1079
+ - deleted file containing secrets
1080
+ - changes
1081
+ - optimisation around how dummy otp is managed
1082
+ - isSeeded added
1083
+ - bug fix for fetch layouts
1084
+ - view modes added in layout
1085
+ - One to many crud manager fixes
1086
+ - one-to-many-crud-manager-fixes
1087
+ - Many to many crud field manager fixes
1088
+ - patch endpoint added in role controller
1089
+ - many-to-many field fixes
1090
+ - modelSequenceFormViewChangeHandler added on field change
1091
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
1092
+ - changes to format group values consistently
1093
+ - fixes for normalizing group values
1094
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
1095
+ - changes to return groupValue in the group meta response as well. groupValue is...
1096
+ - changes to return groupValue in the group meta response as well. groupValue is...
1097
+ - filter_field_granularity_supported_added_for_date_fields
1098
+ - password registration/login cleanup + max failed login attempts checks added
1099
+ - removed unsafe inline from CSP
1100
+ - removed incorrect comment
1101
+ - changes
1102
+ - Revert "replaced playwright with lazy dependency"
1103
+ - replaced playwright with lazy dependency
1104
+ - count and average
1105
+ - fixes to solid core metadata configuration
1106
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
1107
+ - solid seed now prints proper exception stack trace
1108
+ - added playwright dependencies as peer dependencies
1109
+ - changed playwright import to make it lazy
1110
+ - issue fixes
1111
+ - formatting changes
1112
+ - formatting changes
1113
+ - changes for test setup
1114
+ - package changes
1115
+ - Changes to generate an SA user with the default password for simpler experience during setup
1116
+ - more changes to support form data based uploads
1117
+ - changes
1118
+ - changes around testing workflow
1119
+ - unified testing utitlities
1120
+ - added comments to the slug code
1121
+ - refactored queue namespacign
1122
+ - queue namespacing related chanes
1123
+ - removed todo
1124
+ - queue name related changes
1125
+ - cag
1126
+ - changrs
1127
+ - queues names are now namespaced by service naem
1128
+ - enabled logs
1129
+ - debug logs
1130
+ - testing docs updated
1131
+ - changes
1132
+ - cleanup
1133
+ - removed old testing related fiels
1134
+ - testing infra now supports data based interpolation
1135
+ - testing changes: now we support fully custom test specs
1136
+ - changes for test automation
1137
+ - changes to tsconfig for playwright tests
1138
+ - exporting typeorm db helper
1139
+ - removed the files section
1140
+ - changes for playwright testing
1141
+ - changes to disable service controller seed method
1142
+ - formatting changes
1143
+ - oom issue
1144
+ - logger added for chatter
1145
+ - changed arg to kebab case instead of came case in schematic service
1146
+ - default menu icons added
1147
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
1148
+ - removed un-necessary log
1149
+ - fix for handling non existence of fieldNamesForRemoval arg
1150
+ - foirmatting canges
1151
+ - Archived/solidstarters main
1152
+ - version changes
1153
+ - changed org : @solidstarters -> @solidxai
1154
+ - removed publish script, since it is replaced with solidctl release
1155
+ - chanes
1156
+ - Revert "@solidstarters namespace changed to @solidx"
1157
+ - @solidstarters namespace changed to @solidx
1158
+ - file service interface changes
1159
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
1160
+ - 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
1161
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
1162
+ - test data workflow
1163
+ - test-data command
1164
+ - seed command updated
1165
+ - changes
1166
+ - changes
1167
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
1168
+ - seeding now supports seedData allowing us to seed fixtures for testing.
1169
+ - precomputations now skip computation if value is already provided
1170
+ - added utility for findOneByUserKey
1171
+ - pruning related chagnes
1172
+ - changes
1173
+ - more changes related to pruning metadata
1174
+ - pruen logs added
1175
+ - module metadata seeder now does prune also
1176
+ - reformatting to improve readability
1177
+ - changes
1178
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
1179
+ - bug fixes
1180
+ - changes to cleanup the implementation by having the write method of file service return the url post write
1181
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
1182
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
1183
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
1184
+ - file service abstraction cleanup
1185
+ - chagnes
1186
+ - Dashboard Question Responsive
1187
+
3
1188
  ## [0.1.13-beta.21] - 2026-08-14
4
1189
 
5
1190
  ### Added