Skip to content

Commit 05edffc

Browse files
committed
chore: changelog and build version update
1 parent ec02abb commit 05edffc

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,33 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10-
- Unrestricts the connection pool size for the Bulk Import
11-
- Adds queries for Bulk Import
10+
## [7.3.0]
1211

12+
- Adds tables and queries for Bulk Import
13+
14+
### Migration
15+
16+
```sql
17+
"CREATE TABLE IF NOT EXISTS bulk_import_users (
18+
id CHAR(36),
19+
app_id VARCHAR(64) NOT NULL DEFAULT 'public',
20+
primary_user_id VARCHAR(36),
21+
raw_data TEXT NOT NULL,
22+
status VARCHAR(128) DEFAULT 'NEW',
23+
error_msg TEXT,
24+
created_at BIGINT NOT NULL,
25+
updated_at BIGINT NOT NULL,
26+
CONSTRAINT bulk_import_users_pkey PRIMARY KEY(app_id, id),
27+
CONSTRAINT bulk_import_users__app_id_fkey FOREIGN KEY(app_id) REFERENCES apps(app_id) ON DELETE CASCADE
28+
);
29+
30+
CREATE INDEX IF NOT EXISTS bulk_import_users_status_updated_at_index ON bulk_import_users (app_id, status, updated_at);
31+
32+
CREATE INDEX IF NOT EXISTS bulk_import_users_pagination_index1 ON bulk_import_users (app_id, status, created_at DESC,
33+
id DESC);
34+
35+
CREATE INDEX IF NOT EXISTS bulk_import_users_pagination_index2 ON bulk_import_users (app_id, created_at DESC, id DESC);
36+
```
1337
## [7.2.0] - 2024-10-03
1438
1539
- Compatible with plugin interface version 6.3

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
}
44

5-
version = "7.2.1"
5+
version = "7.3.0"
66

77
repositories {
88
mavenCentral()

0 commit comments

Comments
 (0)