Skip to content

Commit

Permalink
Merge pull request #1893 from undb-io/release/v1.0.0-18
Browse files Browse the repository at this point in the history
Release version v1.0.0-18
  • Loading branch information
nichenqin authored Aug 17, 2024
2 parents d669219 + 5bc973c commit 67db96e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 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-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

0 comments on commit 67db96e

Please sign in to comment.