Skip to content

Commit ff907f0

Browse files
authored
[source-mongodb] include list does not have escaped dot (#44839)
1 parent 619b757 commit ff907f0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

airbyte-integrations/connectors/source-mongodb-v2/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ data:
88
connectorSubtype: database
99
connectorType: source
1010
definitionId: b2e713cd-cc36-4c0a-b5bd-b47cb8a0561e
11-
dockerImageTag: 1.5.5
11+
dockerImageTag: 1.5.6
1212
dockerRepository: airbyte/source-mongodb-v2
1313
documentationUrl: https://docs.airbyte.com/integrations/sources/mongodb-v2
1414
githubIssueLabel: source-mongodb-v2

airbyte-integrations/connectors/source-mongodb-v2/src/main/java/io/airbyte/integrations/source/mongodb/cdc/MongoDbDebeziumPropertiesManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected Properties getIncludeConfiguration(final ConfiguredAirbyteCatalog cata
9696

9797
protected String createCollectionIncludeString(final List<ConfiguredAirbyteStream> streams, final List<String> cdcStreamNames) {
9898
return streams.stream()
99-
.map(s -> s.getStream().getNamespace() + "\\." + s.getStream().getName())
99+
.map(s -> s.getStream().getNamespace() + "." + s.getStream().getName())
100100
.filter(s -> cdcStreamNames.contains(s))
101101
.collect(Collectors.joining(","));
102102
}

docs/integrations/sources/mongodb-v2.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,10 @@ For more information regarding configuration parameters, please see [MongoDb Doc
198198
<summary>Expand to review</summary>
199199

200200
| Version | Date | Pull Request | Subject |
201-
|:--------| :--------- | :------------------------------------------------------- |:----------------------------------------------------------------------------------------------------------|
201+
|:--------|:-----------| :------------------------------------------------------- |:----------------------------------------------------------------------------------------------------------|
202+
| 1.5.6 | 2024-08-27 | [44839](https://github.com/airbytehq/airbyte/pull/44839) | DBZ filters in related streams only. |
202203
| 1.5.5 | 2024-08-26 | [44779](https://github.com/airbytehq/airbyte/pull/44779) | Revert permission check on oplog.rs. |
203-
| 1.5.4 | 2024-08-20 | [44490](https://github.com/airbytehq/airbyte/pull/44490) | Add read permission check on oplog.rs collection used by CDC. |
204+
| 1.5.4 | 2024-08-20 | [44490](https://github.com/airbytehq/airbyte/pull/44490) | Add read permission check on oplog.rs collection used by CDC. |
204205
| 1.5.3 | 2024-08-08 | [43410](https://github.com/airbytehq/airbyte/pull/43410) | Adopt latest CDK. |
205206
| 1.5.2 | 2024-08-06 | [42869](https://github.com/airbytehq/airbyte/pull/42869) | Adopt latest CDK. |
206207
| 1.5.1 | 2024-08-01 | [42549](https://github.com/airbytehq/airbyte/pull/42549) | Centered the connector icon. |

0 commit comments

Comments
 (0)