Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pubkey/rxdb
Browse files Browse the repository at this point in the history
  • Loading branch information
pubkey committed Dec 10, 2024
2 parents edf24c5 + fcebd97 commit 5e06851
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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

### 16.0.0-beta.7 (8 December 2024)
### 16.0.0-beta.8 (10 December 2024)

🚀 **RxDB v16 is released**

Expand Down
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.

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 = "16.0.0-beta.7";
readonly rxdbVersion = "16.0.0-beta.8";
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 = "16.0.0-beta.7";
readonly rxdbVersion = "16.0.0-beta.8";
constructor(settings: DexieSettings);
createStorageInstance<RxDocType>(params: RxStorageInstanceCreationParams<RxDocType, DexieSettings>): Promise<RxStorageInstanceDexie<RxDocType>>;
}
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 = "16.0.0-beta.7";
readonly rxdbVersion = "16.0.0-beta.8";
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 = "16.0.0-beta.7";
readonly rxdbVersion = "16.0.0-beta.8";
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 = "16.0.0-beta.7";
export declare const RXDB_VERSION = "16.0.0-beta.8";
2 changes: 1 addition & 1 deletion dist/types/rx-database.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export declare class RxDatabaseBase<Internals, InstanceCreationOptions, Collecti
readonly allowSlowCount?: boolean | undefined;
readonly reactivity?: RxReactivityFactory<any> | undefined;
readonly idleQueue: IdleQueue;
readonly rxdbVersion = "16.0.0-beta.7";
readonly rxdbVersion = "16.0.0-beta.8";
/**
* Contains all known non-closed storage instances
* that belong to this database.
Expand Down
2 changes: 1 addition & 1 deletion examples/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"jest-expo": "52.0.2",
"random-token": "0.0.8",
"react": "18.3.1",
"react-native": "0.76.3",
"react-native": "0.76.5",
"react-native-gesture-handler": "2.21.2",
"react-native-get-random-values": "1.11.0",
"react-native-quick-base64": "2.1.2",
Expand Down
2 changes: 1 addition & 1 deletion examples/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@rollup/plugin-node-resolve": "15.3.0",
"async-test-util": "2.5.0",
"concurrently": "9.1.0",
"rollup": "4.28.0",
"rollup": "4.28.1",
"rollup-plugin-css-only": "4.5.2",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-node-builtins": "2.1.2",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rxdb",
"description": "A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/",
"version": "16.0.0-beta.7",
"version": "16.0.0-beta.8",
"author": "pubkey",
"repository": {
"type": "git",
Expand Down Expand Up @@ -491,7 +491,7 @@
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@babel/types": "7.26.3",
"@eslint/compat": "1.2.3",
"@eslint/compat": "1.2.4",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.16.0",
"@rollup/plugin-commonjs": "28.0.1",
Expand Down Expand Up @@ -562,7 +562,7 @@
"random-int": "3.0.0",
"readline": "1.3.0",
"rimraf": "5.0.10",
"rollup": "4.28.0",
"rollup": "4.28.1",
"rxdb-old": "npm:[email protected]",
"rxjs": "7.8.1",
"shelljs": "0.8.5",
Expand All @@ -584,4 +584,4 @@
"eslint": "9.16.0",
"webpack-dev-server": "5.1.0"
}
}
}
2 changes: 1 addition & 1 deletion src/plugins/utils/utils-rxdb-version.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 const RXDB_VERSION = '16.0.0-beta.7';
export const RXDB_VERSION = '16.0.0-beta.8';

0 comments on commit 5e06851

Please sign in to comment.