Skip to content

Commit

Permalink
Merge pull request #1987 from undb-io/release/v1.0.0-56
Browse files Browse the repository at this point in the history
Release version v1.0.0-56
  • Loading branch information
nichenqin authored Sep 3, 2024
2 parents 9889a98 + 3143b27 commit 078a977
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog


## v1.0.0-56


### 🏡 Chore

- Add some links ([2a2beb3](https://github.com/undb-io/undb/commit/2a2beb3))

### ❤️ Contributors

- Nichenqin ([@nichenqin](http://github.com/nichenqin))

## v1.0.0-55


Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,23 @@ UNDB is a no-code platform that can also serve as a Backend as a Service (BaaS).
<a href="https://app.undb.io/s/v/shrd0q2m4dyijmh">Roadmap</a>
</div>

<br />

<div align="center">
<a href="https://github.com/undb-io/undb/blob/main/LICENSE">
<img src="https://img.shields.io/github/license/undb-io/undb" alt="License">
</a>
<a href="https://github.com/undb-io/undb/releases">
<img src="https://img.shields.io/github/v/release/undb-io/undb" alt="Release">
</a>
</div>

<br />

<div align="center">
<a href="https://www.producthunt.com/posts/undb-2?embed=true&utm_source=badge-featured&utm_medium=badge&utm_souce=badge-undb&#0045;2" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=485793&theme=light" alt="Undb - Open&#0032;Source&#0032;Airtable&#0032;Alternative&#0032;&#0038;&#0032;Backend&#0032;as&#0032;a&#0032;Service | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
</div>

## Features

- ⚡ No-code platform, easy to use
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
import Button from "$lib/components/ui/button/button.svelte"
import * as DropdownMenu from "$lib/components/ui/dropdown-menu"
import * as Avatar from "$lib/components/ui/avatar"
import { KeyIcon, LogOutIcon, SettingsIcon } from "lucide-svelte"
import { ExternalLinkIcon, KeyIcon, LogOutIcon, SettingsIcon } from "lucide-svelte"
import { createMutation } from "@tanstack/svelte-query"
import { goto } from "$app/navigation"
import Logo from "$lib/images/logo.svg"
import GithubLogo from "$lib/images/github.svg"
export let user: { avatar: string | null; username: string; userId: string }
Expand Down Expand Up @@ -49,6 +51,16 @@
<KeyIcon class="mr-2 h-4 w-4" />
Api Token
</DropdownMenu.Item>
<DropdownMenu.Item href="https://undb.io" target="_blank" rel="noopener noreferrer">
<img src={Logo} alt="undb" class="mr-2 h-4 w-4" />
Undb Website
<ExternalLinkIcon class="ml-auto h-4 w-4" />
</DropdownMenu.Item>
<DropdownMenu.Item href="https://github.com/undb-io/undb" target="_blank" rel="noopener noreferrer">
<img src={GithubLogo} alt="undb" class="mr-2 h-4 w-4" />
Github
<ExternalLinkIcon class="ml-auto h-4 w-4" />
</DropdownMenu.Item>
</DropdownMenu.Group>
</DropdownMenu.Content>
</DropdownMenu.Root>
4 changes: 2 additions & 2 deletions apps/frontend/src/lib/trpc/client.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { createTRPCProxyClient, httpBatchLink } from "@trpc/client"
import { createTRPCProxyClient, httpLink } from "@trpc/client"
import type { AppRouter } from "@undb/trpc"

export const trpc = createTRPCProxyClient<AppRouter>({
links: [
httpBatchLink({
httpLink({
url: "/trpc",
}),
],
Expand Down
1 change: 1 addition & 0 deletions apps/frontend/src/routes/(auth)/login/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@
<div class="flex justify-between">
<Label for="password">Password</Label>
<Button
tabindex={-1}
variant="link"
class="ml-auto h-auto p-0 text-sm"
on:click={() => {
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/routes/(authed)/(space)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
$: tables = $indexDataStore.data?.tables?.filter(Boolean) ?? []
$: bases = $indexDataStore.data?.bases?.filter(Boolean) ?? []
let isLoading = $indexDataStore.fetching
$: isLoading = $indexDataStore.fetching
function setBases() {
basesStore.set(bases)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "undb",
"version": "1.0.0-55",
"version": "1.0.0-56",
"private": true,
"scripts": {
"build": "NODE_ENV=production bun --bun turbo build",
Expand Down
6 changes: 3 additions & 3 deletions packages/trpc/src/trpc.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { tracing } from "@baselime/trpc-opentelemetry-middleware"

import { initTRPC,TRPCError } from "@trpc/server"
import { executionContext,getCurrentUserId } from "@undb/context/server"
import { initTRPC, TRPCError } from "@trpc/server"
import { executionContext, getCurrentUserId } from "@undb/context/server"
import { container } from "@undb/di"
import { createLogger } from "@undb/logger"
import { QUERY_BUILDER,startTransaction,type IQueryBuilder } from "@undb/persistence"
import { QUERY_BUILDER, startTransaction, type IQueryBuilder } from "@undb/persistence"
import { ZodError } from "@undb/zod"
import { fromZodError } from "zod-validation-error"
import pkg from "../package.json"
Expand Down

0 comments on commit 078a977

Please sign in to comment.