Skip to content

Commit c72a619

Browse files
committedApr 17, 2018
release 1.9.0
1 parent 181c105 commit c72a619

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
1.9.0 / 2018-04-17
3+
==================
4+
5+
* Feature: Added `internalData` property for non-serialized context data (@n1ru4l, #41)
6+
27
1.8.0 / 2018-04-10
38
==================
49

‎dist/index.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export interface ErrorConfig {
33
message: string;
44
time_thrown?: string;
55
data?: object;
6+
internalData?: object;
67
options?: {
78
showPath?: boolean;
89
showLocations?: boolean;
@@ -21,6 +22,7 @@ export declare class ApolloError extends ExtendableError {
2122
message: string;
2223
time_thrown: string;
2324
data: object;
25+
internalData: object;
2426
path: any;
2527
locations: any;
2628
_showLocations: boolean;

‎dist/index.js

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-errors",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "Machine-readable custom errors for Apollostack's GraphQL server",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)
Please sign in to comment.