@solidxai/core 0.1.16-beta.1 → 0.1.16-beta.3

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