Skip to content

Commit

Permalink
15.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 18, 2024
1 parent 96ef0cc commit 2d8af61
Show file tree
Hide file tree
Showing 160 changed files with 377 additions and 375 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,13 +2,17 @@
# RxDB Changelog

<!-- CHANGELOG NEWEST -->
- FIX CouchDB replication error `Cannot read properties of undefined (reading '_attachments')`

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

<!-- /CHANGELOG NEWEST -->

<!-- RELEASE BELOW -->

### 15.18.1 (18 April 2024)

- FIX CouchDB replication error `Cannot read properties of undefined (reading '_attachments')`

### 15.18.0 (17 April 2024)

- FIX memory-synced storage must be able to query encrypted fields on the in-memory side.
Expand Down
5 changes: 2 additions & 3 deletions dist/cjs/plugins/replication-couchdb/index.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/replication-couchdb/index.js.map

Large diffs are not rendered by default.

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/cjs/rx-storage-helper.js.map

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions dist/esm/plugins/replication-couchdb/index.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/replication-couchdb/index.js.map

Large diffs are not rendered by default.

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/esm/rx-storage-helper.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/types/plugins/storage-denokv/index.d.ts
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.18.0";
readonly rxdbVersion = "15.18.1";
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
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.18.0";
readonly rxdbVersion = "15.18.1";
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
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.18.0";
readonly rxdbVersion = "15.18.1";
/**
* 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
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.18.0";
readonly rxdbVersion = "15.18.1";
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
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.18.0";
readonly rxdbVersion = "15.18.1";
private seed;
private lastRequestId;
messageChannelIfOneMode?: Promise<RemoteMessageChannel>;
Expand Down
2 changes: 1 addition & 1 deletion dist/types/plugins/utils/utils-rxdb-version.d.ts
@@ -1,4 +1,4 @@
/**
* This file is replaced in the 'npm run build:version' script.
*/
export declare const RXDB_VERSION = "15.18.0";
export declare const RXDB_VERSION = "15.18.1";
2 changes: 1 addition & 1 deletion dist/types/rx-database.d.ts
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 = "15.18.0";
readonly rxdbVersion = "15.18.1";
/**
* Contains all known non-closed storage instances
* that belong to this database.
Expand Down
4 changes: 2 additions & 2 deletions docs/404.html
Expand Up @@ -15,8 +15,8 @@

<script id="Cookiebot" src="https://consent.cookiebot.com/uc.js?cbid=c429ebbd-6e92-4150-b700-ca186e06bc7c" data-cbid="c429ebbd-6e92-4150-b700-ca186e06bc7c" data-blockingmode="auto" async></script>
<script src="/js/analytics.js" async></script><link rel="stylesheet" href="/assets/css/styles.8b698b6b.css">
<script src="/assets/js/runtime~main.fd66dfb3.js" defer="defer"></script>
<script src="/assets/js/main.33b82c49.js" defer="defer"></script>
<script src="/assets/js/runtime~main.9a7b0074.js" defer="defer"></script>
<script src="/assets/js/main.eba418d3.js" defer="defer"></script>
</head>
<body class="navigation-with-keyboard">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PL63TR5" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
Expand Down
4 changes: 2 additions & 2 deletions docs/adapters.html
Expand Up @@ -15,8 +15,8 @@

<script id="Cookiebot" src="https://consent.cookiebot.com/uc.js?cbid=c429ebbd-6e92-4150-b700-ca186e06bc7c" data-cbid="c429ebbd-6e92-4150-b700-ca186e06bc7c" data-blockingmode="auto" async></script>
<script src="/js/analytics.js" async></script><link rel="stylesheet" href="/assets/css/styles.8b698b6b.css">
<script src="/assets/js/runtime~main.fd66dfb3.js" defer="defer"></script>
<script src="/assets/js/main.33b82c49.js" defer="defer"></script>
<script src="/assets/js/runtime~main.9a7b0074.js" defer="defer"></script>
<script src="/assets/js/main.eba418d3.js" defer="defer"></script>
</head>
<body class="navigation-with-keyboard">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PL63TR5" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
Expand Down
6 changes: 3 additions & 3 deletions docs/alternatives.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/angular-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/browser-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/browser-storage.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/data-base.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/embedded-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/flutter-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/frontend-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/in-memory-nosql-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/ionic-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/json-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/localstorage.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/mobile-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/progressive-web-app-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/react-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/realtime-database.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/articles/websockets-sse-polling-webrtc-webtransport.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/assets/js/931f4566.7dfbf10d.js

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

0 comments on commit 2d8af61

Please sign in to comment.