Skip to content

Commit

Permalink
Fix Mongo dest (#15211)
Browse files Browse the repository at this point in the history
* Fix Mongo dest

* Update changelog

* auto-bump connector version [ci skip]

* bump strict encrypt version

Co-authored-by: Octavia Squidington III <[email protected]>
  • Loading branch information
benmoriceau and octavia-squidington-iii authored Aug 4, 2022
1 parent a837101 commit a4a5662
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
- name: MongoDB
destinationDefinitionId: 8b746512-8c2e-6ac1-4adc-b59faafd473c
dockerRepository: airbyte/destination-mongodb
dockerImageTag: 0.1.5
dockerImageTag: 0.1.6
documentationUrl: https://docs.airbyte.io/integrations/destinations/mongodb
icon: mongodb.svg
releaseStage: alpha
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2763,7 +2763,7 @@
supported_destination_sync_modes:
- "overwrite"
- "append"
- dockerImage: "airbyte/destination-mongodb:0.1.5"
- dockerImage: "airbyte/destination-mongodb:0.1.6"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/destinations/mongodb"
connectionSpecification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION destination-mongodb-strict-encrypt

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.version=0.1.6
LABEL io.airbyte.name=airbyte/destination-mongodb-strict-encrypt
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION destination-mongodb

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.version=0.1.6
LABEL io.airbyte.name=airbyte/destination-mongodb
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ protected void startTracked() {
@Override
protected void acceptTracked(final AirbyteMessage message) {
if (message.getType() == AirbyteMessage.Type.STATE) {
outputRecordCollector.accept(message);
lastStateMessage = message;
} else if (message.getType() == AirbyteMessage.Type.RECORD) {
final AirbyteRecordMessage recordMessage = message.getRecord();
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/destinations/mongodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Collection names should begin with an underscore or a letter character, and cann

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.6 | 2022-08-02 | [15211](https://github.com/airbytehq/airbyte/pull/15211) | Fix standard mode |
| 0.1.5 | 2022-07-27 | [14561](https://github.com/airbytehq/airbyte/pull/14561) | Change Airbyte Id from MD5 to SHA256 |
| 0.1.4 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | (unpublished) Add `-XX:+ExitOnOutOfMemoryError` JVM option |
| 0.1.3 | 2021-12-30 | [8809](https://github.com/airbytehq/airbyte/pull/8809) | Update connector fields title/description |
Expand Down

0 comments on commit a4a5662

Please sign in to comment.