Merged
Conversation
user activity feed
…ure/task-activities-by-user
…ponent - Removed the Card wrapper around the TasksList for a cleaner layout. - Cleaned up whitespace in the home-page.tsx file for improved readability.
…and improved queries - Added optional fields for project color, task status, and status color in IUserRecentTask and IUserTimeLoggedTask interfaces. - Optimized SQL queries to include team filtering and additional data such as project color and task status. - Updated frontend components to support new data fields and improved styling for better user experience. - Enhanced dark mode detection and styling in task activity lists. - Implemented refetching of data on tab change in the user activity feed.
- Added context menu for task deletion with confirmation modal. - Integrated localization for delete task prompts in multiple languages. - Updated TaskCard to handle task deletion logic, including dispatching actions to update the state and emit socket events for task progress.
- Implemented a confirmation modal for deleting statuses in the Kanban board. - Integrated localized messages for delete status prompts in multiple languages, enhancing user experience. - Removed the previous portal-based confirmation approach in favor of Ant Design's Modal component for better consistency and usability.
…into test/kanban-order-v1.2.2
- Implemented a confirmation modal for deleting phases in the Kanban board. - Integrated localized messages for delete phase prompts in multiple languages, enhancing user experience. - Updated KanbanGroup component to utilize the new confirmation modal for phase deletions.
…ub.com/shancds/worklenz-open-source into test/kanban-order-v1.2.2
…ardNativeDnD - Added a utility function to recalculate task orders for all groups based on the specified grouping criteria (status, priority, phase). - Updated task drag-and-drop logic to handle reordering within the same group and across different groups. - Enhanced socket emissions to send full task order updates, including task details and indices, improving synchronization with the backend.
Test/kanban order v1.2.2
- Integrated phase reordering functionality within the EnhancedKanbanBoardNativeDnD component. - Added logic to fetch phases by project ID and update phase order through API calls. - Updated drag-and-drop handling to accommodate reordering of phases alongside existing status-based reordering.
- Added new localized messages for error handling, task management, and filter loading across multiple languages (Albanian, German, English, Spanish, Portuguese, Chinese). - Updated the EnhancedKanbanBoardNativeDnD component to utilize these localized messages for improved user experience during task operations and error notifications.
- Modified phase update logic to prevent setting phase_id for 'Unmapped' phases, ensuring only valid phases are processed. - Cleaned up unnecessary whitespace in the task reordering section for improved code clarity.
…ocket integration - Added functionality to handle task priority changes, emitting updates via socket for real-time synchronization. - Updated the EnhancedKanbanBoardNativeDnD component to include new logic for managing task priorities within the drag-and-drop interface. - Cleaned up console log statements in the useTaskSocketHandlers hook for improved performance monitoring.
Enhance EnhancedKanbanBoardNativeDnD to support phase reordering
- Added new components for an advanced Gantt chart, including AdvancedGanttChart, GanttGrid, DraggableTaskBar, and TimelineMarkers. - Implemented a demo page (GanttDemoPage) to showcase the functionality of the new Gantt chart components. - Enhanced project roadmap features with ProjectRoadmapGantt and related components for better project management visualization. - Introduced sample data for testing and demonstration purposes, improving the user experience in the Gantt chart interface. - Updated main routes to include the new Gantt demo page for easy access.
…lenz/worklenz into test/invitation-process
…into test/invitation-process
- Added new localization strings for "members" and "copy project link" in multiple languages (Albanian, German, English, Spanish, Portuguese, Chinese). - Updated the project member invite drawer to use a modal instead of a drawer for improved user experience. - Included a button in the modal footer for copying the project link, enhancing functionality for users.
- Changed button labels for inviting team members to "Send Invitation" across multiple languages (Albanian, German, English, Spanish, Portuguese, Chinese). - Updated the invite team members component to use a modal instead of a drawer for a better user experience. - Added a new button for copying the team link in the modal footer, enhancing functionality.
…I updates - Added new localization strings for "invite member" and "also invite to project" across multiple languages (Albanian, German, English, Spanish, Portuguese, Chinese). - Updated the project member invite drawer to conditionally display UI elements based on the context of the invitation (from assigner or not). - Introduced a new state management feature to track if the invitation is initiated from the assignee selector, improving user experience.
- Commented out the button for copying team and project links in the invite team members and project member invite drawer components, respectively, to streamline the UI. - Adjusted conditional rendering for the checkbox related to project invitations to improve code clarity and maintainability.
…lenz into test/invitation-process
…ization updates - Implemented search functionality for project members in the backend, allowing users to filter members by name or email. - Updated frontend components to include a search input for members, improving user experience. - Added localization strings for the search placeholder in multiple languages (Albanian, German, English, Spanish, Portuguese). - Refactored SQL queries for better performance and clarity in fetching project members.
…nd related components - Added timezone handling in the getMemberTimeSheets method to ensure accurate date calculations based on user timezone. - Created ReportingControllerBaseWithTimezone to centralize timezone-related logic for reporting. - Introduced a migration to add a timezone column to the users table for better user experience. - Updated frontend API services and hooks to include user's timezone in requests. - Enhanced members time reports page to display time logs in the user's local timezone.
- Updated SQL queries in reporting controllers to join with the timezones table for accurate timezone retrieval. - Refactored ReportingMembersController to extend ReportingControllerBaseWithTimezone for centralized timezone logic. - Removed obsolete migration file that added a timezone column to the users table, as it is no longer needed.
Origin release v2.1.4
…ategy - Added a new Passport strategy for mobile Google authentication. - Introduced `googleMobileAuthPassport` method in `AuthController` to handle authentication flow. - Updated routes to utilize the new Passport strategy for mobile sign-in. - Added `passport-custom` dependency for custom authentication strategy. - Updated `package.json` and `package-lock.json` to reflect new dependencies and version requirements.
- Introduced console logs in the `verify` and `googleMobileAuthPassport` methods to provide insights into session data, authentication status, and potential errors. - Enhanced debugging capabilities by logging session IDs, user information, and response details during the authentication flow. - This update aims to improve visibility and traceability of authentication events for better troubleshooting.
…cation - Improved session management by ensuring the session is saved before sending the response in the `AuthController`. - Added detailed logging for session save operations and included the session ID in the response for better debugging. - Updated session middleware configuration to enhance security and support mobile applications, including adjustments to cookie settings based on the production environment.
…in process - Enhanced session management by implementing session regeneration to prevent session fixation during login. - Added detailed logging for session regeneration, save operations, and response headers to aid in debugging. - Ensured the user is re-established in the new session and included session cookie details in the response for better traceability.
- Updated the session passport assignment to use a type assertion for better TypeScript compatibility. - This change ensures that the session object is correctly recognized, improving type safety in the authentication process.
- Improved session regeneration process to enhance security against session fixation attacks. - Added detailed logging for session regeneration errors and fallback mechanisms. - Introduced a new debug endpoint to provide insights into session data, cookies, and authentication status for easier troubleshooting. - Updated response structure to include session ID and cookie name for mobile app integration, ensuring proper session handling.
- Modified session management to allow the use of existing sessions for mobile applications, improving session continuity. - Added detailed logging for session ID usage, response headers, and session save operations to aid in debugging. - Updated session middleware to support header-based session IDs, ensuring proper handling when cookies are not available. - Included additional session information in the response for mobile app integration, facilitating better session management.
- Enhanced session middleware to create or replace session cookies based on header values, ensuring proper session management for mobile applications. - Added detailed logging for cookie headers and session ID usage to facilitate debugging and traceability. - Updated logic to maintain existing cookies while injecting the session cookie, improving compatibility with other cookies.
- Improved logging within the session middleware to provide detailed insights into session ID, cookie headers, and authentication status. - Added error handling for the session middleware to capture and log any issues during session processing. - Ensured proper construction of session cookies for mobile applications, maintaining compatibility with existing cookies.
…e handling - Introduced the `@types/cookie-signature` dependency to facilitate proper signing of session cookies. - Updated session middleware to create a securely signed cookie using the session secret, improving session management for mobile applications. - Enhanced logging for cookie creation and error handling to aid in debugging session issues.
- Replaced the `uid-safe` library with `crypto.randomBytes` for generating session IDs, improving security and randomness. - Updated session cookie construction to use template literals for better readability. - Standardized cookie header parsing to use consistent quotation marks, enhancing code clarity.
- Eliminated console logs from the `verify` and `googleMobileAuthPassport` methods to streamline the code and reduce noise in the logs. - Updated session middleware to enhance cookie handling for mobile applications, ensuring proper session management without excessive logging. - Improved session cookie configuration for production and development environments, maintaining compatibility with mobile app requirements.
- Added detailed debug logging to the session middleware for improved visibility into request processing, including URL, method, and header information. - Updated error handling to log session middleware errors and session ID status after processing. - Ensured compatibility with mobile applications by refining cookie handling based on header values.
- Updated session middleware to remove debug logging and streamline cookie handling for mobile applications. - Adjusted session cookie configuration to disable secure and domain settings for local development. - Removed the debug endpoint from the authentication routes to reduce noise in the codebase.
- Added `LicenseExpiredModal` component to notify users when their trial period has expired. - Introduced `TrialExpirationAlert` component to display alerts for upcoming trial expirations. - Updated localization files to include new strings for license expiration notifications across multiple languages. - Refactored routing to handle license expiration checks and display the modal instead of redirecting users. - Enhanced navbar with upgrade plan notifications based on remaining trial days, improving user awareness of subscription status.
feat(task-comments): enhance reactions structure in comment response.
…er experience - Added `SupportController` to handle user support requests via Teams webhook. - Created `support-api-router` for routing support-related API calls. - Introduced `supportApiService` for managing support request interactions. - Updated `LicenseExpiredModal` to include support contact options based on subscription type. - Enhanced localization files to support new strings for support notifications across multiple languages. - Improved `UpgradePlanButton` to provide contextual support options based on license status.
- Introduced `LanguageSelector` component for language switching functionality. - Added `MobileMenuButton` for a responsive mobile navigation experience. - Created CSS styles for mobile menu and switch team dropdowns to enhance UI. - Implemented `SwitchTeamButton` for team switching capabilities within the navbar. - Developed `UpgradePlanButton` to notify users about subscription status and upgrade options. - Refactored navbar imports for consistency and improved organization.
…obile-app Chore/added google login from mobile app
…cation settings - Refactored `deserialize_user` function to use Common Table Expressions (CTEs) for improved performance and maintainability. - Enhanced notification settings insertion to use `INSERT...ON CONFLICT` for better concurrency handling. - Updated localization files to include new strings for license expiration notifications across multiple languages. - Improved `TrialExpirationAlert` logic to account for grace periods after license expiration. - Adjusted `LicenseExpiredModal` and related components to reflect changes in license status handling.
…into release-v2.1.4
…g functionality - Added `AccountDeletionController` to handle user account deletion requests. - Created SQL migration for `user_deletion_logs` table to track deletion requests. - Implemented API routes for submitting and canceling account deletion requests. - Developed frontend components for account deletion confirmation and user notifications. - Enhanced localization files to support new strings related to account deletion across multiple languages.
- Changed navbar import paths from relative to absolute imports for better organization in `MainLayout.tsx` and `ReportingLayout.tsx` files.
…iles - Updated navbar import paths from relative to absolute imports in `MainLayout.tsx` and `ReportingLayout.tsx` for improved consistency and organization.
- Updated navbar import paths in `MainLayout.tsx` and `ReportingLayout.tsx` to use consistent casing for improved clarity and organization.
Release v2.1.4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.