Skip to content

Commit 6b60095

Browse files
authored
Source Monday: Add Boards name to items stream (#44201)
1 parent 6525eb4 commit 6b60095

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

airbyte-integrations/connectors/source-monday/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data:
1010
connectorSubtype: api
1111
connectorType: source
1212
definitionId: 80a54ea2-9959-4040-aac1-eee42423ec9b
13-
dockerImageTag: 2.1.3
13+
dockerImageTag: 2.1.4
1414
releases:
1515
breakingChanges:
1616
2.0.0:

airbyte-integrations/connectors/source-monday/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
6-
version = "2.1.3"
6+
version = "2.1.4"
77
name = "source-monday"
88
description = "Source implementation for Monday."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-monday/source_monday/schemas/items.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"board": {
3232
"type": ["null", "object"],
3333
"properties": {
34-
"id": { "type": ["null", "string"] }
34+
"id": { "type": ["null", "string"] },
35+
"name": { "type": ["null", "string"] }
3536
}
3637
},
3738
"column_values": {

docs/integrations/sources/monday.md

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ The Monday connector should not run into Monday API limitations under normal usa
7777

7878
| Version | Date | Pull Request | Subject |
7979
| :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------------------------ |
80+
| 2.1.4 | 2024-08-17 | [44201](https://github.com/airbytehq/airbyte/pull/44201) | Add boards name to the `items` stream |
8081
| 2.1.3 | 2024-06-04 | [38958](https://github.com/airbytehq/airbyte/pull/38958) | [autopull] Upgrade base image to v1.2.1 |
8182
| 2.1.2 | 2024-04-30 | [37722](https://github.com/airbytehq/airbyte/pull/37722) | Fetch `display_value` field for column values of `Mirror`, `Dependency` and `Connect Board` types |
8283
| 2.1.1 | 2024-04-05 | [36717](https://github.com/airbytehq/airbyte/pull/36717) | Add handling of complexityBudgetExhausted error. |

0 commit comments

Comments
 (0)