Commit Graph

1983 Commits

Author SHA1 Message Date
Aaryan Khandelwal
6cd6269a1d fix: comments mention 2025-09-30 13:35:25 +05:30
sriram veeraghanta
ae084e197b fix: runtime errors in api server 2025-09-30 02:02:29 +05:30
sriram veeraghanta
65b1004659 fix: build errors in api 2025-09-30 00:23:43 +05:30
sriramveeraghanta
d6b80f443d fix: merge conflicts 2025-09-29 19:33:10 +05:30
sriram veeraghanta
ebeac413fa [WEB-5044] fix: ruff lint and format errors (#4323)
* fix: lint errors

* fix: file formatting

* fix: lint errors
2025-09-29 19:15:42 +05:30
sriram veeraghanta
9237f568dd [WEB-5044] fix: ruff lint and format errors (#7868)
* fix: lint errors

* fix: file formatting

* fix: code refactor
2025-09-29 19:15:32 +05:30
Vihar Kurama
2326680f7b [WEB-5047] fix: display customer websites without protocol (#4161)
* feat: simplify customer website links

* refactor: move url display util to shared package

---------

Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
2025-09-29 19:15:25 +05:30
Jayash Tripathy
9ccde9fa9c [WEB-5039]fix: add key prop to WidgetConfigSidebarFilters to reset on widget change #4321
- Prevents stale FilterInstance when switching between widgets
- Ensures fresh filter state for each widget
2025-09-29 19:02:42 +05:30
M. Palanikannan
d63015f53d [WIKI-697] fix: padding for comments menu with stickies #4309 2025-09-29 16:04:35 +05:30
Vipin Chaudhary
9b641e6407 [SILO-536] [WIKI-621] feat: drawio integration (#4317) 2025-09-29 15:49:29 +05:30
Saurabh Kumar
0d757b170c [SILO-567] Fallback SILO_BASE url to APP_BASE_URL for self hosted (#4312)
* fix silo base url fallback to app base url for selfhosted

* use web_url as a fallback
2025-09-29 15:27:11 +05:30
Henit Chobisa
558d9436ec [SILO-533] feat: added external api endpoint for customers feature (#4277)
* feat: added external api endpoint for customers feature

* fix: review comments from copilot

* fix: segretate endpoints into detail endpoints

* fix: moved name validation logic to serializer
2025-09-29 15:26:09 +05:30
Saurabh Kumar
106b077856 [SILO-553] Modify OAuth flow to store workspace id and app installation in token (#4289)
* add workspace to oauth token

* modify oauth flow to store  workspace and app installation in tokens and grant

* reduce app installation id cache ttl

* reduce app installation id cache ttl to 1s

* include clientid in cache key
2025-09-29 15:25:58 +05:30
Saurabh Kumar
cb4fe7428d [SILO-562] Fix Gitlab Enterprise Disconnect Issue (#4301)
* fix gitlab ent disconnect

* fix target host issue

* fix formatting

* fix project missing in edit modal project conn
2025-09-29 15:25:19 +05:30
sriramveeraghanta
e5394a48a8 fix: merge conflicts 2025-09-29 15:09:36 +05:30
Jayash Tripathy
a45a3c1e57 [WEB-5025][WEB-5024] refactor: added state and state group in dashboard widget filters and fixed filtration of initiatives (#4316) 2025-09-29 15:02:09 +05:30
Surya Prashanth
012d6dfd2d [SILO-454] refactor: add common code for decorators, logger packages (#3950)
* [SILO-454] refactor: add common code for decorators, logger packages

- refactor Controller related decorators and use those in silo
- add silo's logger config in packages and use it for live
- remove redundant code across silo, live

* remove usages of local logger module

* add test in prebuild phase for silo

* use logger from packages and linter changes

* chore: remove E_INTEGRATION_KEYS enum from etl/core

* chore: use E_INTEGRATION_KEYS from types

* remove unused file-tree.ts file
2025-09-29 14:59:18 +05:30
Nikhil
1fb22bd252 [WEB-4805] fix: upgraded psycopgy packages to fix linting and removed unused imports (#7735)
* chore: update psycopg dependencies to version 3.2.9 in base requirements

* refactor: clean up unused imports across multiple files

* chore: update lxml dependency to version 6.0.0 in base requirements

* style: improve code readability by breaking long lines into multiple lines across several files

* style: enhance readability by breaking long lines in ModuleSerializer docstring
2025-09-29 14:33:50 +05:30
Surya Prashanth
db3450563e [SILO-556] fix: add confluence to disabled importers list (#4315) 2025-09-26 19:09:54 +05:30
sriram veeraghanta
e0c4e8e791 [WEB-5027] fix: replace lodash package with lodash-es (#4305)
* fix: replace lodash pacakge with lodash-es

* fix: lint errors

* fix: replace lodash with lodash-es

* fix: lodash imports

* fix: import fixes

* fix: import fixes

* fix: lint errors

* fix: file formatting
2025-09-26 18:00:42 +05:30
sriram veeraghanta
bedc1fae1f [WEB-5027] fix: replace lodash package with lodash-es (#7856)
* fix: replace lodash pacakge with lodash-es

* fix: lint errors

* fix: import fixes
2025-09-26 17:59:31 +05:30
Surya Prashanth
da4fed576c [SILO-556] fix: only rely on feature flags for enabling importers (#4310)
* [SILO-556] fix: only rely on feature flags for enabling importers

- remove special handling for clickup, notion which was added as a stop-gap
solution for release

* formatting changes
2025-09-26 17:48:17 +05:30
Dheeraj Kumar Ketireddy
f1f5bcf55e [WEB-5021] chore: add InitiativeLabelAssociation model and update InitiativeLabel fields (#4302)
* chore: add InitiativeLabelAssociation model and update InitiativeLabel fields

- Introduced the InitiativeLabelAssociation model to manage many-to-many relationships between initiatives and labels.
- Updated InitiativeLabel model to include new fields: name, description, and color.
- Removed direct foreign key relationships from InitiativeLabel to Initiative and Label.
- Adjusted unique constraints and added new constraints for InitiativeLabel.

* removed null from m2m

* fix: update __str__ method in InitiativeLabel model to return label name

* add unique constraint to InitiativeLabelAssociation model

- Introduced a unique constraint on the InitiativeLabelAssociation model to ensure that each initiative-label pair is unique when not marked as deleted.
- Updated migration file to reflect this new constraint.
2025-09-26 16:57:24 +05:30
sriramveeraghanta
c327295740 fix: warning message in Plane AI 2025-09-26 16:56:19 +05:30
sriramveeraghanta
03b827b6e2 fix: Pi Chat to Plane AI 2025-09-26 16:54:48 +05:30
sriramveeraghanta
033be85f8a fix: change pi to ai in rail 2025-09-26 16:39:41 +05:30
pushya22
4abe5a7be2 Sync: Community Changes #4307 2025-09-26 14:26:01 +05:30
Anmol Singh Bhatia
c05a5eb5ee [WEB-4981] fix: analytics portal modal #7858 2025-09-26 14:23:04 +05:30
pushya22
8338931d92 Sync: Community Changes #4303 2025-09-25 20:32:01 +05:30
Dheeraj Kumar Ketireddy
a95dc1bdf3 [WEB-4975] feat: Rich filters for Initiatives (#4262) 2025-09-25 20:30:52 +05:30
Anmol Singh Bhatia
b946b3a315 [WEB-4981] fix: analytics modal portal (#7852) 2025-09-25 20:26:44 +05:30
Bavisetti Narayan
dc44268ac4 [WIKI-635] feat: page comments in teamspace (#4122) 2025-09-25 20:25:44 +05:30
Vamsi Krishna
2fabde97f2 [WEB-4982]fix: exclude archived projects/epics across list, detail, and analytics in Initiatives (#4291)
* fix: filter archived projects from initiatives

* chore: added counts to scope data cards
2025-09-25 20:24:04 +05:30
Anmol Singh Bhatia
290bf0db4e [WEB-4128] chore: epic description activity updated #4297 2025-09-25 20:23:43 +05:30
Anmol Singh Bhatia
c4a0fcf113 [WEB-5002] chore: teamspaces breadcrumbs improvements #4300 2025-09-25 20:23:17 +05:30
Vamsi Krishna
50e692fb19 [WEB-5001]fix: sub work item permissions (#4298)
* fix: sub work item permissions

* fix: edit permissions for sub work items list

* fix: udpated disabled prop names
2025-09-25 17:52:25 +05:30
Vamsi Krishna
19e00b0d4b [WEB-5001]fix: prop name for sub work permissions #7854 2025-09-25 17:51:13 +05:30
Vamsi Krishna
c951260fcf [WEB-5001]fix: work items loading in epics #4296 2025-09-25 16:19:24 +05:30
Akshita Goyal
a8686148b3 [PAI-780] fix: handled UI crash of PI on redirection #4293 2025-09-25 15:57:30 +05:30
Jayash Tripathy
5854553d3a [WEB-5008] feat: implement URL property activity message for work items #4292 2025-09-25 15:28:18 +05:30
Surya Prashanth
7bbfeb8328 [SILO-511] fix: migration sequence number for gitlab enterprise (#4294) 2025-09-25 15:16:21 +05:30
Henit Chobisa
4ce4a887ce [SILO-528] feat: added callout support for notion importer (#4186) 2025-09-25 13:49:43 +05:30
Henit Chobisa
9026f870ea [SILO-545] fix: sentry alert link broken using data_url instead of web url #4235 2025-09-25 13:22:44 +05:30
Henit Chobisa
7ebb8c7bf2 [SILO-532] feat: added support for importing teamspace and project pages in notion and confluence importer (#4253) 2025-09-25 13:22:17 +05:30
Saurabh Kumar
fd104a46aa [SILO-550] Github v1 UX improvements (#4259) 2025-09-25 13:21:43 +05:30
Saurabh Kumar
72944dd187 [SILO-511] Gitlab Enterprise Integration (#4264)
* strategy + controller + service and type changes

* enterprise support to store

* UI and store changes

* worker changes and entity type change

* fixes gitlab enterprise flow

* add translations

* remove logs

* fix formatting and feature flag

* fix type build issue

* fix formatting

* fix cursor reviews

* fix feature flag visibility + name for pull request id + cleaned supported integrations method
2025-09-25 13:21:16 +05:30
Saurabh Kumar
0bdc80d5c5 [SILO-516] Migration for Gitlab self hosted app #4218 2025-09-25 13:01:49 +05:30
Dheeraj Kumar Ketireddy
5387467aaf [WEB-4993] chore: added state field to Initiative model and dropped status field #4281 2025-09-24 19:10:16 +05:30
Anmol Singh Bhatia
395d5d68cc [WEB-4025] fix: external user comment and reaction (#4065) 2025-09-24 18:41:54 +05:30
Vamsi Krishna
1eb1eae582 [WEB-4992]chore: updated feature flags (#4278) 2025-09-24 18:40:45 +05:30