Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version v1.0.0-18 #1893

Merged
merged 3 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-18


### 🩹 Fixes

- Fix insert attachments ([16f03af](https://github.com/undb-io/undb/commit/16f03af))

### ❤️ Contributors

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

## v1.0.0-17


Expand Down
2 changes: 1 addition & 1 deletion apps/backend/src/modules/file/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class FileService {
url,
size,
mime_type: mimeType,
created_at: new Date(),
created_at: new Date().getTime(),
created_by: getCurrentUserId(),
space_id: mustGetCurrentSpaceId(),
name: fileName,
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-17",
"version": "1.0.0-18",
"private": true,
"scripts": {
"build": "NODE_ENV=production bun --bun turbo build",
Expand Down
2 changes: 1 addition & 1 deletion packages/persistence/src/record/record.mutate-visitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class RecordMutateVisitor extends AbstractQBMutationVisitor implements IR
return {
size: value.size,
url: value.url,
created_at: new Date(),
created_at: new Date().getTime(),
created_by: userId,
space_id: spaceId,
id: value.id,
Expand Down
Loading