Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: preview to master #3281

Merged
merged 51 commits into from
Dec 29, 2023
Merged

release: preview to master #3281

merged 51 commits into from
Dec 29, 2023

Commits on Dec 20, 2023

  1. Configuration menu
    Copy the full SHA
    216a7c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    47d6b15 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    40b8b0a View commit details
    Browse the repository at this point in the history
  4. fix: Resolved page not saving/not copying contents bug (#3203)

    This commit adds a duplicate_page function to the PageDetailsPage component, which allows users to duplicate a page. If the current page does not have a description_html value, it will be set to the default value from the pageDetails object. The formData object is updated with the necessary values for duplication, including the new page name and description. Additionally, the handleSubmit dependency is included in the useEffect hook to ensure proper form submission.
    Palanikannan1437 committed Dec 20, 2023
    Configuration menu
    Copy the full SHA
    e141091 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2023

  1. fix: posthog events trigger in staging (#3220)

    * fix: posthog events trigger in staging
    
    * refactor: cleared comment lines for warnings, added dependancy values
    
    * refactor: removed unnecessary dependency
    rameshkumarchandra committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    fe95193 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3227 from makeplane/develop

    fix: posthog events trigger in staging (#3220)
    sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    d4b6f4f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d76840f View commit details
    Browse the repository at this point in the history
  4. Merge pull request #3231 from makeplane/release-0.14.2

    fix: branch build custom docker repo with suffix (#3182)
    sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    111070b View commit details
    Browse the repository at this point in the history
  5. fix: branch build fix (#3214)

    * branch build fix for release-* in case of space,backend,proxy
    
    * fixes
    mguptahub authored and sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    6fab75f View commit details
    Browse the repository at this point in the history
  6. fix - file size limit not work on plane.settings.production (#3160)

    * fix - file size limit not work on plane.settings.production
    
    * fix - file size limit not work on plane.settings.production
    
    * fix - file size limit not work on plane.settings.production, move to common.py
    
    ---------
    
    Co-authored-by: luanduongtel4vn <hoangluan@tel4vn.com>
    Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
    3 people committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    9c65657 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5f68197 View commit details
    Browse the repository at this point in the history
  8. chore: bug fixes & improvement (#3218)

    * chore: draft issue validation added to prevent saving empty or whitespace title
    
    * chore: resolve scrolling issue in page empty state
    
    * chore: kanban layout quick add issue improvement
    anmolsinghbhatia authored and sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    0a41eff View commit details
    Browse the repository at this point in the history
  9. fix: bugs & improvements (#3189)

    * fix: workspace invitation modal form values reset
    
    * fix: profile sidebar avatar letter
    1akhanBaheti authored and sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    aceee7d View commit details
    Browse the repository at this point in the history
  10. [refactor] Editor code refactoring (#3194)

    * removed relative imports from editor core
    
    * Update issue widget file paths and imports to use kebab case instead of camel case, to align with coding conventions and improve consistency.
    
    * Update Tiptap core and extensions versions to 2.1.13 and Tiptap React version to 2.1.13. Update Tiptap table imports to use the new location in package @tiptap/pm/tables. Update AlertLabel component to use the new type definition for LucideIcon.
    
    * updated lock file
    
    * removed default exports from editor/core
    
    * fixed injecting css into the core package itself
    
    * seperated css code to have single source of origin wrt to the package
    
    * removed default imports from document editor
    
    * all instances using index as key while mapping fixed
    
    * Update Lite Text Editor package.json to remove @plane/editor-types as a dependency.
    
    Update Lite Text Editor index.ts to update the import of IMentionSuggestion and IMentionHighlight from @plane/editor-types to @plane/editor-core.
    
    Update Lite Text Editor ui/index.tsx to update the import of UploadImage, DeleteImage, IMentionSuggestion, and RestoreImage from @plane/editor-types to @plane/editor-core.
    
    Update Lite Text Editor ui/menus/fixed-menu/index.tsx to update the import of UploadImage from @plane/editor-types to @plane/editor-core.
    
    Update turbo.json to remove @plane/editor-types#build as a dependency for @plane/lite-text-editor#build, @plane/rich-text-editor#build, and @plane/document-editor#build.
    
    * Remove deprecated import and adjust tippy.js usage in the slash-commands.tsx file of the editor extensions package.
    
    * Update dependencies in `rich-text-editor/package.json`, remove `@plane/editor-types` and add `@plane/editor-core` in `rich-text-editor/src/index.ts`, and update imports in `rich-text-editor/src/ui/extensions/index.tsx` and `rich-text-editor/src/ui/index.tsx` to use `@plane/editor-core` instead of `@plane/editor-types`.
    
    * Update package.json dependencies and add new types for image deletion, upload, restore, mention highlight, mention suggestion, and slash command item.
    
    * Update import statements in various files to use the new package "@plane/editor-core" instead of "@plane/editor-types".
    
    * fixed document editor to follow conventions
    
    * Refactor imports in the Rich Text Editor package to use relative paths instead of absolute paths.
    
    - Updated imports in `index.ts`, `ui/index.tsx`, and `ui/menus/bubble-menu/index.tsx` to use relative paths.
    - Updated `tsconfig.json` to include the `baseUrl` compiler option and adjust the `include` and `exclude` paths.
    
    * Refactor Lite Text Editor code to use relative import paths instead of absolute import paths.
    
    * Added LucideIconType to the exports in index.ts for use in other files.
    Created a new file lucide-icon.ts which contains the type LucideIconType.
    Updated the icon type in HeadingOneItem in menu-items/index.tsx to use LucideIconType.
    Updated the Icon type in AlertLabel in alert-label.tsx to use LucideIconType.
    Updated the Icon type in VerticalDropdownItemProps in vertical-dropdown-menu.tsx to use LucideIconType.
    Updated the Icon type in BubbleMenuItem in fixed-menu/index.tsx to use LucideIconType.
    Deleted the file tooltip.tsx since it is no longer used.
    Updated the Icon type in BubbleMenuItem in bubble-menu/index.tsx to use LucideIconType.
    
    * ♻️ refactor: simplify rendering logic in slash-commands.tsx
    
    The rendering logic in the file "slash-commands.tsx" has been simplified. Previously, the code used inline positioning for the popup, but it has now been removed. Instead of appending the popup to the document body, it is now appended to the element with the ID "tiptap-container". The "flip" option has also been removed. These changes have improved the readability and maintainability of the code.
    
    * fixed build errors caused due to core's internal imports
    
    * regression: fixed pages not saving issue and not duplicating with proper content issue
    
    * build: Update @tiptap dependencies
    
    Updated the @tiptap dependencies in the package.json files of `document-editor`, `extensions`, and `rich-text-editor` packages to version 2.1.13.
    
    * 🚑 fix: Correct appendTo selector in slash-commands.tsx
    
    Update the `appendTo` function call in `slash-commands.tsx` to use the correct selector `#editor-container` instead of `#tiptap-container`. This ensures that the component is appended to the appropriate container in the editor extension.
    
    Note: The commit message assumes that the change is a fix for an issue or error. If it's not a fix, please provide more context so that an appropriate commit type can be determined.
    Palanikannan1437 authored and sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    0b1efb1 View commit details
    Browse the repository at this point in the history
  11. style: email placeholder changed across the platform (#3206)

    * style: email placeholder changed across the platform
    
    * fix: placeholder text
    1akhanBaheti authored and sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    6ecaa66 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    816b6ab View commit details
    Browse the repository at this point in the history
  13. [fix] Image insertion position at cursor position and Updated placeho…

    …lder text. (#3224)
    
    * Fix position bug in the UploadImagesPlugin widget decoration and adjust transaction to correctly insert image node and set meta data for image removal.
    
    * Update CSS styles in editor.css to remove margin top and bottom on images and img placeholders and adjust the margin on the table in the editor container.
    
    * Better typescript support for images extension.
    
    Update the `Command` extension in `slash-commands.tsx` to include a `SlashCommandOptions` type for better TS support and allow spaces in the suggestion options and modify the `image` suggestion's search terms to include "img" in addition to "photo", "picture", and "media".
    Palanikannan1437 authored and sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    0e3d152 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #3232 from makeplane/release-0.15

    fix: moving patch fixes from release 0.15 to 0.14.2
    sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    dc131ee View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    98b7a94 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    b652d1a View commit details
    Browse the repository at this point in the history
  17. Merge pull request #3233 from makeplane/fix/types-slash-command

    fix: Fixed types for slash commands by inspecting generics
    sriramveeraghanta committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    37d88cc View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2023

  1. Configuration menu
    Copy the full SHA
    542b18a View commit details
    Browse the repository at this point in the history
  2. style: create webhook page to modal (#3223)

    * style: create webhook page to modal
    
    * fix: create page removed
    
    * fix: auto modal close on empty state
    
    * fix: secret key heading removed from generated modal
    1akhanBaheti committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    e14baf1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #3249 from makeplane/develop

    promote: moving stable changes from develop to preview
    sriramveeraghanta committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    ad20079 View commit details
    Browse the repository at this point in the history
  4. 🔧 fix: Pages mutation on component mount (#3230)

    * 🔧 chore: Update revalidate option and add useEffect hook in PageDetailsPage component
    
    - Set the `revalidate` option to `false` in the `commonSwrOptions` object.
    - Add an `useEffect` hook that calls the `mutatePageDetails` function with specific options.
    - Inside the `useEffect` hook, set `revalidate` to `true`, `populateCache` to `true`, and define a rollback function for error handling.
    - If an error occurs during the rollback, display an error alert message using the `actionCompleteAlert` function.
    - In the `updatePage` function, ensure that `workspaceSlug`, `projectId`, and `pageId` are all defined before proceeding.
    
    * ♻️ refactor: Update code styling for inline code in CoreEditorExtensions
    
    In the `packages/editor/core/src/ui/extensions/index.tsx` file, the code for inline code styling in the CoreEditorExtensions component has been updated. Previously, it was set to `false`, but now it is defined as an object with specific HTML attributes. The code styling includes a rounded-md background, custom primary color, margin, padding, font styling, and disabling spellcheck. This change improves the visual appearance and readability of inline code elements in the editor.
    Palanikannan1437 committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    0a617ee View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1e27c79 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    eabb31a View commit details
    Browse the repository at this point in the history
  7. fix: adding token to the build pr workflow (#3254)

    * fix: adding token to the build pr workflow
    
    * fix: using automatic github token
    sriramveeraghanta committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    37fe9a1 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #3256 from makeplane/develop

    promote: develop to preview
    sriramveeraghanta committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    9a32d72 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    440cfc0 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #3258 from makeplane/develop

    fix: adding access token to build Pr (#3257)
    sriramveeraghanta committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    ad2471c View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2023

  1. chore: cycle & module sidebar improvement (#3251)

    * chore: no lead option added in module lead select dropdown
    
    * chore: module lead select dropdown code refactor
    
    * chore: cycle sidebar improvement
    
    * chore: module sidebar improvement
    
    * style: cycle and module sidebar improvement
    
    * style: app sidebar improvement
    anmolsinghbhatia committed Dec 27, 2023
    Configuration menu
    Copy the full SHA
    05eb728 View commit details
    Browse the repository at this point in the history
  2. fix: external api serializer (#3259)

    * fix: passed workspace id and project id as context
    
    * fix: issue activity
    NarayanBavisetti committed Dec 27, 2023
    Configuration menu
    Copy the full SHA
    b282436 View commit details
    Browse the repository at this point in the history
  3. chore: estimates and issue parent id fixes (#3188)

    * chore: validations and bug fixes
    
    * chore: estimate point character limit validation
    
    ---------
    
    Co-authored-by: LAKHAN BAHETI <lakhanbaheti9@gmail.com>
    NarayanBavisetti and 1akhanBaheti committed Dec 27, 2023
    Configuration menu
    Copy the full SHA
    78428fb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ff8008c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5496492 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    10bdcc9 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2023

  1. Configuration menu
    Copy the full SHA
    d9bd43f View commit details
    Browse the repository at this point in the history
  2. fix: replacing onclick redirections with link tag. (#3263)

    * fix: adding links to dashboard summary items
    
    * fix: adding links to workspace sidebar dropdown
    
    * fix: adding links to the sidebar
    sriramveeraghanta committed Dec 28, 2023
    Configuration menu
    Copy the full SHA
    685e62a View commit details
    Browse the repository at this point in the history
  3. Style/UI improvements (#3269)

    * style: update `Workspace Issues` -> `All Issues` header.
    
    * style: fix issue activity text overflow issue.
    prateekshourya29 committed Dec 28, 2023
    Configuration menu
    Copy the full SHA
    71bf049 View commit details
    Browse the repository at this point in the history
  4. fix: onboarding redirection loop and bug fixes (#3250)

    * chore: try and catch added in handleSignInRedirection
    
    * chore: remove unnecessary hooks
    
    * fix: handleCopyIssueLink url updated
    
    * chore: swap next_url with next_path and validate redirection logic for next_path url
    anmolsinghbhatia committed Dec 28, 2023
    Configuration menu
    Copy the full SHA
    91e84ae View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    62b9b25 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2023

  1. Configuration menu
    Copy the full SHA
    1d5a3a0 View commit details
    Browse the repository at this point in the history
  2. chore: cycle current status (#3270)

    * dev: cycle status
    
    * chore: cycle status logic updated
    
    ---------
    
    Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
    NarayanBavisetti and anmolsinghbhatia committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    10ab081 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a77ceb6 View commit details
    Browse the repository at this point in the history
  4. feat: add external id and external source field to issue, cycle, modu…

    …le, label, comment, state and inbox issues (#3277)
    pablohashescobar committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    e584259 View commit details
    Browse the repository at this point in the history
  5. Chore/user role validation (#3260)

    * chore: remove `Save View` option for guest/ viewer from project issues header.
    
    * chore: allow guest/ viewer to clear applied filters in project issues.
    
    * chore: disable `date`, `label` property access for guests/ viewer in all project issue views.
    
    * chore: update `Workspace Issues` -> `All Issues` header.
    
    * chore: refactor apply/ clear filter implementation in All Issues.
    
    * Revert "chore: refactor apply/ clear filter implementation in All Issues."
    
    This reverts commit 024822d.
    
    * Revert "chore: allow guest/ viewer to clear applied filters in project issues."
    
    This reverts commit 3dae871.
    
    * Revert "chore: update `Workspace Issues` -> `All Issues` header."
    
    This reverts commit 03f90be.
    
    * chore: remove `cursor-pointer` style from non actionable issue properties.
    prateekshourya29 committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    f132fe5 View commit details
    Browse the repository at this point in the history
  6. fix websocket connection issue in docker #3195 (#3196)

    * fix websocket connection issue in docker #3195
    
    * fix websocket connection issue for local env with removing from the prod nginx conf template #319
    abidkhan484 committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    f200acc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5de94c5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    23001d4 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #3280 from makeplane/develop

    promote: develop changes to preview
    sriramveeraghanta committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    33d88f5 View commit details
    Browse the repository at this point in the history