diff --git a/apps/cms/package.json b/apps/cms/package.json index b4d5728204fef..d314edd3c2066 100644 --- a/apps/cms/package.json +++ b/apps/cms/package.json @@ -56,7 +56,7 @@ "sharp": "0.32.6", "tailwind-merge": "^1.13.2", "tsx": "^4.19.3", - "typescript": "~5.5.0" + "typescript": "catalog:" }, "externals": { "sharp": "commonjs sharp" diff --git a/apps/design-system/package.json b/apps/design-system/package.json index e23cbf1e4affc..cd51dbaaf6bc1 100644 --- a/apps/design-system/package.json +++ b/apps/design-system/package.json @@ -60,7 +60,7 @@ "tailwindcss": "catalog:", "tsconfig": "workspace:*", "tsx": "^4.19.3", - "typescript": "~5.5.0", + "typescript": "catalog:", "unist-builder": "3.0.0" } } diff --git a/apps/docs/app/api/crawlers/route.ts b/apps/docs/app/api/crawlers/route.ts index a6df01a9c3ab1..b1f9806699d79 100644 --- a/apps/docs/app/api/crawlers/route.ts +++ b/apps/docs/app/api/crawlers/route.ts @@ -75,7 +75,7 @@ function htmlShell( body: string ) { const libraryName = REFERENCES[lib].name - let title = libraryName + ': ' + section.title ?? '' + let title = libraryName + ': ' + (section.title ?? '') return ( '' + @@ -106,7 +106,7 @@ function libraryNav(sections: Array) { async function sectionDetails(lib: string, version: string, section: AbbrevApiReferenceSection) { const libraryName = REFERENCES[lib].name - let result = '

' + (libraryName + ': ' + section.title ?? '') + '

' + let result = '

' + (libraryName + ': ' + (section.title ?? '')) + '

' if (section.type === 'markdown') { result += await markdown(lib, version, section) diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenuCliList.tsx b/apps/docs/components/Navigation/NavigationMenu/NavigationMenuCliList.tsx index 50bcae9a64fae..99eb6d28ec9ae 100644 --- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenuCliList.tsx +++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenuCliList.tsx @@ -1,9 +1,9 @@ import Link from 'next/link' +import { ChevronLeft } from 'lucide-react' import { BASE_PATH } from '~/lib/constants' import clientLibsCommon from '~/spec/common-cli.yml' with { type: 'yml' } import * as NavItems from './NavigationMenu.constants' -import { ChevronLeft } from 'lucide-react' const NavigationMenuCliList = ({ currentLevel, setLevel, id }) => { const menu = NavItems[id] @@ -111,7 +111,7 @@ const NavigationMenuCliList = ({ currentLevel, setLevel, id }) => {
diff --git a/apps/docs/package.json b/apps/docs/package.json index 2c8ba89d957ae..02133c145f0a2 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -160,7 +160,7 @@ "tsconfig": "workspace:*", "tsx": "^4.19.3", "twoslash": "^0.3.1", - "typescript": "~5.5.0", + "typescript": "catalog:", "unist-util-visit-parents": "5.1.3", "vite": "catalog:", "vite-tsconfig-paths": "^4.3.2", diff --git a/apps/docs/spec/cli_v1_commands.yaml b/apps/docs/spec/cli_v1_commands.yaml index 52bb0f6876170..502a47a585d0f 100644 --- a/apps/docs/spec/cli_v1_commands.yaml +++ b/apps/docs/spec/cli_v1_commands.yaml @@ -1,7 +1,7 @@ clispec: '001' info: id: cli - version: 2.40.7 + version: 2.45.5 title: Supabase CLI language: sh source: https://github.com/supabase/cli @@ -78,7 +78,7 @@ flags: name: --workdir description: path to a Supabase project directory default_value: '' - - id: 'yes' + - id: "yes" name: --yes description: answer yes to all prompts default_value: 'false' @@ -2253,6 +2253,7 @@ commands: - local-dev links: [] subcommands: + - supabase-gen-bearer-jwt - supabase-gen-signing-key - supabase-gen-types flags: [] @@ -2346,6 +2347,31 @@ commands: name: --append description: Append new key to existing keys file instead of overwriting. default_value: 'false' + - id: supabase-gen-bearer-jwt + title: supabase gen bearer-jwt + summary: Generate a Bearer Auth JWT for accessing Data API + tags: [] + links: [] + usage: supabase gen bearer-jwt [flags] + subcommands: [] + flags: + - id: exp + name: --exp