Skip to content

Commit bd07a3d

Browse files
authored
STITCH-4077: Release 4.8.0 (#351)
* STITCH-4077 Update browser README SDK version to 4.8.0 * STITCH-4077 Release v4.8.0
1 parent 310f0bd commit bd07a3d

File tree

44 files changed

+194
-194
lines changed

Some content is hidden

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

44 files changed

+194
-194
lines changed

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
]
1313
}
1414
},
15-
"version": "4.7.1"
15+
"version": "4.8.0"
1616
}

packages/browser/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-core",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -47,7 +47,7 @@
4747
"dependencies": {
4848
"bson": "4.0.2",
4949
"detect-browser": "^3.0.0",
50-
"mongodb-stitch-core-sdk": "^4.7.1",
50+
"mongodb-stitch-core-sdk": "^4.8.0",
5151
"whatwg-fetch": "^3.0.0"
5252
},
5353
"devDependencies": {

packages/browser/coretest/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-coretest",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"description": "Tests for mongodb-stitch-browser-core",
55
"keywords": [
66
"mongodb",
@@ -41,11 +41,11 @@
4141
"private": true,
4242
"dependencies": {
4343
"bson": "4.0.2",
44-
"mongodb-stitch-browser-core": "^4.7.1",
45-
"mongodb-stitch-browser-testutils": "^4.7.1",
46-
"mongodb-stitch-core-admin-client": "^4.7.1",
47-
"mongodb-stitch-core-sdk": "^4.7.1",
48-
"mongodb-stitch-core-testutils": "^4.7.1"
44+
"mongodb-stitch-browser-core": "^4.8.0",
45+
"mongodb-stitch-browser-testutils": "^4.8.0",
46+
"mongodb-stitch-core-admin-client": "^4.8.0",
47+
"mongodb-stitch-core-sdk": "^4.8.0",
48+
"mongodb-stitch-core-testutils": "^4.8.0"
4949
},
5050
"devDependencies": {
5151
"jest": "^23.1.0",

packages/browser/examples/basic/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "mongodb-stitch-browser-examples-basic",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"description": "This is an example JS application using the stitch-browser module",
55
"private": true,
66
"main": "index.js",
77
"dependencies": {
8-
"mongodb-stitch-browser-sdk": "^4.7.1",
9-
"mongodb-stitch-browser-services-aws-s3": "^4.7.1"
8+
"mongodb-stitch-browser-sdk": "^4.8.0",
9+
"mongodb-stitch-browser-services-aws-s3": "^4.8.0"
1010
},
1111
"scripts": {
1212
"build": "webpack -p",

packages/browser/sdk/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ See [Customized Dependencies (Advanced)](#customized-dependencies) below for cus
3737
You can also include the SDK directly in your HTML code using script tags. For core SDK functionality and the remote MongoDB service, use the following:
3838

3939
```html
40-
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.7.1/stitch.js"></script>
40+
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.8.0/stitch.js"></script>
4141
```
4242

4343
See [Customized Dependencies (Advanced)](#customized-dependencies) below for customizing dependencies.
@@ -227,7 +227,7 @@ And here is an example of importing BSON to generate an `ObjectId` using an HTML
227227
<title>MongoDB Stitch BSON Sample</title>
228228
</head>
229229
<body>
230-
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.7.1/stitch.js"></script>
230+
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.8.0/stitch.js"></script>
231231
<script>
232232
function generateObjectId() {
233233
const newObjectId = new stitch.BSON.ObjectId()
@@ -259,11 +259,11 @@ npm install mongodb-stitch-browser-services-twilio
259259
For customized dependencies with HTML script tags use the following:
260260

261261
```html
262-
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.7.1/stitch-core.js"></script>
263-
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.7.1/stitch-services-aws.js"></script>
264-
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.7.1/stitch-services-http.js"></script>
265-
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.7.1/stitch-services-mongodb-remote.js"></script>
266-
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.7.1/stitch-services-twilio.js"></script>
262+
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.8.0/stitch-core.js"></script>
263+
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.8.0/stitch-services-aws.js"></script>
264+
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.8.0/stitch-services-http.js"></script>
265+
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.8.0/stitch-services-mongodb-remote.js"></script>
266+
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.8.0/stitch-services-twilio.js"></script>
267267
```
268268

269269
#### Getting a StitchAppClient without Stitch.getDefaultAppClient (Advanced)

packages/browser/sdk/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-sdk",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -45,8 +45,8 @@
4545
],
4646
"license": "Apache-2.0",
4747
"dependencies": {
48-
"mongodb-stitch-browser-core": "^4.7.1",
49-
"mongodb-stitch-browser-services-mongodb-remote": "^4.7.1"
48+
"mongodb-stitch-browser-core": "^4.8.0",
49+
"mongodb-stitch-browser-services-mongodb-remote": "^4.8.0"
5050
},
5151
"devDependencies": {
5252
"prettier": "^1.13.5",

packages/browser/services/aws-s3/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-services-aws-s3",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -46,15 +46,15 @@
4646
"license": "Apache-2.0",
4747
"dependencies": {
4848
"bson": "4.0.2",
49-
"mongodb-stitch-browser-core": "^4.7.1",
50-
"mongodb-stitch-core-services-aws-s3": "^4.7.1"
49+
"mongodb-stitch-browser-core": "^4.8.0",
50+
"mongodb-stitch-core-services-aws-s3": "^4.8.0"
5151
},
5252
"devDependencies": {
5353
"jest": "^23.1.0",
54-
"mongodb-stitch-browser-testutils": "^4.7.1",
55-
"mongodb-stitch-core-admin-client": "^4.7.1",
56-
"mongodb-stitch-core-sdk": "^4.7.1",
57-
"mongodb-stitch-core-testutils": "^4.7.1",
54+
"mongodb-stitch-browser-testutils": "^4.8.0",
55+
"mongodb-stitch-core-admin-client": "^4.8.0",
56+
"mongodb-stitch-core-sdk": "^4.8.0",
57+
"mongodb-stitch-core-testutils": "^4.8.0",
5858
"prettier": "^1.13.5",
5959
"rollup": "^0.60.7",
6060
"ts-jest": "^22.4.6",

packages/browser/services/aws-ses/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-services-aws-ses",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -45,14 +45,14 @@
4545
],
4646
"license": "Apache-2.0",
4747
"dependencies": {
48-
"mongodb-stitch-browser-core": "^4.7.1",
49-
"mongodb-stitch-core-services-aws-ses": "^4.7.1"
48+
"mongodb-stitch-browser-core": "^4.8.0",
49+
"mongodb-stitch-core-services-aws-ses": "^4.8.0"
5050
},
5151
"devDependencies": {
5252
"jest": "^23.1.0",
53-
"mongodb-stitch-browser-testutils": "^4.7.1",
54-
"mongodb-stitch-core-admin-client": "^4.7.1",
55-
"mongodb-stitch-core-sdk": "^4.7.1",
53+
"mongodb-stitch-browser-testutils": "^4.8.0",
54+
"mongodb-stitch-core-admin-client": "^4.8.0",
55+
"mongodb-stitch-core-sdk": "^4.8.0",
5656
"prettier": "^1.13.5",
5757
"rollup": "^0.60.7",
5858
"ts-jest": "^22.4.6",

packages/browser/services/aws/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-services-aws",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -46,15 +46,15 @@
4646
"license": "Apache-2.0",
4747
"dependencies": {
4848
"bson": "4.0.2",
49-
"mongodb-stitch-browser-core": "^4.7.1",
50-
"mongodb-stitch-core-services-aws": "^4.7.1"
49+
"mongodb-stitch-browser-core": "^4.8.0",
50+
"mongodb-stitch-core-services-aws": "^4.8.0"
5151
},
5252
"devDependencies": {
5353
"jest": "^23.1.0",
54-
"mongodb-stitch-browser-testutils": "^4.7.1",
55-
"mongodb-stitch-core-admin-client": "^4.7.1",
56-
"mongodb-stitch-core-sdk": "^4.7.1",
57-
"mongodb-stitch-core-testutils": "^4.7.1",
54+
"mongodb-stitch-browser-testutils": "^4.8.0",
55+
"mongodb-stitch-core-admin-client": "^4.8.0",
56+
"mongodb-stitch-core-sdk": "^4.8.0",
57+
"mongodb-stitch-core-testutils": "^4.8.0",
5858
"prettier": "^1.13.5",
5959
"rollup": "^0.60.7",
6060
"ts-jest": "^22.4.6",

packages/browser/services/http/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-services-http",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -45,15 +45,15 @@
4545
],
4646
"license": "Apache-2.0",
4747
"dependencies": {
48-
"mongodb-stitch-browser-core": "^4.7.1",
49-
"mongodb-stitch-core-services-http": "^4.7.1"
48+
"mongodb-stitch-browser-core": "^4.8.0",
49+
"mongodb-stitch-core-services-http": "^4.8.0"
5050
},
5151
"devDependencies": {
5252
"bson": "4.0.2",
5353
"jest": "^23.1.0",
54-
"mongodb-stitch-browser-testutils": "^4.7.1",
55-
"mongodb-stitch-core-admin-client": "^4.7.1",
56-
"mongodb-stitch-core-sdk": "^4.7.1",
54+
"mongodb-stitch-browser-testutils": "^4.8.0",
55+
"mongodb-stitch-core-admin-client": "^4.8.0",
56+
"mongodb-stitch-core-sdk": "^4.8.0",
5757
"prettier": "^1.13.5",
5858
"rollup": "^0.60.7",
5959
"ts-jest": "^22.4.6",

packages/browser/services/mongodb-remote/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-services-mongodb-remote",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -45,16 +45,16 @@
4545
],
4646
"license": "Apache-2.0",
4747
"dependencies": {
48-
"mongodb-stitch-browser-core": "^4.7.1",
49-
"mongodb-stitch-core-services-mongodb-remote": "^4.7.1"
48+
"mongodb-stitch-browser-core": "^4.8.0",
49+
"mongodb-stitch-core-services-mongodb-remote": "^4.8.0"
5050
},
5151
"devDependencies": {
5252
"bson": "4.0.2",
5353
"eventsource": "1.0.7",
5454
"jest": "^23.1.0",
55-
"mongodb-stitch-browser-testutils": "^4.7.1",
56-
"mongodb-stitch-core-admin-client": "^4.7.1",
57-
"mongodb-stitch-core-sdk": "^4.7.1",
55+
"mongodb-stitch-browser-testutils": "^4.8.0",
56+
"mongodb-stitch-core-admin-client": "^4.8.0",
57+
"mongodb-stitch-core-sdk": "^4.8.0",
5858
"prettier": "^1.13.5",
5959
"rollup": "^0.60.7",
6060
"ts-jest": "^22.4.6",

packages/browser/services/twilio/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-services-twilio",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -45,14 +45,14 @@
4545
],
4646
"license": "Apache-2.0",
4747
"dependencies": {
48-
"mongodb-stitch-browser-core": "^4.7.1",
49-
"mongodb-stitch-core-services-twilio": "^4.7.1"
48+
"mongodb-stitch-browser-core": "^4.8.0",
49+
"mongodb-stitch-core-services-twilio": "^4.8.0"
5050
},
5151
"devDependencies": {
5252
"jest": "^23.1.0",
53-
"mongodb-stitch-browser-testutils": "^4.7.1",
54-
"mongodb-stitch-core-admin-client": "^4.7.1",
55-
"mongodb-stitch-core-sdk": "^4.7.1",
53+
"mongodb-stitch-browser-testutils": "^4.8.0",
54+
"mongodb-stitch-core-admin-client": "^4.8.0",
55+
"mongodb-stitch-core-sdk": "^4.8.0",
5656
"prettier": "^1.13.5",
5757
"rollup": "^0.60.7",
5858
"ts-jest": "^22.4.6",

packages/browser/testutils/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-browser-testutils",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -46,10 +46,10 @@
4646
"license": "Apache-2.0",
4747
"private": true,
4848
"dependencies": {
49-
"mongodb-stitch-browser-core": "^4.7.1",
50-
"mongodb-stitch-core-admin-client": "^4.7.1",
51-
"mongodb-stitch-core-sdk": "^4.7.1",
52-
"mongodb-stitch-core-testutils": "^4.7.1"
49+
"mongodb-stitch-browser-core": "^4.8.0",
50+
"mongodb-stitch-core-admin-client": "^4.8.0",
51+
"mongodb-stitch-core-sdk": "^4.8.0",
52+
"mongodb-stitch-core-testutils": "^4.8.0"
5353
},
5454
"devDependencies": {
5555
"tslint": "^5.10.0",

packages/core/admin-client-tests/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-core-admin-client-tests",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"description": "Tests for the Admin SDK",
55
"keywords": [
66
"mongodb",
@@ -41,8 +41,8 @@
4141
"private": true,
4242
"dependencies": {
4343
"bson": "4.0.2",
44-
"mongodb-stitch-browser-testutils": "^4.7.1",
45-
"mongodb-stitch-core-admin-client": "^4.7.1"
44+
"mongodb-stitch-browser-testutils": "^4.8.0",
45+
"mongodb-stitch-core-admin-client": "^4.8.0"
4646
},
4747
"devDependencies": {
4848
"jest": "^23.1.0",

packages/core/admin-client/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-core-admin-client",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"description": "Module that provides client access to the Stitch Admin API.",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -48,7 +48,7 @@
4848
"dependencies": {
4949
"bson": "4.0.2",
5050
"cross-fetch": "^2.2.3",
51-
"mongodb-stitch-core-sdk": "^4.7.1"
51+
"mongodb-stitch-core-sdk": "^4.8.0"
5252
},
5353
"devDependencies": {
5454
"jest": "^23.1.0",

packages/core/sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-core-sdk",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",

packages/core/services/aws-s3/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-core-services-aws-s3",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -46,7 +46,7 @@
4646
"license": "Apache-2.0",
4747
"dependencies": {
4848
"bson": "4.0.2",
49-
"mongodb-stitch-core-sdk": "^4.7.1"
49+
"mongodb-stitch-core-sdk": "^4.8.0"
5050
},
5151
"devDependencies": {
5252
"jest": "^23.1.0",

packages/core/services/aws-ses/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb-stitch-core-services-aws-ses",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",
@@ -45,7 +45,7 @@
4545
],
4646
"license": "Apache-2.0",
4747
"dependencies": {
48-
"mongodb-stitch-core-sdk": "^4.7.1"
48+
"mongodb-stitch-core-sdk": "^4.8.0"
4949
},
5050
"devDependencies": {
5151
"jest": "^23.1.0",

0 commit comments

Comments
 (0)