Skip to content

Commit 94eb5c4

Browse files
16.17.2
1 parent 46c3bb9 commit 94eb5c4

File tree

191 files changed

+359
-355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+359
-355
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22
# RxDB Changelog
33

44
<!-- CHANGELOG NEWEST -->
5-
- FIX credentials header in RxServer [#283](https://github.com/pubkey/rxdb-server/pull/283)
5+
66
<!-- ADD new changes here! -->
77

88
<!-- /CHANGELOG NEWEST -->
99

1010
<!-- RELEASE BELOW -->
1111

12+
### 16.17.2 (15 August 2025)
13+
14+
- FIX credentials header in RxServer [#283](https://github.com/pubkey/rxdb-server/pull/283)
15+
1216
### 16.17.1 (15 August 2025)
1317

1418
- UPDATE express to v5 in RxServer

dist/cjs/plugins/utils/utils-rxdb-version.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/plugins/utils/utils-rxdb-version.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/plugins/utils/utils-rxdb-version.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/plugins/utils/utils-rxdb-version.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types/plugins/storage-denokv/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RxStorageInstanceDenoKV } from "./rx-storage-instance-denokv.ts";
44
export declare class RxStorageDenoKV implements RxStorage<DenoKVStorageInternals<any>, DenoKVSettings> {
55
settings: DenoKVSettings;
66
name: string;
7-
readonly rxdbVersion = "16.17.1";
7+
readonly rxdbVersion = "16.17.2";
88
constructor(settings: DenoKVSettings);
99
createStorageInstance<RxDocType>(params: RxStorageInstanceCreationParams<RxDocType, DenoKVSettings>): Promise<RxStorageInstanceDenoKV<RxDocType>>;
1010
}

dist/types/plugins/storage-dexie/rx-storage-dexie.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RxStorageInstanceDexie } from './rx-storage-instance-dexie.ts';
44
export declare class RxStorageDexie implements RxStorage<DexieStorageInternals, DexieSettings> {
55
settings: DexieSettings;
66
name: string;
7-
readonly rxdbVersion = "16.17.1";
7+
readonly rxdbVersion = "16.17.2";
88
constructor(settings: DexieSettings);
99
createStorageInstance<RxDocType>(params: RxStorageInstanceCreationParams<RxDocType, DexieSettings>): Promise<RxStorageInstanceDexie<RxDocType>>;
1010
}

dist/types/plugins/storage-localstorage/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export * from './localstorage-mock.ts';
44
export declare class RxStorageLocalstorage implements RxStorage<LocalstorageStorageInternals, LocalstorageInstanceCreationOptions> {
55
settings: LocalstorageStorageSettings;
66
name: string;
7-
readonly rxdbVersion = "16.17.1";
7+
readonly rxdbVersion = "16.17.2";
88
constructor(settings: LocalstorageStorageSettings);
99
createStorageInstance<RxDocType>(params: RxStorageInstanceCreationParams<RxDocType, LocalstorageInstanceCreationOptions>): Promise<RxStorageInstanceLocalstorage<RxDocType>>;
1010
}

dist/types/plugins/storage-mongodb/rx-storage-mongodb.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RxStorageInstanceMongoDB } from './rx-storage-instance-mongodb.ts';
44
export declare class RxStorageMongoDB implements RxStorage<MongoDBStorageInternals, MongoDBSettings> {
55
databaseSettings: MongoDBDatabaseSettings;
66
name: string;
7-
readonly rxdbVersion = "16.17.1";
7+
readonly rxdbVersion = "16.17.2";
88
constructor(databaseSettings: MongoDBDatabaseSettings);
99
createStorageInstance<RxDocType>(params: RxStorageInstanceCreationParams<RxDocType, MongoDBSettings>): Promise<RxStorageInstanceMongoDB<RxDocType>>;
1010
}

dist/types/plugins/storage-remote/rx-storage-remote.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { MessageFromRemote, RemoteMessageChannel, RxStorageRemoteInternals,
44
export declare class RxStorageRemote implements RxStorage<RxStorageRemoteInternals, any> {
55
readonly settings: RxStorageRemoteSettings;
66
readonly name: string;
7-
readonly rxdbVersion = "16.17.1";
7+
readonly rxdbVersion = "16.17.2";
88
private seed;
99
private lastRequestId;
1010
messageChannelIfOneMode?: Promise<RemoteMessageChannel>;

0 commit comments

Comments
 (0)