serializable-bptree 7.0.4 → 8.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -115,7 +115,7 @@ import {
115
115
  ValueComparator,
116
116
  NumericComparator,
117
117
  StringComparator
118
- } from 'https://cdn.jsdelivr.net/npm/serializable-bptree@7/+esm'
118
+ } from 'https://cdn.jsdelivr.net/npm/serializable-bptree@8/+esm'
119
119
  </script>
120
120
  ```
121
121
 
@@ -159,13 +159,11 @@ for (const [pk, val] of driver.tree.whereStream(driver.condition)) {
159
159
  }
160
160
  ```
161
161
 
162
- ## Migration from v5.x.x to v6.0.0
162
+ ## Migration
163
163
 
164
- Version 6.0.0 includes a critical fix for how internal nodes are sorted.
164
+ Instructions for migrating between major versions (e.g., v8.0.0, v6.0.0) can be found in the [Migration Guide](./docs/MIGRATION.md).
165
165
 
166
- > [!IMPORTANT]
167
- > **Breaking Changes & Incompatibility**
168
- > v6.0.0 enforces strict value sorting. **Data structures created with v5.x.x or earlier are incompatible** with v6.0.0. It is highly recommended to rebuild your tree from scratch. For more details, see the [Concurrency & Synchronization](./docs/CONCURRENCY.md) guide.
166
+ ## LICENSE
169
167
 
170
168
  ## LICENSE
171
169