Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
]
}
},
"version": "4.5.0"
"version": "4.6.0"
}
4 changes: 2 additions & 2 deletions packages/browser/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-core",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -47,7 +47,7 @@
"dependencies": {
"bson": "4.0.2",
"detect-browser": "^3.0.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions packages/browser/coretest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-coretest",
"version": "4.5.0",
"version": "4.6.0",
"description": "Tests for mongodb-stitch-browser-core",
"keywords": [
"mongodb",
Expand Down Expand Up @@ -41,11 +41,11 @@
"private": true,
"dependencies": {
"bson": "4.0.2",
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-browser-testutils": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-core-testutils": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-browser-testutils": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"mongodb-stitch-core-testutils": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/browser/examples/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "mongodb-stitch-browser-examples-basic",
"version": "4.5.0",
"version": "4.6.0",
"description": "This is an example JS application using the stitch-browser module",
"private": true,
"main": "index.js",
"dependencies": {
"mongodb-stitch-browser-sdk": "^4.5.0",
"mongodb-stitch-browser-services-aws-s3": "^4.5.0"
"mongodb-stitch-browser-sdk": "^4.6.0",
"mongodb-stitch-browser-services-aws-s3": "^4.6.0"
},
"scripts": {
"build": "webpack -p",
Expand Down
14 changes: 7 additions & 7 deletions packages/browser/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ See [Customized Dependencies (Advanced)](#customized-dependencies) below for cus
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:

```html
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.5.0/stitch.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.6.0/stitch.js"></script>
```

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

```html
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.5.0/stitch-core.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.5.0/stitch-services-aws.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.5.0/stitch-services-http.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.5.0/stitch-services-mongodb-remote.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.5.0/stitch-services-twilio.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.6.0/stitch-core.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.6.0/stitch-services-aws.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.6.0/stitch-services-http.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.6.0/stitch-services-mongodb-remote.js"></script>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.6.0/stitch-services-twilio.js"></script>
```

#### Getting a StitchAppClient without Stitch.getDefaultAppClient (Advanced)
Expand Down
6 changes: 3 additions & 3 deletions packages/browser/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-sdk",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -45,8 +45,8 @@
],
"license": "Apache-2.0",
"dependencies": {
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-browser-services-mongodb-remote": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-browser-services-mongodb-remote": "^4.6.0"
},
"devDependencies": {
"prettier": "^1.13.5",
Expand Down
14 changes: 7 additions & 7 deletions packages/browser/services/aws-s3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-services-aws-s3",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -46,15 +46,15 @@
"license": "Apache-2.0",
"dependencies": {
"bson": "4.0.2",
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-core-services-aws-s3": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-core-services-aws-s3": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
"mongodb-stitch-browser-testutils": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-core-testutils": "^4.5.0",
"mongodb-stitch-browser-testutils": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"mongodb-stitch-core-testutils": "^4.6.0",
"prettier": "^1.13.5",
"rollup": "^0.60.7",
"ts-jest": "^22.4.6",
Expand Down
12 changes: 6 additions & 6 deletions packages/browser/services/aws-ses/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-services-aws-ses",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -45,14 +45,14 @@
],
"license": "Apache-2.0",
"dependencies": {
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-core-services-aws-ses": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-core-services-aws-ses": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
"mongodb-stitch-browser-testutils": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-browser-testutils": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"prettier": "^1.13.5",
"rollup": "^0.60.7",
"ts-jest": "^22.4.6",
Expand Down
14 changes: 7 additions & 7 deletions packages/browser/services/aws/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-services-aws",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -46,15 +46,15 @@
"license": "Apache-2.0",
"dependencies": {
"bson": "4.0.2",
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-core-services-aws": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-core-services-aws": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
"mongodb-stitch-browser-testutils": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-core-testutils": "^4.5.0",
"mongodb-stitch-browser-testutils": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"mongodb-stitch-core-testutils": "^4.6.0",
"prettier": "^1.13.5",
"rollup": "^0.60.7",
"ts-jest": "^22.4.6",
Expand Down
12 changes: 6 additions & 6 deletions packages/browser/services/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-services-http",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -45,15 +45,15 @@
],
"license": "Apache-2.0",
"dependencies": {
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-core-services-http": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-core-services-http": "^4.6.0"
},
"devDependencies": {
"bson": "4.0.2",
"jest": "^23.1.0",
"mongodb-stitch-browser-testutils": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-browser-testutils": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"prettier": "^1.13.5",
"rollup": "^0.60.7",
"ts-jest": "^22.4.6",
Expand Down
12 changes: 6 additions & 6 deletions packages/browser/services/mongodb-remote/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-services-mongodb-remote",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -45,16 +45,16 @@
],
"license": "Apache-2.0",
"dependencies": {
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-core-services-mongodb-remote": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-core-services-mongodb-remote": "^4.6.0"
},
"devDependencies": {
"bson": "4.0.2",
"eventsource": "1.0.7",
"jest": "^23.1.0",
"mongodb-stitch-browser-testutils": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-browser-testutils": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"prettier": "^1.13.5",
"rollup": "^0.60.7",
"ts-jest": "^22.4.6",
Expand Down
12 changes: 6 additions & 6 deletions packages/browser/services/twilio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-services-twilio",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -45,14 +45,14 @@
],
"license": "Apache-2.0",
"dependencies": {
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-core-services-twilio": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-core-services-twilio": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
"mongodb-stitch-browser-testutils": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-browser-testutils": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"prettier": "^1.13.5",
"rollup": "^0.60.7",
"ts-jest": "^22.4.6",
Expand Down
10 changes: 5 additions & 5 deletions packages/browser/testutils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-browser-testutils",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -46,10 +46,10 @@
"license": "Apache-2.0",
"private": true,
"dependencies": {
"mongodb-stitch-browser-core": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0",
"mongodb-stitch-core-sdk": "^4.5.0",
"mongodb-stitch-core-testutils": "^4.5.0"
"mongodb-stitch-browser-core": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0",
"mongodb-stitch-core-sdk": "^4.6.0",
"mongodb-stitch-core-testutils": "^4.6.0"
},
"devDependencies": {
"tslint": "^5.10.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/admin-client-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-core-admin-client-tests",
"version": "4.5.0",
"version": "4.6.0",
"description": "Tests for the Admin SDK",
"keywords": [
"mongodb",
Expand Down Expand Up @@ -41,8 +41,8 @@
"private": true,
"dependencies": {
"bson": "4.0.2",
"mongodb-stitch-browser-testutils": "^4.5.0",
"mongodb-stitch-core-admin-client": "^4.5.0"
"mongodb-stitch-browser-testutils": "^4.6.0",
"mongodb-stitch-core-admin-client": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/admin-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-core-admin-client",
"version": "4.5.0",
"version": "4.6.0",
"description": "Module that provides client access to the Stitch Admin API.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down Expand Up @@ -48,7 +48,7 @@
"dependencies": {
"bson": "4.0.2",
"cross-fetch": "^2.2.3",
"mongodb-stitch-core-sdk": "^4.5.0"
"mongodb-stitch-core-sdk": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-core-sdk",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/services/aws-s3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-core-services-aws-s3",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -46,7 +46,7 @@
"license": "Apache-2.0",
"dependencies": {
"bson": "4.0.2",
"mongodb-stitch-core-sdk": "^4.5.0"
"mongodb-stitch-core-sdk": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/services/aws-ses/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-stitch-core-services-aws-ses",
"version": "4.5.0",
"version": "4.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down Expand Up @@ -45,7 +45,7 @@
],
"license": "Apache-2.0",
"dependencies": {
"mongodb-stitch-core-sdk": "^4.5.0"
"mongodb-stitch-core-sdk": "^4.6.0"
},
"devDependencies": {
"jest": "^23.1.0",
Expand Down
Loading