Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a type to items in arrays for default blueprints #1270

Merged
merged 6 commits into from
Jan 22, 2025
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
23 changes: 22 additions & 1 deletion integrations/backstage/.port/resources/blueprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"title": "Tags"
}
},
Expand Down Expand Up @@ -80,7 +83,10 @@
},
"tags": {
"type": "array",
"title": "Tags"
"title": "Tags",
"items": {
"type": "string"
}
}
},
"required": []
Expand Down Expand Up @@ -130,6 +136,9 @@
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"title": "Tags"
}
},
Expand Down Expand Up @@ -179,6 +188,9 @@
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"title": "Tags"
}
},
Expand Down Expand Up @@ -264,6 +276,9 @@
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"title": "Tags"
}
},
Expand Down Expand Up @@ -322,6 +337,9 @@
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"title": "Tags"
}
},
Expand Down Expand Up @@ -403,6 +421,9 @@
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"title": "Tags"
}
},
Expand Down
8 changes: 8 additions & 0 deletions integrations/backstage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.1.34-beta (2025-01-22)


### Improvements

- Updated mappings to have typed array items


## 0.1.33-beta (2025-01-22)


Expand Down
2 changes: 1 addition & 1 deletion integrations/backstage/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "backstage"
version = "0.1.33-beta"
version = "0.1.34-beta"
description = "Importing resources from Backstage IDP"
authors = ["Roi Talpaz <[email protected]>"]

Expand Down
12 changes: 12 additions & 0 deletions integrations/datadog/.port/resources/blueprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@
"sources": {
"title": "Sources",
"type": "array",
"items": {
"type": "string"
},
"description": "Source or cloud provider associated with your host."
},
"tags": {
Expand Down Expand Up @@ -172,6 +175,9 @@
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"title": "Tags"
},
"overallState": {
Expand Down Expand Up @@ -316,6 +322,9 @@
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
},
"title": "Tags"
},
"sloType": {
Expand Down Expand Up @@ -423,6 +432,9 @@
"sources": {
"title": "Sources",
"type": "array",
"items": {
"type": "string"
},
"description": "Source or cloud provider associated with your host."
},
"tags": {
Expand Down
8 changes: 8 additions & 0 deletions integrations/datadog/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

## 0.2.12 (2025-01-22)


### Improvements

- Updated mappings to have typed array items


## 0.2.11 (2025-01-22)


Expand Down
2 changes: 1 addition & 1 deletion integrations/datadog/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "datadog"
version = "0.2.11"
version = "0.2.12"
description = "Datadog Ocean Integration"
authors = ["Albert Luganga <[email protected]>"]

Expand Down
29 changes: 29 additions & 0 deletions integrations/firehydrant/.port/resources/blueprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
},
"tags": {
"title": "Tags",
"items": {
"type": "string"
},
"type": "array"
},
"currentMilestone": {
Expand Down Expand Up @@ -67,6 +70,9 @@
},
"functionalities": {
"title": "Functionalities Impacted",
"items": {
"type": "string"
},
"type": "array"
},
"customerImpact": {
Expand Down Expand Up @@ -134,6 +140,10 @@
"links": {
"title": "Links",
"type": "array",
"items": {
"type": "string",
"format": "url"
},
"icon": "DefaultProperty"
},
"labels": {
Expand Down Expand Up @@ -240,21 +250,33 @@
"tags": {
"title": "Tags",
"type": "array",
"items": {
"type": "string"
},
"icon": "DefaultProperty"
},
"services": {
"title": "Services Impacted",
"type": "array",
"items": {
"type": "string"
},
"icon": "DefaultProperty"
},
"environments": {
"title": "Environments Impacted",
"type": "array",
"items": {
"type": "string"
},
"icon": "DefaultProperty"
},
"functionalities": {
"title": "Functionalities Impacted",
"type": "array",
"items": {
"type": "string"
},
"icon": "DefaultProperty"
},
"createdBy": {
Expand Down Expand Up @@ -310,6 +332,13 @@
"questions": {
"title": "Retro Questions and Answers",
"type": "array",
"items": {
"type": "object",
"properties": {
"question": { "type": "string" },
"answer": { "type": "string" }
}
},
"icon": "DefaultProperty"
}
},
Expand Down
8 changes: 8 additions & 0 deletions integrations/firehydrant/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

## 0.1.114 (2025-01-22)


### Improvements

- Updated mappings to have typed array items


## 0.1.113 (2025-01-22)


Expand Down
2 changes: 1 addition & 1 deletion integrations/firehydrant/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "firehydrant"
version = "0.1.113"
version = "0.1.114"
description = "FireHydrant Integration Powered by Ocean"
authors = ["Isaac Coffie <[email protected]>"]

Expand Down
3 changes: 3 additions & 0 deletions integrations/jira/.port/resources/blueprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@
"components": {
"title": "Components",
"type": "array",
"items": {
"type": "string"
},
"description": "The components related to this issue"
},
"creator": {
Expand Down
8 changes: 8 additions & 0 deletions integrations/jira/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

## 0.2.28 (2025-01-22)


### Improvements

- Updated mappings to have typed array items


## 0.2.27 (2025-01-22)


Expand Down
2 changes: 1 addition & 1 deletion integrations/jira/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "jira"
version = "0.2.27"
version = "0.2.28"
description = "Integration to bring information from Jira into Port"
authors = ["Mor Paz <[email protected]>"]

Expand Down
3 changes: 3 additions & 0 deletions integrations/kafka/.port/resources/blueprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@
},
"partitionsMetadata": {
"title": "Partitions Metadata",
"items": {
"type": "object"
},
"type": "array"
},
"config": {
Expand Down
8 changes: 8 additions & 0 deletions integrations/kafka/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

## 0.1.113 (2025-01-22)


### Improvements

- Updated mappings to have typed array items


## 0.1.112 (2025-01-22)


Expand Down
2 changes: 1 addition & 1 deletion integrations/kafka/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kafka"
version = "0.1.112"
version = "0.1.113"
description = "Integration to import information from a Kafka cluster into Port. The integration supports importing metadata regarding the Kafka cluster, brokers and topics."
authors = ["Tal Sabag <[email protected]>"]

Expand Down
6 changes: 6 additions & 0 deletions integrations/launchdarkly/.port/resources/blueprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"tags": {
"type": "array",
"title": "Tags",
"items": {
"type": "string"
},
"description": "Tags associated with the project for organizational purposes."
}
},
Expand Down Expand Up @@ -55,6 +58,9 @@
"tags": {
"type": "array",
"title": "Tags",
"items": {
"type": "string"
},
"description": "Tags associated with the feature flag."
},
"maintainer": {
Expand Down
8 changes: 8 additions & 0 deletions integrations/launchdarkly/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

## 0.1.90 (2025-01-22)


### Improvements

- Updated mappings to have typed array items


## 0.1.89 (2025-01-22)


Expand Down
2 changes: 1 addition & 1 deletion integrations/launchdarkly/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "launchdarkly"
version = "0.1.89"
version = "0.1.90"
description = "LaunchDarkly integration for Port"
authors = ["Michael Armah <[email protected]>"]

Expand Down
9 changes: 9 additions & 0 deletions integrations/newrelic/.port/resources/blueprints.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,23 @@
},
"sources": {
"type": "array",
"items": {
"type": "string"
},
"title": "Sources"
},
"alertPolicyNames": {
"type": "array",
"items": {
"type": "string"
},
"title": "Alert Policy Names"
},
"conditionName": {
"type": "array",
"items": {
"type": "string"
},
"title": "Condition Name"
},
"activatedAt": {
Expand Down
Loading
Loading