Skip to content

Commit 3adf5f5

Browse files
committed
feat: add [email protected] to peerDependencies; update other dependencies
1 parent dbc609d commit 3adf5f5

File tree

17 files changed

+1235
-1434
lines changed

17 files changed

+1235
-1434
lines changed

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,33 +25,33 @@
2525
"homepage": "https://github.com/graphql-compose/graphql-compose-mongoose",
2626
"dependencies": {
2727
"dataloader": "^2.0.0",
28-
"graphql-compose-connection": "8.1.0",
29-
"graphql-compose-pagination": "8.1.0"
28+
"graphql-compose-connection": "8.2.0",
29+
"graphql-compose-pagination": "8.2.0"
3030
},
3131
"peerDependencies": {
32-
"graphql-compose": "^7.21.4 || ^8.0.0",
32+
"graphql-compose": "^7.21.4 || ^8.0.0 || ^9.0.0",
3333
"mongoose": "^5.0.0 || ^4.4.0"
3434
},
3535
"devDependencies": {
3636
"@types/jest": "26.0.23",
37-
"@typescript-eslint/eslint-plugin": "4.22.0",
38-
"@typescript-eslint/parser": "4.22.0",
39-
"eslint": "7.25.0",
37+
"@typescript-eslint/eslint-plugin": "4.25.0",
38+
"@typescript-eslint/parser": "4.25.0",
39+
"eslint": "7.27.0",
4040
"eslint-config-airbnb-base": "14.2.1",
4141
"eslint-config-prettier": "8.3.0",
42-
"eslint-plugin-import": "2.22.1",
42+
"eslint-plugin-import": "2.23.4",
4343
"eslint-plugin-prettier": "3.4.0",
4444
"graphql": "15.5.0",
45-
"graphql-compose": "8.0.1",
46-
"jest": "26.6.3",
45+
"graphql-compose": "9.0.0",
46+
"jest": "27.0.3",
4747
"mongodb-memory-server": "6.9.6",
48-
"mongoose": "5.12.7",
49-
"prettier": "2.2.1",
48+
"mongoose": "5.12.12",
49+
"prettier": "2.3.0",
5050
"request": "2.88.2",
5151
"rimraf": "3.0.2",
52-
"semantic-release": "17.4.2",
53-
"ts-jest": "26.5.5",
54-
"typescript": "4.2.4"
52+
"semantic-release": "17.4.3",
53+
"ts-jest": "27.0.1",
54+
"typescript": "4.3.2"
5555
},
5656
"scripts": {
5757
"prepare": "tsc -p ./tsconfig.build.json",

src/__tests__/github_issues/117-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ import mongoose from 'mongoose';
22
import { MongoMemoryServer } from 'mongodb-memory-server';
33
import { composeWithMongoose } from '../../index';
44

5-
// May require additional time for downloading MongoDB binaries
6-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
7-
85
let mongoServer: MongoMemoryServer;
96
beforeAll(async () => {
107
mongoServer = new MongoMemoryServer();

src/__tests__/github_issues/120-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ afterAll(() => {
1717
mongoServer.stop();
1818
});
1919

20-
// May require additional time for downloading MongoDB binaries
21-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
22-
2320
describe('issue #120 - check `connection` resolver with last/before', () => {
2421
const RecordSchema = new mongoose.Schema({ id: String, title: String });
2522
const Record = mongoose.model('Record', RecordSchema);

src/__tests__/github_issues/128-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ afterAll(() => {
1717
mongoServer.stop();
1818
});
1919

20-
// May require additional time for downloading MongoDB binaries
21-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
22-
2320
describe('issue #128 - OR/AND filter args not working with some other filter args', () => {
2421
const RecordSchema = new mongoose.Schema({
2522
id: String,

src/__tests__/github_issues/135-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ afterAll(() => {
1818
mongoServer.stop();
1919
});
2020

21-
// May require additional time for downloading MongoDB binaries
22-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
23-
2421
describe('issue #135 - Mongoose virtuals', () => {
2522
const RecordSchema = new mongoose.Schema({ id: String, title: String });
2623

src/__tests__/github_issues/136-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ afterAll(() => {
1818
mongoServer.stop();
1919
});
2020

21-
// May require additional time for downloading MongoDB binaries
22-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
23-
2421
describe('issue #136 - Mongoose virtuals', () => {
2522
const CommentSchema = new mongoose.Schema({
2623
author: {

src/__tests__/github_issues/157-test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,8 @@ afterAll(() => {
1818
mongoServer.stop();
1919
});
2020

21-
// May require additional time for downloading MongoDB binaries
22-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
23-
2421
describe('issue #157 - Optional enum error', () => {
25-
const Visit = mongoose.model(
22+
const Visit = mongoose.model<any>(
2623
'visit',
2724
new mongoose.Schema({
2825
url: { type: String, required: true },

src/__tests__/github_issues/194-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ afterAll(() => {
1818
mongoServer.stop();
1919
});
2020

21-
// May require additional time for downloading MongoDB binaries
22-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
23-
2421
describe('issue #194 - useAlias', () => {
2522
const UserSchema = new mongoose.Schema({
2623
e: {

src/__tests__/github_issues/248-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ afterAll(() => {
1616
mongoServer.stop();
1717
});
1818

19-
// May require additional time for downloading MongoDB binaries
20-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
21-
2219
describe("issue #248 - payloads' errors", () => {
2320
const UserSchema = new mongoose.Schema({
2421
name: String,

src/__tests__/github_issues/78-test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ afterAll(() => {
1616
mongoServer.stop();
1717
});
1818

19-
// May require additional time for downloading MongoDB binaries
20-
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
21-
2219
describe('issue #78 - Mongoose and Discriminators', () => {
2320
const options = { discriminatorKey: 'kind' };
2421

0 commit comments

Comments
 (0)