Skip to content

Commit

Permalink
release: 2024-08-02 (#1366)
Browse files Browse the repository at this point in the history
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **New Features**
- Updated several dependencies, including Sentry and Storybook, which
may introduce new features and improvements.
- **Bug Fixes**
- Upgraded packages likely address bugs and improve stability across the
application.
- **Performance Improvements**
- Dependency upgrades may enhance performance, with potential
optimizations in data handling and UI responsiveness.
- **Documentation**
- Updates to workflows for GitHub Actions may improve build and test
processes.
- **Chores**
- General maintenance of dependency versions to keep the project secure
and up-to-date.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
  • Loading branch information
kodiakhq[bot] authored Aug 2, 2024
2 parents 18632ff + b1b976d commit 95a29df
Show file tree
Hide file tree
Showing 13 changed files with 604 additions and 604 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

# 👇 Runs Chromatic CLI in ./packages/ui
- name: Publish to Chromatic
uses: chromaui/action@13180b77f984a874c7a7eca8b35027d6e613e8c2 # v11
uses: chromaui/action@fdbe7756d4dbf493e2fbb822df73be7accd07e1c # v11
with:
workingDir: packages/ui
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: 🏗 Initialize CodeQL
uses: github/codeql-action/init@5cf07d8b700b67e235fbb65cbc84f69c0cf10464 # v3
uses: github/codeql-action/init@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # v3
- name: 🚀 Perform CodeQL Analysis
uses: github/codeql-action/analyze@5cf07d8b700b67e235fbb65cbc84f69c0cf10464 # v3
uses: github/codeql-action/analyze@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # v3
2 changes: 1 addition & 1 deletion .github/workflows/njsscan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
with:
args: '. --sarif --output results.sarif || true'
- name: Upload njsscan report
uses: github/codeql-action/upload-sarif@5cf07d8b700b67e235fbb65cbc84f69c0cf10464 # v3
uses: github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # v3
with:
sarif_file: results.sarif
2 changes: 1 addition & 1 deletion .github/workflows/pr-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: PR Labels

on:
pull_request:
types: [opened, labeled, unlabeled, synchronize, reopened, edited, ready_for_review, review_requested]
types: [opened, labeled, unlabeled, synchronize, reopened, edited, ready_for_review]

jobs:
pr_labels:
Expand Down
10 changes: 5 additions & 5 deletions apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@
"@opentelemetry/sdk-trace-node": "1.25.1",
"@opentelemetry/semantic-conventions": "1.25.1",
"@prisma/instrumentation": "5.17.0",
"@sentry/browser": "8.20.0",
"@sentry/nextjs": "8.20.0",
"@sentry/node": "8.20.0",
"@sentry/opentelemetry": "8.20.0",
"@sentry/profiling-node": "8.20.0",
"@sentry/browser": "8.22.0",
"@sentry/nextjs": "8.22.0",
"@sentry/node": "8.22.0",
"@sentry/opentelemetry": "8.22.0",
"@sentry/profiling-node": "8.22.0",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-table": "8.19.3",
"@trpc/client": "10.45.2",
Expand Down
4 changes: 2 additions & 2 deletions apps/app/src/pages/org/[slug]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ export const getStaticPaths: GetStaticPaths = async () => {
paths: [],
fallback: true,
}
// }
}

export const getStaticProps: GetStaticProps<
Expand All @@ -261,13 +260,14 @@ export const getStaticProps: GetStaticProps<
redirect: {
permanent: true,
destination: `/org/${redirect.redirectTo}`,
revalidate: 60 * 60 * 24, // 1 day
},
}
}

const { id: orgId } = await ssg.organization.getIdFromSlug.fetch({ slug })
if (!orgId) {
return { notFound: true }
return { notFound: true, revalidate: 1 }
}

const [i18n] = await Promise.allSettled([
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"devDependencies": {
"@changesets/cli": "2.27.7",
"@turbo/gen": "2.0.9",
"@turbo/gen": "2.0.11",
"@types/lint-staged": "13.3.0",
"@types/node": "20.14.13",
"@types/yargs": "17.0.32",
Expand All @@ -57,8 +57,8 @@
"prettier-plugin-packagejson": "2.5.1",
"prettier-plugin-prisma": "5.0.0",
"sherif": "0.10.0",
"tsx": "4.16.2",
"turbo": "2.0.9",
"tsx": "4.16.5",
"turbo": "2.0.11",
"typescript": "5.5.4",
"typesync": "0.13.0",
"yargs": "17.7.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"dependencies": {
"@googlemaps/google-maps-services-js": "3.4.0",
"@opentelemetry/api": "1.9.0",
"@sentry/nextjs": "8.20.0",
"@sentry/nextjs": "8.22.0",
"@tanstack/react-query": "4.36.1",
"@terraformer/wkt": "2.2.1",
"@trpc/client": "10.45.2",
Expand Down Expand Up @@ -53,7 +53,7 @@
"zod": "3.23.8"
},
"devDependencies": {
"@turbo/gen": "2.0.9",
"@turbo/gen": "2.0.11",
"@types/eslint": "8.56.11",
"@types/google.maps": "3.55.12",
"@types/luxon": "3.4.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"@snaplet/copycat": "5.0.0",
"@snaplet/seed": "0.98.0",
"@terraformer/wkt": "2.2.1",
"@turbo/gen": "2.0.9",
"@turbo/gen": "2.0.11",
"@turf/helpers": "7.0.0",
"@types/eslint": "8.56.11",
"@types/inquirer": "9.0.7",
Expand All @@ -86,7 +86,7 @@
"eslint": "8.57.0",
"fast-xml-parser": "4.4.1",
"flat": "6.0.1",
"google-auth-library": "9.12.0",
"google-auth-library": "9.13.0",
"google-spreadsheet": "4.1.2",
"googleapis": "137.1.0",
"inquirer": "9.3.6",
Expand Down Expand Up @@ -115,7 +115,7 @@
"sql-bricks-postgres": "0.6.0",
"string-byte-length": "3.0.0",
"tiny-invariant": "1.3.3",
"tsx": "4.16.2",
"tsx": "4.16.5",
"type-fest": "4.23.0",
"typescript": "5.5.4",
"xliff": "6.2.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dependencies": {
"@t3-oss/env-nextjs": "0.9.2",
"@weareinreach/util": "workspace:*",
"chromatic": "11.5.6",
"chromatic": "11.7.0",
"zod": "3.23.8"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"eslint-plugin-node": "npm:eslint-plugin-n@16.6.2",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-turbo": "2.0.9",
"eslint-plugin-turbo": "2.0.11",
"next": "14.2.5",
"resolve-pkg-maps": "1.0.0",
"typescript": "5.5.4"
Expand Down
40 changes: 20 additions & 20 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,26 +89,26 @@
"@mantine/nprogress": "6.0.22",
"@mantine/utils": "6.0.22",
"@next/third-parties": "14.2.5",
"@storybook/addon-a11y": "8.2.6",
"@storybook/addon-actions": "8.2.6",
"@storybook/addon-a11y": "8.2.7",
"@storybook/addon-actions": "8.2.7",
"@storybook/addon-designs": "8.0.3",
"@storybook/addon-essentials": "8.2.6",
"@storybook/addon-interactions": "8.2.6",
"@storybook/addon-links": "8.2.6",
"@storybook/addon-mdx-gfm": "8.2.6",
"@storybook/addon-viewport": "8.2.6",
"@storybook/addon-essentials": "8.2.7",
"@storybook/addon-interactions": "8.2.7",
"@storybook/addon-links": "8.2.7",
"@storybook/addon-mdx-gfm": "8.2.7",
"@storybook/addon-viewport": "8.2.7",
"@storybook/addon-webpack5-compiler-swc": "1.0.5",
"@storybook/components": "8.2.6",
"@storybook/core-events": "8.2.6",
"@storybook/manager-api": "8.2.6",
"@storybook/nextjs": "8.2.6",
"@storybook/preview-api": "8.2.6",
"@storybook/react": "8.2.6",
"@storybook/test": "8.2.6",
"@storybook/components": "8.2.7",
"@storybook/core-events": "8.2.7",
"@storybook/manager-api": "8.2.7",
"@storybook/nextjs": "8.2.7",
"@storybook/preview-api": "8.2.7",
"@storybook/react": "8.2.7",
"@storybook/test": "8.2.7",
"@storybook/test-runner": "0.19.1",
"@storybook/theming": "8.2.6",
"@storybook/types": "8.2.6",
"@swc/core": "1.7.3",
"@storybook/theming": "8.2.7",
"@storybook/types": "8.2.7",
"@swc/core": "1.7.4",
"@swc/helpers": "0.5.12",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
Expand All @@ -129,7 +129,7 @@
"@weareinreach/config": "workspace:*",
"@weareinreach/eslint-config": "workspace:*",
"@welldone-software/why-did-you-render": "8.0.3",
"chromatic": "11.5.6",
"chromatic": "11.7.0",
"css-loader": "6.11.0",
"dayjs": "1.11.12",
"dotenv": "16.4.5",
Expand Down Expand Up @@ -163,12 +163,12 @@
"react-refresh-typescript": "2.0.9",
"resolve-url-loader": "5.0.0",
"slugify": "1.6.6",
"storybook": "8.2.6",
"storybook": "8.2.7",
"storybook-addon-pseudo-states": "3.1.1",
"style-loader": "3.3.4",
"swc-loader": "0.2.6",
"tsconfig-paths-webpack-plugin": "4.1.0",
"tsx": "4.16.2",
"tsx": "4.16.5",
"type-fest": "4.23.0",
"typescript": "5.5.4",
"webpack": "5.93.0",
Expand Down
Loading

1 comment on commit 95a29df

@vercel
Copy link

@vercel vercel bot commented on 95a29df Aug 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.