chore: bump version to 24.10.0

This commit is contained in:
Andrew Bastin
2024-10-29 17:25:37 +05:30
parent 75bac21b46
commit 108315d1b4
12 changed files with 17 additions and 19 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "hoppscotch-backend", "name": "hoppscotch-backend",
"version": "2024.9.3", "version": "2024.10.0",
"description": "", "description": "",
"author": "", "author": "",
"private": true, "private": true,

View File

@@ -1,7 +1,7 @@
{ {
"name": "@hoppscotch/common", "name": "@hoppscotch/common",
"private": true, "private": true,
"version": "2024.9.3", "version": "2024.10.0",
"scripts": { "scripts": {
"dev": "pnpm exec npm-run-all -p -l dev:*", "dev": "pnpm exec npm-run-all -p -l dev:*",
"test": "vitest --run", "test": "vitest --run",

View File

@@ -80,11 +80,10 @@ const props = defineProps<{
active: boolean active: boolean
}>() }>()
const formattedShortcutKeys = computed( const formattedShortcutKeys = computed(() =>
() => props.entry.meta?.keyboardShortcut?.map(
props.entry.meta?.keyboardShortcut?.map( (key) => SPECIAL_KEY_CHARS[key] ?? capitalize(key)
(key) => SPECIAL_KEY_CHARS[key] ?? capitalize(key) )
)
) )
const emit = defineEmits<{ const emit = defineEmits<{

View File

@@ -375,7 +375,7 @@ export function useCodemirror(
language.of( language.of(
getEditorLanguage( getEditorLanguage(
options.extendedEditorConfig.useLang options.extendedEditorConfig.useLang
? (options.extendedEditorConfig.mode as any) ?? "" ? ((options.extendedEditorConfig.mode as any) ?? "")
: "", : "",
options.linter ?? undefined, options.linter ?? undefined,
options.completer ?? undefined options.completer ?? undefined
@@ -486,7 +486,7 @@ export function useCodemirror(
effects: language.reconfigure( effects: language.reconfigure(
getEditorLanguage( getEditorLanguage(
options.extendedEditorConfig.useLang options.extendedEditorConfig.useLang
? (options.extendedEditorConfig.mode as any) ?? "" ? ((options.extendedEditorConfig.mode as any) ?? "")
: "", : "",
options.linter ?? undefined, options.linter ?? undefined,
options.completer ?? undefined options.completer ?? undefined

View File

@@ -23,9 +23,8 @@ import { replaceInsomniaTemplating } from "./insomniaEnv"
// TODO: Insomnia allows custom prefixes for Bearer token auth, Hoppscotch doesn't. We just ignore the prefix for now // TODO: Insomnia allows custom prefixes for Bearer token auth, Hoppscotch doesn't. We just ignore the prefix for now
type UnwrapPromise<T extends Promise<any>> = T extends Promise<infer Y> type UnwrapPromise<T extends Promise<any>> =
? Y T extends Promise<infer Y> ? Y : never
: never
type InsomniaDoc = UnwrapPromise<ReturnType<typeof convert>> type InsomniaDoc = UnwrapPromise<ReturnType<typeof convert>>
type InsomniaResource = ImportRequest type InsomniaResource = ImportRequest

View File

@@ -177,7 +177,7 @@ export const getComputedAuthHeaders = async (
false, false,
showKeyIfSecret showKeyIfSecret
) )
: request.auth.value ?? "", : (request.auth.value ?? ""),
description: "", description: "",
}) })
} }

View File

@@ -1,7 +1,7 @@
{ {
"name": "@hoppscotch/selfhost-desktop", "name": "@hoppscotch/selfhost-desktop",
"private": true, "private": true,
"version": "2024.9.3", "version": "2024.10.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev:vite": "vite", "dev:vite": "vite",

View File

@@ -1417,7 +1417,7 @@ dependencies = [
[[package]] [[package]]
name = "hoppscotch-desktop" name = "hoppscotch-desktop"
version = "24.9.3" version = "24.10.0"
dependencies = [ dependencies = [
"cocoa 0.25.0", "cocoa 0.25.0",
"dashmap", "dashmap",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "hoppscotch-desktop" name = "hoppscotch-desktop"
version = "24.9.3" version = "24.10.0"
description = "A Tauri App" description = "A Tauri App"
authors = ["you"] authors = ["you"]
license = "" license = ""

View File

@@ -8,7 +8,7 @@
}, },
"package": { "package": {
"productName": "Hoppscotch", "productName": "Hoppscotch",
"version": "24.9.3" "version": "24.10.0"
}, },
"tauri": { "tauri": {
"allowlist": { "allowlist": {

View File

@@ -1,7 +1,7 @@
{ {
"name": "@hoppscotch/selfhost-web", "name": "@hoppscotch/selfhost-web",
"private": true, "private": true,
"version": "2024.9.3", "version": "2024.10.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev:vite": "vite", "dev:vite": "vite",

View File

@@ -1,7 +1,7 @@
{ {
"name": "hoppscotch-sh-admin", "name": "hoppscotch-sh-admin",
"private": true, "private": true,
"version": "2024.9.3", "version": "2024.10.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "pnpm exec npm-run-all -p -l dev:*", "dev": "pnpm exec npm-run-all -p -l dev:*",