Commit graph

1875 commits

Author SHA1 Message Date
dependabot[bot]
4846276d0c
Bump @next/mdx from 15.1.1 to 15.1.2
Bumps [@next/mdx](https://github.com/vercel/next.js/tree/HEAD/packages/next-mdx) from 15.1.1 to 15.1.2.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.2/packages/next-mdx)

---
updated-dependencies:
- dependency-name: "@next/mdx"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-20 01:04:23 +00:00
Ahmad
e8760611b8
Merge pull request #860 from ahmadk953/dependabot/npm_and_yarn/eslint-config-next-15.1.2
Bump eslint-config-next from 15.1.0 to 15.1.2
2024-12-19 20:02:45 -05:00
Ahmad
cd60e6fd24
Merge pull request #861 from ahmadk953/dependabot/npm_and_yarn/next/bundle-analyzer-15.1.2
Bump @next/bundle-analyzer from 15.1.1 to 15.1.2
2024-12-19 20:02:36 -05:00
dependabot[bot]
7f12188cce
Bump @next/bundle-analyzer from 15.1.1 to 15.1.2
Bumps [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) from 15.1.1 to 15.1.2.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.2/packages/next-bundle-analyzer)

---
updated-dependencies:
- dependency-name: "@next/bundle-analyzer"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-20 01:00:44 +00:00
dependabot[bot]
ce68235520
Bump eslint-config-next from 15.1.0 to 15.1.2
Bumps [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) from 15.1.0 to 15.1.2.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.2/packages/eslint-config-next)

---
updated-dependencies:
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-20 01:00:37 +00:00
Ahmad
260813896b
Merge pull request #859 from ahmadk953/dependabot/npm_and_yarn/next-15.1.2
Bump next from 15.1.1 to 15.1.2
2024-12-19 19:59:15 -05:00
Ahmad
6b5ac7013f
Merge pull request #862 from ahmadk953/dependabot/npm_and_yarn/next/eslint-plugin-next-15.1.2
Bump @next/eslint-plugin-next from 15.1.1 to 15.1.2
2024-12-19 19:58:53 -05:00
dependabot[bot]
73b86e8018
Bump @next/eslint-plugin-next from 15.1.1 to 15.1.2
Bumps [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) from 15.1.1 to 15.1.2.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.2/packages/eslint-plugin-next)

---
updated-dependencies:
- dependency-name: "@next/eslint-plugin-next"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-19 17:25:33 +00:00
dependabot[bot]
e3a3119d44
Bump next from 15.1.1 to 15.1.2
Bumps [next](https://github.com/vercel/next.js) from 15.1.1 to 15.1.2.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v15.1.1...v15.1.2)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-19 17:24:07 +00:00
Ahmad
f64ec56481
Merge pull request #857 from ahmadk953/ai_generated-performance-enhancements
Optimize performance and reduce bundle sizes
2024-12-18 21:45:09 -05:00
Ahmad
e006da673e
Fixed Compile Issues 2024-12-18 21:39:25 -05:00
Ahmad
7578b189ef Optimize performance and reduce bundle sizes
## AI Generated code and Descriptions
Improve website performance and efficiency by reducing bundle sizes and implementing caching strategies.

* **next.config.ts**: Add `compression` middleware to enable gzip compression for responses.
* **Lazy Loading**: Implement lazy loading for images in `app/(platform)/(dashboard)/board/[boardId]/_components/board-update-image.tsx` using the `loading="lazy"` attribute. Add `react-lazyload` library for lazy loading components in `app/(platform)/(dashboard)/board/[boardId]/_components/list-item.tsx` and wrap list items with `LazyLoad` component.
* **Database Query Optimization**: Optimize database queries in `actions/copy-card/index.ts`, `actions/copy-list/index.ts`, `actions/create-board/index.ts`, `actions/create-card/index.ts`, `actions/create-list/index.ts`, `actions/delete-board/index.ts`, `actions/delete-card/index.ts`, `actions/delete-list/index.ts`, `actions/stripe-redirect/index.ts`, `actions/update-board/index.ts`, `actions/update-card-order/index.ts`, `actions/update-card/index.ts`, and `actions/update-list/index.ts` by adding appropriate indexes and using `select` to fetch only required fields.
* **Dependencies**: Update `package.json` to include `compression` and `react-lazyload` dependencies.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/ahmadk953/tasko?shareId=XXXX-XXXX-XXXX-XXXX).
2024-12-18 21:06:08 -05:00
Ahmad
0abdc50358
Merge pull request #853 from ahmadk953/dependabot/npm_and_yarn/next/bundle-analyzer-15.1.1
Bump @next/bundle-analyzer from 15.1.0 to 15.1.1
2024-12-18 17:06:41 -05:00
dependabot[bot]
51e5d0ae17
Bump @next/bundle-analyzer from 15.1.0 to 15.1.1
Bumps [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) from 15.1.0 to 15.1.1.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.1/packages/next-bundle-analyzer)

---
updated-dependencies:
- dependency-name: "@next/bundle-analyzer"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-18 21:42:36 +00:00
Ahmad
5d552f16a8
Merge pull request #852 from ahmadk953/dependabot/npm_and_yarn/radix-ui/react-avatar-1.1.2
Bump @radix-ui/react-avatar from 1.1.1 to 1.1.2
2024-12-18 16:41:10 -05:00
Ahmad
cfdeb002d8
Merge pull request #855 from ahmadk953/dependabot/npm_and_yarn/next/eslint-plugin-next-15.1.1
Bump @next/eslint-plugin-next from 15.1.0 to 15.1.1
2024-12-18 16:40:55 -05:00
Ahmad
c2a2890fa2
Merge pull request #856 from ahmadk953/dependabot/npm_and_yarn/react-day-picker-9.4.4
Bump react-day-picker from 9.4.1 to 9.4.4
2024-12-18 16:40:46 -05:00
Ahmad
a720685b47
Merge pull request #854 from ahmadk953/dependabot/npm_and_yarn/typescript-eslint/parser-8.18.1
Bump @typescript-eslint/parser from 8.18.0 to 8.18.1
2024-12-18 16:40:38 -05:00
dependabot[bot]
2fe87c7436
Bump react-day-picker from 9.4.1 to 9.4.4
Bumps [react-day-picker](https://github.com/gpbl/react-day-picker) from 9.4.1 to 9.4.4.
- [Release notes](https://github.com/gpbl/react-day-picker/releases)
- [Changelog](https://github.com/gpbl/react-day-picker/blob/main/CHANGELOG.md)
- [Commits](https://github.com/gpbl/react-day-picker/compare/v9.4.1...v9.4.4)

---
updated-dependencies:
- dependency-name: react-day-picker
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-18 17:17:27 +00:00
dependabot[bot]
2a4c6ace16
Bump @next/eslint-plugin-next from 15.1.0 to 15.1.1
Bumps [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) from 15.1.0 to 15.1.1.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.1/packages/eslint-plugin-next)

---
updated-dependencies:
- dependency-name: "@next/eslint-plugin-next"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-18 17:17:10 +00:00
dependabot[bot]
4ac5841e85
Bump @typescript-eslint/parser from 8.18.0 to 8.18.1
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.18.0 to 8.18.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.18.1/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-18 17:16:50 +00:00
dependabot[bot]
4ed49f31b7
Bump @radix-ui/react-avatar from 1.1.1 to 1.1.2
Bumps [@radix-ui/react-avatar](https://github.com/radix-ui/primitives) from 1.1.1 to 1.1.2.
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

---
updated-dependencies:
- dependency-name: "@radix-ui/react-avatar"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-18 17:16:09 +00:00
Ahmad
33c3a90132
Merge pull request #847 from ahmadk953/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-8.18.1
Bump @typescript-eslint/eslint-plugin from 8.18.0 to 8.18.1
2024-12-17 20:25:29 -05:00
Ahmad
d593bf32ac
Merge pull request #848 from ahmadk953/dependabot/npm_and_yarn/radix-ui/react-tooltip-1.1.6
Bump @radix-ui/react-tooltip from 1.1.4 to 1.1.6
2024-12-17 20:25:20 -05:00
Ahmad
1f2213ae71
Merge pull request #849 from ahmadk953/dependabot/npm_and_yarn/sentry/nextjs-8.46.0
Bump @sentry/nextjs from 8.45.1 to 8.46.0
2024-12-17 20:25:12 -05:00
Ahmad
c27d0927cc
Merge pull request #850 from ahmadk953/dependabot/npm_and_yarn/babel-plugin-react-compiler-19.0.0-beta-201e55d-20241215
Bump babel-plugin-react-compiler from 19.0.0-beta-df7b47d-20241124 to 19.0.0-beta-201e55d-20241215
2024-12-17 20:25:03 -05:00
Ahmad
beac60f5e6
Merge pull request #851 from ahmadk953/dependabot/npm_and_yarn/tanstack/react-query-5.62.8
Bump @tanstack/react-query from 5.62.7 to 5.62.8
2024-12-17 20:24:47 -05:00
dependabot[bot]
601fe23290
Bump @tanstack/react-query from 5.62.7 to 5.62.8
Bumps [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) from 5.62.7 to 5.62.8.
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.62.8/packages/react-query)

---
updated-dependencies:
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-17 17:32:29 +00:00
dependabot[bot]
9b3ed8f27d
Bump babel-plugin-react-compiler
Bumps [babel-plugin-react-compiler](https://github.com/facebook/react/tree/HEAD/compiler/packages/babel-plugin-react-compiler) from 19.0.0-beta-df7b47d-20241124 to 19.0.0-beta-201e55d-20241215.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/compiler/packages/babel-plugin-react-compiler)

---
updated-dependencies:
- dependency-name: babel-plugin-react-compiler
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-17 17:32:12 +00:00
dependabot[bot]
edf055422f
Bump @sentry/nextjs from 8.45.1 to 8.46.0
Bumps [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) from 8.45.1 to 8.46.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.46.0/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-javascript/compare/8.45.1...8.46.0)

---
updated-dependencies:
- dependency-name: "@sentry/nextjs"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-17 17:31:55 +00:00
dependabot[bot]
81e7112e3b
Bump @radix-ui/react-tooltip from 1.1.4 to 1.1.6
Bumps [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives) from 1.1.4 to 1.1.6.
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

---
updated-dependencies:
- dependency-name: "@radix-ui/react-tooltip"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-17 17:31:34 +00:00
dependabot[bot]
501b78de01
Bump @typescript-eslint/eslint-plugin from 8.18.0 to 8.18.1
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 8.18.0 to 8.18.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.18.1/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-17 17:31:18 +00:00
Ahmad
589976eda6
Update page.tsx
Signed-off-by: Ahmad <103906421+ahmadk953@users.noreply.github.com>
2024-12-16 18:55:07 -05:00
Ahmad
8105c15849
Merge pull request #842 from ahmadk953/dependabot/npm_and_yarn/eslint-plugin-react-compiler-19.0.0-beta-201e55d-20241215
Bump eslint-plugin-react-compiler from 19.0.0-beta-df7b47d-20241124 to 19.0.0-beta-201e55d-20241215
2024-12-16 18:52:27 -05:00
Ahmad
606e604de6
Merge pull request #843 from ahmadk953/dependabot/npm_and_yarn/next/eslint-plugin-next-15.1.0
Bump @next/eslint-plugin-next from 15.0.4 to 15.1.0
2024-12-16 18:52:15 -05:00
Ahmad
987fd89ec0
Merge pull request #844 from ahmadk953/dependabot/npm_and_yarn/radix-ui/react-popover-1.1.3
Bump @radix-ui/react-popover from 1.1.2 to 1.1.3
2024-12-16 18:52:08 -05:00
Ahmad
e93bdd1b80
Merge pull request #845 from ahmadk953/dependabot/npm_and_yarn/sentry/nextjs-8.45.1
Bump @sentry/nextjs from 8.45.0 to 8.45.1
2024-12-16 18:51:59 -05:00
Ahmad
e03b672bdb
Merge pull request #846 from ahmadk953/dependabot/npm_and_yarn/radix-ui/react-accordion-1.2.2
Bump @radix-ui/react-accordion from 1.2.1 to 1.2.2
2024-12-16 18:51:50 -05:00
dependabot[bot]
4e7c2bc7e0
Bump @radix-ui/react-accordion from 1.2.1 to 1.2.2
Bumps [@radix-ui/react-accordion](https://github.com/radix-ui/primitives) from 1.2.1 to 1.2.2.
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

---
updated-dependencies:
- dependency-name: "@radix-ui/react-accordion"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-16 17:52:11 +00:00
dependabot[bot]
07e11f51b7
Bump @sentry/nextjs from 8.45.0 to 8.45.1
Bumps [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) from 8.45.0 to 8.45.1.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.45.1/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-javascript/compare/8.45.0...8.45.1)

---
updated-dependencies:
- dependency-name: "@sentry/nextjs"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-16 17:51:53 +00:00
dependabot[bot]
57f52f4c25
Bump @radix-ui/react-popover from 1.1.2 to 1.1.3
Bumps [@radix-ui/react-popover](https://github.com/radix-ui/primitives) from 1.1.2 to 1.1.3.
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

---
updated-dependencies:
- dependency-name: "@radix-ui/react-popover"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-16 17:51:32 +00:00
dependabot[bot]
f0b965b8d8
Bump @next/eslint-plugin-next from 15.0.4 to 15.1.0
Bumps [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) from 15.0.4 to 15.1.0.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.0/packages/eslint-plugin-next)

---
updated-dependencies:
- dependency-name: "@next/eslint-plugin-next"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-16 17:51:15 +00:00
dependabot[bot]
77424943ea
Bump eslint-plugin-react-compiler
Bumps [eslint-plugin-react-compiler](https://github.com/facebook/react/tree/HEAD/compiler/packages/eslint-plugin-react-compiler) from 19.0.0-beta-df7b47d-20241124 to 19.0.0-beta-201e55d-20241215.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/compiler/packages/eslint-plugin-react-compiler)

---
updated-dependencies:
- dependency-name: eslint-plugin-react-compiler
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-16 17:50:54 +00:00
Ahmad
467268ff95
Added Home Page Caching 2024-12-15 17:04:39 -05:00
Ahmad
9147e4f7c1
Merge pull request #841 from ahmadk953/dependabot/npm_and_yarn/radix-ui/react-dialog-1.1.3 2024-12-13 22:07:10 -05:00
Ahmad
07e866911b
Merge pull request #835 from ahmadk953/dependabot/npm_and_yarn/next-15.1.0 2024-12-13 22:06:47 -05:00
Ahmad
4cd1a9c28f
Merge pull request #840 from ahmadk953/dependabot/npm_and_yarn/zod-3.24.1 2024-12-13 22:06:27 -05:00
Ahmad
08c7a502b1
Merge pull request #839 from ahmadk953/dependabot/npm_and_yarn/next/bundle-analyzer-15.1.0 2024-12-13 22:06:14 -05:00
Ahmad
bb911715c7
Merge pull request #838 from ahmadk953/dependabot/npm_and_yarn/sentry/nextjs-8.45.0 2024-12-13 22:06:01 -05:00
dependabot[bot]
b2e74a29cf
Bump @radix-ui/react-dialog from 1.1.2 to 1.1.3
Bumps [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) from 1.1.2 to 1.1.3.
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

---
updated-dependencies:
- dependency-name: "@radix-ui/react-dialog"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-12-13 17:22:21 +00:00