* feat: QueryManager - add fx and custom message for query confirmation
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
* Minor fix
* Design update
* Yes button same size as cancel button
---------
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
* fix: update migration to seed module versions only on the push-modules branch
* fix: drop module origin branch staging table after processing all organizations
* feat: introduce module_reference_id for stable versioning across environments
* fix: update versionId assignment to use module_reference_id for consistency
* feat: update module version handling to use module_reference_id for stable versioning
* feat: enhance module definition caching for improved content refresh on version switch
* feat: enhance module version handling to differentiate between DRAFT and user-pinned versions
* feat: update moduleReferenceId handling to ensure UUIDs are assigned only for module-type apps
* feat: add moduleReferenceId generation using UUID for module-only migrations
* feat: refactor module version cloning to use UUID for module_reference_id and enhance app version handling
* feat: enhance module export logic to handle branch-local versions and prevent name collisions
* feat: lock source version during cloning to ensure stable app version selection across iterations
* Dynamic height revamp
* Redundant code cleanup
* Minor fix
* Add collapse on hide toggle to button component
* Fixed table collapse on hidden toggle missing
* Fixed listview min height issue
* Listview footer not at the bottom when dynamic height enabled fix
* Extra padding removed from textarea
* Fixed CollapseOnHide missing for KeyValuePair, CodeEditor, Richtextarea
* Fixed container height not getting properly calculated when a component with alignment set to top is present
* Accordian causing overlap fix
* Fix for container based components not recomputing height when invisible by default
* Toggling dynamic height toggle using fx fix
* Backfill CollapseOnHidden
* Minor listview fix
* feat: enable version management panel for modules
Move VersionManagerDropdown and RightTopHeaderButtons outside the
isModuleEditor gate so module builders get the same version management
UI as apps — create drafts, save versions, promote, edit details,
and delete. BranchDropdown stays gated (git sync is Phase 2).
Refs: ToolJet/tj-ee#4925
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule for module version pinning
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — version dropdown design fix
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — compact dropdown styling
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: prevent deletion of module versions pinned by consuming apps
Query all ModuleViewer components to check if any app references the
target version via moduleVersionId. If in use, reject deletion with
a list of consuming app names.
Refs: ToolJet/tj-ee#4927
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — version selection fix
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: enable runtime resolution for pinned module versions
When a module component has a pinned versionId, use the version-specific
API (appVersionService.getAppVersionData) to load that version's definition
instead of always loading the module's current/latest version.
Also add versionId to useEffect deps so the module re-fetches when the
user changes the pinned version in the dropdown.
Refs: ToolJet/tj-ee#4926
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: address review findings — scoped deletion query, error handling
- Replace full table scan in checkModuleVersionInUse with scoped SQL
query using JSON extraction (properties::jsonb -> 'moduleVersionId')
instead of loading all ModuleViewer components into memory
- Add try-catch with user-friendly error message
- Update frontend/ee submodule with error logging and DRAFT fallback fixes
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: module deletion guard, import version mapping, and error display
- Prevent deletion of modules referenced by consuming apps (checks
ModuleViewer components by moduleAppId)
- Fix import version ID remapping: map ALL version IDs instead of only
editingVersion, and match existing module versions by name
- Fix showViewerNavigation defaulting to true on import (|| → ??)
- Show actual API error message in delete toast instead of generic text
- Clean up error messages: remove em-dash, use multiline format
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: hide Configure Git button in module builder
Git sync for modules is Phase 2. Hide the LifecycleCTAButton when
in module editor context.
Refs: #15857
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: hide freeze banner in module builder to prevent canvas shift
The AppCanvasBanner renders a FreezeVersionInfo banner when a version
is saved (frozen). In the module builder, this banner pushed the canvas
down. Since git sync banners are not applicable to modules (Phase 2),
skip rendering entirely for module editors.
Refs: #15857
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — version dropdown loading state
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — canvas padding fix
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: remove hardcoded 'development' environment for modules
Modules now support environments, so remove the special case that
hardcoded the development environment for module viewer mode. Use
the same appEnvironmentService.getEnvironment call as apps.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: freeze editor for promoted module versions
Remove the blanket `if (isModuleEditor) return false` from
getShouldFreeze(). Modules now have environments, so promoted/saved
versions should freeze the editor and query panel just like apps.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — version lock banner for modules
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — latest version pre-selection
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — robust latest version sort
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: release gate blocks app release with unreleased modules
Check all ModuleViewer components in the app version being released.
If any pinned module version is not RELEASED, block with error listing
the unreleased modules.
Also updates frontend/ee submodule with env check and status badges.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — debugger integration for env mismatch
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: block app promotion when pinned modules not in target env
Add promote gate in promoteVersion() that checks all ModuleViewer
components. If any pinned module version hasn't been promoted to the
target environment, block with error listing the modules.
Also updates frontend/ee: simplified dropdown badges, removed
env mismatch placeholder (now prevented by this backend gate).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: show actual API error in release and promote toasts
Release button was showing "Oops, something went wrong" and promote
button was showing a generic retry message. Now both show the actual
backend error (e.g., module not released/promoted). Release errors
are also pushed to the app debugger.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: use raw table names in release and promote gate queries
TypeORM innerJoin with entity classes generates incorrect SQL when
join conditions use ::text casts. Switch to raw table/column names
(app_versions, apps, app_environments) instead of entity references.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: use lowercase aliases and correct enum in gate queries
- Use snake_case aliases (mod_ver, mod_app, mod_env) to avoid
PostgreSQL case-sensitivity issues with camelCase aliases
- Check for DRAFT status instead of RELEASED (RELEASED doesn't
exist in the DB version_status_enum)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: release gate checks current_version_id, errors in debugger
- Release gate now checks if pinned module version matches the
module's current_version_id (actual release mechanism), not just
DRAFT status
- Promote gate uses APP_TYPES.FRONT_END constant instead of raw string
- Both release and promote errors now show actual API message in toast
AND push to the app debugger
- Fixed inline ReleaseVersionButton (version panel) error handler
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: debugger log format and version dropdown design language
- Use type 'component' with description field for debugger logs
so the error message is visible in the debugger panel
- Update frontend/ee submodule: status dots in dropdown, draft
modules visible in component panel
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update server/ee submodule — promote gate in EE override
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* refactor: move module guards from CE to EE only
Module-specific guards (deletion, release, promote) belong in EE
since modules are an EE-only feature. CE users who downgrade would
be blocked by stale module references they can't fix.
- Removed module deletion guard from CE apps/service.ts
- Removed release gate from CE apps/service.ts
- Removed dead promote gate from CE versions/service.ts
- All three guards now live in EE overrides only
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: format module names on separate lines in error messages
Each module name now appears on its own line in error toasts for
deletion, release, and promote gates.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update frontend/ee submodule — Released badge in version dropdown
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update server/ee submodule — newline formatting in error messages
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: code review findings + design feedback
Review fixes:
- Guard checkModuleVersionInUse with app.type === 'module' to skip
unnecessary JSONB queries for non-module version deletions
- Exclude self-references in EE deletion guard
- Add DISTINCT to release gate query
- LEFT JOIN on environments in promote gate to catch NULL env IDs
Design feedback (Nechal):
- Remove status dots from version dropdown (clutter in small dropdown)
- Badge hugs the version name with tighter gap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: code review fixes + module version audit log keys
PR review fixes:
- Move hooks above early return in LifecycleCTAButton (Rules of Hooks)
- Move UI state cleanup before debugger.log in error handlers
- Add missing setShowConfirmation(false) in modules ReleaseVersionButton
- Add fallback mapping for unmatched version IDs on module import
- Add Logger for checkModuleVersionInUse error logging
Audit log event names for module versioning:
- Add MODULE_VERSION_AUDIT_KEYS constants (CREATE/DELETE/SAVE/PROMOTE/RELEASE)
- Interceptor prefers service-set actionType over feature config
- Version/app services set module-specific audit keys when app.type === 'module'
- Add auditLogsKey for module CRUD features (MODULE_CREATE/DELETE/UPDATE)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: revert unrelated review changes + move audit keys to modules
- Revert LifecycleCTAButton hooks reorder (unrelated to this PR)
- Revert ReleaseVersionButton/PromoteConfirmationModal try-catch wrappers
- Move MODULE_VERSION_AUDIT_KEYS from versions/constants to modules/constants
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update server/ee submodule pointer
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: skip git sync freeze for modules in version service
Modules are common across all branches — git sync freeze does not apply.
Adds app.type !== 'module' guard in CE prepareResponse.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: scalable error copy for module dependency gates
Frontend catch handlers now extract structured errors — toast shows
generic message, debugger description shows full module list.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: read structured error fields correctly in catch handlers
Read rawError.error (not rawError.message) to match the { error, details }
shape from BadRequestException({ message: { error, details } }).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update server/ee submodule — error copy polish
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update server/ee submodule — freeze module after version save
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* chore: update server/ee submodule — widen module freeze check
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: module environment derivation, version switch crash, and delete toast
- Derive module environment from parent app's store instead of static
moduleEnvironmentId property. Ensures constants/secrets/queries
resolve from the correct environment per the compatibility matrix.
- Remove moduleEnvironmentId from all write/read/import-export paths.
Existing DB values are inert and harmless.
- Add key={moduleVersionId} to <Viewer> to force clean re-mount on
version switch, preventing stale state crash (empty canvas).
- Add stale-request cancellation guard in useAppData to prevent
unmounted component's async callback from overwriting new state.
- Fix delete-version toast: "Cannot delete only version of module"
instead of "app" when deleting the last module version.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: block app version save when using draft module versions
Saving an app version is now blocked if any ModuleViewer components
reference draft module versions. The draft module is still editable,
so saving the app would break the contract that saved = immutable.
- Added checkDraftModulesInApp() in CE util.service.ts (mirrors
checkModuleVersionInUse pattern)
- Called from update() before DRAFT→PUBLISHED status transition
- Structured error format: toast shows message, debugger shows
full module list
- Module saving itself is unaffected (guard checks app.type)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: make checkDraftModulesInApp public (TS2445)
Called from VersionService.update() which is outside the class.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: data migration to promote and release existing module versions
Modules now inherit the parent app's environment for constants and
data sources. Existing modules had current_environment_id pointing
to Development, which would break apps viewing them in Staging or
Production.
This migration promotes the latest version of each module to the
production environment and sets it as released - mirroring the
workflow versioning migration pattern.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: modules in public apps - cache-first load + constantsResp guard
Public app viewers are unauthenticated, so module data fetches via
getAppVersionData (JwtAuthGuard) fail with 401. Two fixes:
1. Try getModuleDefinition() cache before API call. Parent app's
public response includes module definitions, so the cache hit
avoids the authenticated endpoint entirely.
2. Guard constantsResp against undefined. When the environment
fetch fails (401 for public apps), constantsResp was undefined
causing a TypeError crash on extractEnvironmentConstantsFromConstantsList.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: restrict cache-first module loading to public access only
Cache-first was overly broad - could serve stale definitions in
authenticated editor previews. Now gated on isPublicAccess so
version-pinned API calls are preserved for authenticated flows.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: modules with data queries crash in public/released apps
Two issues (ported from PR #15874):
1. Deep-clone cached module definitions before resolving. Zustand/Immer
returns frozen objects, but normalizeQueryTransformationOptions
mutates query options in-place causing TypeError on frozen objects.
Only manifests when modules have data queries.
2. Add id field to CE getBySlug module response. setModuleDefinition
stores by module.id - without it, getModuleDefinition(appId) cannot
find the cached definition. EE already had this (line 694).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: allow module query execution in public apps
QueryAuthGuard.findByDataQuery returns the MODULE app (query owner),
not the parent app. Modules aren't marked is_public, so the guard
rejected unauthenticated requests with "Authentication is required."
Added isModuleInPublicApp() check: when the query's owning app is a
module and not public itself, check if it's used in the released
version of any public app. Only checks current_version_id (released)
to prevent unauthorized access via unpublished app versions.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Revert "fix: allow module query execution in public apps"
This reverts commit 7917eba47b.
* fix: modules should not inherit git branching locked state
- Backend: skip git sync freeze for modules in CE getOne, add
version-status freeze for non-draft module versions
- Frontend: make getShouldFreeze accept and use isModuleEditor param
(was silently ignored, affecting 20+ UI disable points)
* chore: update submodule pointers
* fix: getShouldFreeze module bypass must check version status not just released
The previous module bypass only checked isVersionReleased, missing
PUBLISHED (saved/promoted) versions. Check selectedVersion.status
directly since isEditorFreezed is shared state contaminated by the
parent app's git sync freeze.
* fix: handle nullable version status in module freeze check
Status column is nullable — null/undefined should be treated as DRAFT
(editable), not frozen. Use AppVersionStatus enum in CE backend.
* chore: update submodule pointers
* chore: update submodule pointers
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add migration to backfill refresh button and expandable rows properties for Table components
* Implemented a new migration to set default values for showRefreshButton, enableExpandableRows, and expansionHeight in Table components.
* Added logging for migration progress and success.
* Included functionality to delete app history for structural migrations if updates occur.
* chore: remove obsolete migration for backfilling showRefreshButton property in Table components
* Deleted the migration file that backfilled the showRefreshButton property, as it is no longer needed.
* This cleanup helps maintain the codebase by removing unused files.
* feat: add refresh button functionality to table components
* fix: update refresh button icon from IconRefresh to IconReload
* Made the showRefershButton to false by default
* supported support for data queries as well other than raw json
* Used dependency graph to check the query reference
* Added migration for show refresh button to support backward compatibility
* fix: update loading state handling to include refresh status in Table and Header components
* enhanceed migration to backfill showRefreshButton property for Table components
* fix: enforce unique data source names at org level
* fix: remove unique index creation and drop logic for data sources
* fix: enforce unique data source names for active versions and add version-specific index
* fix: update unique index for default data source names to exclude organization ID
* fix: remove conflict logging for unique data source name indexes
---------
Co-authored-by: Pratush <pratush@Pratushs-MBP.lan>
Co-authored-by: gsmithun4 <gsmithun4@gmail.com>
* Feature: add self-host AI support in licensing module
* chore: update submodule commits for frontend and server
* Feature: add self-host AI check in LicenseBase class
* chore: update submodule commit for server
* Feature: add AITripleSparkles icon and update icon switch case
* chore: update submodule commit for frontend
* Feature: add BYOK support in LicenseBase and related modules
* Feature: add updateKey function to aiService and new route for LLM key in breadcrumbs
* Feature: add getKeySettings function to aiService and update service exports
* chore: update submodule commits for frontend and server
* Feature: add LLM_KEY_ENV_CONFIGURED to INSTANCE_SYSTEM_SETTINGS and create migration for its initial value
* chore: update submodule commits for frontend and server
* chore: update submodule commits for frontend and server
* chore: update submodule commit for frontend
* refactor: replace selfhostAI and byok with aiPlan in LicenseBase and related files
* chore: update submodule commits for frontend and server
* chore: update submodule commits for frontend and server
refactor: enhance error handling in sendMessage function
* refactor: adjust formatting in generatePayloadForLimits function for consistency
* feat: add EncryptionModule registration and LLM_API_KEY enum to instance settings
* chore: update submodule commits for frontend and server
* feat: implement handleAITextResponse for improved API response handling and update aiPlan logic in LicenseBase
* chore: update submodule commits for frontend and server
* chore: update submodule commits for frontend and server
* chore: update submodule commit for server
* feat: update aiPlan logic to include selfhostai and byok options
* chore: update submodule commit for server
* chore: mark subproject commits as dirty for frontend and server
* feat: simplify AI plan check in LicenseBase class
* feat: add update and get key settings features to AI ability
* feat: implement organization AI key management with rotation and migration
* chore: update submodule commit for server
* chore: update subproject commit for server
* chore: update subproject commit for server
* chore: update subproject commit for server
* chore: update subproject commits for frontend and server
* chore: update subproject commit for frontend
* chore: update subproject commit reference in server/ee
* chore: update subproject commit reference in frontend/ee
---------
Co-authored-by: Kartik Gupta <gupta.kartik18kg@gmail.com>
* Added the loading state in the Listview
* Added the migration and import-export
* Migrated Visiblility, Disable to Properties and Removed Box Shadow and tooltip out of General
* feat(migration): add backfill migration for loading state in Listview components
---------
Co-authored-by: kavinvenkatachalam <kavin.saratha@gmail.com>
Co-authored-by: Kavin Venkatachalam <50441969+kavinvenkatachalam@users.noreply.github.com>
* Revamp component inspector for Color picker to support new properties and styles
* Fix: Mandatory property not working on component drop
* Update default placeholder value
* Revamp ColorPicker component
* Fix: Renamed class to avoid conflicts
* Add base layer for opacity in preview box
* Implemented migrations
* Update submodule reference
* Update server/src/modules/apps/services/widget-config/colorPicker.js
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update frontend/src/AppBuilder/WidgetManager/widgets/colorPicker.js
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* fixes
* Update submodule reference
* Update submodule references
* Fix: Remove width type field from label styles since only 'of the component' supported for new components
* Fix: Placeholder overflows when label width is large and height of hue bar breaks when alpha is turned off
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* feat: Folder permission system
* fix(group-permissions): resolve custom group validation, folder edit check, and UI inconsistencie
* edit folder container && no folder in custom resource
* fix the ui for custom in empty state
* fix: coercion logic for folder permissions
* feat: enhance folder permissions handling in app components
* feat: add folder granular permissions handling in user apps permissions
* feat: implement granular folder permissions in ability guard and service
* feat: improve error handling for folder permissions with specific messages
* feat: enhance EnvironmentSelect component to handle disabled state and improve display logic
* chore: bump ee submodules
* add basic framework to support platform git
* feat: Update permission prop to isEditable in BaseManageGranularAccess component
* chore: bump ee server submodule
* fix: refine folder visibility logic based on user permissions
* feat: enhance MultiValue rendering and styling for "All environments" option
* fix:Uniqueness-of-data-source
* revert folder changes
* fix folder imports
* feat: allow app lazy loading
feat: import all apps of branches
* feat: implement folder ownership checks and enhance app permissions handling
* fix:ui changes
* feat: update WorkspaceGitSyncModal UI
* feat: enhance folder permissions handling for app ownership and actions
* chore: clarify folder creation and deletion permissions in workspace context
* fix: pull commit button & swtich branch visibility
* feat: import app from git repo
* fix: freezed state
* remove reference of activebranchId
* fix linting
* fix: update folder permission labels
* fixed folder permission cases
* fixed css class issue
* fix: datasource UI
* minor fix
* feat: streamline folder permissions handling by removing redundant checks and simplifying access logic
* refactor: made error message consistent
* fix:ui changes and PR fetching on master
* fix: datasource and snapshot creation
* fix: app rendering and stub loading
* fix: add missing permission message for folder deletion action
* refactor: consolidate forbidden messages for folder actions and maintain consistency
* fix: allow pull into current branch
* fix renaming of tags and reload on branch switch
* fix: allow branches import from git
* fix:push or tab removed
* feat: streamline permission handling and improve app visibility logic
* fix: remove default access denial message in AbilityGuard
* fixed all user page functionality falky case
* feat: add workspace-level PR fetch endpoint (returns all repo PRs without app filtering)
* fix: remove app_branch_table
* Fixed profile flaky case
* fixed granular access flaky case
* fix: allow branch creation from tags
* fix: update default branch creation logic to use provider config
* fix: dso and dsv operations on codebase
* fix: constants reloading and refetch org git details on data
* uniquness per branch
* removed comment
* fix: update app version handling and add is_stub column for branch-level tracking
* fix workspace branch backfilling for scoped branches
* added unique constraint - migration
* fix: update app version unique constraint to include branchId for branch-aware handling
* fix: update subproject commit reference in server/ee
* chore: revert package-lock.json
* chore: revert frontend/package-lock.json to main
* removed banner and changed migration
* minor fix
* fix: remove unused import and handle UUID parse error gracefully in AppsUtilService
* fix: update app stub checks to safely access app_versions
* refactor: revert folder operations
* fix: removed branch id logic
* fix: ds migration
* fix encrypted diff logic
* fix: update openCreateAppModal to handle workspace branch lock
* fix: subscriber filtering, freeze priority, meta hash optimization, and co_relation_id backfill
* feat: add script to generate app metadata from app.json files
* fix: meta script
fix: backfilling of co-realtion-ids
* refactor: streamline parameter formatting in workspace git sync adapter methods
* Improves data source handling for workspace git sync
Fixes workspace git sync to properly recognize data sources across branches by improving correlation ID handling and branch-aware data source version creation.
Uses strict equality comparison in deep equal utility to prevent type coercion issues.
Excludes credential_id from data source comparison to prevent unnecessary save button states.
Removes is_active filter from branch data source queries to include all versions for proper synchronization.
* refactor: update branch switching logic and improve error handling for data source creation
* fix: migration order
* 🚀 chore: update submodules to latest main after auto-merge (#15628)
Co-authored-by: gsmithun4 <3417097+gsmithun4@users.noreply.github.com>
* chore: update version to 3.21.8-beta across all components
* fix:import app from device
* fix:ui Edit&launch,folderCopy,branching dropdown in apps and ds
* fix:encrypted helper text on master
* fix: import from git flow
* logs cleanup
* fix:migration-datasource-uniqueness
* fix: app on pull
* chore: update server submodule hash
* fix: corelation-id generation and version naming
* fix: last versions deletion error
fix: no multiple version creation
* fix:ui and toast
* chore: update server submodule hash
* feat: add branch handling for app availability and improve error handling
* fix: update encrypted value handling in DynamicForm and improve workspace constant validation logic
* fix: improve formatting of help text in DynamicForm and enhance error message for adding constants on master branch
* fix: correct version creation and pull in default branch
* chore: update server submodule hash
fix: remove logs from other PR
* fix:data source uniquness at workspace level
* fix: update header component logic for path validation and improve version import handling
* chore: update server submodule to latest commit
* fixed folder modal changes
* fix:failed to create a query error inside apps
* feat: add branchId support for data source versioning in app import/export service
* fix: push & pull of tags and versions
* fix: update subproject commit reference in server/ee
* fix:removed gitSync logic from module rename
* fix:removed switchbranch modal & allowed renaming from masted module&workflow creation
* chore: Update server submodule hash
* fix: change stub button to edit
* refactor/git-sync-remove-modules-workflows
* fix:version name for module and workflo
w
* fix:templet app creation
* fix: add author details for branch
---------
Co-authored-by: gsmithun4 <gsmithun4@gmail.com>
Co-authored-by: Pratush <pratush@Pratushs-MBP.lan>
Co-authored-by: Shantanu Mane <maneshantanu.20@gmail.com>
Co-authored-by: parthy007 <parthadhikari1812@gmail.com>
Co-authored-by: Yukti Goyal <yuktigoyal02@gmail.com>
Co-authored-by: Muhsin Shah <muhsinshah21@gmail.com>
Co-authored-by: Adish M <44204658+adishM98@users.noreply.github.com>
Co-authored-by: gsmithun4 <3417097+gsmithun4@users.noreply.github.com>
Co-authored-by: Parth <108089718+parthy007@users.noreply.github.com>
* Added Hover Background option for button, button group, modal trigger btn, popover menu button
* Added FontSize style property to Button, Button group, Popover menu, Modal Trigger btn. Adjusted line height and icon size accordingly
* Added FontWeight to Button, Button Group, Popover Menu, Modal Trigger Button
* Added Content Alignment for Button, Popover menu and Modal Trigger btn
* Added Hover Toggle for Button , Button Group, Popover menu and Modal Trigger Btn
* Reverted changes to button group legacy
* Added the properties to the new Button Group
* Resolved copilot comments
* Removed Content Alignment from Button group and changed the accordian for hover bg
* Created the migration and the import-export service
* perf: Replace placeholder text color migration with optimized version using cursor pagination
* fix: use result[1] for affected row count in batch DELETE
entityManager.query() returns [rows, rowCount] for DELETE/UPDATE
statements, not a QueryResult object. result.rowCount is undefined,
causing the cleanup loop to exit after the first batch.
* update: bump subproject commits for frontend and server components
* fix: include NULL styles rows in placeholder text color backfill
NOT (styles::jsonb ? 'key') yields NULL when styles IS NULL, so those
rows were silently skipped. Added explicit OR styles IS NULL to catch them.
* chore: use @helpers path alias for migration.helper import
* fix: implement two-pass delete for app history to avoid FK violations
* Revert "Reverted placeholder color changes (#15659)"
This reverts commit 8a458cfcbd.
* refactor: remove unused migration for backfilling placeholder text color
* refactor: button style migration and added the progess
---------
Co-authored-by: Rahul <rahulrnc03@gmail.com>
Co-authored-by: Shaurya Sharma <shaurya064@gmail.com>
Co-authored-by: Johnson Cherian <johnsonc.dev@gmail.com>