@solidxai/core 0.1.15 → 0.1.16-beta.1

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