Skip to content

Commit d7dd895

Browse files
authored
Update copyright to GraphQL Foundation (#209)
1 parent 823dd6e commit d7dd895

File tree

11 files changed

+11
-38
lines changed

11 files changed

+11
-38
lines changed

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We want to make contributing to this project as easy and transparent as
44
possible.
55

66
## Code of Conduct
7-
The code of conduct is described in [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md)
7+
This project's code of conduct is described in the GraphQL Foundation's [`CODE_OF_CONDUCT.md`](https://github.com/graphql/foundation/blob/master/CODE-OF-CONDUCT.md)
88

99
## Pull Requests
1010

@@ -17,22 +17,11 @@ We actively welcome your pull requests for documentation and code.
1717
5. Make sure your code lints.
1818
6. If you haven't already, complete the Contributor License Agreement ("CLA").
1919

20-
## Contributor License Agreement ("CLA")
21-
22-
In order to accept your pull request, we need you to submit a CLA. You only need
23-
to do this once to work on any of Facebook's open source projects.
24-
25-
Complete your CLA here: <https://code.facebook.com/cla>
26-
2720
## Issues
2821

2922
We use GitHub issues to track public bugs. Please ensure your description is
3023
clear and has sufficient instructions to be able to reproduce the issue.
3124

32-
Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe
33-
disclosure of security bugs. In those cases, please go through the process
34-
outlined on that page and do not file a public issue.
35-
3625
## Coding Style
3726

3827
* 2 spaces for indentation rather than tabs

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) 2015-present, Facebook, Inc.
3+
Copyright (c) 2015-2018, Facebook, Inc.
4+
Copyright (c) 2019-present, GraphQL Foundation
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Create a new `DataLoader` given a batch loading function and options.
283283
| ---------- | ---- | ------- | ----------- |
284284
| *batch* | Boolean | `true` | Set to `false` to disable batching, invoking `batchLoadFn` with a single load key.
285285
| *maxBatchSize* | Number | `Infinity` | Limits the number of items that get passed in to the `batchLoadFn`.
286-
| *cache* | Boolean | `true` | Set to `false` to disable memoization caching, creating a new Promise and new key in the `batchLoadFn` for every load of the same key.
286+
| *cache* | Boolean | `true` | Set to `false` to disable memoization caching, creating a new Promise and new key in the `batchLoadFn` for every load of the same key.
287287
| *cacheKeyFn* | Function | `key => key` | Produces cache key for a given load key. Useful when objects are keys and two objects should be considered equivalent.
288288
| *cacheMap* | Object | `new Map()` | Instance of [Map][] (or an object with a similar API) to be used as cache.
289289

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"Nicholas Schrock <[email protected]>"
99
],
1010
"license": "MIT",
11-
"homepage": "https://github.com/facebook/dataloader",
11+
"homepage": "https://github.com/graphql/dataloader",
1212
"bugs": {
13-
"url": "https://github.com/facebook/dataloader/issues"
13+
"url": "https://github.com/graphql/dataloader/issues"
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "http://github.com/facebook/dataloader.git"
17+
"url": "http://github.com/graphql/dataloader.git"
1818
},
1919
"main": "index.js",
2020
"typings": "index.d.ts",

resources/mocha-bootload.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/**
2-
* Copyright (c) 2015-present, Facebook, Inc.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
7-
81
process.on('unhandledRejection', function (error) {
92
console.error('Unhandled Promise Rejection:');
103
console.error(error && error.stack || error);

resources/watch.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
/**
2-
* Copyright (c) 2015-present, Facebook, Inc.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
7-
81
import sane from 'sane';
92
import { resolve as resolvePath } from 'path';
103
import { spawn } from 'child_process';

src/__tests__/abuse-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2015-present, Facebook, Inc.
2+
* Copyright (c) 2019-present, GraphQL Foundation
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.

src/__tests__/dataloader-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2015-present, Facebook, Inc.
2+
* Copyright (c) 2019-present, GraphQL Foundation
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.

src/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2015-present, Facebook, Inc.
2+
* Copyright (c) 2019-present, GraphQL Foundation
33
*
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.

0 commit comments

Comments
 (0)