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-115 #2126

Closed
wants to merge 35 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
cd2ae1b
Merge pull request #2121 from undb-io/main
nichenqin Oct 31, 2024
69f0f55
feat: support if formula
nichenqin Oct 31, 2024
cd62913
fix: fix formula validation
nichenqin Nov 1, 2024
b3c5ea2
fix: fix formula validation
nichenqin Nov 1, 2024
ae474bd
feat: support switch formula
nichenqin Nov 1, 2024
9185187
chore: support find
nichenqin Nov 1, 2024
554c2cf
feat: fuse to search formula
nichenqin Nov 1, 2024
2e6de8a
doc: update readme
nichenqin Nov 1, 2024
1d31475
chore: remove find
nichenqin Nov 1, 2024
6bed24a
chore: update lock file
nichenqin Nov 1, 2024
d8a0188
fix: fix formula
nichenqin Nov 1, 2024
f0d04ea
fix: fix search formula
nichenqin Nov 1, 2024
d07882e
chore: record form
nichenqin Nov 2, 2024
8137936
--wip-- [skip ci]
nichenqin Nov 2, 2024
b2cd6b2
--wip-- [skip ci]
nichenqin Nov 2, 2024
ad90301
--wip-- [skip ci]
nichenqin Nov 2, 2024
8319de2
--wip-- [skip ci]
nichenqin Nov 2, 2024
6e5513c
feat: add xor formula
nichenqin Nov 4, 2024
f0e8932
feat: date range field
nichenqin Nov 4, 2024
222737f
feat: add date range field value & control
nichenqin Nov 4, 2024
d8c78f0
]
nichenqin Nov 4, 2024
7216f74
feat: add date range field filter
nichenqin Nov 4, 2024
ee7085f
fix: fix date range field
nichenqin Nov 4, 2024
e5df602
fix: fix styleg
nichenqin Nov 4, 2024
d26d26e
fix: cannot select date range as formula field
nichenqin Nov 4, 2024
aeaab9d
feat: calendar view
nichenqin Nov 6, 2024
2db7afc
Merge pull request #2125 from undb-io/main
nichenqin Nov 7, 2024
b4cee79
chore: hr template add calendar view
nichenqin Nov 7, 2024
778f453
chore: event planning template add calendar view
nichenqin Nov 7, 2024
7ad9c54
fix: fix filter
nichenqin Nov 7, 2024
6bf11b1
fix: fix template data
nichenqin Nov 7, 2024
edcb243
fix: fix date reactivity
nichenqin Nov 7, 2024
2004b57
fix: fix reference error
nichenqin Nov 7, 2024
7e18506
fix: fix delete base
nichenqin Nov 7, 2024
8bb6a74
Prepare release v1.0.0-115
web-flow Nov 7, 2024
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,5 +1,16 @@
# Changelog

## v1.0.0-115


### 🩹 Fixes

- Fix delete base ([7e18506](https://github.com/undb-io/undb/commit/7e18506))

### ❤️ Contributors

- Nichenqin <[email protected]>

## v1.0.0-114


Expand Down
24 changes: 24 additions & 0 deletions apps/backend/drizzle/0013_lovely_mordo.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
PRAGMA foreign_keys=OFF;--> statement-breakpoint
CREATE TABLE `__new_undb_reference_id_mapping` (
`field_id` text NOT NULL,
`table_id` text NOT NULL,
`symmetric_field_id` text,
`foreign_table_id` text NOT NULL
);
--> statement-breakpoint
INSERT INTO `__new_undb_reference_id_mapping`("field_id", "table_id", "symmetric_field_id", "foreign_table_id") SELECT "field_id", "table_id", "symmetric_field_id", "foreign_table_id" FROM `undb_reference_id_mapping`;--> statement-breakpoint
DROP TABLE `undb_reference_id_mapping`;--> statement-breakpoint
ALTER TABLE `__new_undb_reference_id_mapping` RENAME TO `undb_reference_id_mapping`;--> statement-breakpoint
PRAGMA foreign_keys=ON;--> statement-breakpoint
CREATE UNIQUE INDEX `reference_id_mapping_unique_idx` ON `undb_reference_id_mapping` (`field_id`,`table_id`,`symmetric_field_id`,`foreign_table_id`);--> statement-breakpoint
CREATE TABLE `__new_undb_rollup_id_mapping` (
`field_id` text NOT NULL,
`table_id` text NOT NULL,
`rollup_id` text NOT NULL,
`rollup_table_id` text NOT NULL,
PRIMARY KEY(`field_id`, `rollup_id`)
);
--> statement-breakpoint
INSERT INTO `__new_undb_rollup_id_mapping`("field_id", "table_id", "rollup_id", "rollup_table_id") SELECT "field_id", "table_id", "rollup_id", "rollup_table_id" FROM `undb_rollup_id_mapping`;--> statement-breakpoint
DROP TABLE `undb_rollup_id_mapping`;--> statement-breakpoint
ALTER TABLE `__new_undb_rollup_id_mapping` RENAME TO `undb_rollup_id_mapping`;
Loading