Skip to content

Commit 068bcc5

Browse files
dependabot-preview[bot]peril-parse-community[bot]
authored and
peril-parse-community[bot]
committed
Bump flow-bin from 0.108.0 to 0.109.0 (#6104)
* Bump flow-bin from 0.108.0 to 0.109.0 Bumps [flow-bin](https://github.com/flowtype/flow-bin) from 0.108.0 to 0.109.0. - [Release notes](https://github.com/flowtype/flow-bin/releases) - [Commits](flow/flow-bin@v0.108.0...v0.109.0) Signed-off-by: dependabot-preview[bot] <[email protected]> * Fix flow type to allow undefined (#6113)
1 parent ee6993a commit 068bcc5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"deep-diff": "1.0.2",
7676
"eslint": "6.5.1",
7777
"eslint-plugin-flowtype": "4.3.0",
78-
"flow-bin": "0.108.0",
78+
"flow-bin": "0.109.0",
7979
"form-data": "2.5.1",
8080
"gaze": "1.1.3",
8181
"graphql-tag": "^2.10.1",

src/Adapters/Storage/Mongo/MongoStorageAdapter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export class MongoStorageAdapter implements StorageAdapter {
131131
_collectionPrefix: string;
132132
_mongoOptions: Object;
133133
// Public
134-
connectionPromise: Promise<any>;
134+
connectionPromise: ?Promise<any>;
135135
database: any;
136136
client: MongoClient;
137137
_maxTimeMS: ?number;

src/Controllers/SchemaController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ export default class SchemaController {
556556
_dbAdapter: StorageAdapter;
557557
schemaData: { [string]: Schema };
558558
_cache: any;
559-
reloadDataPromise: Promise<any>;
559+
reloadDataPromise: ?Promise<any>;
560560
protectedFields: any;
561561

562562
constructor(databaseAdapter: StorageAdapter, schemaCache: any) {

0 commit comments

Comments
 (0)