Skip to content

Commit 683fe97

Browse files
committed
chore: update version to 0.2.8 in changelog, package.json, and wxt.config.ts
1 parent 08aeb30 commit 683fe97

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# superfill.ai
22

3+
## 0.2.8
4+
5+
### Patch Changes
6+
7+
- fix: sync fixes
8+
39
## 0.2.7
410

511
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "superfill.ai",
33
"description": "AI-powered form filling browser extension",
4-
"version": "0.2.7",
4+
"version": "0.2.8",
55
"type": "module",
66
"author": {
77
"email": "mihirpandey.13@gmail.com",

src/lib/sync/sync-service.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -457,14 +457,10 @@ class SyncService {
457457
p_category: memory.category,
458458
p_tags: memory.tags || [],
459459
p_confidence: memory.confidence,
460-
p_embedding:
461-
memory.embedding && memory.embedding.length > 0
462-
? `[${memory.embedding.join(",")}]`
463-
: undefined,
464460
p_source: memory.metadata.source,
465461
p_created_at: memory.metadata.createdAt,
466462
p_updated_at: memory.metadata.updatedAt,
467-
p_content_hash: memory.contentHash ?? undefined,
463+
p_content_hash: memory.contentHash ?? null,
468464
});
469465

470466
if (error) {
@@ -563,6 +559,7 @@ class SyncService {
563559
p_local_id: deletion.localId,
564560
p_is_deleted: true,
565561
p_deleted_at: deletion.deletedAt,
562+
p_content_hash: null,
566563
});
567564

568565
if (error) {

wxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default defineConfig({
2424

2525
const baseManifest = {
2626
name: APP_NAME,
27-
version: "0.2.7",
27+
version: "0.2.8",
2828
description: "AI-powered form filling browser extension",
2929
permissions: ["activeTab", "storage", "offscreen", "contextMenus"],
3030
host_permissions: [

0 commit comments

Comments
 (0)