We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 303bc58 commit 6891936Copy full SHA for 6891936
CHANGELOG.md
@@ -15,6 +15,9 @@
15
16
### Changed
17
- Keep term definitions mapping to null so they may be protected.
18
+- **NOTE**: `LINK_HEADER_REL` in `lib/constants.js` has been deprecated and
19
+ renamed to `LINK_HEADER_CONTEXT`. It remains for now but will be removed in a
20
+ future release.
21
22
## 2.0.2 - 2020-01-17
23
lib/constants.js
@@ -7,6 +7,9 @@ const RDF = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';
7
const XSD = 'http://www.w3.org/2001/XMLSchema#';
8
9
module.exports = {
10
+ // TODO: Deprecated and will be removed later. Use LINK_HEADER_CONTEXT.
11
+ LINK_HEADER_REL: 'http://www.w3.org/ns/json-ld#context',
12
+
13
LINK_HEADER_CONTEXT: 'http://www.w3.org/ns/json-ld#context',
14
RDF,
0 commit comments