Skip to content

Latest commit

 

History

History
360 lines (215 loc) · 13.8 KB

File metadata and controls

360 lines (215 loc) · 13.8 KB

@tanstack/powersync-db-collection

0.1.44

Patch Changes

  • Fixed bug where on-demand collections with the id column in their where clause would never be added to the PowerSync upload queue. (#1470)

0.1.43

Patch Changes

0.1.42

Patch Changes

  • Updated dependencies [1e69dd6]:
    • @tanstack/db@0.6.4

0.1.41

Patch Changes

0.1.40

Patch Changes

0.1.39

Patch Changes

  • Updated dependencies [8b7fb1a]:
    • @tanstack/db@0.6.1

0.1.38

Patch Changes

0.1.37

Patch Changes

  • Updated dependencies [c3e6a96]:
    • @tanstack/db@0.5.33

0.1.36

Patch Changes

0.1.35

Patch Changes

  • Updated dependencies [bf1d078]:
    • @tanstack/db@0.5.31

0.1.34

Patch Changes

  • Updated dependencies [e9d0fd8]:
    • @tanstack/db@0.5.30

0.1.33

Patch Changes

0.1.32

Patch Changes

  • Updated dependencies [46450e7]:
    • @tanstack/db@0.5.28

0.1.31

Patch Changes

  • Make type of collection utils more precise for localOnly, PowerSync, Trailbase, and Electric collections (#1236)

  • Updated dependencies [802550f, dc41d7d, 4ff3da5, 2223cd6]:

    • @tanstack/db@0.5.27

0.1.30

Patch Changes

0.1.29

Patch Changes

0.1.28

Patch Changes

  • Updated dependencies [7099459]:
    • @tanstack/db@0.5.24

0.1.27

Patch Changes

  • Updated dependencies [05130f2]:
    • @tanstack/db@0.5.23

0.1.26

Patch Changes

  • Updated dependencies [f9b741e]:
    • @tanstack/db@0.5.22

0.1.25

Patch Changes

0.1.24

Patch Changes

  • Updated dependencies []:
    • @tanstack/db@0.5.20

0.1.23

Patch Changes

0.1.22

Patch Changes

  • Updated dependencies [c1247e8]:
    • @tanstack/db@0.5.18

0.1.21

Patch Changes

  • Added support for tracking collection operation metadata in PowerSync CrudEntry operations. (#999)

    // Schema config
    const APP_SCHEMA = new Schema({
      documents: new Table(
        {
          name: column.text,
    
          created_at: column.text,
        },
        {
          // Metadata tracking must be enabled on the PowerSync table
          trackMetadata: true,
        },
      ),
    })
    
    // ... Other config
    
    // Collection operations which specify metadata
    await collection.insert(
      {
        id,
        name: `document`,
      },
      // The string version of this will be present in PowerSync `CrudEntry`s during uploads
      {
        metadata: {
          extraInfo: 'Info',
        },
      },
    )
  • Updated dependencies [f795a67, d542667, 6503c09, b1cc4a7]:

    • @tanstack/db@0.5.17

0.1.20

Patch Changes

  • Updated dependencies [41308b8]:
    • @tanstack/db@0.5.16

0.1.19

Patch Changes

  • Updated dependencies [32ec4d8]:
    • @tanstack/db@0.5.15

0.1.18

Patch Changes

  • Updated dependencies [26ed0aa]:
    • @tanstack/db@0.5.14

0.1.17

Patch Changes

0.1.16

Patch Changes

0.1.15

Patch Changes

0.1.14

Patch Changes

0.1.13

Patch Changes

  • Updated dependencies [5f474f1]:
    • @tanstack/db@0.5.9

0.1.12

Patch Changes

0.1.11

Patch Changes

  • Updated dependencies [295cb45]:
    • @tanstack/db@0.5.7

0.1.10

Patch Changes

  • Updated dependencies [c8a2c16]:
    • @tanstack/db@0.5.6

0.1.9

Patch Changes

  • Updated dependencies [077fc1a]:
    • @tanstack/db@0.5.5

0.1.8

Patch Changes

0.1.7

Patch Changes

0.1.6

Patch Changes

  • Updated dependencies [99a3716]:
    • @tanstack/db@0.5.2

0.1.5

Patch Changes

  • Updated dependencies [a83a818]:
    • @tanstack/db@0.5.1

0.1.4

Patch Changes

0.1.3

Patch Changes

0.1.2

Patch Changes

  • Updated dependencies [75470a8]:
    • @tanstack/db@0.4.19

0.1.1

Patch Changes

0.1.0

Minor Changes

  • Initial Release (#747)

Patch Changes

  • Updated dependencies [49bcaa5]:
    • @tanstack/db@0.4.17