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

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 (113) hide show
  1. package/.claude/settings.local.json +16 -0
  2. package/CHANGELOG.md +1053 -0
  3. package/CLAUDE.md +26 -0
  4. package/dist/commands/run-tests.command.d.ts +7 -1
  5. package/dist/commands/run-tests.command.d.ts.map +1 -1
  6. package/dist/commands/run-tests.command.js +49 -3
  7. package/dist/commands/run-tests.command.js.map +1 -1
  8. package/dist/constants/chatter-message.constants.d.ts +1 -0
  9. package/dist/constants/chatter-message.constants.d.ts.map +1 -1
  10. package/dist/constants/chatter-message.constants.js +3 -1
  11. package/dist/constants/chatter-message.constants.js.map +1 -1
  12. package/dist/constants/user.constants.d.ts +2 -0
  13. package/dist/constants/user.constants.d.ts.map +1 -0
  14. package/dist/constants/user.constants.js +5 -0
  15. package/dist/constants/user.constants.js.map +1 -0
  16. package/dist/entities/user.entity.d.ts.map +1 -1
  17. package/dist/entities/user.entity.js +36 -0
  18. package/dist/entities/user.entity.js.map +1 -1
  19. package/dist/seeders/seed-data/solid-core-metadata.json +8 -4
  20. package/dist/services/chatter-message.service.d.ts +5 -0
  21. package/dist/services/chatter-message.service.d.ts.map +1 -1
  22. package/dist/services/chatter-message.service.js +26 -3
  23. package/dist/services/chatter-message.service.js.map +1 -1
  24. package/dist/services/crud.service.d.ts +2 -0
  25. package/dist/services/crud.service.d.ts.map +1 -1
  26. package/dist/services/crud.service.js +13 -1
  27. package/dist/services/crud.service.js.map +1 -1
  28. package/dist/services/settings/default-settings-provider.service.d.ts +40 -0
  29. package/dist/services/settings/default-settings-provider.service.d.ts.map +1 -1
  30. package/dist/services/settings/default-settings-provider.service.js +22 -0
  31. package/dist/services/settings/default-settings-provider.service.js.map +1 -1
  32. package/dist/testing/adapters/ui/playwright-adapter.d.ts +5 -0
  33. package/dist/testing/adapters/ui/playwright-adapter.d.ts.map +1 -1
  34. package/dist/testing/adapters/ui/playwright-adapter.js +17 -1
  35. package/dist/testing/adapters/ui/playwright-adapter.js.map +1 -1
  36. package/dist/testing/adapters/ui/ui.types.d.ts +2 -0
  37. package/dist/testing/adapters/ui/ui.types.d.ts.map +1 -1
  38. package/dist/testing/adapters/ui/ui.types.js.map +1 -1
  39. package/dist/testing/steps/ui/actions.step.d.ts.map +1 -1
  40. package/dist/testing/steps/ui/actions.step.js +6 -2
  41. package/dist/testing/steps/ui/actions.step.js.map +1 -1
  42. package/dist/testing/steps/ui/assertions.step.d.ts.map +1 -1
  43. package/dist/testing/steps/ui/assertions.step.js +11 -3
  44. package/dist/testing/steps/ui/assertions.step.js.map +1 -1
  45. package/dist/testing/steps/ui/form.step.d.ts.map +1 -1
  46. package/dist/testing/steps/ui/form.step.js +9 -3
  47. package/dist/testing/steps/ui/form.step.js.map +1 -1
  48. package/dist/testing/steps/ui/manual.step.js +1 -1
  49. package/dist/testing/steps/ui/manual.step.js.map +1 -1
  50. package/dist/testing/steps/ui/navigation.step.d.ts.map +1 -1
  51. package/dist/testing/steps/ui/navigation.step.js +3 -1
  52. package/dist/testing/steps/ui/navigation.step.js.map +1 -1
  53. package/package.json +1 -1
  54. package/src/commands/run-tests.command.ts +47 -1
  55. package/src/constants/chatter-message.constants.ts +12 -0
  56. package/src/constants/user.constants.ts +13 -0
  57. package/src/entities/user.entity.ts +53 -36
  58. package/src/seeders/seed-data/solid-core-metadata.json +8 -4
  59. package/src/services/1.js +6 -0
  60. package/src/services/chatter-message.service.ts +60 -4
  61. package/src/services/crud.service.ts +31 -1
  62. package/src/services/settings/default-settings-provider.service.ts +22 -0
  63. package/src/testing/README.md +64 -2
  64. package/src/testing/adapters/ui/playwright-adapter.ts +25 -0
  65. package/src/testing/adapters/ui/ui.types.ts +2 -0
  66. package/src/testing/steps/ui/actions.step.ts +8 -4
  67. package/src/testing/steps/ui/assertions.step.ts +18 -5
  68. package/src/testing/steps/ui/form.step.ts +16 -6
  69. package/src/testing/steps/ui/manual.step.ts +1 -1
  70. package/src/testing/steps/ui/navigation.step.ts +4 -2
  71. package/dist-tests/api/authenticate.spec.js +0 -119
  72. package/dist-tests/api/authenticate.spec.js.map +0 -1
  73. package/dist-tests/api/crud-service.findOne.cityMaster.spec.js +0 -97
  74. package/dist-tests/api/crud-service.findOne.cityMaster.spec.js.map +0 -1
  75. package/dist-tests/api/ping.spec.js +0 -21
  76. package/dist-tests/api/ping.spec.js.map +0 -1
  77. package/dist-tests/helpers/auth.js +0 -41
  78. package/dist-tests/helpers/auth.js.map +0 -1
  79. package/dist-tests/helpers/env.js +0 -11
  80. package/dist-tests/helpers/env.js.map +0 -1
  81. package/docs/agent-builder/notebook-lm-prompt-for-agent-builder.md +0 -136
  82. package/docs/agent-builder/team-ready-note-agent-builder.md +0 -305
  83. package/docs/agent-hub-grooming.md +0 -301
  84. package/docs/dashboards/AGENTIC_DASHBOARD_IMPLEMENTATION_PLAN.md +0 -438
  85. package/docs/dashboards/dashboard-curl-smoke-tests.txt +0 -146
  86. package/docs/dashboards/delete-legacy-dashboard-metadata.sql +0 -172
  87. package/docs/datasource-introspection-ddl-analysis.md +0 -326
  88. package/docs/datasource-introspection-implementation-plan.md +0 -306
  89. package/docs/grouping-enhancements.md +0 -89
  90. package/docs/java-spring/README.md +0 -3
  91. package/docs/java-spring/solid-core-module-deep-dive-report.md +0 -1317
  92. package/docs/module-package-import-handoff.md +0 -691
  93. package/docs/seed-changes.md +0 -65
  94. package/docs/test-data-workflow.md +0 -200
  95. package/docs/type-declaration-import-issue.md +0 -24
  96. package/docs/workflow/business-automation-example-notes.md +0 -309
  97. package/docs/workflow/control-flow-node-addition-sop.md +0 -324
  98. package/docs/workflow/data-engineering-pipeline-example-notes.md +0 -330
  99. package/docs/workflow/foreach-example-notes.md +0 -187
  100. package/docs/workflow/hello-world-example-notes.md +0 -271
  101. package/docs/workflow/kestra-concepts-plugins-blueprints.md +0 -315
  102. package/docs/workflow/loop-until-example-notes.md +0 -198
  103. package/docs/workflow/microservices-and-apis-example-notes.md +0 -264
  104. package/docs/workflow/samples.md +0 -25
  105. package/docs/workflow/what-is-kestra.md +0 -79
  106. package/docs/workflow/workflow-core-module-handoff-summary.md +0 -191
  107. package/docs/workflow/workflow-module-brd.md +0 -185
  108. package/docs/workflow/workflow-module-domain-model.md +0 -252
  109. package/docs/workflow/workflow-module-metadata-dsl.md +0 -302
  110. package/docs/workflow/workflow-module-technical-spec.md +0 -293
  111. package/docs/workflow/workflow-node-type-contracts.md +0 -635
  112. package/docs/workflow/workflow-node-ui-metadata-contract.md +0 -1262
  113. package/docs/workflow/workflow-solidx-model-field-spec.md +0 -284
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1058 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.13-beta.6] - 2026-07-29
4
+
5
+ ### Added
6
+
7
+ - add configurable UI timeouts for testing steps and update documentation
8
+ - add workflow field data provider support and related interfaces
9
+ - add asynchronous execution for workflows and enhance execution status retrieval
10
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
11
+ - enhance workflow definition management and add Python runtime node
12
+ - add SolidX integration nodes for login, email, and SMS
13
+ - enhance http.request node with query parameters and body modes
14
+ - refactor node structure and add sequential and switch nodes
15
+ - update workflow execution and definition handling
16
+ - implement workflow execution services and nodes
17
+ - implement API key generation for system admin users in ModuleMetadataSeederService
18
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
19
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
20
+ - enhance migration process with build and seed commands
21
+ - enhance datasource introspection with primary key detection and migration support
22
+ - enhance role creation with module linkage and resolve module metadata
23
+ - enhance action, role, and view metadata services with change detection and JSON normalization
24
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
25
+ - add new dashboard controller actions to permissions
26
+ - simplify queue health permissions by consolidating patterns
27
+ - implement explicit widget permissions and unauthorized response handling
28
+ - enhance widget permission checks and add unauthorized response handling
29
+ - add Queue SLA heatmap provider and update metadata
30
+ - update queue health menu item and reorder messages
31
+ - add various dashboard providers and runtime services
32
+ - implement WhatsApp Cloud API integration
33
+ - add gupshup whatsapp provider
34
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
35
+ - add updateCustomNoteMessage action to ChatterMessageController
36
+ - add secure custom-note edit API with attachment add/remove support
37
+ - implemented social media oath for facebook and microsoft
38
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
39
+ - implemented social media oath for facebook and microsoft
40
+ - add Message Tree Action and corresponding view for mqMessage
41
+ - implement processing timeout for RabbitMQ subscriber
42
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
43
+ - Migrate date/time transformers to UtcDateTimeTransformer.
44
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
45
+
46
+ ### Fixed
47
+
48
+ - use transactions entitymanager for all subscribers only for embedded db projects
49
+ - update consuming project name resolution to use parent directory
50
+ - update solidx directory path to include consuming project name
51
+ - correct package name in model generation command and update error handling in module metadata retrieval
52
+ - username
53
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
54
+ - handle null or empty security rule configuration strings in repository
55
+
56
+ ### Changed
57
+
58
+ - remove handleSeedLocales method to streamline locale seeding process
59
+ - remove legacy dashboard files and add new dashboarding architecture guide
60
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
61
+ - remove redundant null check in resolveSecurityRuleConfig
62
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
63
+ - update legacy entity fields to be nullable and support null types
64
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
65
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
66
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
67
+
68
+ ### Documentation
69
+
70
+ - update expired discord link
71
+
72
+ ### Other
73
+
74
+ - changes to ensure only id and field are returned while populating the user in chatter
75
+ - Update defaultValue types in solid-core-metadata.json to strings
76
+ - 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
77
+ - Add getMentionableUsers permission
78
+ - Add endpoint to retrieve mentionable users with search and limit options
79
+ - Add error handling nodes and enhance workflow node definitions
80
+ - Add skipHooks option to seed command and related services
81
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
82
+ - Enhance workflow node definitions and runtime context handling
83
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
84
+ - changes
85
+ - changes
86
+ - sql injection vulnerability closed in filter queries
87
+ - Remove LocalPath
88
+ - revert changes
89
+ - revert changes
90
+ - revert changes
91
+ - re revert
92
+ - revert changes
93
+ - private-file-cleanup
94
+ - add downlaodurl
95
+ - changes to allow overriding the is allowed api keys flag thru extension user
96
+ - Revert "user enumeration"
97
+ - add normalize for otp based also
98
+ - Disable metadata pruning by default in seed command configuration
99
+ - Update seed command to enable metadata pruning by default
100
+ - handle-case-sensitive-for-email
101
+ - Add delete permissions for ImportTransactionController in solid-core metadata
102
+ - Add permissions for import/export functionality in solid-core metadata
103
+ - Refactor role assignment for admin users to handle capability roles individually
104
+ - discard changes
105
+ - add support for static file
106
+ - Add capability roles for admin users in module metadata seeder
107
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
108
+ - attachment
109
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
110
+ - make isPublic default true
111
+ - changes to show the image inline
112
+ - cleanup againts media's
113
+ - inline role crate false
114
+ - Implement chatter mention notification system with email templates and queue handling
115
+ - Add messageBodyMentions field to chatter message DTOs and entity
116
+ - fix-audit-bug
117
+ - changes to include signed url token for private media
118
+ - Revert "Revert "rename function name""
119
+ - Revert "Revert "add private media support""
120
+ - Add media file type constants and enhance security for media uploads
121
+ - handle technical error messages due to missing resource in static resources folder
122
+ - Revert "add private media support"
123
+ - Revert "rename function name"
124
+ - rename function name
125
+ - add private media support
126
+ - some fixes
127
+ - solidx session invalid changes
128
+ - add validation on get chatter message
129
+ - updatedAt value is updating now
130
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
131
+ - add security against chatter
132
+ - chatter message endpoint made public
133
+ - removed embedded db support
134
+ - Add default sorting by ID if not explicitly specified in order options
135
+ - add icons across all the models in solid core
136
+ - media upload added behind auth
137
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
138
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
139
+ - class serializer interceptor added for impact of Exclude and Expose
140
+ - Enhance datasource introspection with primary key validation and user key resolution
141
+ - Concurrent Login Feature
142
+ - user enumeration
143
+ - add helper text key on settings object .........
144
+ - changes to handle case insenstive filter operations if the values are other than string by casting
145
+ - menus item fix
146
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
147
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
148
+ - display name changed
149
+ - name changed
150
+ - added settings for configure the row click on solid list view
151
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
152
+ - fixed legacy entity files names
153
+ - view metadata type field - selection static and roles required false from menu-item
154
+ - Fix for this issue > stop applying lower for numeric fields.
155
+ - refactor and add migration command
156
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
157
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
158
+ - changes to take in option for seeding with modules in current seed method
159
+ - Fix validation logic to parse string field values as integers before applying validations
160
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
161
+ - ad changes
162
+ - Add locale seeding functionality and enhance locale management
163
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
164
+ - changes to avoid extra module checks before dynamically loading it
165
+ - defaulted to modulemetadataseederservice if no seeder provided
166
+ - Add Date field in Instructions Response
167
+ - ai interaction cleanup changes
168
+ - enabling create,edit,import,export on permission and lov modules
169
+ - added module to rolemetadata list view
170
+ - roles group by module changes
171
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
172
+ - Implement Datasource Management functionality with controller, service, and DTO
173
+ - added index to fields newly added as sortable and searchable
174
+ - Add archiver package to dependencies
175
+ - removed unnecessary seed file
176
+ - Add TypeORM migration helper functions and export in index
177
+ - fixes
178
+ - reverted accidental removal of the layout builder root menu
179
+ - pending cleanup of solid core menu items
180
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
181
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
182
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
183
+ - changes for IAM
184
+ - Add clearPackageRuntime functionality and corresponding metadata action
185
+ - Add archiver dependency and implement module package export functionality
186
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
187
+ - 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
188
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
189
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
190
+ - Remove unused database bootstrap service and related SQL cleanup procedures
191
+ - cleanup
192
+ - Add view and action metadata tree views with updated permissions and searchable fields
193
+ - Add view and action metadata tree views with updated permissions and searchable fields
194
+ - menu item model cleanup
195
+ - Add resumable import handling and transaction management in module package service
196
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
197
+ - 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.
198
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
199
+ - many to one left join issue fixed
200
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
201
+ - 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
202
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
203
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
204
+ - Implement module metadata explorer with CRUD operations and search functionality
205
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
206
+ - Bug fixs
207
+ - added frontend base url as well to the default settings
208
+ - minor cleanup
209
+ - changes to cleanup legacy table related fields
210
+ - changes for new dashboards functionality
211
+ - always print server startup line regardless of log level
212
+ - Add field quality checks and fixes checklist for backend validation
213
+ - typeo issue
214
+ - Agent table clean up
215
+ - Add manual interaction step for Playwright and update README
216
+ - provision made to unlink data rather than having to teardown everything
217
+ - provision made to unlink data rather than having to teardown everything
218
+ - changes to colour the server startup line
219
+ - Agent table clean up
220
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
221
+ - removed id command options and retained the singular name option only for consistency purposes
222
+ - 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
223
+ - 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
224
+ - MCP table solid changes
225
+ - playwrite added as dependency instead
226
+ - changes to the test runner
227
+ - chatter message user resolution chagnes
228
+ - bug fix in chatter message user resolution after we moved to queues.
229
+ - moved back to beta3
230
+ - failed login attempts field added to the json and update dto and exposed in entity
231
+ - removed un-necessary index on newvalue display
232
+ - ts changes error: any
233
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
234
+ - changed model metadata service default form layout to be single column
235
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
236
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
237
+ - normalised @ApiTags
238
+ - enum for passwordless modes
239
+ - bug fix in how alternative actions are rendered
240
+ - queue related bug fixes
241
+ - changes to add a websocket adaptor to the bootstrap server routine
242
+ - license changes
243
+ - type fixes
244
+ - removed min and max from long text mapping
245
+ - bug fix for shortext field mapping
246
+ - changes to post the testing results to a webhook api with a test payload
247
+ - added import multer this fixes un-necessary ts errors in vscode
248
+ - ts errors fixed
249
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
250
+ - formatting changes
251
+ - facebook oauth
252
+ - Status required false
253
+ - updated gitignore
254
+ - dleete un-necessary docs
255
+ - deleted un-necessary files
256
+ - changes related to more grooming
257
+ - api added in cors
258
+ - refactor Oauth strategy
259
+ - Revert "Ft social media login"
260
+ - bug fix
261
+ - bug fix
262
+ - add new api me endpoint and role based settings
263
+ - setting changes for new ui architecture
264
+ - changes for new settings structure
265
+ - chatter task subtype and related changes
266
+ - bug fix
267
+ - fixes
268
+ - 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
269
+ - changes to handle import logs as well, thru configured winston log level
270
+ - change isMultiSelect to true in solid-core-metadata.json
271
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
272
+ - 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
273
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
274
+ - bug fix: passwordless registration should create a user with active false
275
+ - apikeys attribute was not exposed
276
+ - refactor Oauth strategy
277
+ - 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)
278
+ - bug fix
279
+ - null check on role
280
+ - made provision to seed custom permissions
281
+ - handled seed scenario too
282
+ - upload File and expectHidden changes
283
+ - extension user cleanup and checks added
284
+ - fixed types for cleanup
285
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
286
+ - fixes bare shell imports with relative imports
287
+ - dynamic import fix
288
+ - removed unnecessary file
289
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
290
+ - removed base abstract class
291
+ - added interface too
292
+ - changes
293
+ - changes to test data seeding & fixed the type for authenticationService.signup method
294
+ - changes to user dto to include the api keys toggle
295
+ - add default role to the user only if there are no roles resolved against a user
296
+ - 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
297
+ - Only forward --debug when explicitly enabled.
298
+ - toolOutput field changes to json
299
+ - adding user api key entity to export
300
+ - minor optimisation to how dynamic modules are loaded
301
+ - Add Discord badge to top of README
302
+ - Fix broken BSL license link and add Discord link to README
303
+ - Add BSL 1.1 license and update package.json license field
304
+ - Seed user and roles in testing data
305
+ - removed readme.txt
306
+ - moved type and interfaces in interfaces.ts and refactored accordingly
307
+ - changed to md
308
+ - added readme
309
+ - Ai setting model change
310
+ - changes to allow encrypting setting keys
311
+ - form view clean up
312
+ - Agent table list view changes
313
+ - synchronize false
314
+ - changes to resolve the selection dynamic provider by name and token both
315
+ - changes to bypass swagger urls from csp policy
316
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
317
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
318
+ - changes to implement the sso code and sso exchange use cases
319
+ - removed orm types / exported api key entity
320
+ - added provision to control if api key creation is allowed for the user
321
+ - api key changes for backend
322
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
323
+ - fix to call addRoles only if role names are present
324
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
325
+ - refactor: update legacy entity fields to be nullable and support null types
326
+ - Json structure change
327
+ - Agent table metadata clean up changes
328
+ - longtext
329
+ - longtext changes
330
+ - Agent tables clean up
331
+ - fixes to seed many-to-many relation for tests
332
+ - changes to seed media in testing data
333
+ - Chatter modelUserkey and excel many to one issue
334
+ - keeping the default selectionValueType as string since this is a good default
335
+ - bug fixes around how media is done
336
+ - bug fixes
337
+ - try catch inside logEvent
338
+ - media has card based metadata
339
+ - Refresh token activity
340
+ - changes to implement the sso code and sso exchange use cases
341
+ - cleanup
342
+ - enabled kanban view on mq message
343
+ - Agent table changes
344
+ - changes to disallow deleting a model or module in production
345
+ - changelog version bumped
346
+ - changelog added
347
+ - changes to control the logging using env variables & set appropriate defaults basis environment
348
+ - chnages for logging
349
+ - Chatter queue fixs
350
+ - one more "beta" for ozzy
351
+ - additional loggging in cors helper
352
+ - changes
353
+ - Redis Queue component and rabbitMQ folder changes
354
+ - changes to track old and new fields as part of the delete entity operation
355
+ - optimizations done for audit subcriber
356
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
357
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
358
+ - formatting changes
359
+ - 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
360
+ - qs depth config increased
361
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
362
+ - cached model metadata queries
363
+ - changse
364
+ - disabled extra loggign
365
+ - chagnes
366
+ - reduced concurrency in computed fields
367
+ - additional loggign
368
+ - added indexes to mobile & email since those are frequently queries upon
369
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
370
+ - Redis background job changes
371
+ - Chatter Rationalizing
372
+ - changes
373
+ - changes
374
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
375
+ - changes to export bootstrap helpers for server & cli nest applications
376
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
377
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
378
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
379
+ - added index on message id in mq message table
380
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
381
+ - changes to save model sequence id as part of post compute instead of pre compute
382
+ - changse
383
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
384
+ - High concurrency fix for alpha num and sequence num computed fields
385
+ - bug fix in cron evalutaion
386
+ - tighter logging around roles
387
+ - scheduler now supports env based specific jobs starting and others not
388
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
389
+ - revert cross db changes for view-metadata-entity
390
+ - fixes
391
+ - changes to handle cross-db compatibility
392
+ - added type as simple-json
393
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
394
+ - Revert "Merge branch 'media-update' into 'main'"
395
+ - Mysql related changes
396
+ - ts-morph and media storage fix
397
+ - dashboard layout menu item added
398
+ - dashboard changes
399
+ - scheduler bug fix
400
+ - made provision to execute scheduled jobs manually
401
+ - changes
402
+ - cleanup
403
+ - logging related changes and made user activity history tree view
404
+ - changes to return the wall clock time as utc for chatter as well to keep it...
405
+ - changes around dashboard question refactoring
406
+ - default tree view and action added on code generation
407
+ - Date time format changes in audit
408
+ - user activity history on otp login
409
+ - changes
410
+ - changelog added
411
+ - reverted legacy and common entity to use local date time transformer only
412
+ - added changelog
413
+ - made playwright dependency lazy
414
+ - ai interaction table user is nullable now
415
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
416
+ - formatting changes
417
+ - Version info changes
418
+ - dummy otp can now be enabled on a per user basis
419
+ - jwt token optimisation
420
+ - optimised the authentication flow in microservice adapter to cache access token
421
+ - deleted file containing secrets
422
+ - changes
423
+ - optimisation around how dummy otp is managed
424
+ - isSeeded added
425
+ - bug fix for fetch layouts
426
+ - view modes added in layout
427
+ - One to many crud manager fixes
428
+ - one-to-many-crud-manager-fixes
429
+ - Many to many crud field manager fixes
430
+ - patch endpoint added in role controller
431
+ - many-to-many field fixes
432
+ - modelSequenceFormViewChangeHandler added on field change
433
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
434
+ - changes to format group values consistently
435
+ - fixes for normalizing group values
436
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
437
+ - changes to return groupValue in the group meta response as well. groupValue is...
438
+ - changes to return groupValue in the group meta response as well. groupValue is...
439
+ - filter_field_granularity_supported_added_for_date_fields
440
+ - password registration/login cleanup + max failed login attempts checks added
441
+ - removed unsafe inline from CSP
442
+ - removed incorrect comment
443
+ - changes
444
+ - Revert "replaced playwright with lazy dependency"
445
+ - replaced playwright with lazy dependency
446
+ - count and average
447
+ - fixes to solid core metadata configuration
448
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
449
+ - solid seed now prints proper exception stack trace
450
+ - added playwright dependencies as peer dependencies
451
+ - changed playwright import to make it lazy
452
+ - issue fixes
453
+ - formatting changes
454
+ - formatting changes
455
+ - changes for test setup
456
+ - package changes
457
+ - Changes to generate an SA user with the default password for simpler experience during setup
458
+ - more changes to support form data based uploads
459
+ - changes
460
+ - changes around testing workflow
461
+ - unified testing utitlities
462
+ - added comments to the slug code
463
+ - refactored queue namespacign
464
+ - queue namespacing related chanes
465
+ - removed todo
466
+ - queue name related changes
467
+ - cag
468
+ - changrs
469
+ - queues names are now namespaced by service naem
470
+ - enabled logs
471
+ - debug logs
472
+ - testing docs updated
473
+ - changes
474
+ - cleanup
475
+ - removed old testing related fiels
476
+ - testing infra now supports data based interpolation
477
+ - testing changes: now we support fully custom test specs
478
+ - changes for test automation
479
+ - changes to tsconfig for playwright tests
480
+ - exporting typeorm db helper
481
+ - removed the files section
482
+ - changes for playwright testing
483
+ - changes to disable service controller seed method
484
+ - formatting changes
485
+ - oom issue
486
+ - logger added for chatter
487
+ - changed arg to kebab case instead of came case in schematic service
488
+ - default menu icons added
489
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
490
+ - removed un-necessary log
491
+ - fix for handling non existence of fieldNamesForRemoval arg
492
+ - foirmatting canges
493
+ - Archived/solidstarters main
494
+ - version changes
495
+ - changed org : @solidstarters -> @solidxai
496
+ - removed publish script, since it is replaced with solidctl release
497
+ - chanes
498
+ - Revert "@solidstarters namespace changed to @solidx"
499
+ - @solidstarters namespace changed to @solidx
500
+ - file service interface changes
501
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
502
+ - 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
503
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
504
+ - test data workflow
505
+ - test-data command
506
+ - seed command updated
507
+ - changes
508
+ - changes
509
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
510
+ - seeding now supports seedData allowing us to seed fixtures for testing.
511
+ - precomputations now skip computation if value is already provided
512
+ - added utility for findOneByUserKey
513
+ - pruning related chagnes
514
+ - changes
515
+ - more changes related to pruning metadata
516
+ - pruen logs added
517
+ - module metadata seeder now does prune also
518
+ - reformatting to improve readability
519
+ - changes
520
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
521
+ - bug fixes
522
+ - changes to cleanup the implementation by having the write method of file service return the url post write
523
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
524
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
525
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
526
+ - file service abstraction cleanup
527
+ - chagnes
528
+ - Dashboard Question Responsive
529
+
530
+ ## [0.1.13--tests-only.0] - 2026-07-29
531
+
532
+ ### Added
533
+
534
+ - add workflow field data provider support and related interfaces
535
+ - add asynchronous execution for workflows and enhance execution status retrieval
536
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
537
+ - enhance workflow definition management and add Python runtime node
538
+ - add SolidX integration nodes for login, email, and SMS
539
+ - enhance http.request node with query parameters and body modes
540
+ - refactor node structure and add sequential and switch nodes
541
+ - update workflow execution and definition handling
542
+ - implement workflow execution services and nodes
543
+ - implement API key generation for system admin users in ModuleMetadataSeederService
544
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
545
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
546
+ - enhance migration process with build and seed commands
547
+ - enhance datasource introspection with primary key detection and migration support
548
+ - enhance role creation with module linkage and resolve module metadata
549
+ - enhance action, role, and view metadata services with change detection and JSON normalization
550
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
551
+ - add new dashboard controller actions to permissions
552
+ - simplify queue health permissions by consolidating patterns
553
+ - implement explicit widget permissions and unauthorized response handling
554
+ - enhance widget permission checks and add unauthorized response handling
555
+ - add Queue SLA heatmap provider and update metadata
556
+ - update queue health menu item and reorder messages
557
+ - add various dashboard providers and runtime services
558
+ - implement WhatsApp Cloud API integration
559
+ - add gupshup whatsapp provider
560
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
561
+ - add updateCustomNoteMessage action to ChatterMessageController
562
+ - add secure custom-note edit API with attachment add/remove support
563
+ - implemented social media oath for facebook and microsoft
564
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
565
+ - implemented social media oath for facebook and microsoft
566
+ - add Message Tree Action and corresponding view for mqMessage
567
+ - implement processing timeout for RabbitMQ subscriber
568
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
569
+ - Migrate date/time transformers to UtcDateTimeTransformer.
570
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
571
+
572
+ ### Fixed
573
+
574
+ - use transactions entitymanager for all subscribers only for embedded db projects
575
+ - update consuming project name resolution to use parent directory
576
+ - update solidx directory path to include consuming project name
577
+ - correct package name in model generation command and update error handling in module metadata retrieval
578
+ - username
579
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
580
+ - handle null or empty security rule configuration strings in repository
581
+
582
+ ### Changed
583
+
584
+ - remove handleSeedLocales method to streamline locale seeding process
585
+ - remove legacy dashboard files and add new dashboarding architecture guide
586
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
587
+ - remove redundant null check in resolveSecurityRuleConfig
588
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
589
+ - update legacy entity fields to be nullable and support null types
590
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
591
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
592
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
593
+
594
+ ### Documentation
595
+
596
+ - update expired discord link
597
+
598
+ ### Other
599
+
600
+ - changes to ensure only id and field are returned while populating the user in chatter
601
+ - Update defaultValue types in solid-core-metadata.json to strings
602
+ - 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
603
+ - Add getMentionableUsers permission
604
+ - Add endpoint to retrieve mentionable users with search and limit options
605
+ - Add error handling nodes and enhance workflow node definitions
606
+ - Add skipHooks option to seed command and related services
607
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
608
+ - Enhance workflow node definitions and runtime context handling
609
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
610
+ - changes
611
+ - changes
612
+ - sql injection vulnerability closed in filter queries
613
+ - Remove LocalPath
614
+ - revert changes
615
+ - revert changes
616
+ - revert changes
617
+ - re revert
618
+ - revert changes
619
+ - private-file-cleanup
620
+ - add downlaodurl
621
+ - changes to allow overriding the is allowed api keys flag thru extension user
622
+ - Revert "user enumeration"
623
+ - add normalize for otp based also
624
+ - Disable metadata pruning by default in seed command configuration
625
+ - Update seed command to enable metadata pruning by default
626
+ - handle-case-sensitive-for-email
627
+ - Add delete permissions for ImportTransactionController in solid-core metadata
628
+ - Add permissions for import/export functionality in solid-core metadata
629
+ - Refactor role assignment for admin users to handle capability roles individually
630
+ - discard changes
631
+ - add support for static file
632
+ - Add capability roles for admin users in module metadata seeder
633
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
634
+ - attachment
635
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
636
+ - make isPublic default true
637
+ - changes to show the image inline
638
+ - cleanup againts media's
639
+ - inline role crate false
640
+ - Implement chatter mention notification system with email templates and queue handling
641
+ - Add messageBodyMentions field to chatter message DTOs and entity
642
+ - fix-audit-bug
643
+ - changes to include signed url token for private media
644
+ - Revert "Revert "rename function name""
645
+ - Revert "Revert "add private media support""
646
+ - Add media file type constants and enhance security for media uploads
647
+ - handle technical error messages due to missing resource in static resources folder
648
+ - Revert "add private media support"
649
+ - Revert "rename function name"
650
+ - rename function name
651
+ - add private media support
652
+ - some fixes
653
+ - solidx session invalid changes
654
+ - add validation on get chatter message
655
+ - updatedAt value is updating now
656
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
657
+ - add security against chatter
658
+ - chatter message endpoint made public
659
+ - removed embedded db support
660
+ - Add default sorting by ID if not explicitly specified in order options
661
+ - add icons across all the models in solid core
662
+ - media upload added behind auth
663
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
664
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
665
+ - class serializer interceptor added for impact of Exclude and Expose
666
+ - Enhance datasource introspection with primary key validation and user key resolution
667
+ - Concurrent Login Feature
668
+ - user enumeration
669
+ - add helper text key on settings object .........
670
+ - changes to handle case insenstive filter operations if the values are other than string by casting
671
+ - menus item fix
672
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
673
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
674
+ - display name changed
675
+ - name changed
676
+ - added settings for configure the row click on solid list view
677
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
678
+ - fixed legacy entity files names
679
+ - view metadata type field - selection static and roles required false from menu-item
680
+ - Fix for this issue > stop applying lower for numeric fields.
681
+ - refactor and add migration command
682
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
683
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
684
+ - changes to take in option for seeding with modules in current seed method
685
+ - Fix validation logic to parse string field values as integers before applying validations
686
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
687
+ - ad changes
688
+ - Add locale seeding functionality and enhance locale management
689
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
690
+ - changes to avoid extra module checks before dynamically loading it
691
+ - defaulted to modulemetadataseederservice if no seeder provided
692
+ - Add Date field in Instructions Response
693
+ - ai interaction cleanup changes
694
+ - enabling create,edit,import,export on permission and lov modules
695
+ - added module to rolemetadata list view
696
+ - roles group by module changes
697
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
698
+ - Implement Datasource Management functionality with controller, service, and DTO
699
+ - added index to fields newly added as sortable and searchable
700
+ - Add archiver package to dependencies
701
+ - removed unnecessary seed file
702
+ - Add TypeORM migration helper functions and export in index
703
+ - fixes
704
+ - reverted accidental removal of the layout builder root menu
705
+ - pending cleanup of solid core menu items
706
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
707
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
708
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
709
+ - changes for IAM
710
+ - Add clearPackageRuntime functionality and corresponding metadata action
711
+ - Add archiver dependency and implement module package export functionality
712
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
713
+ - 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
714
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
715
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
716
+ - Remove unused database bootstrap service and related SQL cleanup procedures
717
+ - cleanup
718
+ - Add view and action metadata tree views with updated permissions and searchable fields
719
+ - Add view and action metadata tree views with updated permissions and searchable fields
720
+ - menu item model cleanup
721
+ - Add resumable import handling and transaction management in module package service
722
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
723
+ - 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.
724
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
725
+ - many to one left join issue fixed
726
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
727
+ - 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
728
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
729
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
730
+ - Implement module metadata explorer with CRUD operations and search functionality
731
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
732
+ - Bug fixs
733
+ - added frontend base url as well to the default settings
734
+ - minor cleanup
735
+ - changes to cleanup legacy table related fields
736
+ - changes for new dashboards functionality
737
+ - always print server startup line regardless of log level
738
+ - Add field quality checks and fixes checklist for backend validation
739
+ - typeo issue
740
+ - Agent table clean up
741
+ - Add manual interaction step for Playwright and update README
742
+ - provision made to unlink data rather than having to teardown everything
743
+ - provision made to unlink data rather than having to teardown everything
744
+ - changes to colour the server startup line
745
+ - Agent table clean up
746
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
747
+ - removed id command options and retained the singular name option only for consistency purposes
748
+ - 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
749
+ - 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
750
+ - MCP table solid changes
751
+ - playwrite added as dependency instead
752
+ - changes to the test runner
753
+ - chatter message user resolution chagnes
754
+ - bug fix in chatter message user resolution after we moved to queues.
755
+ - moved back to beta3
756
+ - failed login attempts field added to the json and update dto and exposed in entity
757
+ - removed un-necessary index on newvalue display
758
+ - ts changes error: any
759
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
760
+ - changed model metadata service default form layout to be single column
761
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
762
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
763
+ - normalised @ApiTags
764
+ - enum for passwordless modes
765
+ - bug fix in how alternative actions are rendered
766
+ - queue related bug fixes
767
+ - changes to add a websocket adaptor to the bootstrap server routine
768
+ - license changes
769
+ - type fixes
770
+ - removed min and max from long text mapping
771
+ - bug fix for shortext field mapping
772
+ - changes to post the testing results to a webhook api with a test payload
773
+ - added import multer this fixes un-necessary ts errors in vscode
774
+ - ts errors fixed
775
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
776
+ - formatting changes
777
+ - facebook oauth
778
+ - Status required false
779
+ - updated gitignore
780
+ - dleete un-necessary docs
781
+ - deleted un-necessary files
782
+ - changes related to more grooming
783
+ - api added in cors
784
+ - refactor Oauth strategy
785
+ - Revert "Ft social media login"
786
+ - bug fix
787
+ - bug fix
788
+ - add new api me endpoint and role based settings
789
+ - setting changes for new ui architecture
790
+ - changes for new settings structure
791
+ - chatter task subtype and related changes
792
+ - bug fix
793
+ - fixes
794
+ - 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
795
+ - changes to handle import logs as well, thru configured winston log level
796
+ - change isMultiSelect to true in solid-core-metadata.json
797
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
798
+ - 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
799
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
800
+ - bug fix: passwordless registration should create a user with active false
801
+ - apikeys attribute was not exposed
802
+ - refactor Oauth strategy
803
+ - 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)
804
+ - bug fix
805
+ - null check on role
806
+ - made provision to seed custom permissions
807
+ - handled seed scenario too
808
+ - upload File and expectHidden changes
809
+ - extension user cleanup and checks added
810
+ - fixed types for cleanup
811
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
812
+ - fixes bare shell imports with relative imports
813
+ - dynamic import fix
814
+ - removed unnecessary file
815
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
816
+ - removed base abstract class
817
+ - added interface too
818
+ - changes
819
+ - changes to test data seeding & fixed the type for authenticationService.signup method
820
+ - changes to user dto to include the api keys toggle
821
+ - add default role to the user only if there are no roles resolved against a user
822
+ - 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
823
+ - Only forward --debug when explicitly enabled.
824
+ - toolOutput field changes to json
825
+ - adding user api key entity to export
826
+ - minor optimisation to how dynamic modules are loaded
827
+ - Add Discord badge to top of README
828
+ - Fix broken BSL license link and add Discord link to README
829
+ - Add BSL 1.1 license and update package.json license field
830
+ - Seed user and roles in testing data
831
+ - removed readme.txt
832
+ - moved type and interfaces in interfaces.ts and refactored accordingly
833
+ - changed to md
834
+ - added readme
835
+ - Ai setting model change
836
+ - changes to allow encrypting setting keys
837
+ - form view clean up
838
+ - Agent table list view changes
839
+ - synchronize false
840
+ - changes to resolve the selection dynamic provider by name and token both
841
+ - changes to bypass swagger urls from csp policy
842
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
843
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
844
+ - changes to implement the sso code and sso exchange use cases
845
+ - removed orm types / exported api key entity
846
+ - added provision to control if api key creation is allowed for the user
847
+ - api key changes for backend
848
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
849
+ - fix to call addRoles only if role names are present
850
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
851
+ - refactor: update legacy entity fields to be nullable and support null types
852
+ - Json structure change
853
+ - Agent table metadata clean up changes
854
+ - longtext
855
+ - longtext changes
856
+ - Agent tables clean up
857
+ - fixes to seed many-to-many relation for tests
858
+ - changes to seed media in testing data
859
+ - Chatter modelUserkey and excel many to one issue
860
+ - keeping the default selectionValueType as string since this is a good default
861
+ - bug fixes around how media is done
862
+ - bug fixes
863
+ - try catch inside logEvent
864
+ - media has card based metadata
865
+ - Refresh token activity
866
+ - changes to implement the sso code and sso exchange use cases
867
+ - cleanup
868
+ - enabled kanban view on mq message
869
+ - Agent table changes
870
+ - changes to disallow deleting a model or module in production
871
+ - changelog version bumped
872
+ - changelog added
873
+ - changes to control the logging using env variables & set appropriate defaults basis environment
874
+ - chnages for logging
875
+ - Chatter queue fixs
876
+ - one more "beta" for ozzy
877
+ - additional loggging in cors helper
878
+ - changes
879
+ - Redis Queue component and rabbitMQ folder changes
880
+ - changes to track old and new fields as part of the delete entity operation
881
+ - optimizations done for audit subcriber
882
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
883
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
884
+ - formatting changes
885
+ - 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
886
+ - qs depth config increased
887
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
888
+ - cached model metadata queries
889
+ - changse
890
+ - disabled extra loggign
891
+ - chagnes
892
+ - reduced concurrency in computed fields
893
+ - additional loggign
894
+ - added indexes to mobile & email since those are frequently queries upon
895
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
896
+ - Redis background job changes
897
+ - Chatter Rationalizing
898
+ - changes
899
+ - changes
900
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
901
+ - changes to export bootstrap helpers for server & cli nest applications
902
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
903
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
904
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
905
+ - added index on message id in mq message table
906
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
907
+ - changes to save model sequence id as part of post compute instead of pre compute
908
+ - changse
909
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
910
+ - High concurrency fix for alpha num and sequence num computed fields
911
+ - bug fix in cron evalutaion
912
+ - tighter logging around roles
913
+ - scheduler now supports env based specific jobs starting and others not
914
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
915
+ - revert cross db changes for view-metadata-entity
916
+ - fixes
917
+ - changes to handle cross-db compatibility
918
+ - added type as simple-json
919
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
920
+ - Revert "Merge branch 'media-update' into 'main'"
921
+ - Mysql related changes
922
+ - ts-morph and media storage fix
923
+ - dashboard layout menu item added
924
+ - dashboard changes
925
+ - scheduler bug fix
926
+ - made provision to execute scheduled jobs manually
927
+ - changes
928
+ - cleanup
929
+ - logging related changes and made user activity history tree view
930
+ - changes to return the wall clock time as utc for chatter as well to keep it...
931
+ - changes around dashboard question refactoring
932
+ - default tree view and action added on code generation
933
+ - Date time format changes in audit
934
+ - user activity history on otp login
935
+ - changes
936
+ - changelog added
937
+ - reverted legacy and common entity to use local date time transformer only
938
+ - added changelog
939
+ - made playwright dependency lazy
940
+ - ai interaction table user is nullable now
941
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
942
+ - formatting changes
943
+ - Version info changes
944
+ - dummy otp can now be enabled on a per user basis
945
+ - jwt token optimisation
946
+ - optimised the authentication flow in microservice adapter to cache access token
947
+ - deleted file containing secrets
948
+ - changes
949
+ - optimisation around how dummy otp is managed
950
+ - isSeeded added
951
+ - bug fix for fetch layouts
952
+ - view modes added in layout
953
+ - One to many crud manager fixes
954
+ - one-to-many-crud-manager-fixes
955
+ - Many to many crud field manager fixes
956
+ - patch endpoint added in role controller
957
+ - many-to-many field fixes
958
+ - modelSequenceFormViewChangeHandler added on field change
959
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
960
+ - changes to format group values consistently
961
+ - fixes for normalizing group values
962
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
963
+ - changes to return groupValue in the group meta response as well. groupValue is...
964
+ - changes to return groupValue in the group meta response as well. groupValue is...
965
+ - filter_field_granularity_supported_added_for_date_fields
966
+ - password registration/login cleanup + max failed login attempts checks added
967
+ - removed unsafe inline from CSP
968
+ - removed incorrect comment
969
+ - changes
970
+ - Revert "replaced playwright with lazy dependency"
971
+ - replaced playwright with lazy dependency
972
+ - count and average
973
+ - fixes to solid core metadata configuration
974
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
975
+ - solid seed now prints proper exception stack trace
976
+ - added playwright dependencies as peer dependencies
977
+ - changed playwright import to make it lazy
978
+ - issue fixes
979
+ - formatting changes
980
+ - formatting changes
981
+ - changes for test setup
982
+ - package changes
983
+ - Changes to generate an SA user with the default password for simpler experience during setup
984
+ - more changes to support form data based uploads
985
+ - changes
986
+ - changes around testing workflow
987
+ - unified testing utitlities
988
+ - added comments to the slug code
989
+ - refactored queue namespacign
990
+ - queue namespacing related chanes
991
+ - removed todo
992
+ - queue name related changes
993
+ - cag
994
+ - changrs
995
+ - queues names are now namespaced by service naem
996
+ - enabled logs
997
+ - debug logs
998
+ - testing docs updated
999
+ - changes
1000
+ - cleanup
1001
+ - removed old testing related fiels
1002
+ - testing infra now supports data based interpolation
1003
+ - testing changes: now we support fully custom test specs
1004
+ - changes for test automation
1005
+ - changes to tsconfig for playwright tests
1006
+ - exporting typeorm db helper
1007
+ - removed the files section
1008
+ - changes for playwright testing
1009
+ - changes to disable service controller seed method
1010
+ - formatting changes
1011
+ - oom issue
1012
+ - logger added for chatter
1013
+ - changed arg to kebab case instead of came case in schematic service
1014
+ - default menu icons added
1015
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
1016
+ - removed un-necessary log
1017
+ - fix for handling non existence of fieldNamesForRemoval arg
1018
+ - foirmatting canges
1019
+ - Archived/solidstarters main
1020
+ - version changes
1021
+ - changed org : @solidstarters -> @solidxai
1022
+ - removed publish script, since it is replaced with solidctl release
1023
+ - chanes
1024
+ - Revert "@solidstarters namespace changed to @solidx"
1025
+ - @solidstarters namespace changed to @solidx
1026
+ - file service interface changes
1027
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
1028
+ - 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
1029
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
1030
+ - test data workflow
1031
+ - test-data command
1032
+ - seed command updated
1033
+ - changes
1034
+ - changes
1035
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
1036
+ - seeding now supports seedData allowing us to seed fixtures for testing.
1037
+ - precomputations now skip computation if value is already provided
1038
+ - added utility for findOneByUserKey
1039
+ - pruning related chagnes
1040
+ - changes
1041
+ - more changes related to pruning metadata
1042
+ - pruen logs added
1043
+ - module metadata seeder now does prune also
1044
+ - reformatting to improve readability
1045
+ - changes
1046
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
1047
+ - bug fixes
1048
+ - changes to cleanup the implementation by having the write method of file service return the url post write
1049
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
1050
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
1051
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
1052
+ - file service abstraction cleanup
1053
+ - chagnes
1054
+ - Dashboard Question Responsive
1055
+
3
1056
  ## [0.1.12] - 2026-07-24
4
1057
 
5
1058
  ### Added