Skip to content

Commit

Permalink
15.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 5, 2024
1 parent 0cde04a commit 71f6f64
Show file tree
Hide file tree
Showing 170 changed files with 311 additions and 302 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@
# RxDB Changelog

<!-- CHANGELOG NEWEST -->
- FIX position of dev-mode iframe [#6516](https://github.com/pubkey/rxdb/pull/6516)
- FIX `$nin` queries not working correctly with the SQLite RxStorage
- FIX (worker storage) when creating the same database in the worker and on the main thread, the main thread never resolves. [via discord](https://discord.com/channels/969553741705539624/1296068420311187518)

<!-- ADD new changes here! -->

<!-- /CHANGELOG NEWEST -->

<!-- RELEASE BELOW -->

### 15.37.0 (5 November 2024)

- FIX position of dev-mode iframe [#6516](https://github.com/pubkey/rxdb/pull/6516)
- FIX `$nin` queries not working correctly with the SQLite RxStorage
- FIX (worker storage) when creating the same database in the worker and on the main thread, the main thread never resolves. [via discord](https://discord.com/channels/969553741705539624/1296068420311187518)

### 15.36.1 (16 October 2024)

- ADD SQLite RxStorage support for Expo SDK 51 with the async API `getSQLiteBasicsExpoSQLiteAsync()`
Expand Down
3 changes: 3 additions & 0 deletions dist/cjs/plugins/dev-mode/dev-mode-tracking.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cjs/plugins/dev-mode/dev-mode-tracking.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cjs/plugins/utils/utils-rxdb-version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cjs/plugins/utils/utils-rxdb-version.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/esm/plugins/dev-mode/dev-mode-tracking.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/plugins/dev-mode/dev-mode-tracking.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/plugins/utils/utils-rxdb-version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/plugins/utils/utils-rxdb-version.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/types/plugins/storage-denokv/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { RxStorageInstanceDenoKV } from "./rx-storage-instance-denokv.ts";
export declare class RxStorageDenoKV implements RxStorage<DenoKVStorageInternals<any>, DenoKVSettings> {
settings: DenoKVSettings;
name: string;
readonly rxdbVersion = "15.36.1";
readonly rxdbVersion = "15.37.0";
constructor(settings: DenoKVSettings);
createStorageInstance<RxDocType>(params: RxStorageInstanceCreationParams<RxDocType, DenoKVSettings>): Promise<RxStorageInstanceDenoKV<RxDocType>>;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/types/plugins/storage-dexie/rx-storage-dexie.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { RxStorageInstanceDexie } from './rx-storage-instance-dexie.ts';
export declare class RxStorageDexie implements RxStorage<DexieStorageInternals, DexieSettings> {
settings: DexieSettings;
name: string;
readonly rxdbVersion = "15.36.1";
readonly rxdbVersion = "15.37.0";
constructor(settings: DexieSettings);
createStorageInstance<RxDocType>(params: RxStorageInstanceCreationParams<RxDocType, DexieSettings>): Promise<RxStorageInstanceDexie<RxDocType>>;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/types/plugins/storage-lokijs/rx-storage-lokijs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { LeaderElector } from 'broadcast-channel';
export declare class RxStorageLoki implements RxStorage<LokiStorageInternals, LokiSettings> {
databaseSettings: LokiDatabaseSettings;
name: string;
readonly rxdbVersion = "15.36.1";
readonly rxdbVersion = "15.37.0";
/**
* Create one leader elector by db name.
* This is done inside of the storage, not globally
Expand Down
2 changes: 1 addition & 1 deletion dist/types/plugins/storage-mongodb/rx-storage-mongodb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { RxStorageInstanceMongoDB } from './rx-storage-instance-mongodb.ts';
export declare class RxStorageMongoDB implements RxStorage<MongoDBStorageInternals, MongoDBSettings> {
databaseSettings: MongoDBDatabaseSettings;
name: string;
readonly rxdbVersion = "15.36.1";
readonly rxdbVersion = "15.37.0";
constructor(databaseSettings: MongoDBDatabaseSettings);
createStorageInstance<RxDocType>(params: RxStorageInstanceCreationParams<RxDocType, MongoDBSettings>): Promise<RxStorageInstanceMongoDB<RxDocType>>;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/types/plugins/storage-remote/rx-storage-remote.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { MessageFromRemote, RemoteMessageChannel, RxStorageRemoteInternals,
export declare class RxStorageRemote implements RxStorage<RxStorageRemoteInternals, any> {
readonly settings: RxStorageRemoteSettings;
readonly name: string;
readonly rxdbVersion = "15.36.1";
readonly rxdbVersion = "15.37.0";
private seed;
private lastRequestId;
messageChannelIfOneMode?: Promise<RemoteMessageChannel>;
Expand Down
2 changes: 1 addition & 1 deletion dist/types/plugins/utils/utils-rxdb-version.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* This file is replaced in the 'npm run build:version' script.
*/
export declare const RXDB_VERSION = "15.36.1";
export declare const RXDB_VERSION = "15.37.0";
Loading

0 comments on commit 71f6f64

Please sign in to comment.