Skip to content

Commit 0a8ca84

Browse files
committed
feat: ready for 1.0.0-beta.22+14 released.
1 parent 4597aa8 commit 0a8ca84

File tree

5 files changed

+11
-254
lines changed

5 files changed

+11
-254
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ Changes to the project are tracked using build numbers behind the version number
1111

1212
## [Unreleased]
1313

14+
## [1.0.0-beta.22+14] - 2024-10-01
15+
16+
- Feat: Upgraded surrealdb.wasm to 1.0.0-beta.22.
17+
- Feat: Upgraded surrealdb_js to 1.0.1+7.
18+
- Feat: Removed `SurrealWasmMutex` class as the issue [#87](https://github.com/surrealdb/surrealdb.wasm/issues/87) is likely resolved by PR [#107](https://github.com/surrealdb/surrealdb.wasm/pull/107).
19+
1420
## [1.0.0-beta.16+13] - 2024-08-26
1521

1622
- Feat: Added `mutex` flag that default to `false` (off) to methods of the `SurrealWasmMutex` class to allow turn on/off the mutex locking mechanism.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Lastly, add the following code before the `</head>` tag in the `web/index.html`
4141
```html
4242
<script type="module">
4343
import { Surreal, StringRecordId } from "/assets/packages/surrealdb_js/assets/js/index.bundled.mjs";
44-
import { surrealdbWasmEngines } from "/assets/packages/surrealdb_wasm/assets/wasm/surrealdb/esm.bundled.js";
44+
import { surrealdbWasmEngines } from "/assets/packages/surrealdb_wasm/assets/wasm/surrealdb/index.bundled.js";
4545
4646
// expose the type to the global scope
4747
globalThis.SurrealJS = Surreal;
@@ -98,7 +98,7 @@ For more code examples, kindly refer to the [integration test](https://github.co
9898
```dart
9999
final result = await db.transaction((txn) async {
100100
txn.query('DEFINE TABLE test SCHEMAFULL;');
101-
txn.query('DEFINE FIELD id ON test TYPE record;');
101+
txn.query(r'DEFINE FIELD id ON test VALUE <record>($value) ASSERT $value != NONE;');
102102
txn.query('DEFINE FIELD name ON test TYPE string;');
103103
txn.query(
104104
r'CREATE test SET name = $name;',

RELEASE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
- Feat: Added `mutex` flag that default to `false` (off) to methods of the `SurrealWasmMutex` class to allow turn on/off the mutex locking mechanism.
1+
- Feat: Upgraded surrealdb.wasm to 1.0.0-beta.22.
2+
- Feat: Upgraded surrealdb_js to 1.0.1+7.
3+
- Feat: Removed `SurrealWasmMutex` class as the issue [#87](https://github.com/surrealdb/surrealdb.wasm/issues/87) is likely resolved by PR [#107](https://github.com/surrealdb/surrealdb.wasm/pull/107).

lib/src/surreal_wasm_mutex.dart

Lines changed: 0 additions & 250 deletions
This file was deleted.

lib/surrealdb_wasm.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ library surrealdb_wasm;
33

44
export 'src/js.dart';
55
export 'src/surreal_wasm.dart';
6-
export 'src/surreal_wasm_mutex.dart';

0 commit comments

Comments
 (0)