diff --git a/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/487b930d-7f6a-43ce-8bac-46e6b2de0a55.json b/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/487b930d-7f6a-43ce-8bac-46e6b2de0a55.json
index d96baf3588233..7c62f7267dd81 100644
--- a/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/487b930d-7f6a-43ce-8bac-46e6b2de0a55.json
+++ b/airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/487b930d-7f6a-43ce-8bac-46e6b2de0a55.json
@@ -2,7 +2,7 @@
"sourceDefinitionId": "487b930d-7f6a-43ce-8bac-46e6b2de0a55",
"name": "Mongo DB",
"dockerRepository": "airbyte/source-mongodb",
- "dockerImageTag": "0.3.2",
+ "dockerImageTag": "0.3.3",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-mongodb",
"icon": "mongodb.svg"
}
diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml
index 8a7e0df82b77b..e956bc1e4f906 100644
--- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml
+++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml
@@ -250,7 +250,7 @@
- sourceDefinitionId: 487b930d-7f6a-43ce-8bac-46e6b2de0a55
name: Mongo DB
dockerRepository: airbyte/source-mongodb
- dockerImageTag: 0.3.2
+ dockerImageTag: 0.3.3
documentationUrl: https://hub.docker.com/r/airbyte/source-mongodb
icon: mongodb.svg
- sourceDefinitionId: d19ae824-e289-4b14-995a-0632eb46d246
diff --git a/airbyte-integrations/connectors/source-mongodb/Dockerfile b/airbyte-integrations/connectors/source-mongodb/Dockerfile
index ab804999051d4..7d38acfba3ce4 100644
--- a/airbyte-integrations/connectors/source-mongodb/Dockerfile
+++ b/airbyte-integrations/connectors/source-mongodb/Dockerfile
@@ -14,4 +14,4 @@ ENV AIRBYTE_ENTRYPOINT "ruby /airbyte/source.rb"
ENTRYPOINT ["ruby", "/airbyte/source.rb"]
LABEL io.airbyte.name=airbyte/source-mongodb
-LABEL io.airbyte.version=0.3.2
+LABEL io.airbyte.version=0.3.3
diff --git a/airbyte-integrations/connectors/source-mongodb/lib/spec.json b/airbyte-integrations/connectors/source-mongodb/lib/spec.json
index da97b84430ef3..87ec218289f38 100644
--- a/airbyte-integrations/connectors/source-mongodb/lib/spec.json
+++ b/airbyte-integrations/connectors/source-mongodb/lib/spec.json
@@ -46,7 +46,7 @@
"auth_source": {
"title": "Authentication source",
"type": "string",
- "description": "Authentication source where user information is stored",
+ "description": "Authentication source where user information is stored. See the Mongo docs for more info.",
"default": "admin",
"examples": ["admin"],
"order": 5
@@ -54,7 +54,7 @@
"replica_set": {
"title": "Replica Set",
"type": "string",
- "description": "The name of the set to filter servers by, when connecting to a replica set (Under this condition, the 'TLS connection' value automatically becomes 'true')",
+ "description": "The name of the set to filter servers by, when connecting to a replica set (Under this condition, the 'TLS connection' value automatically becomes 'true'). See the Mongo docs for more info.",
"default": "",
"order": 6
},
diff --git a/docs/integrations/sources/mongodb.md b/docs/integrations/sources/mongodb.md
index c31649ecbb898..d239da8676736 100644
--- a/docs/integrations/sources/mongodb.md
+++ b/docs/integrations/sources/mongodb.md
@@ -84,3 +84,19 @@ Make sure that MongoDB is accessible from external servers. Specific commands wi
Your `READ_ONLY_USER` should now be ready for use with Airbyte.
+
+#### Possible configuration Parameters
+
+* [Authentication Source](https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.authSource)
+* Host: URL of the database
+* Port: Port to use for connecting to the database
+* User: username to use when connecting
+* Password: used to authenticate the user
+* [Replica Set](https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.replicaSet)
+* Whether to enable SSL
+
+
+## Changelog
+| Version | Date | Pull Request | Subject |
+| :------ | :-------- | :----- | :------ |
+| 0.2.3 | 2021-07-20 | [4669](https://github.com/airbytehq/airbyte/pull/4669) | Subscriptions Stream now returns all kinds of subscriptions (including expired and canceled)|