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