Skip to content

Commit 65910ef

Browse files
Merge branch 'dev' into Issue_Template
2 parents df03fbc + f5cb5c2 commit 65910ef

File tree

180 files changed

+73
-7404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+73
-7404
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/.vscode/*
22
!/.vscode/launch.json
3+
!/.vscode/tasks.json
4+
35
.DS_Store
46
.tmp
57
tmp
@@ -9,6 +11,8 @@ coverage
911
**/*.tgz
1012
npm-debug.log
1113

14+
lib
15+
1216
src/**/*.js
1317
src/**/*.js.map
1418
src/**/*.d.ts
@@ -20,4 +24,4 @@ samples/browser/src/graph-js-sdk-core.js
2024
spec/**/*.js
2125
spec/**/*.d.ts
2226
spec/**/*.js.map
23-
spec/**/secrets.ts
27+
spec/**/secrets.ts

.vscode/launch.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"${workspaceRoot}/lib/spec/core/*.js"
2323
],
2424
"cwd": "${workspaceRoot}",
25+
"preLaunchTask": "Run Build",
2526
"outFiles": [],
2627
"internalConsoleOptions": "openOnSessionStart"
2728
},

.vscode/tasks.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "Run Build",
8+
"type": "npm",
9+
"script": "build",
10+
"group": "build"
11+
}
12+
]
13+
}

CHANGELOG.md

Lines changed: 38 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,82 @@
1-
## Changelog
1+
# Changelog
2+
3+
## 1.4.0
24

3-
### 1.3.0
45
New Features
6+
7+
* Added Search query param functionality
8+
9+
Bug Fixes
10+
11+
* https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/115
12+
* https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/107
13+
14+
## 1.3.0
15+
16+
New Features
17+
518
* Support for Large File upload [[#1](https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/driveitem_createuploadsession), [#2](https://github.com/microsoftgraph/msgraph-sdk-javascript/blob/dev/docs/tasks/LargeFileUploadTask.md)]
619
* Batching made easy [[#1](https://developer.microsoft.com/en-us/graph/docs/concepts/json_batching), [#2](https://github.com/microsoftgraph/msgraph-sdk-javascript/blob/dev/docs/content/Batching.md)]
720

821
Bug Fixes
22+
923
* https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/97
1024
* https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/110
1125
* https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/39
1226
* https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/111
1327

14-
### 1.2.0
28+
## 1.2.0
29+
1530
Updates
1631

17-
* Two output js files, one with polyfills for Fetch-API and ES6-Promises ([lib/graph-js-sdk-web.js](./lib/graph-js-sdk-web.js)) and one without ([lib/graph-js-sdk-core.js](./lib/graph-js-sdk-core.js))
18-
[Refer [README.md](https://github.com/microsoftgraph/msgraph-sdk-javascript#browser) for usage]
32+
* Two output js files, one with polyfills for Fetch-API and ES6-Promises lib/graph-js-sdk-web.js and one without lib/graph-js-sdk-core.js [Refer [README.md](https://github.com/microsoftgraph/msgraph-sdk-javascript#browser) for usage]
1933
* Enum for ResponseType, which lists down the available ResponseType options in autocomplete
2034

2135
Bug Fix
36+
2237
* Cannot access the property "request-id" of undefined in GraphError handling
2338

24-
### 1.1.0
39+
## 1.1.0
40+
2541
New Features
42+
2643
* Support for Multipart POST request
2744

2845
Updates
46+
2947
* Light weight FetchAPI dependency (in replacement for SuperAgent)
3048

3149
Bug Fixes
50+
3251
* Updated putStream and getStream to work for all sized files
3352
* Added obfuscation for output js file (graph-js-sdk-web.js)
3453
* Updated versions of mocha and chai to 5.2.0 and 4.1.2 to fix security vulnerability in growl (which is a dependency of mocha)
3554
* Running unit test files under types directory
3655
* Compiling ts files
3756

38-
#### 1.0.0
57+
## 1.0.0
58+
3959
* Added tests for new Graph functionality - Delta query, Extensibility, OneNote, and more.
4060

41-
#### 0.4.0
61+
## 0.4.0
62+
4263
* Add support for ES5. Make sure to use `graph-js-sdk-web.js` for web apps
4364
* Removed iterator helper method.
4465

45-
#### 0.3.1
66+
## 0.3.1
67+
4668
* Support for Node.js versions 4 and 5
4769

48-
#### 0.3.0
70+
## 0.3.0
71+
4972
* Migrated away from typings in client library core and TypeScript sample
5073

51-
#### 0.2.2
52-
* Updated SuperAgent to version ``` 3.3.0 ```
74+
## 0.2.2
75+
76+
* Updated SuperAgent to version `3.3.0`
77+
78+
## 0.2.0
5379

54-
#### 0.2.0
5580
* **Breaking change for existing apps** - Initialize the client library with `MicrosoftGraph.Client.init({...})`. See the updated usage section below for code samples.
5681
* Added response handling tests to simulate Graph calls
5782
* Added type declarations file for core client library, which adds intellisense for chained methods.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ import {Client} from "./node_modules/@microsoft/microsoft-graph-client/lib/src/c
3131

3232
### Via Script Tag
3333

34-
Include [lib/graph-js-sdk-core.js](./lib/graph-js-sdk-core.js) in your page.
34+
Include `lib/graph-js-sdk-core.js` in your page.
3535

3636
```HTML
3737
<script type="text/javascript" src="graph-js-sdk-core.js"></script>
3838
```
3939

40-
In case your browser doesn't have support for [Fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) [[support](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API#Browser_compatibility)] and [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) [[support](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise#Browser_compatibility)], you can polyfill them and include as above or you can use [lib/graph-js-sdk-web.js](./lib/graph-js-sdk-web.js) which includes polyfills.
40+
In case your browser doesn't have support for [Fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) [[support](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API#Browser_compatibility)] and [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) [[support](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise#Browser_compatibility)], you can polyfill them and include as above or you can use `lib/graph-js-sdk-web.js` which includes polyfills.
4141

4242
```HTML
4343
<script type="text/javascript" src="graph-js-sdk-web.js"></script>

lib/graph-js-sdk-core.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/graph-js-sdk-web.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/spec/CustomHTTPHandler.d.ts

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

lib/spec/CustomHTTPHandler.js

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

lib/spec/CustomHTTPHandler.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)