From 63a90d2545fed2af2e366490c960bf027bbfaa4f Mon Sep 17 00:00:00 2001 From: PagesCoffy Date: Tue, 10 Dec 2024 14:43:41 +0000 Subject: [PATCH 01/22] [Integration][PagerDuty] - Improve on service analytics (#1220) # Description What - Singular call to analytics api for all services then connect each up to relevant service Why - A call per service can cause the pager duty api to 429 and become unusable How - Updated the service analytics logic to take a list of service ids instead of fetching them individually ## Type of change Please leave one option from the following and delete the rest: - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] New Integration (non-breaking change which adds a new integration) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Non-breaking change (fix of existing functionality that will not change current behavior) - [ ] Documentation (added/updated documentation)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --- integrations/pagerduty/CHANGELOG.md | 8 ++++++ integrations/pagerduty/clients/pagerduty.py | 16 ++++++----- integrations/pagerduty/main.py | 30 +++++++++++++++------ integrations/pagerduty/pyproject.toml | 2 +- integrations/pagerduty/tests/test_client.py | 12 +++++---- 5 files changed, 47 insertions(+), 21 deletions(-) diff --git a/integrations/pagerduty/CHANGELOG.md b/integrations/pagerduty/CHANGELOG.md index ae0f871f5b..fd3aeadf69 100644 --- a/integrations/pagerduty/CHANGELOG.md +++ b/integrations/pagerduty/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.125 (2024-12-10) + + +### Improvements + +- Improved on the way the integration fetches service analytics by making an aggregate API call instead of fetching the analytics iteratively per service + + ## 0.1.124 (2024-12-10) diff --git a/integrations/pagerduty/clients/pagerduty.py b/integrations/pagerduty/clients/pagerduty.py index 5ad0a1a9e8..250d3d6fd7 100644 --- a/integrations/pagerduty/clients/pagerduty.py +++ b/integrations/pagerduty/clients/pagerduty.py @@ -216,14 +216,16 @@ async def get_incident_analytics(self, incident_id: str) -> dict[str, Any]: return {} async def get_service_analytics( - self, service_id: str, months_period: int = 3 - ) -> Dict[str, Any]: - logger.info(f"Fetching analytics for service: {service_id}") + self, service_ids: list[str], months_period: int = 3 + ) -> list[Dict[str, Any]]: + logger.info( + f"Fetching analytics for {len(service_ids)} services: {service_ids}" + ) date_ranges = get_date_range_for_last_n_months(months_period) body = { "filters": { - "service_ids": [service_id], + "service_ids": service_ids, "created_at_start": date_ranges[0], "created_at_end": date_ranges[1], } @@ -236,11 +238,11 @@ async def get_service_analytics( json_data=body, extensions={"retryable": True}, ) - logger.info(f"Successfully fetched analytics for service: {service_id}") - return response.get("data", [])[0] if response.get("data") else {} + logger.info(f"Successfully fetched analytics for services: {service_ids}") + return response.get("data", []) if response.get("data") else [] except (httpx.HTTPStatusError, httpx.HTTPError) as e: - logger.error(f"Error fetching analytics for service {service_id}: {e}") + logger.error(f"Error fetching analytics for services {service_ids}: {e}") raise async def send_api_request( diff --git a/integrations/pagerduty/main.py b/integrations/pagerduty/main.py index 97c7be4646..1fc30e415e 100644 --- a/integrations/pagerduty/main.py +++ b/integrations/pagerduty/main.py @@ -30,17 +30,31 @@ def initialize_client() -> PagerDutyClient: async def enrich_service_with_analytics_data( client: PagerDutyClient, services: list[dict[str, Any]], months_period: int ) -> list[dict[str, Any]]: - async def fetch_service_analytics(service: dict[str, Any]) -> dict[str, Any]: + async def fetch_service_analytics( + services: list[dict[str, Any]] + ) -> list[dict[str, Any]]: + service_ids = [service["id"] for service in services] try: - analytics = await client.get_service_analytics(service["id"], months_period) - return {**service, "__analytics": analytics} + services_analytics = await client.get_service_analytics( + service_ids, months_period + ) + # Map analytics to corresponding services + service_analytics_map = { + analytics["service_id"]: analytics for analytics in services_analytics + } + enriched_services = [ + { + **service, + "__analytics": service_analytics_map.get(service["id"], None), + } + for service in services + ] + return enriched_services except Exception as e: - logger.error(f"Failed to fetch analytics for service {service['id']}: {e}") - return {**service, "__analytics": None} + logger.error(f"Failed to fetch analytics for service {service_ids}: {e}") + return [{**service, "__analytics": None} for service in services] - return await asyncio.gather( - *[fetch_service_analytics(service) for service in services] - ) + return await fetch_service_analytics(services) async def enrich_incidents_with_analytics_data( diff --git a/integrations/pagerduty/pyproject.toml b/integrations/pagerduty/pyproject.toml index cb6551277b..19cdf562a5 100644 --- a/integrations/pagerduty/pyproject.toml +++ b/integrations/pagerduty/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pagerduty" -version = "0.1.124" +version = "0.1.125" description = "Pagerduty Integration" authors = ["Port Team "] diff --git a/integrations/pagerduty/tests/test_client.py b/integrations/pagerduty/tests/test_client.py index 58c90dc112..5b9a11b897 100644 --- a/integrations/pagerduty/tests/test_client.py +++ b/integrations/pagerduty/tests/test_client.py @@ -188,15 +188,17 @@ async def test_get_incident_analytics(self, client: PagerDutyClient) -> None: async def test_get_service_analytics(self, client: PagerDutyClient) -> None: # Scenario 1: Successful data retrieval mock_response = MagicMock() - mock_response.json.return_value = { - "data": [{"mean_incidents": 2, "total_services": 5}] - } + analytics_response = [ + {"service_id": "SERVICE123", "mean_incidents": 2, "total_incidents": 5}, + {"service_id": "SERVICE456", "mean_incidents": 3, "total_incidents": 7}, + ] + mock_response.json.return_value = {"data": analytics_response} with patch( "port_ocean.utils.http_async_client.request", return_value=mock_response ): - result = await client.get_service_analytics("SERVICE123") - assert result == {"mean_incidents": 2, "total_services": 5} + result = await client.get_service_analytics(["SERVICE123", "SERVICE456"]) + assert result == analytics_response async def test_send_api_request(self, client: PagerDutyClient) -> None: # Successful request From a2ba556398e8459e79526e45da6c06fd0743762a Mon Sep 17 00:00:00 2001 From: Mor Paz Date: Tue, 10 Dec 2024 17:15:38 +0200 Subject: [PATCH 02/22] [Docs] Upgrade stream from 0.0.2 to 0.0.3 (#1185) --- docs/framework-guides/package-lock.json | 46 +++++++++++++++---------- docs/framework-guides/package.json | 2 +- 2 files changed, 28 insertions(+), 20 deletions(-) diff --git a/docs/framework-guides/package-lock.json b/docs/framework-guides/package-lock.json index bf9be39f15..7d7656f499 100644 --- a/docs/framework-guides/package-lock.json +++ b/docs/framework-guides/package-lock.json @@ -30,7 +30,7 @@ "redocusaurus": "^2.0.0", "remark-math": "^5.1.1", "sass": "^1.81.0", - "stream": "^0.0.2", + "stream": "^0.0.3", "timers": "^0.1.1", "xml2js": "^0.6.2" }, @@ -8884,6 +8884,18 @@ "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" }, + "node_modules/component-emitter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-2.0.0.tgz", + "integrity": "sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", @@ -9955,11 +9967,6 @@ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.50.tgz", "integrity": "sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==" }, - "node_modules/emitter-component": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/emitter-component/-/emitter-component-1.1.1.tgz", - "integrity": "sha512-G+mpdiAySMuB7kesVRLuyvYRqDmshB7ReKEVuyBPkzQlmiDiLrt7hHHIy4Aff552bgknVN7B2/d3lzhGO5dvpQ==" - }, "node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -22079,11 +22086,12 @@ "integrity": "sha512-GCp7vHAfpao+Qh/3Flh9DXEJ/qSi0KJwJw6zYlZOtRYXWUIpMM6mC2rIep/dK8RQqwW0KxGJIllmjPIBOGN8AA==" }, "node_modules/stream": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/stream/-/stream-0.0.2.tgz", - "integrity": "sha512-gCq3NDI2P35B2n6t76YJuOp7d6cN/C7Rt0577l91wllh0sY9ZBuw9KaSGqH/b0hzn3CWWJbpbW0W0WvQ1H/Q7g==", + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/stream/-/stream-0.0.3.tgz", + "integrity": "sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A==", + "license": "MIT", "dependencies": { - "emitter-component": "^1.1.1" + "component-emitter": "^2.0.0" } }, "node_modules/streamx": { @@ -30000,6 +30008,11 @@ "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" }, + "component-emitter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-2.0.0.tgz", + "integrity": "sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==" + }, "compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", @@ -30711,11 +30724,6 @@ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.50.tgz", "integrity": "sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw==" }, - "emitter-component": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/emitter-component/-/emitter-component-1.1.1.tgz", - "integrity": "sha512-G+mpdiAySMuB7kesVRLuyvYRqDmshB7ReKEVuyBPkzQlmiDiLrt7hHHIy4Aff552bgknVN7B2/d3lzhGO5dvpQ==" - }, "emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -38519,11 +38527,11 @@ "integrity": "sha512-GCp7vHAfpao+Qh/3Flh9DXEJ/qSi0KJwJw6zYlZOtRYXWUIpMM6mC2rIep/dK8RQqwW0KxGJIllmjPIBOGN8AA==" }, "stream": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/stream/-/stream-0.0.2.tgz", - "integrity": "sha512-gCq3NDI2P35B2n6t76YJuOp7d6cN/C7Rt0577l91wllh0sY9ZBuw9KaSGqH/b0hzn3CWWJbpbW0W0WvQ1H/Q7g==", + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/stream/-/stream-0.0.3.tgz", + "integrity": "sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A==", "requires": { - "emitter-component": "^1.1.1" + "component-emitter": "^2.0.0" } }, "streamx": { diff --git a/docs/framework-guides/package.json b/docs/framework-guides/package.json index 8427feec16..8e59780ecb 100644 --- a/docs/framework-guides/package.json +++ b/docs/framework-guides/package.json @@ -37,7 +37,7 @@ "redocusaurus": "^2.0.0", "remark-math": "^5.1.1", "sass": "^1.81.0", - "stream": "^0.0.2", + "stream": "^0.0.3", "timers": "^0.1.1", "xml2js": "^0.6.2" }, From f2ea8504ce204679bdf9b80557e044e15d25979b Mon Sep 17 00:00:00 2001 From: Mor Paz Date: Wed, 11 Dec 2024 11:00:54 +0200 Subject: [PATCH 03/22] [Docs] Upgrade redocusaurus from 2.0.0 to 2.1.2 (#1184) --- docs/framework-guides/package-lock.json | 3535 +++++++++++++++++------ docs/framework-guides/package.json | 2 +- 2 files changed, 2694 insertions(+), 843 deletions(-) diff --git a/docs/framework-guides/package-lock.json b/docs/framework-guides/package-lock.json index 7d7656f499..1970abbe7b 100644 --- a/docs/framework-guides/package-lock.json +++ b/docs/framework-guides/package-lock.json @@ -27,7 +27,7 @@ "prism-react-renderer": "^2.3.1", "react": "^18.3.1", "react-dom": "^18.3.1", - "redocusaurus": "^2.0.0", + "redocusaurus": "^2.1.2", "remark-math": "^5.1.1", "sass": "^1.81.0", "stream": "^0.0.3", @@ -2166,6 +2166,30 @@ "node": ">=6.9.0" } }, + "node_modules/@cfaester/enzyme-adapter-react-18": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@cfaester/enzyme-adapter-react-18/-/enzyme-adapter-react-18-0.8.0.tgz", + "integrity": "sha512-3Z3ThTUouHwz8oIyhTYQljEMNRFtlVyc3VOOHCbxs47U6cnXs8K9ygi/c1tv49s7MBlTXeIcuN+Ttd9aPtILFQ==", + "license": "MIT", + "dependencies": { + "enzyme-shallow-equal": "^1.0.0", + "function.prototype.name": "^1.1.6", + "has": "^1.0.4", + "react-is": "^18.2.0", + "react-shallow-renderer": "^16.15.0" + }, + "peerDependencies": { + "enzyme": "^3.11.0", + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/@cfaester/enzyme-adapter-react-18/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, "node_modules/@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", @@ -5391,9 +5415,10 @@ } }, "node_modules/@emotion/is-prop-valid": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", - "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz", + "integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==", + "license": "MIT", "dependencies": { "@emotion/memoize": "^0.8.1" } @@ -5401,12 +5426,14 @@ "node_modules/@emotion/memoize": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==", + "license": "MIT" }, "node_modules/@emotion/unitless": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==", + "license": "MIT" }, "node_modules/@eslint/eslintrc": { "version": "0.4.3", @@ -5495,7 +5522,8 @@ "node_modules/@exodus/schemasafe": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", - "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==" + "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==", + "license": "MIT" }, "node_modules/@hapi/hoek": { "version": "9.2.1", @@ -6503,14 +6531,15 @@ "integrity": "sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==" }, "node_modules/@redocly/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw==", + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "uri-js-replace": "^1.0.1" }, "funding": { "type": "github", @@ -6520,16 +6549,25 @@ "node_modules/@redocly/ajv/node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/@redocly/config": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.6.3.tgz", + "integrity": "sha512-hGWJgCsXRw0Ow4rplqRlUQifZvoSwZipkYnt11e3SeH1Eb23VUIDBcRuaQOUqy1wn0eevXkU2GzzQ8fbKdQ7Mg==", + "license": "MIT" }, "node_modules/@redocly/openapi-core": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.4.0.tgz", - "integrity": "sha512-M4f0H3XExPvJ0dwbEou7YKLzkpz2ZMS9JoNvrbEECO7WCwjGZ4AjbiUjp2p0ZzFMNIiNgTVUJJmkxGxsXW471Q==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.16.0.tgz", + "integrity": "sha512-z06h+svyqbUcdAaePq8LPSwTPlm6Ig7j2VlL8skPBYnJvyaQ2IN7x/JkOvRL4ta+wcOCBdAex5JWnZbKaNktJg==", + "license": "MIT", "dependencies": { "@redocly/ajv": "^8.11.0", - "@types/node": "^14.11.8", + "@redocly/config": "^0.6.0", "colorette": "^1.2.0", + "https-proxy-agent": "^7.0.4", "js-levenshtein": "^1.1.6", "js-yaml": "^4.1.0", "lodash.isequal": "^4.5.0", @@ -6543,15 +6581,11 @@ "npm": ">=7.0.0" } }, - "node_modules/@redocly/openapi-core/node_modules/@types/node": { - "version": "14.18.63", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz", - "integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==" - }, "node_modules/@redocly/openapi-core/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } @@ -6560,6 +6594,7 @@ "version": "5.1.6", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, @@ -7246,7 +7281,15 @@ "node_modules/@types/stylis": { "version": "4.2.5", "resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.5.tgz", - "integrity": "sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==" + "integrity": "sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==", + "license": "MIT" + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "license": "MIT", + "optional": true }, "node_modules/@types/unist": { "version": "2.0.6", @@ -7486,6 +7529,18 @@ "node": ">= 0.12.0" } }, + "node_modules/agent-base": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/aggregate-error": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", @@ -7753,6 +7808,22 @@ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/array-differ": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", @@ -7775,6 +7846,68 @@ "node": ">=8" } }, + "node_modules/array.prototype.filter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.4.tgz", + "integrity": "sha512-r+mCJ7zXgXElgR4IRC+fkvNCeoaavWBs6EdCso5Tbcf+iEMKzBU/His60lt34WEZ9vlb8wDkZvQGcVI5GwkfoQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-array-method-boxes-properly": "^1.0.0", + "es-object-atoms": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "license": "MIT", + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/arrify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", @@ -7847,6 +7980,21 @@ "postcss": "^8.1.0" } }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/b4a": { "version": "1.6.4", "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", @@ -8278,7 +8426,8 @@ "node_modules/call-me-maybe": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", - "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==" + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", + "license": "MIT" }, "node_modules/callsites": { "version": "3.1.0", @@ -8312,6 +8461,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -8624,9 +8774,10 @@ } }, "node_modules/classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "license": "MIT" }, "node_modules/clean-css": { "version": "5.3.2", @@ -8691,19 +8842,24 @@ } }, "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", "dependencies": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, "node_modules/cliui/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -8718,6 +8874,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -8728,17 +8885,20 @@ "node_modules/cliui/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" }, "node_modules/cliui/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" }, "node_modules/cliui/node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -8752,6 +8912,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -8852,7 +9013,8 @@ "node_modules/colorette": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "license": "MIT" }, "node_modules/combine-promises": { "version": "1.1.0", @@ -9099,24 +9261,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/copyfiles": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.1.tgz", - "integrity": "sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==", - "dependencies": { - "glob": "^7.0.5", - "minimatch": "^3.0.3", - "mkdirp": "^1.0.4", - "noms": "0.0.0", - "through2": "^2.0.1", - "untildify": "^4.0.0", - "yargs": "^16.1.0" - }, - "bin": { - "copyfiles": "copyfiles", - "copyup": "copyfiles" - } - }, "node_modules/core-js": { "version": "3.33.2", "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.2.tgz", @@ -9261,6 +9405,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", + "license": "ISC", "engines": { "node": ">=4" } @@ -9393,6 +9538,7 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", + "license": "MIT", "dependencies": { "camelize": "^1.0.0", "css-color-keywords": "^1.0.0", @@ -9484,9 +9630,61 @@ "license": "CC0-1.0" }, "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/debounce": { "version": "1.2.1", @@ -9619,10 +9817,12 @@ } }, "node_modules/define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", "dependencies": { + "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" }, @@ -9765,6 +9965,13 @@ "node": ">=8" } }, + "node_modules/discontinuous-range": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==", + "license": "MIT", + "peer": true + }, "node_modules/dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", @@ -9806,12 +10013,13 @@ } }, "node_modules/docusaurus-plugin-redoc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/docusaurus-plugin-redoc/-/docusaurus-plugin-redoc-2.0.0.tgz", - "integrity": "sha512-+cUy/wnQVQmuygMxP0gAWODzo502QruhyUTHShxMEBhkL57dOx0COMgd8Iu4BlqiW9RGzN3hEZEpLzGTaGFOtQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-redoc/-/docusaurus-plugin-redoc-2.1.1.tgz", + "integrity": "sha512-gf9HbFAKPZu17rbx+3C6vIpfMMTuvUFG8rRKeuHro1B5wUutBSjE5/VjB1owVGjIJQ74OgVKJvgczqUjhcQcjQ==", + "license": "MIT", "dependencies": { - "@redocly/openapi-core": "1.4.0", - "redoc": "2.1.3" + "@redocly/openapi-core": "1.16.0", + "redoc": "2.1.5" }, "engines": { "node": ">=18" @@ -9833,23 +10041,26 @@ } }, "node_modules/docusaurus-theme-redoc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/docusaurus-theme-redoc/-/docusaurus-theme-redoc-2.0.0.tgz", - "integrity": "sha512-BOew0bVJvc8LV+zMMURx/2pWkk8VQNY2Wow2AFVSCGCkHi4UMwpq50VFL42t0MF6EnoSY9hqArqNfofpUFiiOw==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/docusaurus-theme-redoc/-/docusaurus-theme-redoc-2.1.2.tgz", + "integrity": "sha512-UB6g+YDPjVgFMhJnIUaW/mNl9vsCMbrMQutgdoG5DaI+HpxO2sV+zT2z23Wg6ngi2GM+oxEhYf5Qc1dPwKZqBQ==", + "license": "MIT", "dependencies": { - "@redocly/openapi-core": "1.4.0", + "@redocly/openapi-core": "1.16.0", "clsx": "^1.2.1", - "copyfiles": "^2.4.1", "lodash": "^4.17.21", - "mobx": "^6.10.2", - "redoc": "2.1.3", - "styled-components": "^6.1.0" + "mobx": "^6.12.4", + "postcss": "^8.4.45", + "postcss-prefix-selector": "^1.16.1", + "redoc": "2.1.5", + "styled-components": "^6.1.11" }, "engines": { "node": ">=18" }, "peerDependencies": { - "@docusaurus/theme-common": "^3.0.0" + "@docusaurus/theme-common": "^3.0.0", + "webpack": "^5.0.0" } }, "node_modules/dom-converter": { @@ -9907,9 +10118,13 @@ } }, "node_modules/dompurify": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.5.7.tgz", - "integrity": "sha512-2q4bEI+coQM8f5ez7kt2xclg1XsecaV9ASJk/54vwlfRRNQfDqJz2pzQ8t0Ix/ToBpXlVjrRIx7pFC/o8itG2Q==" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.1.tgz", + "integrity": "sha512-NBHEsc0/kzRYQd+AY6HR6B/IgsqzBABrqJbpCDQII/OK6h7B7LXzweZTDsqSW2LkTRpoxf18YUP+YjGySk6B3w==", + "license": "(MPL-2.0 OR Apache-2.0)", + "optionalDependencies": { + "@types/trusted-types": "^2.0.7" + } }, "node_modules/domutils": { "version": "2.8.0", @@ -10071,6 +10286,53 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, + "node_modules/enzyme": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", + "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", + "license": "MIT", + "peer": true, + "dependencies": { + "array.prototype.flat": "^1.2.3", + "cheerio": "^1.0.0-rc.3", + "enzyme-shallow-equal": "^1.0.1", + "function.prototype.name": "^1.1.2", + "has": "^1.0.3", + "html-element-map": "^1.2.0", + "is-boolean-object": "^1.0.1", + "is-callable": "^1.1.5", + "is-number-object": "^1.0.4", + "is-regex": "^1.0.5", + "is-string": "^1.0.5", + "is-subset": "^0.1.1", + "lodash.escape": "^4.0.1", + "lodash.isequal": "^4.5.0", + "object-inspect": "^1.7.0", + "object-is": "^1.0.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.1", + "object.values": "^1.1.1", + "raf": "^3.4.1", + "rst-selector-parser": "^2.2.3", + "string.prototype.trim": "^1.2.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/enzyme-shallow-equal": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.7.tgz", + "integrity": "sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0", + "object-is": "^1.1.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -10079,6 +10341,73 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/es-abstract": { + "version": "1.23.5", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.5.tgz", + "integrity": "sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.3", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "license": "MIT", + "peer": true + }, "node_modules/es-define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", @@ -10103,10 +10432,64 @@ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==" }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "license": "MIT", + "peer": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/es6-promise": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", - "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==" + "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", + "license": "MIT" }, "node_modules/escalade": { "version": "3.2.0", @@ -10858,7 +11241,30 @@ "node_modules/fast-safe-stringify": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "license": "MIT" + }, + "node_modules/fast-xml-parser": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz", + "integrity": "sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } }, "node_modules/fastq": { "version": "1.13.0", @@ -11091,10 +11497,20 @@ } } }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, "node_modules/foreach": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", - "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==" + "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==", + "license": "MIT" }, "node_modules/foreground-child": { "version": "3.3.0", @@ -11374,6 +11790,24 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", @@ -11381,6 +11815,15 @@ "optional": true, "peer": true }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -11393,6 +11836,7 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } @@ -11431,6 +11875,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/github-from-package": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", @@ -11541,6 +12002,22 @@ "node": ">=4" } }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", @@ -11654,16 +12131,23 @@ "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" }, "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", + "license": "MIT", "engines": { "node": ">= 0.4.0" } }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -11705,6 +12189,21 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-yarn": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", @@ -11957,6 +12456,20 @@ "safe-buffer": "~5.1.0" } }, + "node_modules/html-element-map": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", + "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", + "license": "MIT", + "peer": true, + "dependencies": { + "array.prototype.filter": "^1.0.0", + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/html-entities": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", @@ -12180,7 +12693,8 @@ "node_modules/http2-client": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/http2-client/-/http2-client-1.3.5.tgz", - "integrity": "sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==" + "integrity": "sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==", + "license": "MIT" }, "node_modules/http2-wrapper": { "version": "2.2.1", @@ -12194,6 +12708,19 @@ "node": ">=10.19.0" } }, + "node_modules/https-proxy-agent": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", + "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -12357,6 +12884,20 @@ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", @@ -12403,11 +12944,54 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", @@ -12419,6 +13003,22 @@ "node": ">=8" } }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-buffer": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", @@ -12441,6 +13041,18 @@ "node": ">=4" } }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-ci": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", @@ -12463,6 +13075,36 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "license": "MIT", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-decimal": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", @@ -12502,6 +13144,21 @@ "node": ">=0.10.0" } }, + "node_modules/is-finalizationregistry": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz", + "integrity": "sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -12510,6 +13167,21 @@ "node": ">=8" } }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -12545,6 +13217,30 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-npm": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", @@ -12564,6 +13260,21 @@ "node": ">=0.12.0" } }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", @@ -12618,6 +13329,22 @@ "@types/estree": "*" } }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", @@ -12634,6 +13361,33 @@ "node": ">=6" } }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -12645,11 +13399,103 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-subset": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", + "integrity": "sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==", + "license": "MIT", + "peer": true + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", @@ -12841,6 +13687,7 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12887,6 +13734,7 @@ "version": "0.6.2", "resolved": "https://registry.npmjs.org/json-pointer/-/json-pointer-0.6.2.tgz", "integrity": "sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==", + "license": "MIT", "dependencies": { "foreach": "^2.0.4" } @@ -13082,10 +13930,25 @@ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "license": "MIT" }, + "node_modules/lodash.escape": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", + "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==", + "license": "MIT", + "peer": true + }, + "node_modules/lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==", + "license": "MIT", + "peer": true + }, "node_modules/lodash.isequal": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "license": "MIT" }, "node_modules/lodash.memoize": { "version": "4.1.2", @@ -13208,6 +14071,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", + "license": "MIT", "bin": { "marked": "bin/marked.js" }, @@ -17471,44 +18335,35 @@ "node": ">=16 || 14 >=14.17" } }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/mkdirp-classic": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "node_modules/mobx": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/mobx/-/mobx-6.11.0.tgz", - "integrity": "sha512-qngYCmr0WJiFRSAtYe82DB7SbzvbhehkJjONs8ydynUwoazzUQHZdAlaJqUfks5j4HarhWsZrMRhV7HtSO9HOQ==", + "version": "6.13.5", + "resolved": "https://registry.npmjs.org/mobx/-/mobx-6.13.5.tgz", + "integrity": "sha512-/HTWzW2s8J1Gqt+WmUj5Y0mddZk+LInejADc79NJadrWla3rHzmRHki/mnEUH1AvOmbNTZ1BRbKxr8DSgfdjMA==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/mobx" } }, "node_modules/mobx-react": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/mobx-react/-/mobx-react-7.6.0.tgz", - "integrity": "sha512-+HQUNuh7AoQ9ZnU6c4rvbiVVl+wEkb9WqYsVDzGLng+Dqj1XntHu79PvEWKtSMoMj67vFp/ZPXcElosuJO8ckA==", + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/mobx-react/-/mobx-react-9.1.1.tgz", + "integrity": "sha512-gVV7AdSrAAxqXOJ2bAbGa5TkPqvITSzaPiiEkzpW4rRsMhSec7C2NBCJYILADHKp2tzOAIETGRsIY0UaCV5aEw==", + "license": "MIT", "dependencies": { - "mobx-react-lite": "^3.4.0" + "mobx-react-lite": "^4.0.7" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/mobx" }, "peerDependencies": { - "mobx": "^6.1.0", + "mobx": "^6.9.0", "react": "^16.8.0 || ^17 || ^18" }, "peerDependenciesMeta": { @@ -17521,15 +18376,19 @@ } }, "node_modules/mobx-react-lite": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.4.3.tgz", - "integrity": "sha512-NkJREyFTSUXR772Qaai51BnE1voWx56LOL80xG7qkZr6vo8vEaLF3sz1JNUVh+rxmUzxYaqOhfuxTfqUh0FXUg==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-4.0.7.tgz", + "integrity": "sha512-RjwdseshK9Mg8On5tyJZHtGD+J78ZnCnRaxeQDSiciKVQDUbfZcXhmld0VMxAwvcTnPEHZySGGewm467Fcpreg==", + "license": "MIT", + "dependencies": { + "use-sync-external-store": "^1.2.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/mobx" }, "peerDependencies": { - "mobx": "^6.1.0", + "mobx": "^6.9.0", "react": "^16.8.0 || ^17 || ^18" }, "peerDependenciesMeta": { @@ -17541,6 +18400,13 @@ } } }, + "node_modules/moo": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", + "license": "BSD-3-Clause", + "peer": true + }, "node_modules/mri": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", @@ -17631,6 +18497,36 @@ "optional": true, "peer": true }, + "node_modules/nearley": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "bin": { + "nearley-railroad": "bin/nearley-railroad.js", + "nearley-test": "bin/nearley-test.js", + "nearley-unparse": "bin/nearley-unparse.js", + "nearleyc": "bin/nearleyc.js" + }, + "funding": { + "type": "individual", + "url": "https://nearley.js.org/#give-to-nearley" + } + }, + "node_modules/nearley/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT", + "peer": true + }, "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", @@ -17695,6 +18591,7 @@ "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -17714,6 +18611,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/node-fetch-h2/-/node-fetch-h2-2.3.0.tgz", "integrity": "sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==", + "license": "MIT", "dependencies": { "http2-client": "^1.2.5" }, @@ -17733,6 +18631,7 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/node-readfiles/-/node-readfiles-0.2.0.tgz", "integrity": "sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==", + "license": "MIT", "dependencies": { "es6-promise": "^3.2.1" } @@ -17742,31 +18641,6 @@ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" }, - "node_modules/noms": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/noms/-/noms-0.0.0.tgz", - "integrity": "sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==", - "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "~1.0.31" - } - }, - "node_modules/noms/node_modules/readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/noms/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" - }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", @@ -17853,6 +18727,7 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/oas-kit-common/-/oas-kit-common-1.0.8.tgz", "integrity": "sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==", + "license": "BSD-3-Clause", "dependencies": { "fast-safe-stringify": "^2.0.7" } @@ -17861,6 +18736,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/oas-linter/-/oas-linter-3.2.2.tgz", "integrity": "sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==", + "license": "BSD-3-Clause", "dependencies": { "@exodus/schemasafe": "^1.0.0-rc.2", "should": "^13.2.1", @@ -17874,6 +18750,7 @@ "version": "2.5.6", "resolved": "https://registry.npmjs.org/oas-resolver/-/oas-resolver-2.5.6.tgz", "integrity": "sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==", + "license": "BSD-3-Clause", "dependencies": { "node-fetch-h2": "^2.3.0", "oas-kit-common": "^1.0.8", @@ -17888,112 +18765,11 @@ "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/oas-resolver/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/oas-resolver/node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/oas-resolver/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/oas-resolver/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/oas-resolver/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/oas-resolver/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/oas-resolver/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/oas-resolver/node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/oas-resolver/node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { - "node": ">=12" - } - }, "node_modules/oas-schema-walker": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/oas-schema-walker/-/oas-schema-walker-1.1.5.tgz", "integrity": "sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==", + "license": "BSD-3-Clause", "funding": { "url": "https://github.com/Mermade/oas-kit?sponsor=1" } @@ -18002,6 +18778,7 @@ "version": "5.0.8", "resolved": "https://registry.npmjs.org/oas-validator/-/oas-validator-5.0.8.tgz", "integrity": "sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==", + "license": "BSD-3-Clause", "dependencies": { "call-me-maybe": "^1.0.1", "oas-kit-common": "^1.0.8", @@ -18025,9 +18802,26 @@ } }, "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, "engines": { "node": ">= 0.4" }, @@ -18044,13 +18838,14 @@ } }, "node_modules/object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, "engines": { @@ -18060,6 +18855,39 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", @@ -18123,11 +18951,13 @@ } }, "node_modules/openapi-sampler": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.4.0.tgz", - "integrity": "sha512-3FKJQCHAMG9T7RsRy9u5Ft4ERPq1QQmn77C8T3OSofYL9uur59AqychvQ0YQKijrqRwIkAbzkh+nQnAE3gjMVA==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.6.0.tgz", + "integrity": "sha512-0PKhql1Ms38xSngEztcNQ7EXgssR2jAyVX7RckEln4reynIr/HHwuwM29cDEpiNkk4OkrHoc+7Li9V7WTAPYmw==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.7", + "fast-xml-parser": "^4.5.0", "json-pointer": "0.6.2" } }, @@ -18387,7 +19217,8 @@ "node_modules/path-browserify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "license": "MIT" }, "node_modules/path-exists": { "version": "4.0.0", @@ -18462,9 +19293,17 @@ } }, "node_modules/perfect-scrollbar": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz", - "integrity": "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==" + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.6.tgz", + "integrity": "sha512-rixgxw3SxyJbCaSpo1n35A/fwI1r2rdwMKOTCg/AcG+xOEyZcE8UHVjpZMFCVImzsFoCZeJTT+M/rdEIQYO2nw==", + "license": "MIT" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "license": "MIT", + "peer": true }, "node_modules/periscopic": { "version": "3.1.0", @@ -18648,14 +19487,16 @@ "version": "8.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/polished": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", - "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.3.1.tgz", + "integrity": "sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.17.8" }, @@ -18663,6 +19504,15 @@ "node": ">=10" } }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/postcss": { "version": "8.4.49", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", @@ -19416,6 +20266,15 @@ "postcss": "^8.4" } }, + "node_modules/postcss-prefix-selector": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.16.1.tgz", + "integrity": "sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ==", + "license": "MIT", + "peerDependencies": { + "postcss": ">4 <9" + } + }, "node_modules/postcss-preset-env": { "version": "10.1.1", "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.1.1.tgz", @@ -19990,6 +20849,37 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "license": "MIT", + "peer": true, + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/railroad-diagrams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", + "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==", + "license": "CC0-1.0", + "peer": true + }, + "node_modules/randexp": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" + }, + "engines": { + "node": ">=0.12" + } + }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -20388,16 +21278,39 @@ "react": ">=15" } }, + "node_modules/react-shallow-renderer": { + "version": "16.15.0", + "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", + "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1", + "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/react-tabs": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/react-tabs/-/react-tabs-4.3.0.tgz", - "integrity": "sha512-2GfoG+f41kiBIIyd3gF+/GRCCYtamC8/2zlAcD8cqQmqI9Q+YVz7fJLHMmU9pXDVYYHpJeCgUSBJju85vu5q8Q==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/react-tabs/-/react-tabs-6.0.2.tgz", + "integrity": "sha512-aQXTKolnM28k3KguGDBSAbJvcowOQr23A+CUJdzJtOSDOtTwzEaJA+1U4KwhNL9+Obe+jFS7geuvA7ICQPXOnQ==", + "license": "MIT", "dependencies": { - "clsx": "^1.1.0", + "clsx": "^2.0.0", "prop-types": "^15.5.0" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-0 || ^18.0.0" + "react": "^18.0.0" + } + }, + "node_modules/react-tabs/node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" } }, "node_modules/react-waypoint": { @@ -20471,30 +21384,32 @@ } }, "node_modules/redoc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/redoc/-/redoc-2.1.3.tgz", - "integrity": "sha512-d7F9qLLxaiFW4GC03VkwlX9wuRIpx9aiIIf3o6mzMnqPfhxrn2IRKGndrkJeVdItgCfmg9jXZiFEowm60f1meQ==", + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/redoc/-/redoc-2.1.5.tgz", + "integrity": "sha512-POSbVg+7WLf+/5/c6GWLxL7+9t2D+1WlZdLN0a6qaCQc+ih3XYzteRBkXEN5kjrYrRNjdspfxTZkDLN5WV3Tzg==", + "license": "MIT", "dependencies": { - "@redocly/openapi-core": "^1.0.0-rc.2", - "classnames": "^2.3.1", + "@cfaester/enzyme-adapter-react-18": "^0.8.0", + "@redocly/openapi-core": "^1.4.0", + "classnames": "^2.3.2", "decko": "^1.2.0", - "dompurify": "^2.2.8", - "eventemitter3": "^4.0.7", + "dompurify": "^3.0.6", + "eventemitter3": "^5.0.1", "json-pointer": "^0.6.2", "lunr": "^2.3.9", "mark.js": "^8.11.1", - "marked": "^4.0.15", - "mobx-react": "^7.2.0", - "openapi-sampler": "^1.3.1", + "marked": "^4.3.0", + "mobx-react": "^9.1.1", + "openapi-sampler": "^1.5.0", "path-browserify": "^1.0.1", "perfect-scrollbar": "^1.5.5", - "polished": "^4.1.3", - "prismjs": "^1.27.0", - "prop-types": "^15.7.2", - "react-tabs": "^4.3.0", + "polished": "^4.2.2", + "prismjs": "^1.29.0", + "prop-types": "^15.8.1", + "react-tabs": "^6.0.2", "slugify": "~1.4.7", "stickyfill": "^1.1.1", - "swagger2openapi": "^7.0.6", + "swagger2openapi": "^7.0.8", "url-template": "^2.0.8" }, "engines": { @@ -20509,13 +21424,20 @@ "styled-components": "^4.1.1 || ^5.1.1 || ^6.0.5" } }, + "node_modules/redoc/node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "license": "MIT" + }, "node_modules/redocusaurus": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/redocusaurus/-/redocusaurus-2.0.0.tgz", - "integrity": "sha512-wRSpkY+PwkqAj98RD+1ec6U8KDKySH6GT0jahWY+dPlpckyHj7D5i3ipXdTiJ6jXXCyM2qUwimX5PZJEdooDhA==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/redocusaurus/-/redocusaurus-2.1.2.tgz", + "integrity": "sha512-PqMXxmjAyQ78zdI9W5lUI21a9N9bXDQYj5NuTcjG5xmyn63+KfqF+ugmqh7FbY3Fr9Sud14X6ZDoRGdwVtBDew==", + "license": "MIT", "dependencies": { - "docusaurus-plugin-redoc": "2.0.0", - "docusaurus-theme-redoc": "2.0.0" + "docusaurus-plugin-redoc": "2.1.1", + "docusaurus-theme-redoc": "2.1.2" }, "engines": { "node": ">=14" @@ -20525,10 +21447,32 @@ "@docusaurus/utils": "^3.0.0" } }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.7.tgz", + "integrity": "sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "which-builtin-type": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/reftools": { "version": "1.1.9", "resolved": "https://registry.npmjs.org/reftools/-/reftools-1.1.9.tgz", "integrity": "sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==", + "license": "BSD-3-Clause", "funding": { "url": "https://github.com/Mermade/oas-kit?sponsor=1" } @@ -20564,6 +21508,24 @@ "@babel/runtime": "^7.8.4" } }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", @@ -21084,6 +22046,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -21157,6 +22120,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.12" + } + }, "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -21188,6 +22161,17 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/rst-selector-parser": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", + "integrity": "sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==", + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "lodash.flattendeep": "^4.4.0", + "nearley": "^2.7.10" + } + }, "node_modules/rtl-detect": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.0.4.tgz", @@ -21244,11 +22228,52 @@ "node": ">=6" } }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -21666,6 +22691,21 @@ "node": ">= 0.4" } }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", @@ -21776,6 +22816,7 @@ "version": "13.2.3", "resolved": "https://registry.npmjs.org/should/-/should-13.2.3.tgz", "integrity": "sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==", + "license": "MIT", "dependencies": { "should-equal": "^2.0.0", "should-format": "^3.0.3", @@ -21788,6 +22829,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/should-equal/-/should-equal-2.0.0.tgz", "integrity": "sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==", + "license": "MIT", "dependencies": { "should-type": "^1.4.0" } @@ -21796,6 +22838,7 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/should-format/-/should-format-3.0.3.tgz", "integrity": "sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==", + "license": "MIT", "dependencies": { "should-type": "^1.3.0", "should-type-adaptors": "^1.0.1" @@ -21804,12 +22847,14 @@ "node_modules/should-type": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/should-type/-/should-type-1.4.0.tgz", - "integrity": "sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==" + "integrity": "sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==", + "license": "MIT" }, "node_modules/should-type-adaptors": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz", "integrity": "sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==", + "license": "MIT", "dependencies": { "should-type": "^1.3.0", "should-util": "^1.0.0" @@ -21818,7 +22863,8 @@ "node_modules/should-util": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz", - "integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==" + "integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==", + "license": "MIT" }, "node_modules/side-channel": { "version": "1.0.6", @@ -21958,6 +23004,7 @@ "version": "1.4.7", "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.4.7.tgz", "integrity": "sha512-tf+h5W1IrjNm/9rKKj0JU2MDMruiopx0jjVA5zCdBtcGjfp0+c5rHw/zADLC3IeKlGHtVbHtpfzvYA0OYT+HKg==", + "license": "MIT", "engines": { "node": ">=8.0.0" } @@ -22192,6 +23239,55 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/stringify-entities": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", @@ -22277,6 +23373,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "license": "MIT" + }, "node_modules/style-to-object": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", @@ -22286,19 +23388,20 @@ } }, "node_modules/styled-components": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-6.1.2.tgz", - "integrity": "sha512-LJjirciivbOKNuKKjheXMeNOlFspur4s2/AYW2hPyrL4RhwEFiowF9axgjeMVxX7siEoLJAitKrzpuNApJ5R/Q==", + "version": "6.1.13", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-6.1.13.tgz", + "integrity": "sha512-M0+N2xSnAtwcVAQeFEsGWFFxXDftHUD7XrKla06QbpUMmbmtFBMMTcKWvFXtWxuD5qQkB8iU5gk6QASlx2ZRMw==", + "license": "MIT", "dependencies": { - "@emotion/is-prop-valid": "^1.2.1", - "@emotion/unitless": "^0.8.0", - "@types/stylis": "^4.0.2", - "css-to-react-native": "^3.2.0", - "csstype": "^3.1.2", - "postcss": "^8.4.31", - "shallowequal": "^1.1.0", - "stylis": "^4.3.0", - "tslib": "^2.5.0" + "@emotion/is-prop-valid": "1.2.2", + "@emotion/unitless": "0.8.1", + "@types/stylis": "4.2.5", + "css-to-react-native": "3.2.0", + "csstype": "3.1.3", + "postcss": "8.4.38", + "shallowequal": "1.1.0", + "stylis": "4.3.2", + "tslib": "2.6.2" }, "engines": { "node": ">= 16" @@ -22312,10 +23415,39 @@ "react-dom": ">= 16.8.0" } }, + "node_modules/styled-components/node_modules/postcss": { + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, "node_modules/stylis": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.0.tgz", - "integrity": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.2.tgz", + "integrity": "sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==", + "license": "MIT" }, "node_modules/sucrase": { "version": "3.35.0", @@ -22517,6 +23649,7 @@ "version": "7.0.8", "resolved": "https://registry.npmjs.org/swagger2openapi/-/swagger2openapi-7.0.8.tgz", "integrity": "sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==", + "license": "BSD-3-Clause", "dependencies": { "call-me-maybe": "^1.0.1", "node-fetch": "^2.6.1", @@ -22539,108 +23672,6 @@ "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/swagger2openapi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/swagger2openapi/node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/swagger2openapi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/swagger2openapi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/swagger2openapi/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/swagger2openapi/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/swagger2openapi/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/swagger2openapi/node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/swagger2openapi/node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { - "node": ">=12" - } - }, "node_modules/table": { "version": "6.8.0", "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", @@ -22890,42 +23921,6 @@ "node": ">=0.8" } }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", @@ -22976,7 +23971,8 @@ "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" }, "node_modules/trim-lines": { "version": "3.0.1", @@ -23073,6 +24069,80 @@ "node": ">= 0.6" } }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz", + "integrity": "sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -23093,6 +24163,21 @@ "node": ">=14.17" } }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/undici": { "version": "6.21.0", "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.0.tgz", @@ -23333,14 +24418,6 @@ "node": ">= 0.8" } }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "engines": { - "node": ">=8" - } - }, "node_modules/update-browserslist-db": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", @@ -23448,6 +24525,12 @@ "punycode": "^2.1.0" } }, + "node_modules/uri-js-replace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uri-js-replace/-/uri-js-replace-1.0.1.tgz", + "integrity": "sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==", + "license": "MIT" + }, "node_modules/uri-js/node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -23521,7 +24604,8 @@ "node_modules/url-template": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", - "integrity": "sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==" + "integrity": "sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==", + "license": "BSD" }, "node_modules/use-editable": { "version": "2.3.3", @@ -23532,6 +24616,15 @@ "react": ">= 16.8.0" } }, + "node_modules/use-sync-external-store": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", + "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -23698,7 +24791,8 @@ "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" }, "node_modules/webpack": { "version": "5.96.1", @@ -24048,6 +25142,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -24067,6 +25162,92 @@ "node": ">= 8" } }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.0.tgz", + "integrity": "sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/widest-line": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", @@ -24298,18 +25479,11 @@ "node": ">=4.0" } }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", "engines": { "node": ">=10" } @@ -24330,42 +25504,47 @@ "node_modules/yaml-ast-parser": { "version": "0.0.43", "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", - "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==" + "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==", + "license": "Apache-2.0" }, "node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", "dependencies": { - "cliui": "^7.0.2", + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "string-width": "^4.2.0", + "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "yargs-parser": "^21.1.1" }, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/yargs/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" }, "node_modules/yargs/node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -25796,6 +26975,25 @@ "@babel/helper-validator-identifier": "^7.25.9" } }, + "@cfaester/enzyme-adapter-react-18": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@cfaester/enzyme-adapter-react-18/-/enzyme-adapter-react-18-0.8.0.tgz", + "integrity": "sha512-3Z3ThTUouHwz8oIyhTYQljEMNRFtlVyc3VOOHCbxs47U6cnXs8K9ygi/c1tv49s7MBlTXeIcuN+Ttd9aPtILFQ==", + "requires": { + "enzyme-shallow-equal": "^1.0.0", + "function.prototype.name": "^1.1.6", + "has": "^1.0.4", + "react-is": "^18.2.0", + "react-shallow-renderer": "^16.15.0" + }, + "dependencies": { + "react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + } + } + }, "@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", @@ -27572,9 +28770,9 @@ } }, "@emotion/is-prop-valid": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", - "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz", + "integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==", "requires": { "@emotion/memoize": "^0.8.1" } @@ -28225,14 +29423,14 @@ "integrity": "sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==" }, "@redocly/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw==", + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==", "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "uri-js-replace": "^1.0.1" }, "dependencies": { "json-schema-traverse": { @@ -28242,14 +29440,20 @@ } } }, + "@redocly/config": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.6.3.tgz", + "integrity": "sha512-hGWJgCsXRw0Ow4rplqRlUQifZvoSwZipkYnt11e3SeH1Eb23VUIDBcRuaQOUqy1wn0eevXkU2GzzQ8fbKdQ7Mg==" + }, "@redocly/openapi-core": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.4.0.tgz", - "integrity": "sha512-M4f0H3XExPvJ0dwbEou7YKLzkpz2ZMS9JoNvrbEECO7WCwjGZ4AjbiUjp2p0ZzFMNIiNgTVUJJmkxGxsXW471Q==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.16.0.tgz", + "integrity": "sha512-z06h+svyqbUcdAaePq8LPSwTPlm6Ig7j2VlL8skPBYnJvyaQ2IN7x/JkOvRL4ta+wcOCBdAex5JWnZbKaNktJg==", "requires": { "@redocly/ajv": "^8.11.0", - "@types/node": "^14.11.8", + "@redocly/config": "^0.6.0", "colorette": "^1.2.0", + "https-proxy-agent": "^7.0.4", "js-levenshtein": "^1.1.6", "js-yaml": "^4.1.0", "lodash.isequal": "^4.5.0", @@ -28259,11 +29463,6 @@ "yaml-ast-parser": "0.0.43" }, "dependencies": { - "@types/node": { - "version": "14.18.63", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz", - "integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==" - }, "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -28803,6 +30002,12 @@ "resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.5.tgz", "integrity": "sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==" }, + "@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "optional": true + }, "@types/unist": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", @@ -29020,6 +30225,14 @@ "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" }, + "agent-base": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "requires": { + "debug": "^4.3.4" + } + }, "aggregate-error": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", @@ -29228,6 +30441,15 @@ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, + "array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "requires": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + } + }, "array-differ": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", @@ -29244,6 +30466,47 @@ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" }, + "array.prototype.filter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.4.tgz", + "integrity": "sha512-r+mCJ7zXgXElgR4IRC+fkvNCeoaavWBs6EdCso5Tbcf+iEMKzBU/His60lt34WEZ9vlb8wDkZvQGcVI5GwkfoQ==", + "peer": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-array-method-boxes-properly": "^1.0.0", + "es-object-atoms": "^1.0.0", + "is-string": "^1.0.7" + } + }, + "array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "peer": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "requires": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + } + }, "arrify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", @@ -29280,6 +30543,14 @@ "postcss-value-parser": "^4.2.0" } }, + "available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "requires": { + "possible-typed-array-names": "^1.0.0" + } + }, "b4a": { "version": "1.6.4", "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", @@ -29806,9 +31077,9 @@ "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" }, "classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" }, "clean-css": { "version": "5.3.2", @@ -29855,12 +31126,12 @@ } }, "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "requires": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" }, "dependencies": { @@ -30163,20 +31434,6 @@ } } }, - "copyfiles": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.1.tgz", - "integrity": "sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==", - "requires": { - "glob": "^7.0.5", - "minimatch": "^3.0.3", - "mkdirp": "^1.0.4", - "noms": "0.0.0", - "through2": "^2.0.1", - "untildify": "^4.0.0", - "yargs": "^16.1.0" - } - }, "core-js": { "version": "3.33.2", "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.2.tgz", @@ -30379,9 +31636,39 @@ } }, "csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } }, "debounce": { "version": "1.2.1", @@ -30470,10 +31757,11 @@ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" }, "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "requires": { + "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } @@ -30572,6 +31860,12 @@ "path-type": "^4.0.0" } }, + "discontinuous-range": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==", + "peer": true + }, "dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", @@ -30604,12 +31898,12 @@ } }, "docusaurus-plugin-redoc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/docusaurus-plugin-redoc/-/docusaurus-plugin-redoc-2.0.0.tgz", - "integrity": "sha512-+cUy/wnQVQmuygMxP0gAWODzo502QruhyUTHShxMEBhkL57dOx0COMgd8Iu4BlqiW9RGzN3hEZEpLzGTaGFOtQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-redoc/-/docusaurus-plugin-redoc-2.1.1.tgz", + "integrity": "sha512-gf9HbFAKPZu17rbx+3C6vIpfMMTuvUFG8rRKeuHro1B5wUutBSjE5/VjB1owVGjIJQ74OgVKJvgczqUjhcQcjQ==", "requires": { - "@redocly/openapi-core": "1.4.0", - "redoc": "2.1.3" + "@redocly/openapi-core": "1.16.0", + "redoc": "2.1.5" } }, "docusaurus-plugin-sass": { @@ -30621,17 +31915,18 @@ } }, "docusaurus-theme-redoc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/docusaurus-theme-redoc/-/docusaurus-theme-redoc-2.0.0.tgz", - "integrity": "sha512-BOew0bVJvc8LV+zMMURx/2pWkk8VQNY2Wow2AFVSCGCkHi4UMwpq50VFL42t0MF6EnoSY9hqArqNfofpUFiiOw==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/docusaurus-theme-redoc/-/docusaurus-theme-redoc-2.1.2.tgz", + "integrity": "sha512-UB6g+YDPjVgFMhJnIUaW/mNl9vsCMbrMQutgdoG5DaI+HpxO2sV+zT2z23Wg6ngi2GM+oxEhYf5Qc1dPwKZqBQ==", "requires": { - "@redocly/openapi-core": "1.4.0", + "@redocly/openapi-core": "1.16.0", "clsx": "^1.2.1", - "copyfiles": "^2.4.1", "lodash": "^4.17.21", - "mobx": "^6.10.2", - "redoc": "2.1.3", - "styled-components": "^6.1.0" + "mobx": "^6.12.4", + "postcss": "^8.4.45", + "postcss-prefix-selector": "^1.16.1", + "redoc": "2.1.5", + "styled-components": "^6.1.11" } }, "dom-converter": { @@ -30673,9 +31968,12 @@ } }, "dompurify": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.5.7.tgz", - "integrity": "sha512-2q4bEI+coQM8f5ez7kt2xclg1XsecaV9ASJk/54vwlfRRNQfDqJz2pzQ8t0Ix/ToBpXlVjrRIx7pFC/o8itG2Q==" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.1.tgz", + "integrity": "sha512-NBHEsc0/kzRYQd+AY6HR6B/IgsqzBABrqJbpCDQII/OK6h7B7LXzweZTDsqSW2LkTRpoxf18YUP+YjGySk6B3w==", + "requires": { + "@types/trusted-types": "^2.0.7" + } }, "domutils": { "version": "2.8.0", @@ -30800,6 +32098,45 @@ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" }, + "enzyme": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", + "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", + "peer": true, + "requires": { + "array.prototype.flat": "^1.2.3", + "cheerio": "^1.0.0-rc.3", + "enzyme-shallow-equal": "^1.0.1", + "function.prototype.name": "^1.1.2", + "has": "^1.0.3", + "html-element-map": "^1.2.0", + "is-boolean-object": "^1.0.1", + "is-callable": "^1.1.5", + "is-number-object": "^1.0.4", + "is-regex": "^1.0.5", + "is-string": "^1.0.5", + "is-subset": "^0.1.1", + "lodash.escape": "^4.0.1", + "lodash.isequal": "^4.5.0", + "object-inspect": "^1.7.0", + "object-is": "^1.0.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.1", + "object.values": "^1.1.1", + "raf": "^3.4.1", + "rst-selector-parser": "^2.2.3", + "string.prototype.trim": "^1.2.1" + } + }, + "enzyme-shallow-equal": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.7.tgz", + "integrity": "sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg==", + "requires": { + "hasown": "^2.0.0", + "object-is": "^1.1.5" + } + }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -30808,6 +32145,65 @@ "is-arrayish": "^0.2.1" } }, + "es-abstract": { + "version": "1.23.5", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.5.tgz", + "integrity": "sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==", + "requires": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.3", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "peer": true + }, "es-define-property": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", @@ -30826,6 +32222,43 @@ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==" }, + "es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "requires": { + "es-errors": "^1.3.0" + } + }, + "es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "requires": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + } + }, + "es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "peer": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, "es6-promise": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", @@ -31395,6 +32828,14 @@ "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" }, + "fast-xml-parser": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz", + "integrity": "sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==", + "requires": { + "strnum": "^1.0.5" + } + }, "fastq": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", @@ -31555,6 +32996,14 @@ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==" }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, "foreach": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", @@ -31740,6 +33189,17 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" }, + "function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + } + }, "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", @@ -31747,6 +33207,11 @@ "optional": true, "peer": true }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -31779,6 +33244,16 @@ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" }, + "get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "requires": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + } + }, "github-from-package": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", @@ -31863,6 +33338,15 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" }, + "globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "requires": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + } + }, "globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", @@ -31951,12 +33435,14 @@ "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" }, "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==" + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" }, "has-flag": { "version": "3.0.0", @@ -31981,6 +33467,14 @@ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "requires": { + "has-symbols": "^1.0.3" + } + }, "has-yarn": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", @@ -32197,6 +33691,16 @@ } } }, + "html-element-map": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", + "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", + "peer": true, + "requires": { + "array.prototype.filter": "^1.0.0", + "call-bind": "^1.0.2" + } + }, "html-entities": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", @@ -32352,6 +33856,15 @@ "resolve-alpn": "^1.2.0" } }, + "https-proxy-agent": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", + "requires": { + "agent-base": "^7.0.2", + "debug": "4" + } + }, "human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -32457,6 +33970,16 @@ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" }, + "internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "requires": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + } + }, "interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", @@ -32489,11 +34012,36 @@ "is-decimal": "^2.0.0" } }, + "is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + } + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, + "is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", @@ -32502,11 +34050,25 @@ "binary-extensions": "^2.0.0" } }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, "is-buffer": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, "is-ci": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", @@ -32523,6 +34085,22 @@ "has": "^1.0.3" } }, + "is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "requires": { + "is-typed-array": "^1.1.13" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, "is-decimal": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", @@ -32543,11 +34121,27 @@ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, + "is-finalizationregistry": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz", + "integrity": "sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==", + "requires": { + "call-bind": "^1.0.7" + } + }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" }, + "is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -32570,6 +34164,16 @@ "is-path-inside": "^3.0.2" } }, + "is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==" + }, + "is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" + }, "is-npm": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", @@ -32580,6 +34184,14 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, "is-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", @@ -32616,6 +34228,15 @@ "@types/estree": "*" } }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, "is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", @@ -32626,16 +34247,81 @@ "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" }, + "is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==" + }, + "is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "requires": { + "call-bind": "^1.0.7" + } + }, "is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-subset": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", + "integrity": "sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==", + "peer": true + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "requires": { + "which-typed-array": "^1.1.14" + } + }, "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" }, + "is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==" + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "requires": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + } + }, "is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", @@ -32958,6 +34644,18 @@ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" }, + "lodash.escape": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", + "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==", + "peer": true + }, + "lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==", + "peer": true + }, "lodash.isequal": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", @@ -35436,34 +37134,37 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - }, "mkdirp-classic": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, "mobx": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/mobx/-/mobx-6.11.0.tgz", - "integrity": "sha512-qngYCmr0WJiFRSAtYe82DB7SbzvbhehkJjONs8ydynUwoazzUQHZdAlaJqUfks5j4HarhWsZrMRhV7HtSO9HOQ==" + "version": "6.13.5", + "resolved": "https://registry.npmjs.org/mobx/-/mobx-6.13.5.tgz", + "integrity": "sha512-/HTWzW2s8J1Gqt+WmUj5Y0mddZk+LInejADc79NJadrWla3rHzmRHki/mnEUH1AvOmbNTZ1BRbKxr8DSgfdjMA==" }, "mobx-react": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/mobx-react/-/mobx-react-7.6.0.tgz", - "integrity": "sha512-+HQUNuh7AoQ9ZnU6c4rvbiVVl+wEkb9WqYsVDzGLng+Dqj1XntHu79PvEWKtSMoMj67vFp/ZPXcElosuJO8ckA==", + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/mobx-react/-/mobx-react-9.1.1.tgz", + "integrity": "sha512-gVV7AdSrAAxqXOJ2bAbGa5TkPqvITSzaPiiEkzpW4rRsMhSec7C2NBCJYILADHKp2tzOAIETGRsIY0UaCV5aEw==", "requires": { - "mobx-react-lite": "^3.4.0" + "mobx-react-lite": "^4.0.7" } }, "mobx-react-lite": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.4.3.tgz", - "integrity": "sha512-NkJREyFTSUXR772Qaai51BnE1voWx56LOL80xG7qkZr6vo8vEaLF3sz1JNUVh+rxmUzxYaqOhfuxTfqUh0FXUg==", - "requires": {} + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-4.0.7.tgz", + "integrity": "sha512-RjwdseshK9Mg8On5tyJZHtGD+J78ZnCnRaxeQDSiciKVQDUbfZcXhmld0VMxAwvcTnPEHZySGGewm467Fcpreg==", + "requires": { + "use-sync-external-store": "^1.2.0" + } + }, + "moo": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", + "peer": true }, "mri": { "version": "1.2.0", @@ -35529,6 +37230,26 @@ "optional": true, "peer": true }, + "nearley": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "peer": true, + "requires": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "peer": true + } + } + }, "negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", @@ -35613,33 +37334,6 @@ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" }, - "noms": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/noms/-/noms-0.0.0.tgz", - "integrity": "sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==", - "requires": { - "inherits": "^2.0.1", - "readable-stream": "~1.0.31" - }, - "dependencies": { - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" - } - } - }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", @@ -35720,83 +37414,6 @@ "reftools": "^1.1.9", "yaml": "^1.10.0", "yargs": "^17.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "requires": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - } - }, - "yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } } }, "oas-schema-walker": { @@ -35825,9 +37442,18 @@ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, "object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==" + }, + "object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + } }, "object-keys": { "version": "1.1.1", @@ -35835,16 +37461,38 @@ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" } }, + "object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", + "peer": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "peer": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, "obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", @@ -35890,11 +37538,12 @@ } }, "openapi-sampler": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.4.0.tgz", - "integrity": "sha512-3FKJQCHAMG9T7RsRy9u5Ft4ERPq1QQmn77C8T3OSofYL9uur59AqychvQ0YQKijrqRwIkAbzkh+nQnAE3gjMVA==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.6.0.tgz", + "integrity": "sha512-0PKhql1Ms38xSngEztcNQ7EXgssR2jAyVX7RckEln4reynIr/HHwuwM29cDEpiNkk4OkrHoc+7Li9V7WTAPYmw==", "requires": { "@types/json-schema": "^7.0.7", + "fast-xml-parser": "^4.5.0", "json-pointer": "0.6.2" } }, @@ -36140,9 +37789,15 @@ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" }, "perfect-scrollbar": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz", - "integrity": "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==" + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.6.tgz", + "integrity": "sha512-rixgxw3SxyJbCaSpo1n35A/fwI1r2rdwMKOTCg/AcG+xOEyZcE8UHVjpZMFCVImzsFoCZeJTT+M/rdEIQYO2nw==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "peer": true }, "periscopic": { "version": "3.1.0", @@ -36268,13 +37923,18 @@ "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" }, "polished": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", - "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.3.1.tgz", + "integrity": "sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==", "requires": { "@babel/runtime": "^7.17.8" } }, + "possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==" + }, "postcss": { "version": "8.4.49", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", @@ -36598,6 +38258,12 @@ "postcss-value-parser": "^4.2.0" } }, + "postcss-prefix-selector": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.16.1.tgz", + "integrity": "sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ==", + "requires": {} + }, "postcss-preset-env": { "version": "10.1.1", "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.1.1.tgz", @@ -36994,6 +38660,31 @@ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "peer": true, + "requires": { + "performance-now": "^2.1.0" + } + }, + "railroad-diagrams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", + "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==", + "peer": true + }, + "randexp": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", + "peer": true, + "requires": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" + } + }, "randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -37278,13 +38969,29 @@ "tiny-warning": "^1.0.0" } }, + "react-shallow-renderer": { + "version": "16.15.0", + "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", + "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", + "requires": { + "object-assign": "^4.1.1", + "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" + } + }, "react-tabs": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/react-tabs/-/react-tabs-4.3.0.tgz", - "integrity": "sha512-2GfoG+f41kiBIIyd3gF+/GRCCYtamC8/2zlAcD8cqQmqI9Q+YVz7fJLHMmU9pXDVYYHpJeCgUSBJju85vu5q8Q==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/react-tabs/-/react-tabs-6.0.2.tgz", + "integrity": "sha512-aQXTKolnM28k3KguGDBSAbJvcowOQr23A+CUJdzJtOSDOtTwzEaJA+1U4KwhNL9+Obe+jFS7geuvA7ICQPXOnQ==", "requires": { - "clsx": "^1.1.0", + "clsx": "^2.0.0", "prop-types": "^15.5.0" + }, + "dependencies": { + "clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" + } } }, "react-waypoint": { @@ -37345,40 +39052,62 @@ } }, "redoc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/redoc/-/redoc-2.1.3.tgz", - "integrity": "sha512-d7F9qLLxaiFW4GC03VkwlX9wuRIpx9aiIIf3o6mzMnqPfhxrn2IRKGndrkJeVdItgCfmg9jXZiFEowm60f1meQ==", + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/redoc/-/redoc-2.1.5.tgz", + "integrity": "sha512-POSbVg+7WLf+/5/c6GWLxL7+9t2D+1WlZdLN0a6qaCQc+ih3XYzteRBkXEN5kjrYrRNjdspfxTZkDLN5WV3Tzg==", "requires": { - "@redocly/openapi-core": "^1.0.0-rc.2", - "classnames": "^2.3.1", + "@cfaester/enzyme-adapter-react-18": "^0.8.0", + "@redocly/openapi-core": "^1.4.0", + "classnames": "^2.3.2", "decko": "^1.2.0", - "dompurify": "^2.2.8", - "eventemitter3": "^4.0.7", + "dompurify": "^3.0.6", + "eventemitter3": "^5.0.1", "json-pointer": "^0.6.2", "lunr": "^2.3.9", "mark.js": "^8.11.1", - "marked": "^4.0.15", - "mobx-react": "^7.2.0", - "openapi-sampler": "^1.3.1", + "marked": "^4.3.0", + "mobx-react": "^9.1.1", + "openapi-sampler": "^1.5.0", "path-browserify": "^1.0.1", "perfect-scrollbar": "^1.5.5", - "polished": "^4.1.3", - "prismjs": "^1.27.0", - "prop-types": "^15.7.2", - "react-tabs": "^4.3.0", + "polished": "^4.2.2", + "prismjs": "^1.29.0", + "prop-types": "^15.8.1", + "react-tabs": "^6.0.2", "slugify": "~1.4.7", "stickyfill": "^1.1.1", - "swagger2openapi": "^7.0.6", + "swagger2openapi": "^7.0.8", "url-template": "^2.0.8" + }, + "dependencies": { + "eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" + } } }, "redocusaurus": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/redocusaurus/-/redocusaurus-2.0.0.tgz", - "integrity": "sha512-wRSpkY+PwkqAj98RD+1ec6U8KDKySH6GT0jahWY+dPlpckyHj7D5i3ipXdTiJ6jXXCyM2qUwimX5PZJEdooDhA==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/redocusaurus/-/redocusaurus-2.1.2.tgz", + "integrity": "sha512-PqMXxmjAyQ78zdI9W5lUI21a9N9bXDQYj5NuTcjG5xmyn63+KfqF+ugmqh7FbY3Fr9Sud14X6ZDoRGdwVtBDew==", "requires": { - "docusaurus-plugin-redoc": "2.0.0", - "docusaurus-theme-redoc": "2.0.0" + "docusaurus-plugin-redoc": "2.1.1", + "docusaurus-theme-redoc": "2.1.2" + } + }, + "reflect.getprototypeof": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.7.tgz", + "integrity": "sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "which-builtin-type": "^1.1.4" } }, "reftools": { @@ -37412,6 +39141,17 @@ "@babel/runtime": "^7.8.4" } }, + "regexp.prototype.flags": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" + } + }, "regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", @@ -37837,6 +39577,12 @@ "lowercase-keys": "^3.0.0" } }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "peer": true + }, "retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", @@ -37855,6 +39601,16 @@ "glob": "^7.1.3" } }, + "rst-selector-parser": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", + "integrity": "sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==", + "peer": true, + "requires": { + "lodash.flattendeep": "^4.4.0", + "nearley": "^2.7.10" + } + }, "rtl-detect": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.0.4.tgz", @@ -37887,11 +39643,39 @@ "mri": "^1.1.0" } }, + "safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "requires": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "dependencies": { + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + } + }, "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, + "safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + } + }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -38207,6 +39991,17 @@ "has-property-descriptors": "^1.0.2" } }, + "set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + } + }, "setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", @@ -38600,6 +40395,37 @@ } } }, + "string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, "stringify-entities": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz", @@ -38657,6 +40483,11 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" }, + "strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + }, "style-to-object": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", @@ -38666,25 +40497,37 @@ } }, "styled-components": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-6.1.2.tgz", - "integrity": "sha512-LJjirciivbOKNuKKjheXMeNOlFspur4s2/AYW2hPyrL4RhwEFiowF9axgjeMVxX7siEoLJAitKrzpuNApJ5R/Q==", + "version": "6.1.13", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-6.1.13.tgz", + "integrity": "sha512-M0+N2xSnAtwcVAQeFEsGWFFxXDftHUD7XrKla06QbpUMmbmtFBMMTcKWvFXtWxuD5qQkB8iU5gk6QASlx2ZRMw==", "requires": { - "@emotion/is-prop-valid": "^1.2.1", - "@emotion/unitless": "^0.8.0", - "@types/stylis": "^4.0.2", - "css-to-react-native": "^3.2.0", - "csstype": "^3.1.2", - "postcss": "^8.4.31", - "shallowequal": "^1.1.0", - "stylis": "^4.3.0", - "tslib": "^2.5.0" + "@emotion/is-prop-valid": "1.2.2", + "@emotion/unitless": "0.8.1", + "@types/stylis": "4.2.5", + "css-to-react-native": "3.2.0", + "csstype": "3.1.3", + "postcss": "8.4.38", + "shallowequal": "1.1.0", + "stylis": "4.3.2", + "tslib": "2.6.2" + }, + "dependencies": { + "postcss": { + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "requires": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.2.0" + } + } } }, "stylis": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.0.tgz", - "integrity": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.2.tgz", + "integrity": "sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==" }, "sucrase": { "version": "3.35.0", @@ -38831,83 +40674,6 @@ "reftools": "^1.1.9", "yaml": "^1.10.0", "yargs": "^17.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "requires": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - } - }, - "yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } } }, "table": { @@ -39095,44 +40861,6 @@ "thenify": ">= 3.1.0 < 4" } }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, "thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", @@ -39243,6 +40971,55 @@ } } }, + "typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "requires": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-byte-offset": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz", + "integrity": "sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==", + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "reflect.getprototypeof": "^1.0.6" + } + }, + "typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "requires": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + } + }, "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -39256,6 +41033,17 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==" }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, "undici": { "version": "6.21.0", "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.0.tgz", @@ -39443,11 +41231,6 @@ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, - "untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" - }, "update-browserslist-db": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", @@ -39520,6 +41303,11 @@ } } }, + "uri-js-replace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uri-js-replace/-/uri-js-replace-1.0.1.tgz", + "integrity": "sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==" + }, "url-loader": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", @@ -39566,6 +41354,12 @@ "integrity": "sha512-7wVD2JbfAFJ3DK0vITvXBdpd9JAz5BcKAAolsnLBuBn6UDDwBGuCIAGvR3yA2BNKm578vAMVHFCWaOcA+BhhiA==", "requires": {} }, + "use-sync-external-store": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", + "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "requires": {} + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -39950,6 +41744,68 @@ "isexe": "^2.0.0" } }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-builtin-type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.0.tgz", + "integrity": "sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==", + "requires": { + "call-bind": "^1.0.7", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "dependencies": { + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + } + }, + "which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "requires": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + } + }, + "which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + } + }, "widest-line": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", @@ -40097,11 +41953,6 @@ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, "y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -40123,17 +41974,17 @@ "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==" }, "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "requires": { - "cliui": "^7.0.2", + "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "string-width": "^4.2.0", + "string-width": "^4.2.3", "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "yargs-parser": "^21.1.1" }, "dependencies": { "emoji-regex": { @@ -40154,9 +42005,9 @@ } }, "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" }, "yocto-queue": { "version": "0.1.0", diff --git a/docs/framework-guides/package.json b/docs/framework-guides/package.json index 8e59780ecb..f4fd7ca7d7 100644 --- a/docs/framework-guides/package.json +++ b/docs/framework-guides/package.json @@ -34,7 +34,7 @@ "prism-react-renderer": "^2.3.1", "react": "^18.3.1", "react-dom": "^18.3.1", - "redocusaurus": "^2.0.0", + "redocusaurus": "^2.1.2", "remark-math": "^5.1.1", "sass": "^1.81.0", "stream": "^0.0.3", From f5a3928d4226f409ed3f7efe67aa2fbf6e6c111f Mon Sep 17 00:00:00 2001 From: omby8888 <160610297+omby8888@users.noreply.github.com> Date: Wed, 11 Dec 2024 16:25:06 +0200 Subject: [PATCH 04/22] [Integration][Gitlab] Support both private and oauth token authentications (#1199) # Description What: - Added support for OAuth2.0 token - Added OAuth installation specification for Port ## Type of change Please leave one option from the following and delete the rest: - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] New Integration (non-breaking change which adds a new integration) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Non-breaking change (fix of existing functionality that will not change current behavior) - [ ] Documentation (added/updated documentation)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [x] Integration able to create all default resources from scratch - [x] Resync able to create entities - [x] Resync able to update entities - [x] Resync able to detect and delete entities - [x] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --------- Co-authored-by: Tom Tankilevitch <59158507+Tankilevitch@users.noreply.github.com> --- integrations/gitlab/.port/spec.yaml | 12 ++++++++++ integrations/gitlab/CHANGELOG.md | 9 +++++++ .../gitlab/gitlab_integration/events/setup.py | 7 +++--- .../gitlab/gitlab_integration/utils.py | 24 +++++++++++++++---- integrations/gitlab/pyproject.toml | 2 +- 5 files changed, 44 insertions(+), 10 deletions(-) diff --git a/integrations/gitlab/.port/spec.yaml b/integrations/gitlab/.port/spec.yaml index 890648466d..1099ac2db6 100644 --- a/integrations/gitlab/.port/spec.yaml +++ b/integrations/gitlab/.port/spec.yaml @@ -42,5 +42,17 @@ configurations: \"subgroup_events\", \"confidential_issues_events\"]" sensitive: true +saas: + enabled: true + oauthConfiguration: + requiredSecrets: + - name: tokenMapping + value: '{(.oauthData.accessToken): ["**"]} | @json' + description: '"Token mapping for Gitlab OAuth2 integration"' + valuesOverride: + integrationSpec: + gitlabHost: '"https://gitlab.com"' + appSpec: + minimumScheduledResyncInterval: '2h' deploymentMethodOverride: - type: helm diff --git a/integrations/gitlab/CHANGELOG.md b/integrations/gitlab/CHANGELOG.md index f8549d9bb4..de5c2075e8 100644 --- a/integrations/gitlab/CHANGELOG.md +++ b/integrations/gitlab/CHANGELOG.md @@ -7,6 +7,15 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +0.2.0 (2024-12-11) +==================== + +### Improvements + +- Added support for OAuth2.0 token +- Added OAuth installation specification for Port + + 0.1.147 (2024-12-10) ==================== diff --git a/integrations/gitlab/gitlab_integration/events/setup.py b/integrations/gitlab/gitlab_integration/events/setup.py index c528dcd97c..e97e3a9996 100644 --- a/integrations/gitlab/gitlab_integration/events/setup.py +++ b/integrations/gitlab/gitlab_integration/events/setup.py @@ -1,7 +1,5 @@ from typing import Type, List -from gitlab import Gitlab - from loguru import logger from gitlab_integration.events.event_handler import EventHandler, SystemEventHandler @@ -26,6 +24,7 @@ GitlabEventListenerConflict, GitlabIllegalEventName, ) +from gitlab_integration.utils import generate_gitlab_client event_handler = EventHandler() system_event_handler = SystemEventHandler() @@ -161,7 +160,7 @@ async def create_webhooks_by_client( groups_hooks_events_override: dict[str, WebhookGroupConfig] | None, group_mapping: list[str], ) -> tuple[GitlabService, list[str]]: - gitlab_client = Gitlab(gitlab_host, token) + gitlab_client = generate_gitlab_client(gitlab_host, token) gitlab_service = GitlabService(gitlab_client, app_host, group_mapping) groups_for_webhooks = await gitlab_service.get_filtered_groups_for_webhooks( @@ -203,7 +202,7 @@ async def setup_application( logger.info("Using system hook") validate_use_system_hook(token_mapping) token, group_mapping = list(token_mapping.items())[0] - gitlab_client = Gitlab(gitlab_host, token) + gitlab_client = generate_gitlab_client(gitlab_host, token) gitlab_service = GitlabService(gitlab_client, app_host, group_mapping) setup_system_listeners([gitlab_service]) diff --git a/integrations/gitlab/gitlab_integration/utils.py b/integrations/gitlab/gitlab_integration/utils.py index c39b1cc46e..0d376beb9d 100644 --- a/integrations/gitlab/gitlab_integration/utils.py +++ b/integrations/gitlab/gitlab_integration/utils.py @@ -1,5 +1,6 @@ from typing import List +import gitlab from gitlab import Gitlab from gitlab_integration.gitlab_service import GitlabService from loguru import logger @@ -10,6 +11,23 @@ RETRY_TRANSIENT_ERRORS = True +def generate_gitlab_client(host: str, token: str) -> Gitlab: + try: + gitlab_client = Gitlab( + host, token, retry_transient_errors=RETRY_TRANSIENT_ERRORS + ) + gitlab_client.auth() + logger.info("Successfully authenticated using the provided private token") + except gitlab.exceptions.GitlabAuthenticationError: + gitlab_client = Gitlab( + host, oauth_token=token, retry_transient_errors=RETRY_TRANSIENT_ERRORS + ) + gitlab_client.auth() + logger.info("Successfully authenticated using the provided OAuth2.0 token") + + return gitlab_client + + def get_all_services() -> List[GitlabService]: logic_settings = ocean.integration_config all_tokens_services = [] @@ -18,11 +36,7 @@ def get_all_services() -> List[GitlabService]: f"Creating gitlab clients for {len(logic_settings['token_mapping'])} tokens" ) for token, group_mapping in logic_settings["token_mapping"].items(): - gitlab_client = Gitlab( - logic_settings["gitlab_host"], - token, - retry_transient_errors=RETRY_TRANSIENT_ERRORS, - ) + gitlab_client = generate_gitlab_client(logic_settings["gitlab_host"], token) gitlab_service = GitlabService( gitlab_client, logic_settings["app_host"], group_mapping ) diff --git a/integrations/gitlab/pyproject.toml b/integrations/gitlab/pyproject.toml index 36f49af75b..fe0d027ba8 100644 --- a/integrations/gitlab/pyproject.toml +++ b/integrations/gitlab/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitlab" -version = "0.1.147" +version = "0.2.0" description = "Gitlab integration for Port using Port-Ocean Framework" authors = ["Yair Siman-Tov "] From 32bf474df287d2a4fed9fb25d28389ca9d74ba46 Mon Sep 17 00:00:00 2001 From: PagesCoffy Date: Thu, 12 Dec 2024 01:17:56 +0000 Subject: [PATCH 05/22] [Integration][ADO] - Add support for expanding work items (#1222) --- .../.port/resources/port-app-config.yaml | 1 + integrations/azure-devops/CHANGELOG.md | 8 +++++ .../client/azure_devops_client.py | 30 +++++++++++-------- .../azure-devops/azure_devops/misc.py | 4 +++ integrations/azure-devops/main.py | 7 ++++- integrations/azure-devops/pyproject.toml | 2 +- .../client/test_azure_devops_client.py | 1 - 7 files changed, 38 insertions(+), 15 deletions(-) diff --git a/integrations/azure-devops/.port/resources/port-app-config.yaml b/integrations/azure-devops/.port/resources/port-app-config.yaml index fece9a2097..5f65753452 100644 --- a/integrations/azure-devops/.port/resources/port-app-config.yaml +++ b/integrations/azure-devops/.port/resources/port-app-config.yaml @@ -70,6 +70,7 @@ resources: - kind: work-item selector: query: 'true' + expand: 'All' port: entity: mappings: diff --git a/integrations/azure-devops/CHANGELOG.md b/integrations/azure-devops/CHANGELOG.md index f3d25c5320..752d84023c 100644 --- a/integrations/azure-devops/CHANGELOG.md +++ b/integrations/azure-devops/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.91 (2024-12-10) + + +### Improvements + +- Added support for expanding the work item response + + ## 0.1.90 (2024-12-10) diff --git a/integrations/azure-devops/azure_devops/client/azure_devops_client.py b/integrations/azure-devops/azure_devops/client/azure_devops_client.py index 981f37dffb..8f4f81c606 100644 --- a/integrations/azure-devops/azure_devops/client/azure_devops_client.py +++ b/integrations/azure-devops/azure_devops/client/azure_devops_client.py @@ -1,6 +1,5 @@ import json import asyncio -import typing from typing import Any, AsyncGenerator, Optional from httpx import HTTPStatusError @@ -9,8 +8,6 @@ from port_ocean.context.event import event from port_ocean.context.ocean import ocean from port_ocean.utils.cache import cache_iterator_result - -from azure_devops.misc import AzureDevopsWorkItemResourceConfig from azure_devops.webhooks.webhook_event import WebhookEvent from .base_client import HTTPBaseClient @@ -159,20 +156,24 @@ async def generate_repository_policies( policy["__repository"] = repo yield repo_policies - async def generate_work_items(self) -> AsyncGenerator[list[dict[str, Any]], None]: + async def generate_work_items( + self, wiql: Optional[str], expand: str + ) -> AsyncGenerator[list[dict[str, Any]], None]: """ Retrieves a paginated list of work items within the Azure DevOps organization based on a WIQL query. """ async for projects in self.generate_projects(): for project in projects: # 1. Execute WIQL query to get work item IDs - work_item_ids = await self._fetch_work_item_ids(project) + work_item_ids = await self._fetch_work_item_ids(project, wiql) logger.info( f"Found {len(work_item_ids)} work item IDs for project {project['name']}" ) # 2. Fetch work items using the IDs (in batches if needed) work_items = await self._fetch_work_items_in_batches( - project["id"], work_item_ids + project["id"], + work_item_ids, + query_params={"$expand": expand}, ) logger.debug(f"Received {len(work_items)} work items") @@ -182,20 +183,21 @@ async def generate_work_items(self) -> AsyncGenerator[list[dict[str, Any]], None ) yield work_items - async def _fetch_work_item_ids(self, project: dict[str, Any]) -> list[int]: + async def _fetch_work_item_ids( + self, project: dict[str, Any], wiql: Optional[str] + ) -> list[int]: """ Executes a WIQL query to fetch work item IDs for a given project. :param project_id: The ID of the project. :return: A list of work item IDs. """ - config = typing.cast(AzureDevopsWorkItemResourceConfig, event.resource_config) wiql_query = f"SELECT [Id] from WorkItems WHERE [System.TeamProject] = '{project['name']}'" - if config.selector.wiql: + if wiql: # Append the user-provided wiql to the WHERE clause - wiql_query += f" AND {config.selector.wiql}" - logger.info(f"Found and appended WIQL filter: {config.selector.wiql}") + wiql_query += f" AND {wiql}" + logger.info(f"Found and appended WIQL filter: {wiql}") wiql_url = ( f"{self._organization_base_url}/{project['id']}/{API_URL_PREFIX}/wit/wiql" @@ -217,7 +219,10 @@ async def _fetch_work_item_ids(self, project: dict[str, Any]) -> list[int]: return [item["id"] for item in wiql_response.json()["workItems"]] async def _fetch_work_items_in_batches( - self, project_id: str, work_item_ids: list[int] + self, + project_id: str, + work_item_ids: list[int], + query_params: dict[str, Any] = {}, ) -> list[dict[str, Any]]: """ Fetches work items in batches based on the list of work item IDs. @@ -231,6 +236,7 @@ async def _fetch_work_items_in_batches( batch_ids = work_item_ids[i : i + MAX_WORK_ITEMS_PER_REQUEST] work_items_url = f"{self._organization_base_url}/{project_id}/{API_URL_PREFIX}/wit/workitems" params = { + **query_params, "ids": ",".join(map(str, batch_ids)), "api-version": "7.1-preview.3", } diff --git a/integrations/azure-devops/azure_devops/misc.py b/integrations/azure-devops/azure_devops/misc.py index d7f2d91010..18252a5fdf 100644 --- a/integrations/azure-devops/azure_devops/misc.py +++ b/integrations/azure-devops/azure_devops/misc.py @@ -58,6 +58,10 @@ class AzureDevopsSelector(Selector): description="WIQL query to filter work items. If not provided, all work items will be fetched.", alias="wiql", ) + expand: Literal["None", "Fields", "Relations", "Links", "All"] = Field( + default="All", + description="Expand options for work items. Allowed values are 'None', 'Fields', 'Relations', 'Links' and 'All'. Default value is 'All'.", + ) kind: Literal["work-item"] selector: AzureDevopsSelector diff --git a/integrations/azure-devops/main.py b/integrations/azure-devops/main.py index 401eca9739..eeabbd18e4 100644 --- a/integrations/azure-devops/main.py +++ b/integrations/azure-devops/main.py @@ -13,6 +13,8 @@ AzureDevopsProjectResourceConfig, ) +from azure_devops.misc import AzureDevopsWorkItemResourceConfig + @ocean.on_start() async def setup_webhooks() -> None: @@ -106,7 +108,10 @@ async def resync_repository_policies(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: @ocean.on_resync(Kind.WORK_ITEM) async def resync_workitems(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: azure_devops_client = AzureDevopsClient.create_from_ocean_config() - async for work_items in azure_devops_client.generate_work_items(): + config = cast(AzureDevopsWorkItemResourceConfig, event.resource_config) + async for work_items in azure_devops_client.generate_work_items( + wiql=config.selector.wiql, expand=config.selector.expand + ): logger.info(f"Resyncing {len(work_items)} work items") yield work_items diff --git a/integrations/azure-devops/pyproject.toml b/integrations/azure-devops/pyproject.toml index 9799877b55..bc179737d8 100644 --- a/integrations/azure-devops/pyproject.toml +++ b/integrations/azure-devops/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "azure-devops" -version = "0.1.90" +version = "0.1.91" description = "An Azure Devops Ocean integration" authors = ["Matan Geva "] diff --git a/integrations/azure-devops/tests/azure_devops/client/test_azure_devops_client.py b/integrations/azure-devops/tests/azure_devops/client/test_azure_devops_client.py index 66f2003204..82fc2f46d3 100644 --- a/integrations/azure-devops/tests/azure_devops/client/test_azure_devops_client.py +++ b/integrations/azure-devops/tests/azure_devops/client/test_azure_devops_client.py @@ -369,7 +369,6 @@ async def mock_get_paginated_by_top_and_skip( yield [] async with event_context("test_event"): - with patch.object( client, "generate_repositories", side_effect=mock_generate_repositories ): From 07e5fc17870b28f6e3241aa2c4d437bd64407c0b Mon Sep 17 00:00:00 2001 From: Adebayo Oluwadunsin Iyanuoluwa <88881603+oiadebayo@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:42:05 +0100 Subject: [PATCH 06/22] [Integration][Gitlab] Made event processing sequential to temporarily resolve race condition issues (#1217) # Description **What** - Updated the event handling logic in both `EventHandler` and `SystemEventHandler` to ensure sequential processing of observers and hook handlers. - Removed concurrent execution (`asyncio.gather` and `asyncio.create_task`) and replaced it with sequential execution. **Why** - The previous implementation processed events concurrently across multiple observers and hook handlers, which led to race conditions when shared entities were updated. - This caused data inconsistency, as concurrent updates overwrote each other's changes. - Sequential processing ensures that each observer and handler processes the event one at a time, maintaining data integrity. **How** 1. `EventHandler` Changes: - Replaced `asyncio.create_task` for observer notifications with a direct `await` call. - Ensured observers for a specific event are processed in a sequential manner. 2. `SystemEventHandler` Changes: - Removed `asyncio.gather` for hook handlers and replaced it with nested `for` loops. - Handlers are now invoked sequentially for each client, ensuring predictable and ordered execution. ## Type of change Please leave one option from the following and delete the rest: - [x] Bug fix (non-breaking change which fixes an issue)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [x] Integration able to create all default resources from scratch - [x] Resync able to create entities - [x] Resync able to update entities - [x] Resync able to detect and delete entities - [x] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --------- Co-authored-by: Matan <51418643+matan84@users.noreply.github.com> --- integrations/gitlab/CHANGELOG.md | 9 ++++ .../events/event_handler.py | 42 +++++++++++-------- integrations/gitlab/pyproject.toml | 2 +- 3 files changed, 35 insertions(+), 18 deletions(-) diff --git a/integrations/gitlab/CHANGELOG.md b/integrations/gitlab/CHANGELOG.md index de5c2075e8..b2c7c6bb87 100644 --- a/integrations/gitlab/CHANGELOG.md +++ b/integrations/gitlab/CHANGELOG.md @@ -7,6 +7,15 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +0.2.1 (2024-12-12) +==================== + +### Bug Fixes + +- Updated integration to process hook events sequentially to temporarily resolve race condition issues experienced when multiple processes attempts to update the same entity + + + 0.2.0 (2024-12-11) ==================== diff --git a/integrations/gitlab/gitlab_integration/events/event_handler.py b/integrations/gitlab/gitlab_integration/events/event_handler.py index e1b262da52..765c38eb44 100644 --- a/integrations/gitlab/gitlab_integration/events/event_handler.py +++ b/integrations/gitlab/gitlab_integration/events/event_handler.py @@ -85,15 +85,20 @@ async def _notify(self, event_id: str, body: dict[str, Any]) -> None: ) return for observer in observers_list: - if asyncio.iscoroutinefunction(observer): - if inspect.ismethod(observer): - handler = observer.__self__.__class__.__name__ - logger.debug( - f"Notifying observer: {handler}, for event: {event_id}", - event_id=event_id, - handler=handler, - ) - asyncio.create_task(observer(event_id, body)) # type: ignore + try: + if asyncio.iscoroutinefunction(observer): + if inspect.ismethod(observer): + handler = observer.__self__.__class__.__name__ + logger.debug( + f"Notifying observer: {handler}, for event: {event_id}", + event_id=event_id, + handler=handler, + ) + await observer(event_id, body) # Sequentially call each observer + except Exception as e: + logger.error( + f"Error processing event {event_id} with observer {observer}: {str(e)}" + ) class SystemEventHandler(BaseEventHandler): @@ -112,11 +117,14 @@ def add_client(self, client: GitlabService) -> None: async def _notify(self, event_id: str, body: dict[str, Any]) -> None: # best effort to notify using all clients, as we don't know which one of the clients have the permission to # access the project - await asyncio.gather( - *( - hook_handler(client).on_hook(event_id, body) - for client in self._clients - for hook_handler in self._hook_handlers.get(event_id, []) - ), - return_exceptions=True, - ) + for client in self._clients: + for hook_handler_class in self._hook_handlers.get(event_id, []): + try: + hook_handler_instance = hook_handler_class(client) + await hook_handler_instance.on_hook( + event_id, body + ) # Sequentially process handlers + except Exception as e: + logger.error( + f"Error processing event {event_id} with handler {hook_handler_class.__name__} for client {client}: {str(e)}" + ) diff --git a/integrations/gitlab/pyproject.toml b/integrations/gitlab/pyproject.toml index fe0d027ba8..ee160466e7 100644 --- a/integrations/gitlab/pyproject.toml +++ b/integrations/gitlab/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitlab" -version = "0.2.0" +version = "0.2.1" description = "Gitlab integration for Port using Port-Ocean Framework" authors = ["Yair Siman-Tov "] From aed56f22b231a73a375355ab7da94305da4a5cd5 Mon Sep 17 00:00:00 2001 From: Erik Zaadi Date: Thu, 12 Dec 2024 18:41:08 +0200 Subject: [PATCH 07/22] [Core] Wrap smoke clean in bash (#1226) --- .github/workflows/perf-test.yml | 9 +-------- scripts/clean-smoke-test.sh | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 8 deletions(-) create mode 100755 scripts/clean-smoke-test.sh diff --git a/.github/workflows/perf-test.yml b/.github/workflows/perf-test.yml index dbc92b685d..fd287853af 100644 --- a/.github/workflows/perf-test.yml +++ b/.github/workflows/perf-test.yml @@ -108,14 +108,7 @@ jobs: SMOKE_TEST_SUFFIX: ${{ github.run_id }} MOCK_PORT_API: ${{ inputs.mock_port_api && '1' || '0' }} run: | - if [[ "${MOCK_PORT_API}" = "1" ]]; then - make smoke/start-mock-api - make smoke/clean - make smoke/stop-mock-api - else - make smoke/clean - fi - + ./scripts/clean-smoke-test.sh - name: Publish Performance Test Summary run: | cat ./perf-test-results-${{ github.run_id }}.log.md >> ${GITHUB_STEP_SUMMARY} diff --git a/scripts/clean-smoke-test.sh b/scripts/clean-smoke-test.sh new file mode 100755 index 0000000000..44b81b74d0 --- /dev/null +++ b/scripts/clean-smoke-test.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash + +SCRIPT_BASE="$(cd -P "$(dirname "$0")" && pwd)" +ROOT_DIR="$(cd -P "${SCRIPT_BASE}/../" && pwd)" + + +cd "${ROOT_DIR}" || exit 1 + +if [[ "${MOCK_PORT_API}" = "1" ]]; then + make smoke/start-mock-api + make smoke/clean + make smoke/stop-mock-api +else + make smoke/clean +fi From 4fbc2345726b37f053d7303f0f547f1217089fa2 Mon Sep 17 00:00:00 2001 From: Tom Tankilevitch <59158507+Tankilevitch@users.noreply.github.com> Date: Fri, 13 Dec 2024 00:45:06 +0200 Subject: [PATCH 08/22] [Core] Add `SaasOauth` runtime support (#1228) --- CHANGELOG.md | 7 +++++++ port_ocean/config/settings.py | 2 +- port_ocean/core/models.py | 5 +++++ port_ocean/ocean.py | 3 +-- pyproject.toml | 2 +- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71ec5e9d00..953ab7aae7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## 0.15.0 (2024-12-12) + +### Features + +- Added `SaasOauth` runtime support + + ## 0.14.7 (2024-12-09) diff --git a/port_ocean/config/settings.py b/port_ocean/config/settings.py index 37aa108d18..5c948af17d 100644 --- a/port_ocean/config/settings.py +++ b/port_ocean/config/settings.py @@ -103,7 +103,7 @@ def parse_config(model: Type[BaseModel], config: Any) -> BaseModel: @validator("runtime") def validate_runtime(cls, runtime: Runtime) -> Runtime: - if runtime == Runtime.Saas: + if runtime.is_saas_runtime: spec = get_spec_file() if spec is None: raise ValueError( diff --git a/port_ocean/core/models.py b/port_ocean/core/models.py index fb588becda..7604f6a6ed 100644 --- a/port_ocean/core/models.py +++ b/port_ocean/core/models.py @@ -8,8 +8,13 @@ class Runtime(Enum): Saas = "Saas" + SaasOauth = "SaasOauth" OnPrem = "OnPrem" + @property + def is_saas_runtime(self) -> bool: + return self in [Runtime.Saas, Runtime.SaasOauth] + class Entity(BaseModel): identifier: Any diff --git a/port_ocean/ocean.py b/port_ocean/ocean.py index 55a85c39c3..6e9da0516c 100644 --- a/port_ocean/ocean.py +++ b/port_ocean/ocean.py @@ -10,7 +10,6 @@ from starlette.types import Scope, Receive, Send from port_ocean.core.handlers.resync_state_updater import ResyncStateUpdater -from port_ocean.core.models import Runtime from port_ocean.clients.port.client import PortClient from port_ocean.config.settings import ( IntegrationConfiguration, @@ -73,7 +72,7 @@ def __init__( self.app_initialized = False def is_saas(self) -> bool: - return self.config.runtime == Runtime.Saas + return self.config.runtime.is_saas_runtime async def _setup_scheduled_resync( self, diff --git a/pyproject.toml b/pyproject.toml index bb799d82da..1c5ad79ca4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io" From 859635c9cfc5ad5364fdd5639ba82befaa86ae90 Mon Sep 17 00:00:00 2001 From: Port Bot <110599342+portmachineuser@users.noreply.github.com> Date: Fri, 13 Dec 2024 01:18:15 +0200 Subject: [PATCH 09/22] [Integration] Apply Ocean version 0.15.0 to all integrations (#1231) --- integrations/argocd/CHANGELOG.md | 8 ++++++++ integrations/argocd/poetry.lock | 8 ++++---- integrations/argocd/pyproject.toml | 4 ++-- integrations/aws/CHANGELOG.md | 8 ++++++++ integrations/aws/poetry.lock | 8 ++++---- integrations/aws/pyproject.toml | 4 ++-- integrations/azure-devops/CHANGELOG.md | 8 ++++++++ integrations/azure-devops/poetry.lock | 8 ++++---- integrations/azure-devops/pyproject.toml | 4 ++-- integrations/azure/CHANGELOG.md | 7 +++++++ integrations/azure/poetry.lock | 8 ++++---- integrations/azure/pyproject.toml | 4 ++-- integrations/backstage/CHANGELOG.md | 8 ++++++++ integrations/backstage/poetry.lock | 8 ++++---- integrations/backstage/pyproject.toml | 4 ++-- integrations/datadog/CHANGELOG.md | 8 ++++++++ integrations/datadog/poetry.lock | 8 ++++---- integrations/datadog/pyproject.toml | 4 ++-- integrations/dynatrace/CHANGELOG.md | 8 ++++++++ integrations/dynatrace/poetry.lock | 8 ++++---- integrations/dynatrace/pyproject.toml | 4 ++-- integrations/fake-integration/CHANGELOG.md | 8 ++++++++ integrations/fake-integration/poetry.lock | 8 ++++---- integrations/fake-integration/pyproject.toml | 4 ++-- integrations/firehydrant/CHANGELOG.md | 8 ++++++++ integrations/firehydrant/poetry.lock | 8 ++++---- integrations/firehydrant/pyproject.toml | 4 ++-- integrations/gcp/CHANGELOG.md | 7 +++++++ integrations/gcp/poetry.lock | 8 ++++---- integrations/gcp/pyproject.toml | 4 ++-- integrations/gitlab/CHANGELOG.md | 8 ++++++++ integrations/gitlab/poetry.lock | 8 ++++---- integrations/gitlab/pyproject.toml | 4 ++-- integrations/jenkins/CHANGELOG.md | 8 ++++++++ integrations/jenkins/poetry.lock | 8 ++++---- integrations/jenkins/pyproject.toml | 4 ++-- integrations/jira/CHANGELOG.md | 8 ++++++++ integrations/jira/poetry.lock | 8 ++++---- integrations/jira/pyproject.toml | 4 ++-- integrations/kafka/CHANGELOG.md | 8 ++++++++ integrations/kafka/poetry.lock | 8 ++++---- integrations/kafka/pyproject.toml | 4 ++-- integrations/kubecost/CHANGELOG.md | 8 ++++++++ integrations/kubecost/poetry.lock | 8 ++++---- integrations/kubecost/pyproject.toml | 4 ++-- integrations/launchdarkly/CHANGELOG.md | 8 ++++++++ integrations/launchdarkly/poetry.lock | 8 ++++---- integrations/launchdarkly/pyproject.toml | 4 ++-- integrations/linear/CHANGELOG.md | 8 ++++++++ integrations/linear/poetry.lock | 8 ++++---- integrations/linear/pyproject.toml | 4 ++-- integrations/newrelic/CHANGELOG.md | 8 ++++++++ integrations/newrelic/poetry.lock | 8 ++++---- integrations/newrelic/pyproject.toml | 4 ++-- integrations/octopus/CHANGELOG.md | 7 +++++++ integrations/octopus/poetry.lock | 8 ++++---- integrations/octopus/pyproject.toml | 4 ++-- integrations/opencost/CHANGELOG.md | 8 ++++++++ integrations/opencost/poetry.lock | 8 ++++---- integrations/opencost/pyproject.toml | 4 ++-- integrations/opsgenie/CHANGELOG.md | 8 ++++++++ integrations/opsgenie/poetry.lock | 8 ++++---- integrations/opsgenie/pyproject.toml | 4 ++-- integrations/pagerduty/CHANGELOG.md | 8 ++++++++ integrations/pagerduty/poetry.lock | 8 ++++---- integrations/pagerduty/pyproject.toml | 4 ++-- integrations/sentry/CHANGELOG.md | 8 ++++++++ integrations/sentry/poetry.lock | 8 ++++---- integrations/sentry/pyproject.toml | 4 ++-- integrations/servicenow/CHANGELOG.md | 8 ++++++++ integrations/servicenow/poetry.lock | 8 ++++---- integrations/servicenow/pyproject.toml | 4 ++-- integrations/snyk/CHANGELOG.md | 8 ++++++++ integrations/snyk/poetry.lock | 8 ++++---- integrations/snyk/pyproject.toml | 4 ++-- integrations/sonarqube/CHANGELOG.md | 8 ++++++++ integrations/sonarqube/poetry.lock | 8 ++++---- integrations/sonarqube/pyproject.toml | 4 ++-- integrations/statuspage/CHANGELOG.md | 8 ++++++++ integrations/statuspage/poetry.lock | 8 ++++---- integrations/statuspage/pyproject.toml | 4 ++-- integrations/terraform-cloud/CHANGELOG.md | 8 ++++++++ integrations/terraform-cloud/poetry.lock | 8 ++++---- integrations/terraform-cloud/pyproject.toml | 4 ++-- integrations/wiz/CHANGELOG.md | 8 ++++++++ integrations/wiz/poetry.lock | 8 ++++---- integrations/wiz/pyproject.toml | 4 ++-- 87 files changed, 403 insertions(+), 174 deletions(-) diff --git a/integrations/argocd/CHANGELOG.md b/integrations/argocd/CHANGELOG.md index 51e43ca395..ee549c9ede 100644 --- a/integrations/argocd/CHANGELOG.md +++ b/integrations/argocd/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.109 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.108 (2024-12-10) diff --git a/integrations/argocd/poetry.lock b/integrations/argocd/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/argocd/poetry.lock +++ b/integrations/argocd/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/argocd/pyproject.toml b/integrations/argocd/pyproject.toml index 9cb1822bd7..7454ee603f 100644 --- a/integrations/argocd/pyproject.toml +++ b/integrations/argocd/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "argocd" -version = "0.1.108" +version = "0.1.109" description = "Argo CD integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/aws/CHANGELOG.md b/integrations/aws/CHANGELOG.md index e19ed395b1..a6dfbdbef2 100644 --- a/integrations/aws/CHANGELOG.md +++ b/integrations/aws/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.68 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.2.67 (2024-12-10) diff --git a/integrations/aws/poetry.lock b/integrations/aws/poetry.lock index 854da95b8b..b59d60a480 100644 --- a/integrations/aws/poetry.lock +++ b/integrations/aws/poetry.lock @@ -2284,13 +2284,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -4046,4 +4046,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "df81558cd0c485995dda0453a2b027ef31d8911bd69789486cfca868c3fb6fd4" +content-hash = "5f080d865bd58710465b6ef3934fa53709ab091bec5a70e612cfe99957d08e0e" diff --git a/integrations/aws/pyproject.toml b/integrations/aws/pyproject.toml index 52fb11c63c..2f7220755a 100644 --- a/integrations/aws/pyproject.toml +++ b/integrations/aws/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "aws" -version = "0.2.67" +version = "0.2.68" description = "This integration will map all your resources in all the available accounts to your Port entities" authors = ["Shalev Avhar ", "Erik Zaadi "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} python-dotenv = "^1.0.1" aioboto3 = "^12.4.0" boto3-stubs = {version = "1.34.76", extras = ["acm", "apigateway", "appconfig", "athena", "cloudcontrol", "cloudformation", "cloudwatch", "dynamodb", "ec2", "ec2-instance-connect", "ecr", "ecs", "elasticache", "elb", "elbv2", "events", "iam", "lambda", "logs", "organizations", "rds", "route53", "s3", "sagemaker", "secretsmanager", "sns", "sqs", "ssm", "sts"]} diff --git a/integrations/azure-devops/CHANGELOG.md b/integrations/azure-devops/CHANGELOG.md index 752d84023c..fc8d5548ae 100644 --- a/integrations/azure-devops/CHANGELOG.md +++ b/integrations/azure-devops/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.92 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.91 (2024-12-10) diff --git a/integrations/azure-devops/poetry.lock b/integrations/azure-devops/poetry.lock index 0ea675f7c5..6a72bea97d 100644 --- a/integrations/azure-devops/poetry.lock +++ b/integrations/azure-devops/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "6cd19bccda5a597e2ef35a677821a94de8acf93f8fc158687f2ab2e20679f78b" +content-hash = "120b4389bb84d8af7e599f552605f6a501707fa4ecca421604e8ecf21ecbe7d8" diff --git a/integrations/azure-devops/pyproject.toml b/integrations/azure-devops/pyproject.toml index bc179737d8..fc2e940c40 100644 --- a/integrations/azure-devops/pyproject.toml +++ b/integrations/azure-devops/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "azure-devops" -version = "0.1.91" +version = "0.1.92" description = "An Azure Devops Ocean integration" authors = ["Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/azure/CHANGELOG.md b/integrations/azure/CHANGELOG.md index 68f9d7fe38..9bace482a8 100644 --- a/integrations/azure/CHANGELOG.md +++ b/integrations/azure/CHANGELOG.md @@ -1,3 +1,10 @@ +0.1.112 (2024-12-12) + +### Improvements + +- Bumped ocean version to ^0.15.0 + + 0.1.111 (2024-12-10) ### Improvements diff --git a/integrations/azure/poetry.lock b/integrations/azure/poetry.lock index 3e6865e8e6..75f3f1857e 100644 --- a/integrations/azure/poetry.lock +++ b/integrations/azure/poetry.lock @@ -1589,13 +1589,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -2495,4 +2495,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "c978a62740d75dc1ccc4e45740611746c5b7e0e904f09518a5b75cfdefcd6437" +content-hash = "0360800ee7996de3b948e71ba299498505268676adb9aec24fce5e65ae362011" diff --git a/integrations/azure/pyproject.toml b/integrations/azure/pyproject.toml index e773f6a529..18ffd9845c 100644 --- a/integrations/azure/pyproject.toml +++ b/integrations/azure/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "azure" -version = "0.1.111" +version = "0.1.112" description = "Azure integration" authors = ["Tom Tankilevitch "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} # due to patching the azure-mgmt-resource package, we need to use a specific version azure-mgmt-resource = "23.2.0" azure-identity = "^1.13.0" diff --git a/integrations/backstage/CHANGELOG.md b/integrations/backstage/CHANGELOG.md index 4edb9a6735..5d72685fef 100644 --- a/integrations/backstage/CHANGELOG.md +++ b/integrations/backstage/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.16-beta (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.15-beta (2024-12-10) diff --git a/integrations/backstage/poetry.lock b/integrations/backstage/poetry.lock index 0c58df2c79..af0dbad53c 100644 --- a/integrations/backstage/poetry.lock +++ b/integrations/backstage/poetry.lock @@ -913,13 +913,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1521,4 +1521,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "d4b4fb5e066762cc5840f8f7ea27a104efc25058c3d8d278c79d1396bddbd21e" +content-hash = "6061c7dbc344db006e601996a7509dedcd0f5ae066ebaf10618d1ef53771326e" diff --git a/integrations/backstage/pyproject.toml b/integrations/backstage/pyproject.toml index f72cb4598f..46ef05c2cb 100644 --- a/integrations/backstage/pyproject.toml +++ b/integrations/backstage/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "backstage" -version = "0.1.15-beta" +version = "0.1.16-beta" description = "Importing resources from Backstage IDP" authors = ["Roi Talpaz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/datadog/CHANGELOG.md b/integrations/datadog/CHANGELOG.md index 2351d43244..1c2781c1b7 100644 --- a/integrations/datadog/CHANGELOG.md +++ b/integrations/datadog/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.64 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.63 (2024-12-10) diff --git a/integrations/datadog/poetry.lock b/integrations/datadog/poetry.lock index 5b8e84174c..170924eb03 100644 --- a/integrations/datadog/poetry.lock +++ b/integrations/datadog/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "203aa0deb2310f08ac075bc4cda5b1e15ed730d5f828b638781321dab92670c6" +content-hash = "d6b20d82c79698ca73548ef7402f98f1e300e087e712a38d4c1965e6be1546f6" diff --git a/integrations/datadog/pyproject.toml b/integrations/datadog/pyproject.toml index 08ceef263c..cc57f9aeb7 100644 --- a/integrations/datadog/pyproject.toml +++ b/integrations/datadog/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "datadog" -version = "0.1.63" +version = "0.1.64" description = "Datadog Ocean Integration" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} loguru = "^0.7.2" [tool.poetry.group.dev.dependencies] diff --git a/integrations/dynatrace/CHANGELOG.md b/integrations/dynatrace/CHANGELOG.md index 76f55afdd4..66291c165b 100644 --- a/integrations/dynatrace/CHANGELOG.md +++ b/integrations/dynatrace/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.74 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.73 (2024-12-10) diff --git a/integrations/dynatrace/poetry.lock b/integrations/dynatrace/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/dynatrace/poetry.lock +++ b/integrations/dynatrace/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/dynatrace/pyproject.toml b/integrations/dynatrace/pyproject.toml index 421748eee3..e44fe7bdab 100644 --- a/integrations/dynatrace/pyproject.toml +++ b/integrations/dynatrace/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "dynatrace" -version = "0.1.73" +version = "0.1.74" description = "An integration used to import Dynatrace resources into Port" authors = ["Ayodeji Adeoti <>"] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/fake-integration/CHANGELOG.md b/integrations/fake-integration/CHANGELOG.md index d330e2e13a..4a47612570 100644 --- a/integrations/fake-integration/CHANGELOG.md +++ b/integrations/fake-integration/CHANGELOG.md @@ -5,6 +5,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.24-dev (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.23-dev (2024-12-10) diff --git a/integrations/fake-integration/poetry.lock b/integrations/fake-integration/poetry.lock index f371a60735..12f7a382d7 100644 --- a/integrations/fake-integration/poetry.lock +++ b/integrations/fake-integration/poetry.lock @@ -1168,13 +1168,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1903,4 +1903,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "943745e6173b3604afd6aca92c641366770539cff107ceb3c50866f5d6224355" +content-hash = "d8b9126b48e36339dc4859887881be071e5bdb5186425d3bb3b43b3d1a0141c2" diff --git a/integrations/fake-integration/pyproject.toml b/integrations/fake-integration/pyproject.toml index c4e4bc6baa..45e077ac3a 100644 --- a/integrations/fake-integration/pyproject.toml +++ b/integrations/fake-integration/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "fake-integration" -version = "0.1.23-dev" +version = "0.1.24-dev" description = "A useless fake integration that helps us test the Ocean Core" authors = ["Erik Zaadi "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} faker = "^28.0.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/firehydrant/CHANGELOG.md b/integrations/firehydrant/CHANGELOG.md index 6a4df3d119..d8118afad2 100644 --- a/integrations/firehydrant/CHANGELOG.md +++ b/integrations/firehydrant/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.96 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.95 (2024-12-10) diff --git a/integrations/firehydrant/poetry.lock b/integrations/firehydrant/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/firehydrant/poetry.lock +++ b/integrations/firehydrant/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/firehydrant/pyproject.toml b/integrations/firehydrant/pyproject.toml index d2f354030f..f6b8f4721d 100644 --- a/integrations/firehydrant/pyproject.toml +++ b/integrations/firehydrant/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "firehydrant" -version = "0.1.95" +version = "0.1.96" description = "FireHydrant Integration Powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/gcp/CHANGELOG.md b/integrations/gcp/CHANGELOG.md index bb44f842c5..179033eca3 100644 --- a/integrations/gcp/CHANGELOG.md +++ b/integrations/gcp/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.77 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + ## 0.1.76 (2024-12-09) diff --git a/integrations/gcp/poetry.lock b/integrations/gcp/poetry.lock index 9c8b9a3661..7d17419d76 100644 --- a/integrations/gcp/poetry.lock +++ b/integrations/gcp/poetry.lock @@ -1460,13 +1460,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -2267,4 +2267,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "914f55f5d9a94bed89b8b4b5a04ddba76a7dd095815666407d430ab224943160" +content-hash = "2369f5bab8936d6c4b100cd4170f77402ac3b7967b5ad4e9c0c18fe2718a7ec0" diff --git a/integrations/gcp/pyproject.toml b/integrations/gcp/pyproject.toml index 53edcbd23e..0d52caca2e 100644 --- a/integrations/gcp/pyproject.toml +++ b/integrations/gcp/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "gcp" -version = "0.1.76" +version = "0.1.77" description = "A GCP ocean integration" authors = ["Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} google-cloud-asset = "^3.25.1" google-cloud-pubsub = "^2.21.1" google-cloud-resource-manager = "^1.12.3" diff --git a/integrations/gitlab/CHANGELOG.md b/integrations/gitlab/CHANGELOG.md index b2c7c6bb87..4957df698c 100644 --- a/integrations/gitlab/CHANGELOG.md +++ b/integrations/gitlab/CHANGELOG.md @@ -7,6 +7,14 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +0.2.2 (2024-12-12) +================== + +### Improvements + +- Bumped ocean version to ^0.15.0 + + 0.2.1 (2024-12-12) ==================== diff --git a/integrations/gitlab/poetry.lock b/integrations/gitlab/poetry.lock index 90c97deb67..4840364412 100644 --- a/integrations/gitlab/poetry.lock +++ b/integrations/gitlab/poetry.lock @@ -1128,13 +1128,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1905,4 +1905,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "8400421f35eeecaf4bb405614ae44a9272cdce68590f9ce091cc3466ba9226f2" +content-hash = "a1b45d21ceda249ed65e6af28b7e99ada84da56e881179dceef7ddb0bcd84be5" diff --git a/integrations/gitlab/pyproject.toml b/integrations/gitlab/pyproject.toml index ee160466e7..cf2a9ad3ba 100644 --- a/integrations/gitlab/pyproject.toml +++ b/integrations/gitlab/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitlab" -version = "0.2.1" +version = "0.2.2" description = "Gitlab integration for Port using Port-Ocean Framework" authors = ["Yair Siman-Tov "] @@ -11,7 +11,7 @@ aiolimiter = "^1.1.0" python-gitlab = "^3.14.0" pathlib = "^1.0.1" jsonschema = "^4.17.3" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/jenkins/CHANGELOG.md b/integrations/jenkins/CHANGELOG.md index 7b78fd90e6..4b031a680d 100644 --- a/integrations/jenkins/CHANGELOG.md +++ b/integrations/jenkins/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.79 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.78 (2024-12-10) diff --git a/integrations/jenkins/poetry.lock b/integrations/jenkins/poetry.lock index 03841e0158..85cfd843b2 100644 --- a/integrations/jenkins/poetry.lock +++ b/integrations/jenkins/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "c628c02c10d190bbfab52040c07cda1a60664667e340c94b39ed87f0fd13fa42" +content-hash = "ac3ce18b7f5d6a954e7f61f66ec365752b552ba5a8752983ba65ed3564abfffc" diff --git a/integrations/jenkins/pyproject.toml b/integrations/jenkins/pyproject.toml index 1dd5c3a0ad..60eb799ba7 100644 --- a/integrations/jenkins/pyproject.toml +++ b/integrations/jenkins/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "jenkins" -version = "0.1.78" +version = "0.1.79" description = "Jenkins Integration to Port Ocean" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} pip = "^23.3.1" python-dotenv = "^1.0.0" loguru = "^0.7.2" diff --git a/integrations/jira/CHANGELOG.md b/integrations/jira/CHANGELOG.md index 4f0e489da8..6536a8146d 100644 --- a/integrations/jira/CHANGELOG.md +++ b/integrations/jira/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.3 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.2.2 (2024-12-10) diff --git a/integrations/jira/poetry.lock b/integrations/jira/poetry.lock index b9b5ce57c6..ac105acea3 100644 --- a/integrations/jira/poetry.lock +++ b/integrations/jira/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "d16ba33bd6e00c85aa77414f36dce89c6f6c56fed158f7dbe9be7ae7975bc5bb" +content-hash = "352097dfeed56e9ae815affb741761469584719d7385fdbc67f682989e869072" diff --git a/integrations/jira/pyproject.toml b/integrations/jira/pyproject.toml index bcefcef2fa..cf87c2240c 100644 --- a/integrations/jira/pyproject.toml +++ b/integrations/jira/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "jira" -version = "0.2.2" +version = "0.2.3" description = "Integration to bring information from Jira into Port" authors = ["Mor Paz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/kafka/CHANGELOG.md b/integrations/kafka/CHANGELOG.md index 67681a7d1c..27684d003c 100644 --- a/integrations/kafka/CHANGELOG.md +++ b/integrations/kafka/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.95 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.94 (2024-12-10) diff --git a/integrations/kafka/poetry.lock b/integrations/kafka/poetry.lock index 8706c10bd2..9feace6710 100644 --- a/integrations/kafka/poetry.lock +++ b/integrations/kafka/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "e0ce1c03d6324de783e60ed9372d4fb3a8bcd899cc35d698b878ec27e6100a56" +content-hash = "e83f3fcefd2a789090aaed094fe6276516c3f2172c3c86634396a8e403e807e4" diff --git a/integrations/kafka/pyproject.toml b/integrations/kafka/pyproject.toml index 3559551bbc..ab2e992f65 100644 --- a/integrations/kafka/pyproject.toml +++ b/integrations/kafka/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "kafka" -version = "0.1.94" +version = "0.1.95" 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 "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} confluent-kafka = "^2.2.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/kubecost/CHANGELOG.md b/integrations/kubecost/CHANGELOG.md index 37bcf52895..de867baa6c 100644 --- a/integrations/kubecost/CHANGELOG.md +++ b/integrations/kubecost/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.100 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.99 (2024-12-10) diff --git a/integrations/kubecost/poetry.lock b/integrations/kubecost/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/kubecost/poetry.lock +++ b/integrations/kubecost/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/kubecost/pyproject.toml b/integrations/kubecost/pyproject.toml index ccaad6533c..6568caa834 100644 --- a/integrations/kubecost/pyproject.toml +++ b/integrations/kubecost/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "kubecost" -version = "0.1.99" +version = "0.1.100" description = "Kubecost integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/launchdarkly/CHANGELOG.md b/integrations/launchdarkly/CHANGELOG.md index cdd1601d65..0f6bb67c9b 100644 --- a/integrations/launchdarkly/CHANGELOG.md +++ b/integrations/launchdarkly/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.72 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.71 (2024-12-10) diff --git a/integrations/launchdarkly/poetry.lock b/integrations/launchdarkly/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/launchdarkly/poetry.lock +++ b/integrations/launchdarkly/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/launchdarkly/pyproject.toml b/integrations/launchdarkly/pyproject.toml index e55106ed41..90273956a2 100644 --- a/integrations/launchdarkly/pyproject.toml +++ b/integrations/launchdarkly/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "launchdarkly" -version = "0.1.71" +version = "0.1.72" description = "Launchdarkly integration for Port" authors = ["Michael Armah "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/linear/CHANGELOG.md b/integrations/linear/CHANGELOG.md index 48f980bcab..8b18f2b655 100644 --- a/integrations/linear/CHANGELOG.md +++ b/integrations/linear/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.58 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.57 (2024-12-10) diff --git a/integrations/linear/poetry.lock b/integrations/linear/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/linear/poetry.lock +++ b/integrations/linear/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/linear/pyproject.toml b/integrations/linear/pyproject.toml index cdd851baa7..7117653591 100644 --- a/integrations/linear/pyproject.toml +++ b/integrations/linear/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "linear" -version = "0.1.57" +version = "0.1.58" description = "Integration to bring information from Linear into Port" authors = ["Mor Paz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/newrelic/CHANGELOG.md b/integrations/newrelic/CHANGELOG.md index 81a76865a1..8072005f4a 100644 --- a/integrations/newrelic/CHANGELOG.md +++ b/integrations/newrelic/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.105 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.104 (2024-12-10) diff --git a/integrations/newrelic/poetry.lock b/integrations/newrelic/poetry.lock index b9b5ce57c6..ac105acea3 100644 --- a/integrations/newrelic/poetry.lock +++ b/integrations/newrelic/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "d16ba33bd6e00c85aa77414f36dce89c6f6c56fed158f7dbe9be7ae7975bc5bb" +content-hash = "352097dfeed56e9ae815affb741761469584719d7385fdbc67f682989e869072" diff --git a/integrations/newrelic/pyproject.toml b/integrations/newrelic/pyproject.toml index cc978aae2e..07b9d4961d 100644 --- a/integrations/newrelic/pyproject.toml +++ b/integrations/newrelic/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "newrelic" -version = "0.1.104" +version = "0.1.105" description = "New Relic Integration" authors = ["Tom Tankilevitch "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/octopus/CHANGELOG.md b/integrations/octopus/CHANGELOG.md index c0f0285d18..c1bf054f29 100644 --- a/integrations/octopus/CHANGELOG.md +++ b/integrations/octopus/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +# Port_Ocean 0.1.32 (2024-12-12) + +### Improvements + +- Bumped ocean version to ^0.15.0 + + # Port_Ocean 0.1.31 (2024-12-10) ### Improvements diff --git a/integrations/octopus/poetry.lock b/integrations/octopus/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/octopus/poetry.lock +++ b/integrations/octopus/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/octopus/pyproject.toml b/integrations/octopus/pyproject.toml index a1014c6635..6aaf919c81 100644 --- a/integrations/octopus/pyproject.toml +++ b/integrations/octopus/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "octopus" -version = "0.1.31" +version = "0.1.32" description = "This integration ingest data from octopus deploy" authors = ["Adebayo Iyanuoluwa "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/opencost/CHANGELOG.md b/integrations/opencost/CHANGELOG.md index b8e5455112..8511601e67 100644 --- a/integrations/opencost/CHANGELOG.md +++ b/integrations/opencost/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.98 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.97 (2024-12-10) diff --git a/integrations/opencost/poetry.lock b/integrations/opencost/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/opencost/poetry.lock +++ b/integrations/opencost/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/opencost/pyproject.toml b/integrations/opencost/pyproject.toml index 1b455ab70d..67e18a95cb 100644 --- a/integrations/opencost/pyproject.toml +++ b/integrations/opencost/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "opencost" -version = "0.1.97" +version = "0.1.98" description = "Ocean integration for OpenCost" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/opsgenie/CHANGELOG.md b/integrations/opsgenie/CHANGELOG.md index b3b57c941a..bdfba4e4e6 100644 --- a/integrations/opsgenie/CHANGELOG.md +++ b/integrations/opsgenie/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.23 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.2.22 (2024-12-10) diff --git a/integrations/opsgenie/poetry.lock b/integrations/opsgenie/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/opsgenie/poetry.lock +++ b/integrations/opsgenie/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/opsgenie/pyproject.toml b/integrations/opsgenie/pyproject.toml index b5406508fd..d077c93379 100644 --- a/integrations/opsgenie/pyproject.toml +++ b/integrations/opsgenie/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "opsgenie" -version = "0.2.22" +version = "0.2.23" description = "Ocean integration for OpsGenie" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/pagerduty/CHANGELOG.md b/integrations/pagerduty/CHANGELOG.md index fd3aeadf69..5b7e293aa7 100644 --- a/integrations/pagerduty/CHANGELOG.md +++ b/integrations/pagerduty/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.126 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.125 (2024-12-10) diff --git a/integrations/pagerduty/poetry.lock b/integrations/pagerduty/poetry.lock index b9b5ce57c6..ac105acea3 100644 --- a/integrations/pagerduty/poetry.lock +++ b/integrations/pagerduty/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "d16ba33bd6e00c85aa77414f36dce89c6f6c56fed158f7dbe9be7ae7975bc5bb" +content-hash = "352097dfeed56e9ae815affb741761469584719d7385fdbc67f682989e869072" diff --git a/integrations/pagerduty/pyproject.toml b/integrations/pagerduty/pyproject.toml index 19cdf562a5..7478db496d 100644 --- a/integrations/pagerduty/pyproject.toml +++ b/integrations/pagerduty/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "pagerduty" -version = "0.1.125" +version = "0.1.126" description = "Pagerduty Integration" authors = ["Port Team "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/sentry/CHANGELOG.md b/integrations/sentry/CHANGELOG.md index 58250e921b..ded975b418 100644 --- a/integrations/sentry/CHANGELOG.md +++ b/integrations/sentry/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.98 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.97 (2024-12-10) diff --git a/integrations/sentry/poetry.lock b/integrations/sentry/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/sentry/poetry.lock +++ b/integrations/sentry/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/sentry/pyproject.toml b/integrations/sentry/pyproject.toml index a711155442..382d784b0f 100644 --- a/integrations/sentry/pyproject.toml +++ b/integrations/sentry/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sentry" -version = "0.1.97" +version = "0.1.98" description = "Sentry Integration" authors = ["Dvir Segev ","Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/servicenow/CHANGELOG.md b/integrations/servicenow/CHANGELOG.md index e21d2c3377..bf2dcd39ce 100644 --- a/integrations/servicenow/CHANGELOG.md +++ b/integrations/servicenow/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.88 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.87 (2024-12-10) diff --git a/integrations/servicenow/poetry.lock b/integrations/servicenow/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/servicenow/poetry.lock +++ b/integrations/servicenow/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/servicenow/pyproject.toml b/integrations/servicenow/pyproject.toml index 2c3a75116e..e401287cdd 100644 --- a/integrations/servicenow/pyproject.toml +++ b/integrations/servicenow/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "servicenow" -version = "0.1.87" +version = "0.1.88" description = "Service Now Ocean Integration" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/snyk/CHANGELOG.md b/integrations/snyk/CHANGELOG.md index 6018d280b5..87befb1f91 100644 --- a/integrations/snyk/CHANGELOG.md +++ b/integrations/snyk/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.110 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.109 (2024-12-10) diff --git a/integrations/snyk/poetry.lock b/integrations/snyk/poetry.lock index 7660e7a353..4374dfff12 100644 --- a/integrations/snyk/poetry.lock +++ b/integrations/snyk/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "2c319162f315ed21594169d0de09d2c707b0babb10d68eb86b76799da5b26aaa" +content-hash = "f97f11b5065f5357fdc970b271ccbd07c009e4ed9d1053967bda81b284b025e1" diff --git a/integrations/snyk/pyproject.toml b/integrations/snyk/pyproject.toml index 37f8fa4b98..89e0c0530e 100644 --- a/integrations/snyk/pyproject.toml +++ b/integrations/snyk/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "snyk" -version = "0.1.109" +version = "0.1.110" description = "Snyk integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" aiolimiter = "^1.1.0" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/sonarqube/CHANGELOG.md b/integrations/sonarqube/CHANGELOG.md index 208669ac58..740ac0afe1 100644 --- a/integrations/sonarqube/CHANGELOG.md +++ b/integrations/sonarqube/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.118 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.117 (2024-12-10) diff --git a/integrations/sonarqube/poetry.lock b/integrations/sonarqube/poetry.lock index f0bce0b4c7..8cc44a2856 100644 --- a/integrations/sonarqube/poetry.lock +++ b/integrations/sonarqube/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "bd8cb3d4b174abfe341e0f5ee2867485aa319f6dae09054c03e208e41c835779" +content-hash = "23cc284a065d1b7fd98cbbf4da00c6a6a567aac95a5b57cbd2d4c8bebb4e3068" diff --git a/integrations/sonarqube/pyproject.toml b/integrations/sonarqube/pyproject.toml index 3aa595d7b2..4581ad0308 100644 --- a/integrations/sonarqube/pyproject.toml +++ b/integrations/sonarqube/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sonarqube" -version = "0.1.117" +version = "0.1.118" description = "SonarQube projects and code quality analysis integration" authors = ["Port Team "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} rich = "^13.5.2" cookiecutter = "^2.3.0" diff --git a/integrations/statuspage/CHANGELOG.md b/integrations/statuspage/CHANGELOG.md index ebc023a6ca..c12aa47305 100644 --- a/integrations/statuspage/CHANGELOG.md +++ b/integrations/statuspage/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.47 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.46 (2024-12-10) diff --git a/integrations/statuspage/poetry.lock b/integrations/statuspage/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/statuspage/poetry.lock +++ b/integrations/statuspage/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/statuspage/pyproject.toml b/integrations/statuspage/pyproject.toml index 586848510b..32357917f5 100644 --- a/integrations/statuspage/pyproject.toml +++ b/integrations/statuspage/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "statuspage" -version = "0.1.46" +version = "0.1.47" description = "Connect Statuspage to Ocean and automatically ingest incidents, updates, and impacted components for comprehensive monitoring" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/terraform-cloud/CHANGELOG.md b/integrations/terraform-cloud/CHANGELOG.md index 862bee9697..7f0ca0abc5 100644 --- a/integrations/terraform-cloud/CHANGELOG.md +++ b/integrations/terraform-cloud/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.87 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.86 (2024-12-10) diff --git a/integrations/terraform-cloud/poetry.lock b/integrations/terraform-cloud/poetry.lock index 7660e7a353..4374dfff12 100644 --- a/integrations/terraform-cloud/poetry.lock +++ b/integrations/terraform-cloud/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "2c319162f315ed21594169d0de09d2c707b0babb10d68eb86b76799da5b26aaa" +content-hash = "f97f11b5065f5357fdc970b271ccbd07c009e4ed9d1053967bda81b284b025e1" diff --git a/integrations/terraform-cloud/pyproject.toml b/integrations/terraform-cloud/pyproject.toml index 459c680ad9..119af37e75 100644 --- a/integrations/terraform-cloud/pyproject.toml +++ b/integrations/terraform-cloud/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "terraform-cloud" -version = "0.1.86" +version = "0.1.87" description = "Terraform Cloud Integration for Port" authors = ["Michael Armah "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} aiolimiter = "^1.1.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/wiz/CHANGELOG.md b/integrations/wiz/CHANGELOG.md index 6a1597ad19..83d0f08238 100644 --- a/integrations/wiz/CHANGELOG.md +++ b/integrations/wiz/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.79 (2024-12-12) + + +### Improvements + +- Bumped ocean version to ^0.15.0 + + ## 0.1.78 (2024-12-10) diff --git a/integrations/wiz/poetry.lock b/integrations/wiz/poetry.lock index 9adef70c41..d1473a993a 100644 --- a/integrations/wiz/poetry.lock +++ b/integrations/wiz/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.14.7" +version = "0.15.0" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.14.7-py3-none-any.whl", hash = "sha256:a3fa54bddd7f276d452f1c191357e1b554b674172444cfd3e5ff5c35df08aa0d"}, - {file = "port_ocean-0.14.7.tar.gz", hash = "sha256:7be60f05a152d99dffd40715e101107d983d56ca3729dd0d3c1ae04cd562a195"}, + {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, + {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "586f052e8b8bfefa220a41d6f35c0542faf96e132a3ffe9b3aed926b30c7ea7d" +content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" diff --git a/integrations/wiz/pyproject.toml b/integrations/wiz/pyproject.toml index 81963d883b..5f08f18e62 100644 --- a/integrations/wiz/pyproject.toml +++ b/integrations/wiz/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "wiz" -version = "0.1.78" +version = "0.1.79" description = "Wiz Port integration in Ocean" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.14.7", extras = ["cli"]} +port_ocean = {version = "^0.15.0", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration From 8e0919d82cd1d4a3ab6e190284245e461e5c77bc Mon Sep 17 00:00:00 2001 From: shariff-6 Date: Fri, 13 Dec 2024 22:58:23 +0300 Subject: [PATCH 10/22] [Integration][ADO] Fix Release Pagination Using Incorrect Parameter (#1224) --- integrations/azure-devops/CHANGELOG.md | 7 +++++++ .../azure_devops/client/azure_devops_client.py | 4 +++- .../azure-devops/azure_devops/client/base_client.py | 8 ++++++-- integrations/azure-devops/pyproject.toml | 2 +- .../tests/azure_devops/client/test_azure_devops_client.py | 6 +++--- 5 files changed, 20 insertions(+), 7 deletions(-) diff --git a/integrations/azure-devops/CHANGELOG.md b/integrations/azure-devops/CHANGELOG.md index fc8d5548ae..33089e3e8e 100644 --- a/integrations/azure-devops/CHANGELOG.md +++ b/integrations/azure-devops/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.93 (2024-12-12) + + +### Bug Fixes + +- Fixed pagination in Azure DevOps integration by replacing `skip` pagination with `continuationToken` for `generate_releases` method. + ## 0.1.92 (2024-12-12) diff --git a/integrations/azure-devops/azure_devops/client/azure_devops_client.py b/integrations/azure-devops/azure_devops/client/azure_devops_client.py index 8f4f81c606..6067695600 100644 --- a/integrations/azure-devops/azure_devops/client/azure_devops_client.py +++ b/integrations/azure-devops/azure_devops/client/azure_devops_client.py @@ -131,7 +131,9 @@ async def generate_releases(self) -> AsyncGenerator[list[dict[str, Any]], None]: ) + f"/{project['id']}/{API_URL_PREFIX}/release/releases" ) - async for releases in self._get_paginated_by_top_and_skip(releases_url): + async for releases in self._get_paginated_by_top_and_continuation_token( + releases_url + ): yield releases async def generate_repository_policies( diff --git a/integrations/azure-devops/azure_devops/client/base_client.py b/integrations/azure-devops/azure_devops/client/base_client.py index e294c83167..80b29c8c37 100644 --- a/integrations/azure-devops/azure_devops/client/base_client.py +++ b/integrations/azure-devops/azure_devops/client/base_client.py @@ -51,13 +51,17 @@ async def send_request( async def _get_paginated_by_top_and_continuation_token( self, url: str, additional_params: Optional[dict[str, Any]] = None ) -> AsyncGenerator[list[dict[str, Any]], None]: - continuation_token = "" + continuation_token = None while True: params: dict[str, Any] = { "$top": PAGE_SIZE, - "continuationToken": continuation_token, **(additional_params or {}), } + if ( + continuation_token + ): # Only add continuationToken if it's not None or empty + params["continuationToken"] = continuation_token + response = await self.send_request("GET", url, params=params) logger.info( f"Found {len(response.json()['value'])} objects in url {url} with params: {params}" diff --git a/integrations/azure-devops/pyproject.toml b/integrations/azure-devops/pyproject.toml index fc2e940c40..1de38cea4a 100644 --- a/integrations/azure-devops/pyproject.toml +++ b/integrations/azure-devops/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "azure-devops" -version = "0.1.92" +version = "0.1.93" description = "An Azure Devops Ocean integration" authors = ["Matan Geva "] diff --git a/integrations/azure-devops/tests/azure_devops/client/test_azure_devops_client.py b/integrations/azure-devops/tests/azure_devops/client/test_azure_devops_client.py index 82fc2f46d3..4cbf94d2f9 100644 --- a/integrations/azure-devops/tests/azure_devops/client/test_azure_devops_client.py +++ b/integrations/azure-devops/tests/azure_devops/client/test_azure_devops_client.py @@ -469,7 +469,7 @@ async def test_generate_releases(mock_event_context: MagicMock) -> None: async def mock_generate_projects() -> AsyncGenerator[List[Dict[str, Any]], None]: yield [{"id": "proj1", "name": "Project One"}] - async def mock_get_paginated_by_top_and_skip( + async def mock_get_paginated_by_top_and_continuation_token( url: str, **kwargs: Any ) -> AsyncGenerator[List[Dict[str, Any]], None]: if "releases" in url: @@ -483,8 +483,8 @@ async def mock_get_paginated_by_top_and_skip( ): with patch.object( client, - "_get_paginated_by_top_and_skip", - side_effect=mock_get_paginated_by_top_and_skip, + "_get_paginated_by_top_and_continuation_token", + side_effect=mock_get_paginated_by_top_and_continuation_token, ): # ACT releases: List[Dict[str, Any]] = [] From d204af5b1bf3514778a87a65116a78bf68381f72 Mon Sep 17 00:00:00 2001 From: Tom Tankilevitch <59158507+Tankilevitch@users.noreply.github.com> Date: Sun, 15 Dec 2024 10:01:44 +0200 Subject: [PATCH 11/22] [Core] Change `SaasOauth` to `SaasOauth2` runtime (#1237) --- CHANGELOG.md | 7 +++++++ port_ocean/core/models.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 953ab7aae7..13affe7175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## 0.15.1 (2024-15-12) + +### Bug Fixes + +- Changed `SaasOauth` runtime to `SaasOauth2` + + ## 0.15.0 (2024-12-12) ### Features diff --git a/port_ocean/core/models.py b/port_ocean/core/models.py index 7604f6a6ed..1ba98fb530 100644 --- a/port_ocean/core/models.py +++ b/port_ocean/core/models.py @@ -8,12 +8,12 @@ class Runtime(Enum): Saas = "Saas" - SaasOauth = "SaasOauth" + SaasOauth2 = "SaasOauth2" OnPrem = "OnPrem" @property def is_saas_runtime(self) -> bool: - return self in [Runtime.Saas, Runtime.SaasOauth] + return self in [Runtime.Saas, Runtime.SaasOauth2] class Entity(BaseModel): diff --git a/pyproject.toml b/pyproject.toml index 1c5ad79ca4..702442f5f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io" From 0b52188314f5f3afa2018ea16b13995534b49ecf Mon Sep 17 00:00:00 2001 From: Port Bot <110599342+portmachineuser@users.noreply.github.com> Date: Sun, 15 Dec 2024 10:59:42 +0200 Subject: [PATCH 12/22] [Integration] Apply Ocean version 0.15.1 to all integrations (#1238) --- CHANGELOG.md | 2 +- integrations/argocd/CHANGELOG.md | 8 ++++++++ integrations/argocd/poetry.lock | 8 ++++---- integrations/argocd/pyproject.toml | 4 ++-- integrations/aws/CHANGELOG.md | 8 ++++++++ integrations/aws/poetry.lock | 8 ++++---- integrations/aws/pyproject.toml | 4 ++-- integrations/azure-devops/CHANGELOG.md | 8 ++++++++ integrations/azure-devops/poetry.lock | 8 ++++---- integrations/azure-devops/pyproject.toml | 4 ++-- integrations/azure/CHANGELOG.md | 7 +++++++ integrations/azure/poetry.lock | 8 ++++---- integrations/azure/pyproject.toml | 4 ++-- integrations/backstage/CHANGELOG.md | 8 ++++++++ integrations/backstage/poetry.lock | 8 ++++---- integrations/backstage/pyproject.toml | 4 ++-- integrations/datadog/CHANGELOG.md | 8 ++++++++ integrations/datadog/poetry.lock | 8 ++++---- integrations/datadog/pyproject.toml | 4 ++-- integrations/dynatrace/CHANGELOG.md | 8 ++++++++ integrations/dynatrace/poetry.lock | 8 ++++---- integrations/dynatrace/pyproject.toml | 4 ++-- integrations/fake-integration/CHANGELOG.md | 8 ++++++++ integrations/fake-integration/poetry.lock | 8 ++++---- integrations/fake-integration/pyproject.toml | 4 ++-- integrations/firehydrant/CHANGELOG.md | 8 ++++++++ integrations/firehydrant/poetry.lock | 8 ++++---- integrations/firehydrant/pyproject.toml | 4 ++-- integrations/gcp/CHANGELOG.md | 8 ++++++++ integrations/gcp/poetry.lock | 8 ++++---- integrations/gcp/pyproject.toml | 4 ++-- integrations/gitlab/CHANGELOG.md | 8 ++++++++ integrations/gitlab/poetry.lock | 8 ++++---- integrations/gitlab/pyproject.toml | 4 ++-- integrations/jenkins/CHANGELOG.md | 8 ++++++++ integrations/jenkins/poetry.lock | 8 ++++---- integrations/jenkins/pyproject.toml | 4 ++-- integrations/jira/CHANGELOG.md | 8 ++++++++ integrations/jira/poetry.lock | 8 ++++---- integrations/jira/pyproject.toml | 4 ++-- integrations/kafka/CHANGELOG.md | 8 ++++++++ integrations/kafka/poetry.lock | 8 ++++---- integrations/kafka/pyproject.toml | 4 ++-- integrations/kubecost/CHANGELOG.md | 8 ++++++++ integrations/kubecost/poetry.lock | 8 ++++---- integrations/kubecost/pyproject.toml | 4 ++-- integrations/launchdarkly/CHANGELOG.md | 8 ++++++++ integrations/launchdarkly/poetry.lock | 8 ++++---- integrations/launchdarkly/pyproject.toml | 4 ++-- integrations/linear/CHANGELOG.md | 8 ++++++++ integrations/linear/poetry.lock | 8 ++++---- integrations/linear/pyproject.toml | 4 ++-- integrations/newrelic/CHANGELOG.md | 8 ++++++++ integrations/newrelic/poetry.lock | 8 ++++---- integrations/newrelic/pyproject.toml | 4 ++-- integrations/octopus/CHANGELOG.md | 7 +++++++ integrations/octopus/poetry.lock | 8 ++++---- integrations/octopus/pyproject.toml | 4 ++-- integrations/opencost/CHANGELOG.md | 8 ++++++++ integrations/opencost/poetry.lock | 8 ++++---- integrations/opencost/pyproject.toml | 4 ++-- integrations/opsgenie/CHANGELOG.md | 8 ++++++++ integrations/opsgenie/poetry.lock | 8 ++++---- integrations/opsgenie/pyproject.toml | 4 ++-- integrations/pagerduty/CHANGELOG.md | 8 ++++++++ integrations/pagerduty/poetry.lock | 8 ++++---- integrations/pagerduty/pyproject.toml | 4 ++-- integrations/sentry/CHANGELOG.md | 8 ++++++++ integrations/sentry/poetry.lock | 8 ++++---- integrations/sentry/pyproject.toml | 4 ++-- integrations/servicenow/CHANGELOG.md | 8 ++++++++ integrations/servicenow/poetry.lock | 8 ++++---- integrations/servicenow/pyproject.toml | 4 ++-- integrations/snyk/CHANGELOG.md | 8 ++++++++ integrations/snyk/poetry.lock | 8 ++++---- integrations/snyk/pyproject.toml | 4 ++-- integrations/sonarqube/CHANGELOG.md | 8 ++++++++ integrations/sonarqube/poetry.lock | 8 ++++---- integrations/sonarqube/pyproject.toml | 4 ++-- integrations/statuspage/CHANGELOG.md | 8 ++++++++ integrations/statuspage/poetry.lock | 8 ++++---- integrations/statuspage/pyproject.toml | 4 ++-- integrations/terraform-cloud/CHANGELOG.md | 8 ++++++++ integrations/terraform-cloud/poetry.lock | 8 ++++---- integrations/terraform-cloud/pyproject.toml | 4 ++-- integrations/wiz/CHANGELOG.md | 8 ++++++++ integrations/wiz/poetry.lock | 8 ++++---- integrations/wiz/pyproject.toml | 4 ++-- 88 files changed, 405 insertions(+), 175 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13affe7175..d6a0a5fd29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm -## 0.15.1 (2024-15-12) +## 0.15.1 (2024-12-15) ### Bug Fixes diff --git a/integrations/argocd/CHANGELOG.md b/integrations/argocd/CHANGELOG.md index ee549c9ede..92fd0e8619 100644 --- a/integrations/argocd/CHANGELOG.md +++ b/integrations/argocd/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.110 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.109 (2024-12-12) diff --git a/integrations/argocd/poetry.lock b/integrations/argocd/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/argocd/poetry.lock +++ b/integrations/argocd/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/argocd/pyproject.toml b/integrations/argocd/pyproject.toml index 7454ee603f..8c72bd686c 100644 --- a/integrations/argocd/pyproject.toml +++ b/integrations/argocd/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "argocd" -version = "0.1.109" +version = "0.1.110" description = "Argo CD integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/aws/CHANGELOG.md b/integrations/aws/CHANGELOG.md index a6dfbdbef2..e0a1dfc1df 100644 --- a/integrations/aws/CHANGELOG.md +++ b/integrations/aws/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.69 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.2.68 (2024-12-12) diff --git a/integrations/aws/poetry.lock b/integrations/aws/poetry.lock index b59d60a480..0645324f52 100644 --- a/integrations/aws/poetry.lock +++ b/integrations/aws/poetry.lock @@ -2284,13 +2284,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -4046,4 +4046,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "5f080d865bd58710465b6ef3934fa53709ab091bec5a70e612cfe99957d08e0e" +content-hash = "5901a170ab2ae1187ce6721a95042880875d50e14466ec11bd8dc804dd3b15ec" diff --git a/integrations/aws/pyproject.toml b/integrations/aws/pyproject.toml index 2f7220755a..44909377e7 100644 --- a/integrations/aws/pyproject.toml +++ b/integrations/aws/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "aws" -version = "0.2.68" +version = "0.2.69" description = "This integration will map all your resources in all the available accounts to your Port entities" authors = ["Shalev Avhar ", "Erik Zaadi "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} python-dotenv = "^1.0.1" aioboto3 = "^12.4.0" boto3-stubs = {version = "1.34.76", extras = ["acm", "apigateway", "appconfig", "athena", "cloudcontrol", "cloudformation", "cloudwatch", "dynamodb", "ec2", "ec2-instance-connect", "ecr", "ecs", "elasticache", "elb", "elbv2", "events", "iam", "lambda", "logs", "organizations", "rds", "route53", "s3", "sagemaker", "secretsmanager", "sns", "sqs", "ssm", "sts"]} diff --git a/integrations/azure-devops/CHANGELOG.md b/integrations/azure-devops/CHANGELOG.md index 33089e3e8e..031aa4753b 100644 --- a/integrations/azure-devops/CHANGELOG.md +++ b/integrations/azure-devops/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.94 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.93 (2024-12-12) diff --git a/integrations/azure-devops/poetry.lock b/integrations/azure-devops/poetry.lock index 6a72bea97d..e4da06b8ce 100644 --- a/integrations/azure-devops/poetry.lock +++ b/integrations/azure-devops/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "120b4389bb84d8af7e599f552605f6a501707fa4ecca421604e8ecf21ecbe7d8" +content-hash = "b19e59863149c462d08454443ec5040be30a7226422f7859a1efa0b9acd46023" diff --git a/integrations/azure-devops/pyproject.toml b/integrations/azure-devops/pyproject.toml index 1de38cea4a..01444e43a8 100644 --- a/integrations/azure-devops/pyproject.toml +++ b/integrations/azure-devops/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "azure-devops" -version = "0.1.93" +version = "0.1.94" description = "An Azure Devops Ocean integration" authors = ["Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/azure/CHANGELOG.md b/integrations/azure/CHANGELOG.md index 9bace482a8..b0481d1bc8 100644 --- a/integrations/azure/CHANGELOG.md +++ b/integrations/azure/CHANGELOG.md @@ -1,3 +1,10 @@ +0.1.113 (2024-12-15) + +### Improvements + +- Bumped ocean version to ^0.15.1 + + 0.1.112 (2024-12-12) ### Improvements diff --git a/integrations/azure/poetry.lock b/integrations/azure/poetry.lock index 75f3f1857e..30508bd503 100644 --- a/integrations/azure/poetry.lock +++ b/integrations/azure/poetry.lock @@ -1589,13 +1589,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -2495,4 +2495,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "0360800ee7996de3b948e71ba299498505268676adb9aec24fce5e65ae362011" +content-hash = "f5586e0630123e556f2253deed351f77b6d9fdd9500e39840c50cc6c98cb24d0" diff --git a/integrations/azure/pyproject.toml b/integrations/azure/pyproject.toml index 18ffd9845c..e56a1024d5 100644 --- a/integrations/azure/pyproject.toml +++ b/integrations/azure/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "azure" -version = "0.1.112" +version = "0.1.113" description = "Azure integration" authors = ["Tom Tankilevitch "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} # due to patching the azure-mgmt-resource package, we need to use a specific version azure-mgmt-resource = "23.2.0" azure-identity = "^1.13.0" diff --git a/integrations/backstage/CHANGELOG.md b/integrations/backstage/CHANGELOG.md index 5d72685fef..8616673cc8 100644 --- a/integrations/backstage/CHANGELOG.md +++ b/integrations/backstage/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.17-beta (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.16-beta (2024-12-12) diff --git a/integrations/backstage/poetry.lock b/integrations/backstage/poetry.lock index af0dbad53c..427d6bc3e8 100644 --- a/integrations/backstage/poetry.lock +++ b/integrations/backstage/poetry.lock @@ -913,13 +913,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1521,4 +1521,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "6061c7dbc344db006e601996a7509dedcd0f5ae066ebaf10618d1ef53771326e" +content-hash = "04c1ef22712fa2cafd625f4e167d9b92445ddb8988ca7c285e0c57baaaa7ae63" diff --git a/integrations/backstage/pyproject.toml b/integrations/backstage/pyproject.toml index 46ef05c2cb..4b56568f7f 100644 --- a/integrations/backstage/pyproject.toml +++ b/integrations/backstage/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "backstage" -version = "0.1.16-beta" +version = "0.1.17-beta" description = "Importing resources from Backstage IDP" authors = ["Roi Talpaz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/datadog/CHANGELOG.md b/integrations/datadog/CHANGELOG.md index 1c2781c1b7..beef3cc881 100644 --- a/integrations/datadog/CHANGELOG.md +++ b/integrations/datadog/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.65 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.64 (2024-12-12) diff --git a/integrations/datadog/poetry.lock b/integrations/datadog/poetry.lock index 170924eb03..35009fa1e6 100644 --- a/integrations/datadog/poetry.lock +++ b/integrations/datadog/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "d6b20d82c79698ca73548ef7402f98f1e300e087e712a38d4c1965e6be1546f6" +content-hash = "47d3061f50a2f82b6271b934be13947687f6742116f993fd17ec27299e7160b8" diff --git a/integrations/datadog/pyproject.toml b/integrations/datadog/pyproject.toml index cc57f9aeb7..20ef422b3f 100644 --- a/integrations/datadog/pyproject.toml +++ b/integrations/datadog/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "datadog" -version = "0.1.64" +version = "0.1.65" description = "Datadog Ocean Integration" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} loguru = "^0.7.2" [tool.poetry.group.dev.dependencies] diff --git a/integrations/dynatrace/CHANGELOG.md b/integrations/dynatrace/CHANGELOG.md index 66291c165b..ad5c2b8a4b 100644 --- a/integrations/dynatrace/CHANGELOG.md +++ b/integrations/dynatrace/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.75 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.74 (2024-12-12) diff --git a/integrations/dynatrace/poetry.lock b/integrations/dynatrace/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/dynatrace/poetry.lock +++ b/integrations/dynatrace/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/dynatrace/pyproject.toml b/integrations/dynatrace/pyproject.toml index e44fe7bdab..f6638ce3e0 100644 --- a/integrations/dynatrace/pyproject.toml +++ b/integrations/dynatrace/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "dynatrace" -version = "0.1.74" +version = "0.1.75" description = "An integration used to import Dynatrace resources into Port" authors = ["Ayodeji Adeoti <>"] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/fake-integration/CHANGELOG.md b/integrations/fake-integration/CHANGELOG.md index 4a47612570..841e54847f 100644 --- a/integrations/fake-integration/CHANGELOG.md +++ b/integrations/fake-integration/CHANGELOG.md @@ -5,6 +5,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.25-dev (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.24-dev (2024-12-12) diff --git a/integrations/fake-integration/poetry.lock b/integrations/fake-integration/poetry.lock index 12f7a382d7..4f185b5043 100644 --- a/integrations/fake-integration/poetry.lock +++ b/integrations/fake-integration/poetry.lock @@ -1168,13 +1168,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1903,4 +1903,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "d8b9126b48e36339dc4859887881be071e5bdb5186425d3bb3b43b3d1a0141c2" +content-hash = "ef42b187c13fe442bce5f53be2be6ffcd0aa946156b73b9f296862c5f110e418" diff --git a/integrations/fake-integration/pyproject.toml b/integrations/fake-integration/pyproject.toml index 45e077ac3a..c5b16fb88c 100644 --- a/integrations/fake-integration/pyproject.toml +++ b/integrations/fake-integration/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "fake-integration" -version = "0.1.24-dev" +version = "0.1.25-dev" description = "A useless fake integration that helps us test the Ocean Core" authors = ["Erik Zaadi "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} faker = "^28.0.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/firehydrant/CHANGELOG.md b/integrations/firehydrant/CHANGELOG.md index d8118afad2..e98c07c786 100644 --- a/integrations/firehydrant/CHANGELOG.md +++ b/integrations/firehydrant/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.97 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.96 (2024-12-12) diff --git a/integrations/firehydrant/poetry.lock b/integrations/firehydrant/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/firehydrant/poetry.lock +++ b/integrations/firehydrant/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/firehydrant/pyproject.toml b/integrations/firehydrant/pyproject.toml index f6b8f4721d..4a6b86d09a 100644 --- a/integrations/firehydrant/pyproject.toml +++ b/integrations/firehydrant/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "firehydrant" -version = "0.1.96" +version = "0.1.97" description = "FireHydrant Integration Powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/gcp/CHANGELOG.md b/integrations/gcp/CHANGELOG.md index 179033eca3..e894dbb4fd 100644 --- a/integrations/gcp/CHANGELOG.md +++ b/integrations/gcp/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.78 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.77 (2024-12-12) diff --git a/integrations/gcp/poetry.lock b/integrations/gcp/poetry.lock index 7d17419d76..d4d9cc28fd 100644 --- a/integrations/gcp/poetry.lock +++ b/integrations/gcp/poetry.lock @@ -1460,13 +1460,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -2267,4 +2267,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "2369f5bab8936d6c4b100cd4170f77402ac3b7967b5ad4e9c0c18fe2718a7ec0" +content-hash = "8e9514b7d391b31217dbd02fd642e702505316fcf37aa33352e5805ca2c174d4" diff --git a/integrations/gcp/pyproject.toml b/integrations/gcp/pyproject.toml index 0d52caca2e..bab2874b05 100644 --- a/integrations/gcp/pyproject.toml +++ b/integrations/gcp/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "gcp" -version = "0.1.77" +version = "0.1.78" description = "A GCP ocean integration" authors = ["Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} google-cloud-asset = "^3.25.1" google-cloud-pubsub = "^2.21.1" google-cloud-resource-manager = "^1.12.3" diff --git a/integrations/gitlab/CHANGELOG.md b/integrations/gitlab/CHANGELOG.md index 4957df698c..9891835ce8 100644 --- a/integrations/gitlab/CHANGELOG.md +++ b/integrations/gitlab/CHANGELOG.md @@ -7,6 +7,14 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +0.2.3 (2024-12-15) +================== + +### Improvements + +- Bumped ocean version to ^0.15.1 + + 0.2.2 (2024-12-12) ================== diff --git a/integrations/gitlab/poetry.lock b/integrations/gitlab/poetry.lock index 4840364412..7857e3a8c4 100644 --- a/integrations/gitlab/poetry.lock +++ b/integrations/gitlab/poetry.lock @@ -1128,13 +1128,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1905,4 +1905,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "a1b45d21ceda249ed65e6af28b7e99ada84da56e881179dceef7ddb0bcd84be5" +content-hash = "e32c406f0e275284f56d7b779e9757d77ec5afb03f51c8e0212643ec9abb8c09" diff --git a/integrations/gitlab/pyproject.toml b/integrations/gitlab/pyproject.toml index cf2a9ad3ba..cb3d6c8b89 100644 --- a/integrations/gitlab/pyproject.toml +++ b/integrations/gitlab/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitlab" -version = "0.2.2" +version = "0.2.3" description = "Gitlab integration for Port using Port-Ocean Framework" authors = ["Yair Siman-Tov "] @@ -11,7 +11,7 @@ aiolimiter = "^1.1.0" python-gitlab = "^3.14.0" pathlib = "^1.0.1" jsonschema = "^4.17.3" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/jenkins/CHANGELOG.md b/integrations/jenkins/CHANGELOG.md index 4b031a680d..543eb57d83 100644 --- a/integrations/jenkins/CHANGELOG.md +++ b/integrations/jenkins/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.80 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.79 (2024-12-12) diff --git a/integrations/jenkins/poetry.lock b/integrations/jenkins/poetry.lock index 85cfd843b2..27aa2da307 100644 --- a/integrations/jenkins/poetry.lock +++ b/integrations/jenkins/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "ac3ce18b7f5d6a954e7f61f66ec365752b552ba5a8752983ba65ed3564abfffc" +content-hash = "e4983dff071cb04484e8d714970897e0c69271e291eb210551645508f1682797" diff --git a/integrations/jenkins/pyproject.toml b/integrations/jenkins/pyproject.toml index 60eb799ba7..36ce3acb83 100644 --- a/integrations/jenkins/pyproject.toml +++ b/integrations/jenkins/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "jenkins" -version = "0.1.79" +version = "0.1.80" description = "Jenkins Integration to Port Ocean" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} pip = "^23.3.1" python-dotenv = "^1.0.0" loguru = "^0.7.2" diff --git a/integrations/jira/CHANGELOG.md b/integrations/jira/CHANGELOG.md index 6536a8146d..1b8b9ad994 100644 --- a/integrations/jira/CHANGELOG.md +++ b/integrations/jira/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.4 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.2.3 (2024-12-12) diff --git a/integrations/jira/poetry.lock b/integrations/jira/poetry.lock index ac105acea3..e4eb9feac0 100644 --- a/integrations/jira/poetry.lock +++ b/integrations/jira/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "352097dfeed56e9ae815affb741761469584719d7385fdbc67f682989e869072" +content-hash = "b615228fb027875bae6a1c0330a51cbd414649b32a6688b4d1bb1a3a7787d9d0" diff --git a/integrations/jira/pyproject.toml b/integrations/jira/pyproject.toml index cf87c2240c..ce1f0078ee 100644 --- a/integrations/jira/pyproject.toml +++ b/integrations/jira/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "jira" -version = "0.2.3" +version = "0.2.4" description = "Integration to bring information from Jira into Port" authors = ["Mor Paz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/kafka/CHANGELOG.md b/integrations/kafka/CHANGELOG.md index 27684d003c..0a8f685b67 100644 --- a/integrations/kafka/CHANGELOG.md +++ b/integrations/kafka/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.96 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.95 (2024-12-12) diff --git a/integrations/kafka/poetry.lock b/integrations/kafka/poetry.lock index 9feace6710..b9f62d2a50 100644 --- a/integrations/kafka/poetry.lock +++ b/integrations/kafka/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "e83f3fcefd2a789090aaed094fe6276516c3f2172c3c86634396a8e403e807e4" +content-hash = "2cb01a08b7ec7291e0f83f33ef78bfdd23cd62e2dfae726a977f5b7751cf48a4" diff --git a/integrations/kafka/pyproject.toml b/integrations/kafka/pyproject.toml index ab2e992f65..3dce701893 100644 --- a/integrations/kafka/pyproject.toml +++ b/integrations/kafka/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "kafka" -version = "0.1.95" +version = "0.1.96" 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 "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} confluent-kafka = "^2.2.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/kubecost/CHANGELOG.md b/integrations/kubecost/CHANGELOG.md index de867baa6c..bcf2dc9df6 100644 --- a/integrations/kubecost/CHANGELOG.md +++ b/integrations/kubecost/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.101 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.100 (2024-12-12) diff --git a/integrations/kubecost/poetry.lock b/integrations/kubecost/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/kubecost/poetry.lock +++ b/integrations/kubecost/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/kubecost/pyproject.toml b/integrations/kubecost/pyproject.toml index 6568caa834..3801826f7f 100644 --- a/integrations/kubecost/pyproject.toml +++ b/integrations/kubecost/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "kubecost" -version = "0.1.100" +version = "0.1.101" description = "Kubecost integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/launchdarkly/CHANGELOG.md b/integrations/launchdarkly/CHANGELOG.md index 0f6bb67c9b..9839ac8b92 100644 --- a/integrations/launchdarkly/CHANGELOG.md +++ b/integrations/launchdarkly/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.73 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.72 (2024-12-12) diff --git a/integrations/launchdarkly/poetry.lock b/integrations/launchdarkly/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/launchdarkly/poetry.lock +++ b/integrations/launchdarkly/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/launchdarkly/pyproject.toml b/integrations/launchdarkly/pyproject.toml index 90273956a2..5256ca3c40 100644 --- a/integrations/launchdarkly/pyproject.toml +++ b/integrations/launchdarkly/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "launchdarkly" -version = "0.1.72" +version = "0.1.73" description = "Launchdarkly integration for Port" authors = ["Michael Armah "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/linear/CHANGELOG.md b/integrations/linear/CHANGELOG.md index 8b18f2b655..4c01942cf2 100644 --- a/integrations/linear/CHANGELOG.md +++ b/integrations/linear/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.59 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.58 (2024-12-12) diff --git a/integrations/linear/poetry.lock b/integrations/linear/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/linear/poetry.lock +++ b/integrations/linear/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/linear/pyproject.toml b/integrations/linear/pyproject.toml index 7117653591..f9c116fd10 100644 --- a/integrations/linear/pyproject.toml +++ b/integrations/linear/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "linear" -version = "0.1.58" +version = "0.1.59" description = "Integration to bring information from Linear into Port" authors = ["Mor Paz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/newrelic/CHANGELOG.md b/integrations/newrelic/CHANGELOG.md index 8072005f4a..e097a427f6 100644 --- a/integrations/newrelic/CHANGELOG.md +++ b/integrations/newrelic/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.106 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.105 (2024-12-12) diff --git a/integrations/newrelic/poetry.lock b/integrations/newrelic/poetry.lock index ac105acea3..e4eb9feac0 100644 --- a/integrations/newrelic/poetry.lock +++ b/integrations/newrelic/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "352097dfeed56e9ae815affb741761469584719d7385fdbc67f682989e869072" +content-hash = "b615228fb027875bae6a1c0330a51cbd414649b32a6688b4d1bb1a3a7787d9d0" diff --git a/integrations/newrelic/pyproject.toml b/integrations/newrelic/pyproject.toml index 07b9d4961d..573d6ee98b 100644 --- a/integrations/newrelic/pyproject.toml +++ b/integrations/newrelic/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "newrelic" -version = "0.1.105" +version = "0.1.106" description = "New Relic Integration" authors = ["Tom Tankilevitch "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/octopus/CHANGELOG.md b/integrations/octopus/CHANGELOG.md index c1bf054f29..385852b87a 100644 --- a/integrations/octopus/CHANGELOG.md +++ b/integrations/octopus/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +# Port_Ocean 0.1.33 (2024-12-15) + +### Improvements + +- Bumped ocean version to ^0.15.1 + + # Port_Ocean 0.1.32 (2024-12-12) ### Improvements diff --git a/integrations/octopus/poetry.lock b/integrations/octopus/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/octopus/poetry.lock +++ b/integrations/octopus/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/octopus/pyproject.toml b/integrations/octopus/pyproject.toml index 6aaf919c81..3137483180 100644 --- a/integrations/octopus/pyproject.toml +++ b/integrations/octopus/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "octopus" -version = "0.1.32" +version = "0.1.33" description = "This integration ingest data from octopus deploy" authors = ["Adebayo Iyanuoluwa "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/opencost/CHANGELOG.md b/integrations/opencost/CHANGELOG.md index 8511601e67..4d96077b88 100644 --- a/integrations/opencost/CHANGELOG.md +++ b/integrations/opencost/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.99 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.98 (2024-12-12) diff --git a/integrations/opencost/poetry.lock b/integrations/opencost/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/opencost/poetry.lock +++ b/integrations/opencost/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/opencost/pyproject.toml b/integrations/opencost/pyproject.toml index 67e18a95cb..6764f948a2 100644 --- a/integrations/opencost/pyproject.toml +++ b/integrations/opencost/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "opencost" -version = "0.1.98" +version = "0.1.99" description = "Ocean integration for OpenCost" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/opsgenie/CHANGELOG.md b/integrations/opsgenie/CHANGELOG.md index bdfba4e4e6..d93a6eede8 100644 --- a/integrations/opsgenie/CHANGELOG.md +++ b/integrations/opsgenie/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.24 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.2.23 (2024-12-12) diff --git a/integrations/opsgenie/poetry.lock b/integrations/opsgenie/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/opsgenie/poetry.lock +++ b/integrations/opsgenie/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/opsgenie/pyproject.toml b/integrations/opsgenie/pyproject.toml index d077c93379..33f5700cf4 100644 --- a/integrations/opsgenie/pyproject.toml +++ b/integrations/opsgenie/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "opsgenie" -version = "0.2.23" +version = "0.2.24" description = "Ocean integration for OpsGenie" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/pagerduty/CHANGELOG.md b/integrations/pagerduty/CHANGELOG.md index 5b7e293aa7..5c7e2830f4 100644 --- a/integrations/pagerduty/CHANGELOG.md +++ b/integrations/pagerduty/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.127 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.126 (2024-12-12) diff --git a/integrations/pagerduty/poetry.lock b/integrations/pagerduty/poetry.lock index ac105acea3..e4eb9feac0 100644 --- a/integrations/pagerduty/poetry.lock +++ b/integrations/pagerduty/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "352097dfeed56e9ae815affb741761469584719d7385fdbc67f682989e869072" +content-hash = "b615228fb027875bae6a1c0330a51cbd414649b32a6688b4d1bb1a3a7787d9d0" diff --git a/integrations/pagerduty/pyproject.toml b/integrations/pagerduty/pyproject.toml index 7478db496d..855168702f 100644 --- a/integrations/pagerduty/pyproject.toml +++ b/integrations/pagerduty/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "pagerduty" -version = "0.1.126" +version = "0.1.127" description = "Pagerduty Integration" authors = ["Port Team "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/sentry/CHANGELOG.md b/integrations/sentry/CHANGELOG.md index ded975b418..e3455ce850 100644 --- a/integrations/sentry/CHANGELOG.md +++ b/integrations/sentry/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.99 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.98 (2024-12-12) diff --git a/integrations/sentry/poetry.lock b/integrations/sentry/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/sentry/poetry.lock +++ b/integrations/sentry/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/sentry/pyproject.toml b/integrations/sentry/pyproject.toml index 382d784b0f..87c280a9c1 100644 --- a/integrations/sentry/pyproject.toml +++ b/integrations/sentry/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sentry" -version = "0.1.98" +version = "0.1.99" description = "Sentry Integration" authors = ["Dvir Segev ","Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/servicenow/CHANGELOG.md b/integrations/servicenow/CHANGELOG.md index bf2dcd39ce..c2d0e87915 100644 --- a/integrations/servicenow/CHANGELOG.md +++ b/integrations/servicenow/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.89 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.88 (2024-12-12) diff --git a/integrations/servicenow/poetry.lock b/integrations/servicenow/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/servicenow/poetry.lock +++ b/integrations/servicenow/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/servicenow/pyproject.toml b/integrations/servicenow/pyproject.toml index e401287cdd..8d5e049c56 100644 --- a/integrations/servicenow/pyproject.toml +++ b/integrations/servicenow/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "servicenow" -version = "0.1.88" +version = "0.1.89" description = "Service Now Ocean Integration" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/snyk/CHANGELOG.md b/integrations/snyk/CHANGELOG.md index 87befb1f91..91c14392d5 100644 --- a/integrations/snyk/CHANGELOG.md +++ b/integrations/snyk/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.111 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.110 (2024-12-12) diff --git a/integrations/snyk/poetry.lock b/integrations/snyk/poetry.lock index 4374dfff12..15f6c51914 100644 --- a/integrations/snyk/poetry.lock +++ b/integrations/snyk/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "f97f11b5065f5357fdc970b271ccbd07c009e4ed9d1053967bda81b284b025e1" +content-hash = "dbe49d03ffc3a03641df4122e2e9c7f4658759cd30ab368bebe2b7afb4dbd2ce" diff --git a/integrations/snyk/pyproject.toml b/integrations/snyk/pyproject.toml index 89e0c0530e..dcc505719b 100644 --- a/integrations/snyk/pyproject.toml +++ b/integrations/snyk/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "snyk" -version = "0.1.110" +version = "0.1.111" description = "Snyk integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" aiolimiter = "^1.1.0" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/sonarqube/CHANGELOG.md b/integrations/sonarqube/CHANGELOG.md index 740ac0afe1..17c40e61ff 100644 --- a/integrations/sonarqube/CHANGELOG.md +++ b/integrations/sonarqube/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.119 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.118 (2024-12-12) diff --git a/integrations/sonarqube/poetry.lock b/integrations/sonarqube/poetry.lock index 8cc44a2856..c2af88a5a1 100644 --- a/integrations/sonarqube/poetry.lock +++ b/integrations/sonarqube/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "23cc284a065d1b7fd98cbbf4da00c6a6a567aac95a5b57cbd2d4c8bebb4e3068" +content-hash = "94e0daa80d31b7022626801aace273969d81ab08748ea420cb51d8811436edf4" diff --git a/integrations/sonarqube/pyproject.toml b/integrations/sonarqube/pyproject.toml index 4581ad0308..0ce44244f9 100644 --- a/integrations/sonarqube/pyproject.toml +++ b/integrations/sonarqube/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sonarqube" -version = "0.1.118" +version = "0.1.119" description = "SonarQube projects and code quality analysis integration" authors = ["Port Team "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} rich = "^13.5.2" cookiecutter = "^2.3.0" diff --git a/integrations/statuspage/CHANGELOG.md b/integrations/statuspage/CHANGELOG.md index c12aa47305..d5c0b72d56 100644 --- a/integrations/statuspage/CHANGELOG.md +++ b/integrations/statuspage/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.48 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.47 (2024-12-12) diff --git a/integrations/statuspage/poetry.lock b/integrations/statuspage/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/statuspage/poetry.lock +++ b/integrations/statuspage/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/statuspage/pyproject.toml b/integrations/statuspage/pyproject.toml index 32357917f5..0a6ebc0462 100644 --- a/integrations/statuspage/pyproject.toml +++ b/integrations/statuspage/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "statuspage" -version = "0.1.47" +version = "0.1.48" description = "Connect Statuspage to Ocean and automatically ingest incidents, updates, and impacted components for comprehensive monitoring" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/terraform-cloud/CHANGELOG.md b/integrations/terraform-cloud/CHANGELOG.md index 7f0ca0abc5..06ad7dfb52 100644 --- a/integrations/terraform-cloud/CHANGELOG.md +++ b/integrations/terraform-cloud/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.88 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.87 (2024-12-12) diff --git a/integrations/terraform-cloud/poetry.lock b/integrations/terraform-cloud/poetry.lock index 4374dfff12..15f6c51914 100644 --- a/integrations/terraform-cloud/poetry.lock +++ b/integrations/terraform-cloud/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "f97f11b5065f5357fdc970b271ccbd07c009e4ed9d1053967bda81b284b025e1" +content-hash = "dbe49d03ffc3a03641df4122e2e9c7f4658759cd30ab368bebe2b7afb4dbd2ce" diff --git a/integrations/terraform-cloud/pyproject.toml b/integrations/terraform-cloud/pyproject.toml index 119af37e75..a0578d5cad 100644 --- a/integrations/terraform-cloud/pyproject.toml +++ b/integrations/terraform-cloud/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "terraform-cloud" -version = "0.1.87" +version = "0.1.88" description = "Terraform Cloud Integration for Port" authors = ["Michael Armah "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} aiolimiter = "^1.1.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/wiz/CHANGELOG.md b/integrations/wiz/CHANGELOG.md index 83d0f08238..d977118330 100644 --- a/integrations/wiz/CHANGELOG.md +++ b/integrations/wiz/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.80 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.1 + + ## 0.1.79 (2024-12-12) diff --git a/integrations/wiz/poetry.lock b/integrations/wiz/poetry.lock index d1473a993a..e926acd5a5 100644 --- a/integrations/wiz/poetry.lock +++ b/integrations/wiz/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.0" +version = "0.15.1" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.0-py3-none-any.whl", hash = "sha256:ce7752ff988071283bd0eb6cf2e6ac0ca73d22664aa2cc32a1b57ac0814fc29e"}, - {file = "port_ocean-0.15.0.tar.gz", hash = "sha256:0b53d4a562e44947c506e5eef5796ef1e79e0f0b31e9401b8a64aa9222677d13"}, + {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, + {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "688727688123e0d430b9ac59257a5379f66ed0b3c64439907a3a1434b37d2e7e" +content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" diff --git a/integrations/wiz/pyproject.toml b/integrations/wiz/pyproject.toml index 5f08f18e62..89f688eae7 100644 --- a/integrations/wiz/pyproject.toml +++ b/integrations/wiz/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "wiz" -version = "0.1.79" +version = "0.1.80" description = "Wiz Port integration in Ocean" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.0", extras = ["cli"]} +port_ocean = {version = "^0.15.1", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration From 072aefedc414fbdc94a1a761d1890637b1191e17 Mon Sep 17 00:00:00 2001 From: Tom Tankilevitch <59158507+Tankilevitch@users.noreply.github.com> Date: Sun, 15 Dec 2024 13:34:13 +0200 Subject: [PATCH 13/22] [Core] Add handling for different installation types (#1239) --- CHANGELOG.md | 7 +++ port_ocean/core/models.py | 15 +++++- port_ocean/core/utils.py | 8 ++-- port_ocean/tests/core/test_utils.py | 73 +++++++++++++++++++++++++++++ pyproject.toml | 2 +- 5 files changed, 99 insertions(+), 6 deletions(-) create mode 100644 port_ocean/tests/core/test_utils.py diff --git a/CHANGELOG.md b/CHANGELOG.md index d6a0a5fd29..292aad97b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## 0.15.2 (2024-12-15) + +### Improvements + +- Add handling for different installation types compatibility + + ## 0.15.1 (2024-12-15) ### Bug Fixes diff --git a/port_ocean/core/models.py b/port_ocean/core/models.py index 1ba98fb530..c5906f41aa 100644 --- a/port_ocean/core/models.py +++ b/port_ocean/core/models.py @@ -8,12 +8,23 @@ class Runtime(Enum): Saas = "Saas" - SaasOauth2 = "SaasOauth2" OnPrem = "OnPrem" @property def is_saas_runtime(self) -> bool: - return self in [Runtime.Saas, Runtime.SaasOauth2] + return self in [Runtime.Saas] + + def is_installation_type_compatible(self, installation_type: str) -> bool: + """ + Check if the installation type is compatible with the runtime + + if the runtime is Saas, the installation type should start with Saas + else the installation type should be OnPrem + """ + return ( + self.value == Runtime.Saas.value + and installation_type.startswith(self.value) + ) or installation_type == self.value class Entity(BaseModel): diff --git a/port_ocean/core/utils.py b/port_ocean/core/utils.py index 0c6ffc6f10..dbbfea8a3b 100644 --- a/port_ocean/core/utils.py +++ b/port_ocean/core/utils.py @@ -42,10 +42,12 @@ async def validate_integration_runtime( current_integration = await port_client.get_current_integration( should_raise=False, should_log=False ) - current_runtime = current_integration.get("installationType", "OnPrem") - if current_integration and current_runtime != requested_runtime.value: + current_installation_type = current_integration.get("installationType", "OnPrem") + if current_integration and not requested_runtime.is_installation_type_compatible( + current_installation_type + ): raise IntegrationRuntimeException( - f"Invalid Runtime! Requested to run existing {current_runtime} integration in {requested_runtime} runtime." + f"Invalid Runtime! Requested to run existing {current_installation_type} integration in {requested_runtime} runtime." ) diff --git a/port_ocean/tests/core/test_utils.py b/port_ocean/tests/core/test_utils.py new file mode 100644 index 0000000000..c291778c0c --- /dev/null +++ b/port_ocean/tests/core/test_utils.py @@ -0,0 +1,73 @@ +from unittest.mock import AsyncMock, patch + +import pytest + +from port_ocean.core.utils import validate_integration_runtime +from port_ocean.clients.port.client import PortClient +from port_ocean.core.models import Runtime +from port_ocean.tests.helpers.port_client import get_port_client_for_integration +from port_ocean.exceptions.core import IntegrationRuntimeException + + +class TestValidateIntegrationRuntime: + + @pytest.mark.asyncio + @pytest.mark.parametrize( + "requested_runtime, installation_type, should_raise", + [ + (Runtime.Saas, "Saas", False), + (Runtime.Saas, "SaasOauth2", False), + (Runtime.Saas, "OnPrem", True), + (Runtime.OnPrem, "OnPrem", False), + (Runtime.OnPrem, "SaasOauth2", True), + ], + ) + @patch.object(PortClient, "get_current_integration", new_callable=AsyncMock) + async def test_validate_integration_runtime( + self, + mock_get_current_integration: AsyncMock, + requested_runtime: Runtime, + installation_type: str, + should_raise: bool, + ) -> None: + # Arrange + port_client = get_port_client_for_integration( + client_id="mock-client-id", + client_secret="mock-client-secret", + integration_identifier="mock-integration-identifier", + integration_type="mock-integration-type", + integration_version="mock-integration-version", + base_url="mock-base-url", + ) + + # Mock the return value of get_current_integration + mock_get_current_integration.return_value = { + "installationType": installation_type + } + + # Act & Assert + if should_raise: + with pytest.raises(IntegrationRuntimeException): + await validate_integration_runtime(port_client, requested_runtime) + else: + await validate_integration_runtime(port_client, requested_runtime) + + # Verify that get_current_integration was called once + mock_get_current_integration.assert_called_once() + + @pytest.mark.parametrize( + "requested_runtime, installation_type, expected", + [ + (Runtime.Saas, "SaasOauth2", True), + (Runtime.Saas, "OnPrem", False), + (Runtime.OnPrem, "OnPrem", True), + (Runtime.OnPrem, "SaasCloud", False), + ], + ) + def test_runtime_installation_compatibility( + self, requested_runtime: Runtime, installation_type: str, expected: bool + ) -> None: + assert ( + requested_runtime.is_installation_type_compatible(installation_type) + == expected + ) diff --git a/pyproject.toml b/pyproject.toml index 702442f5f9..e94fed2990 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io" From 47aa14e79baa674ad8fb4be59ff3f5c9506e287e Mon Sep 17 00:00:00 2001 From: Port Bot <110599342+portmachineuser@users.noreply.github.com> Date: Sun, 15 Dec 2024 13:53:17 +0200 Subject: [PATCH 14/22] [Integration] Apply Ocean version 0.15.2 to all integrations (#1240) --- integrations/argocd/CHANGELOG.md | 8 ++++++++ integrations/argocd/poetry.lock | 8 ++++---- integrations/argocd/pyproject.toml | 4 ++-- integrations/aws/CHANGELOG.md | 8 ++++++++ integrations/aws/poetry.lock | 8 ++++---- integrations/aws/pyproject.toml | 4 ++-- integrations/azure-devops/CHANGELOG.md | 8 ++++++++ integrations/azure-devops/poetry.lock | 8 ++++---- integrations/azure-devops/pyproject.toml | 4 ++-- integrations/azure/CHANGELOG.md | 7 +++++++ integrations/azure/poetry.lock | 8 ++++---- integrations/azure/pyproject.toml | 4 ++-- integrations/backstage/CHANGELOG.md | 8 ++++++++ integrations/backstage/poetry.lock | 8 ++++---- integrations/backstage/pyproject.toml | 4 ++-- integrations/datadog/CHANGELOG.md | 8 ++++++++ integrations/datadog/poetry.lock | 8 ++++---- integrations/datadog/pyproject.toml | 4 ++-- integrations/dynatrace/CHANGELOG.md | 8 ++++++++ integrations/dynatrace/poetry.lock | 8 ++++---- integrations/dynatrace/pyproject.toml | 4 ++-- integrations/fake-integration/CHANGELOG.md | 8 ++++++++ integrations/fake-integration/poetry.lock | 8 ++++---- integrations/fake-integration/pyproject.toml | 4 ++-- integrations/firehydrant/CHANGELOG.md | 8 ++++++++ integrations/firehydrant/poetry.lock | 8 ++++---- integrations/firehydrant/pyproject.toml | 4 ++-- integrations/gcp/CHANGELOG.md | 8 ++++++++ integrations/gcp/poetry.lock | 8 ++++---- integrations/gcp/pyproject.toml | 4 ++-- integrations/gitlab/CHANGELOG.md | 8 ++++++++ integrations/gitlab/poetry.lock | 8 ++++---- integrations/gitlab/pyproject.toml | 4 ++-- integrations/jenkins/CHANGELOG.md | 8 ++++++++ integrations/jenkins/poetry.lock | 8 ++++---- integrations/jenkins/pyproject.toml | 4 ++-- integrations/jira/CHANGELOG.md | 8 ++++++++ integrations/jira/poetry.lock | 8 ++++---- integrations/jira/pyproject.toml | 4 ++-- integrations/kafka/CHANGELOG.md | 8 ++++++++ integrations/kafka/poetry.lock | 8 ++++---- integrations/kafka/pyproject.toml | 4 ++-- integrations/kubecost/CHANGELOG.md | 8 ++++++++ integrations/kubecost/poetry.lock | 8 ++++---- integrations/kubecost/pyproject.toml | 4 ++-- integrations/launchdarkly/CHANGELOG.md | 8 ++++++++ integrations/launchdarkly/poetry.lock | 8 ++++---- integrations/launchdarkly/pyproject.toml | 4 ++-- integrations/linear/CHANGELOG.md | 8 ++++++++ integrations/linear/poetry.lock | 8 ++++---- integrations/linear/pyproject.toml | 4 ++-- integrations/newrelic/CHANGELOG.md | 8 ++++++++ integrations/newrelic/poetry.lock | 8 ++++---- integrations/newrelic/pyproject.toml | 4 ++-- integrations/octopus/CHANGELOG.md | 7 +++++++ integrations/octopus/poetry.lock | 8 ++++---- integrations/octopus/pyproject.toml | 4 ++-- integrations/opencost/CHANGELOG.md | 8 ++++++++ integrations/opencost/poetry.lock | 8 ++++---- integrations/opencost/pyproject.toml | 4 ++-- integrations/opsgenie/CHANGELOG.md | 8 ++++++++ integrations/opsgenie/poetry.lock | 8 ++++---- integrations/opsgenie/pyproject.toml | 4 ++-- integrations/pagerduty/CHANGELOG.md | 8 ++++++++ integrations/pagerduty/poetry.lock | 8 ++++---- integrations/pagerduty/pyproject.toml | 4 ++-- integrations/sentry/CHANGELOG.md | 8 ++++++++ integrations/sentry/poetry.lock | 8 ++++---- integrations/sentry/pyproject.toml | 4 ++-- integrations/servicenow/CHANGELOG.md | 8 ++++++++ integrations/servicenow/poetry.lock | 8 ++++---- integrations/servicenow/pyproject.toml | 4 ++-- integrations/snyk/CHANGELOG.md | 8 ++++++++ integrations/snyk/poetry.lock | 8 ++++---- integrations/snyk/pyproject.toml | 4 ++-- integrations/sonarqube/CHANGELOG.md | 8 ++++++++ integrations/sonarqube/poetry.lock | 8 ++++---- integrations/sonarqube/pyproject.toml | 4 ++-- integrations/statuspage/CHANGELOG.md | 8 ++++++++ integrations/statuspage/poetry.lock | 8 ++++---- integrations/statuspage/pyproject.toml | 4 ++-- integrations/terraform-cloud/CHANGELOG.md | 8 ++++++++ integrations/terraform-cloud/poetry.lock | 8 ++++---- integrations/terraform-cloud/pyproject.toml | 4 ++-- integrations/wiz/CHANGELOG.md | 8 ++++++++ integrations/wiz/poetry.lock | 8 ++++---- integrations/wiz/pyproject.toml | 4 ++-- 87 files changed, 404 insertions(+), 174 deletions(-) diff --git a/integrations/argocd/CHANGELOG.md b/integrations/argocd/CHANGELOG.md index 92fd0e8619..62990a11f5 100644 --- a/integrations/argocd/CHANGELOG.md +++ b/integrations/argocd/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.111 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.110 (2024-12-15) diff --git a/integrations/argocd/poetry.lock b/integrations/argocd/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/argocd/poetry.lock +++ b/integrations/argocd/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/argocd/pyproject.toml b/integrations/argocd/pyproject.toml index 8c72bd686c..77adde8632 100644 --- a/integrations/argocd/pyproject.toml +++ b/integrations/argocd/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "argocd" -version = "0.1.110" +version = "0.1.111" description = "Argo CD integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/aws/CHANGELOG.md b/integrations/aws/CHANGELOG.md index e0a1dfc1df..c8c37150cd 100644 --- a/integrations/aws/CHANGELOG.md +++ b/integrations/aws/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.70 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.2.69 (2024-12-15) diff --git a/integrations/aws/poetry.lock b/integrations/aws/poetry.lock index 0645324f52..97bdee3385 100644 --- a/integrations/aws/poetry.lock +++ b/integrations/aws/poetry.lock @@ -2284,13 +2284,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -4046,4 +4046,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "5901a170ab2ae1187ce6721a95042880875d50e14466ec11bd8dc804dd3b15ec" +content-hash = "d3983977ccacdaa4762ebe9b9da2eb087fcdd810add559a091a7239a63da10db" diff --git a/integrations/aws/pyproject.toml b/integrations/aws/pyproject.toml index 44909377e7..22db87bb64 100644 --- a/integrations/aws/pyproject.toml +++ b/integrations/aws/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "aws" -version = "0.2.69" +version = "0.2.70" description = "This integration will map all your resources in all the available accounts to your Port entities" authors = ["Shalev Avhar ", "Erik Zaadi "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} python-dotenv = "^1.0.1" aioboto3 = "^12.4.0" boto3-stubs = {version = "1.34.76", extras = ["acm", "apigateway", "appconfig", "athena", "cloudcontrol", "cloudformation", "cloudwatch", "dynamodb", "ec2", "ec2-instance-connect", "ecr", "ecs", "elasticache", "elb", "elbv2", "events", "iam", "lambda", "logs", "organizations", "rds", "route53", "s3", "sagemaker", "secretsmanager", "sns", "sqs", "ssm", "sts"]} diff --git a/integrations/azure-devops/CHANGELOG.md b/integrations/azure-devops/CHANGELOG.md index 031aa4753b..2dc9c8fca9 100644 --- a/integrations/azure-devops/CHANGELOG.md +++ b/integrations/azure-devops/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.95 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.94 (2024-12-15) diff --git a/integrations/azure-devops/poetry.lock b/integrations/azure-devops/poetry.lock index e4da06b8ce..4667cd3566 100644 --- a/integrations/azure-devops/poetry.lock +++ b/integrations/azure-devops/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "b19e59863149c462d08454443ec5040be30a7226422f7859a1efa0b9acd46023" +content-hash = "67a52aa0c6149c8fc46acdfc1b867094ad9c0338ed14f0f17a17a5180b5aa027" diff --git a/integrations/azure-devops/pyproject.toml b/integrations/azure-devops/pyproject.toml index 01444e43a8..63bbe4dbe2 100644 --- a/integrations/azure-devops/pyproject.toml +++ b/integrations/azure-devops/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "azure-devops" -version = "0.1.94" +version = "0.1.95" description = "An Azure Devops Ocean integration" authors = ["Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/azure/CHANGELOG.md b/integrations/azure/CHANGELOG.md index b0481d1bc8..3e12d94be1 100644 --- a/integrations/azure/CHANGELOG.md +++ b/integrations/azure/CHANGELOG.md @@ -1,3 +1,10 @@ +0.1.114 (2024-12-15) + +### Improvements + +- Bumped ocean version to ^0.15.2 + + 0.1.113 (2024-12-15) ### Improvements diff --git a/integrations/azure/poetry.lock b/integrations/azure/poetry.lock index 30508bd503..d37636cda0 100644 --- a/integrations/azure/poetry.lock +++ b/integrations/azure/poetry.lock @@ -1589,13 +1589,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -2495,4 +2495,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "f5586e0630123e556f2253deed351f77b6d9fdd9500e39840c50cc6c98cb24d0" +content-hash = "83c46a0c2d727d2145ab03bd7cfcd8a636f67fdf5e90c0ce2db669ead87102b3" diff --git a/integrations/azure/pyproject.toml b/integrations/azure/pyproject.toml index e56a1024d5..8e8ec62b60 100644 --- a/integrations/azure/pyproject.toml +++ b/integrations/azure/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "azure" -version = "0.1.113" +version = "0.1.114" description = "Azure integration" authors = ["Tom Tankilevitch "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} # due to patching the azure-mgmt-resource package, we need to use a specific version azure-mgmt-resource = "23.2.0" azure-identity = "^1.13.0" diff --git a/integrations/backstage/CHANGELOG.md b/integrations/backstage/CHANGELOG.md index 8616673cc8..7eacd84170 100644 --- a/integrations/backstage/CHANGELOG.md +++ b/integrations/backstage/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.18-beta (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.17-beta (2024-12-15) diff --git a/integrations/backstage/poetry.lock b/integrations/backstage/poetry.lock index 427d6bc3e8..af26a81923 100644 --- a/integrations/backstage/poetry.lock +++ b/integrations/backstage/poetry.lock @@ -913,13 +913,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1521,4 +1521,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "04c1ef22712fa2cafd625f4e167d9b92445ddb8988ca7c285e0c57baaaa7ae63" +content-hash = "81bf3b73f1e836342dfe00e68f9f9fb7aa2e5c23d5baec2967b6e3d9a7f4228a" diff --git a/integrations/backstage/pyproject.toml b/integrations/backstage/pyproject.toml index 4b56568f7f..630035b7cb 100644 --- a/integrations/backstage/pyproject.toml +++ b/integrations/backstage/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "backstage" -version = "0.1.17-beta" +version = "0.1.18-beta" description = "Importing resources from Backstage IDP" authors = ["Roi Talpaz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/datadog/CHANGELOG.md b/integrations/datadog/CHANGELOG.md index beef3cc881..ef8e9be99c 100644 --- a/integrations/datadog/CHANGELOG.md +++ b/integrations/datadog/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.66 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.65 (2024-12-15) diff --git a/integrations/datadog/poetry.lock b/integrations/datadog/poetry.lock index 35009fa1e6..7bf2e53e39 100644 --- a/integrations/datadog/poetry.lock +++ b/integrations/datadog/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "47d3061f50a2f82b6271b934be13947687f6742116f993fd17ec27299e7160b8" +content-hash = "1b01157efc3341d4a43629ca4c24ff43b605c65e723bcd01d35e6e94c96b4d62" diff --git a/integrations/datadog/pyproject.toml b/integrations/datadog/pyproject.toml index 20ef422b3f..dd668e7d4f 100644 --- a/integrations/datadog/pyproject.toml +++ b/integrations/datadog/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "datadog" -version = "0.1.65" +version = "0.1.66" description = "Datadog Ocean Integration" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} loguru = "^0.7.2" [tool.poetry.group.dev.dependencies] diff --git a/integrations/dynatrace/CHANGELOG.md b/integrations/dynatrace/CHANGELOG.md index ad5c2b8a4b..c81cd9dcc4 100644 --- a/integrations/dynatrace/CHANGELOG.md +++ b/integrations/dynatrace/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.76 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.75 (2024-12-15) diff --git a/integrations/dynatrace/poetry.lock b/integrations/dynatrace/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/dynatrace/poetry.lock +++ b/integrations/dynatrace/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/dynatrace/pyproject.toml b/integrations/dynatrace/pyproject.toml index f6638ce3e0..0e8d30d795 100644 --- a/integrations/dynatrace/pyproject.toml +++ b/integrations/dynatrace/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "dynatrace" -version = "0.1.75" +version = "0.1.76" description = "An integration used to import Dynatrace resources into Port" authors = ["Ayodeji Adeoti <>"] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/fake-integration/CHANGELOG.md b/integrations/fake-integration/CHANGELOG.md index 841e54847f..f99ac39112 100644 --- a/integrations/fake-integration/CHANGELOG.md +++ b/integrations/fake-integration/CHANGELOG.md @@ -5,6 +5,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.26-dev (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.25-dev (2024-12-15) diff --git a/integrations/fake-integration/poetry.lock b/integrations/fake-integration/poetry.lock index 4f185b5043..e212e68d33 100644 --- a/integrations/fake-integration/poetry.lock +++ b/integrations/fake-integration/poetry.lock @@ -1168,13 +1168,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1903,4 +1903,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "ef42b187c13fe442bce5f53be2be6ffcd0aa946156b73b9f296862c5f110e418" +content-hash = "62f475ed0baf6b7eb628e2b02de9221086dae498d70e052381d3192d15d77ee8" diff --git a/integrations/fake-integration/pyproject.toml b/integrations/fake-integration/pyproject.toml index c5b16fb88c..1d9aa02652 100644 --- a/integrations/fake-integration/pyproject.toml +++ b/integrations/fake-integration/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "fake-integration" -version = "0.1.25-dev" +version = "0.1.26-dev" description = "A useless fake integration that helps us test the Ocean Core" authors = ["Erik Zaadi "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} faker = "^28.0.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/firehydrant/CHANGELOG.md b/integrations/firehydrant/CHANGELOG.md index e98c07c786..4e132de7a8 100644 --- a/integrations/firehydrant/CHANGELOG.md +++ b/integrations/firehydrant/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.98 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.97 (2024-12-15) diff --git a/integrations/firehydrant/poetry.lock b/integrations/firehydrant/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/firehydrant/poetry.lock +++ b/integrations/firehydrant/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/firehydrant/pyproject.toml b/integrations/firehydrant/pyproject.toml index 4a6b86d09a..0dcd0daacc 100644 --- a/integrations/firehydrant/pyproject.toml +++ b/integrations/firehydrant/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "firehydrant" -version = "0.1.97" +version = "0.1.98" description = "FireHydrant Integration Powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/gcp/CHANGELOG.md b/integrations/gcp/CHANGELOG.md index e894dbb4fd..c1544bf308 100644 --- a/integrations/gcp/CHANGELOG.md +++ b/integrations/gcp/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.79 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.78 (2024-12-15) diff --git a/integrations/gcp/poetry.lock b/integrations/gcp/poetry.lock index d4d9cc28fd..2329221ddc 100644 --- a/integrations/gcp/poetry.lock +++ b/integrations/gcp/poetry.lock @@ -1460,13 +1460,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -2267,4 +2267,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "8e9514b7d391b31217dbd02fd642e702505316fcf37aa33352e5805ca2c174d4" +content-hash = "bf62bdf735dd419bdf5853663f85fb9d8bc91639e4d56dc59285c79616120654" diff --git a/integrations/gcp/pyproject.toml b/integrations/gcp/pyproject.toml index bab2874b05..6865ba7a37 100644 --- a/integrations/gcp/pyproject.toml +++ b/integrations/gcp/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "gcp" -version = "0.1.78" +version = "0.1.79" description = "A GCP ocean integration" authors = ["Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} google-cloud-asset = "^3.25.1" google-cloud-pubsub = "^2.21.1" google-cloud-resource-manager = "^1.12.3" diff --git a/integrations/gitlab/CHANGELOG.md b/integrations/gitlab/CHANGELOG.md index 9891835ce8..d9053f3f46 100644 --- a/integrations/gitlab/CHANGELOG.md +++ b/integrations/gitlab/CHANGELOG.md @@ -7,6 +7,14 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +0.2.4 (2024-12-15) +================== + +### Improvements + +- Bumped ocean version to ^0.15.2 + + 0.2.3 (2024-12-15) ================== diff --git a/integrations/gitlab/poetry.lock b/integrations/gitlab/poetry.lock index 7857e3a8c4..b610f9c65a 100644 --- a/integrations/gitlab/poetry.lock +++ b/integrations/gitlab/poetry.lock @@ -1128,13 +1128,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1905,4 +1905,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "e32c406f0e275284f56d7b779e9757d77ec5afb03f51c8e0212643ec9abb8c09" +content-hash = "ff07aab5a7e03e496d28123fc4e8c85dd6b0a94f0da526f0936ede4d5929efda" diff --git a/integrations/gitlab/pyproject.toml b/integrations/gitlab/pyproject.toml index cb3d6c8b89..f7ea173be3 100644 --- a/integrations/gitlab/pyproject.toml +++ b/integrations/gitlab/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitlab" -version = "0.2.3" +version = "0.2.4" description = "Gitlab integration for Port using Port-Ocean Framework" authors = ["Yair Siman-Tov "] @@ -11,7 +11,7 @@ aiolimiter = "^1.1.0" python-gitlab = "^3.14.0" pathlib = "^1.0.1" jsonschema = "^4.17.3" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/jenkins/CHANGELOG.md b/integrations/jenkins/CHANGELOG.md index 543eb57d83..17f1c26c2c 100644 --- a/integrations/jenkins/CHANGELOG.md +++ b/integrations/jenkins/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.81 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.80 (2024-12-15) diff --git a/integrations/jenkins/poetry.lock b/integrations/jenkins/poetry.lock index 27aa2da307..f0ac1cdfe9 100644 --- a/integrations/jenkins/poetry.lock +++ b/integrations/jenkins/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "e4983dff071cb04484e8d714970897e0c69271e291eb210551645508f1682797" +content-hash = "e581fb7400ca2856d90873f6684dda96aaa9cdcb9fa3916f5c64c463028c9e51" diff --git a/integrations/jenkins/pyproject.toml b/integrations/jenkins/pyproject.toml index 36ce3acb83..949c6e4a5e 100644 --- a/integrations/jenkins/pyproject.toml +++ b/integrations/jenkins/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "jenkins" -version = "0.1.80" +version = "0.1.81" description = "Jenkins Integration to Port Ocean" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} pip = "^23.3.1" python-dotenv = "^1.0.0" loguru = "^0.7.2" diff --git a/integrations/jira/CHANGELOG.md b/integrations/jira/CHANGELOG.md index 1b8b9ad994..9c0b13ff02 100644 --- a/integrations/jira/CHANGELOG.md +++ b/integrations/jira/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.5 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.2.4 (2024-12-15) diff --git a/integrations/jira/poetry.lock b/integrations/jira/poetry.lock index e4eb9feac0..6b4b37fd75 100644 --- a/integrations/jira/poetry.lock +++ b/integrations/jira/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "b615228fb027875bae6a1c0330a51cbd414649b32a6688b4d1bb1a3a7787d9d0" +content-hash = "fe6be59f31d6dcd79f1cbc40a561476079061b1d4ffb1615987ae8ad356b7dc0" diff --git a/integrations/jira/pyproject.toml b/integrations/jira/pyproject.toml index ce1f0078ee..aae8ca84f1 100644 --- a/integrations/jira/pyproject.toml +++ b/integrations/jira/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "jira" -version = "0.2.4" +version = "0.2.5" description = "Integration to bring information from Jira into Port" authors = ["Mor Paz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/kafka/CHANGELOG.md b/integrations/kafka/CHANGELOG.md index 0a8f685b67..4254dc2420 100644 --- a/integrations/kafka/CHANGELOG.md +++ b/integrations/kafka/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.97 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.96 (2024-12-15) diff --git a/integrations/kafka/poetry.lock b/integrations/kafka/poetry.lock index b9f62d2a50..bcf377c85d 100644 --- a/integrations/kafka/poetry.lock +++ b/integrations/kafka/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "2cb01a08b7ec7291e0f83f33ef78bfdd23cd62e2dfae726a977f5b7751cf48a4" +content-hash = "3cbfe89afdd2d79f959745fb45d38838aebe38a63788aa93836bb7a99e5663e3" diff --git a/integrations/kafka/pyproject.toml b/integrations/kafka/pyproject.toml index 3dce701893..9911325e3b 100644 --- a/integrations/kafka/pyproject.toml +++ b/integrations/kafka/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "kafka" -version = "0.1.96" +version = "0.1.97" 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 "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} confluent-kafka = "^2.2.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/kubecost/CHANGELOG.md b/integrations/kubecost/CHANGELOG.md index bcf2dc9df6..edf5841ea7 100644 --- a/integrations/kubecost/CHANGELOG.md +++ b/integrations/kubecost/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.102 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.101 (2024-12-15) diff --git a/integrations/kubecost/poetry.lock b/integrations/kubecost/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/kubecost/poetry.lock +++ b/integrations/kubecost/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/kubecost/pyproject.toml b/integrations/kubecost/pyproject.toml index 3801826f7f..d3eb5a7d66 100644 --- a/integrations/kubecost/pyproject.toml +++ b/integrations/kubecost/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "kubecost" -version = "0.1.101" +version = "0.1.102" description = "Kubecost integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/launchdarkly/CHANGELOG.md b/integrations/launchdarkly/CHANGELOG.md index 9839ac8b92..557adaacf3 100644 --- a/integrations/launchdarkly/CHANGELOG.md +++ b/integrations/launchdarkly/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.74 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.73 (2024-12-15) diff --git a/integrations/launchdarkly/poetry.lock b/integrations/launchdarkly/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/launchdarkly/poetry.lock +++ b/integrations/launchdarkly/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/launchdarkly/pyproject.toml b/integrations/launchdarkly/pyproject.toml index 5256ca3c40..b93ba7c634 100644 --- a/integrations/launchdarkly/pyproject.toml +++ b/integrations/launchdarkly/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "launchdarkly" -version = "0.1.73" +version = "0.1.74" description = "Launchdarkly integration for Port" authors = ["Michael Armah "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/linear/CHANGELOG.md b/integrations/linear/CHANGELOG.md index 4c01942cf2..5451ad388a 100644 --- a/integrations/linear/CHANGELOG.md +++ b/integrations/linear/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.60 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.59 (2024-12-15) diff --git a/integrations/linear/poetry.lock b/integrations/linear/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/linear/poetry.lock +++ b/integrations/linear/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/linear/pyproject.toml b/integrations/linear/pyproject.toml index f9c116fd10..1b7c128721 100644 --- a/integrations/linear/pyproject.toml +++ b/integrations/linear/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "linear" -version = "0.1.59" +version = "0.1.60" description = "Integration to bring information from Linear into Port" authors = ["Mor Paz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/newrelic/CHANGELOG.md b/integrations/newrelic/CHANGELOG.md index e097a427f6..d19c94a9ac 100644 --- a/integrations/newrelic/CHANGELOG.md +++ b/integrations/newrelic/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.107 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.106 (2024-12-15) diff --git a/integrations/newrelic/poetry.lock b/integrations/newrelic/poetry.lock index e4eb9feac0..6b4b37fd75 100644 --- a/integrations/newrelic/poetry.lock +++ b/integrations/newrelic/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "b615228fb027875bae6a1c0330a51cbd414649b32a6688b4d1bb1a3a7787d9d0" +content-hash = "fe6be59f31d6dcd79f1cbc40a561476079061b1d4ffb1615987ae8ad356b7dc0" diff --git a/integrations/newrelic/pyproject.toml b/integrations/newrelic/pyproject.toml index 573d6ee98b..ee832fb003 100644 --- a/integrations/newrelic/pyproject.toml +++ b/integrations/newrelic/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "newrelic" -version = "0.1.106" +version = "0.1.107" description = "New Relic Integration" authors = ["Tom Tankilevitch "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/octopus/CHANGELOG.md b/integrations/octopus/CHANGELOG.md index 385852b87a..64c1544f14 100644 --- a/integrations/octopus/CHANGELOG.md +++ b/integrations/octopus/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +# Port_Ocean 0.1.34 (2024-12-15) + +### Improvements + +- Bumped ocean version to ^0.15.2 + + # Port_Ocean 0.1.33 (2024-12-15) ### Improvements diff --git a/integrations/octopus/poetry.lock b/integrations/octopus/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/octopus/poetry.lock +++ b/integrations/octopus/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/octopus/pyproject.toml b/integrations/octopus/pyproject.toml index 3137483180..42ed52eae7 100644 --- a/integrations/octopus/pyproject.toml +++ b/integrations/octopus/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "octopus" -version = "0.1.33" +version = "0.1.34" description = "This integration ingest data from octopus deploy" authors = ["Adebayo Iyanuoluwa "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/opencost/CHANGELOG.md b/integrations/opencost/CHANGELOG.md index 4d96077b88..dc25a7367f 100644 --- a/integrations/opencost/CHANGELOG.md +++ b/integrations/opencost/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.100 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.99 (2024-12-15) diff --git a/integrations/opencost/poetry.lock b/integrations/opencost/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/opencost/poetry.lock +++ b/integrations/opencost/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/opencost/pyproject.toml b/integrations/opencost/pyproject.toml index 6764f948a2..07c27c6481 100644 --- a/integrations/opencost/pyproject.toml +++ b/integrations/opencost/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "opencost" -version = "0.1.99" +version = "0.1.100" description = "Ocean integration for OpenCost" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/opsgenie/CHANGELOG.md b/integrations/opsgenie/CHANGELOG.md index d93a6eede8..3bc8705740 100644 --- a/integrations/opsgenie/CHANGELOG.md +++ b/integrations/opsgenie/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.25 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.2.24 (2024-12-15) diff --git a/integrations/opsgenie/poetry.lock b/integrations/opsgenie/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/opsgenie/poetry.lock +++ b/integrations/opsgenie/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/opsgenie/pyproject.toml b/integrations/opsgenie/pyproject.toml index 33f5700cf4..1872870d63 100644 --- a/integrations/opsgenie/pyproject.toml +++ b/integrations/opsgenie/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "opsgenie" -version = "0.2.24" +version = "0.2.25" description = "Ocean integration for OpsGenie" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/pagerduty/CHANGELOG.md b/integrations/pagerduty/CHANGELOG.md index 5c7e2830f4..70b2b5d2a5 100644 --- a/integrations/pagerduty/CHANGELOG.md +++ b/integrations/pagerduty/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.128 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.127 (2024-12-15) diff --git a/integrations/pagerduty/poetry.lock b/integrations/pagerduty/poetry.lock index e4eb9feac0..6b4b37fd75 100644 --- a/integrations/pagerduty/poetry.lock +++ b/integrations/pagerduty/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "b615228fb027875bae6a1c0330a51cbd414649b32a6688b4d1bb1a3a7787d9d0" +content-hash = "fe6be59f31d6dcd79f1cbc40a561476079061b1d4ffb1615987ae8ad356b7dc0" diff --git a/integrations/pagerduty/pyproject.toml b/integrations/pagerduty/pyproject.toml index 855168702f..539e53f8d6 100644 --- a/integrations/pagerduty/pyproject.toml +++ b/integrations/pagerduty/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "pagerduty" -version = "0.1.127" +version = "0.1.128" description = "Pagerduty Integration" authors = ["Port Team "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/sentry/CHANGELOG.md b/integrations/sentry/CHANGELOG.md index e3455ce850..bce58fed58 100644 --- a/integrations/sentry/CHANGELOG.md +++ b/integrations/sentry/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.100 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.99 (2024-12-15) diff --git a/integrations/sentry/poetry.lock b/integrations/sentry/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/sentry/poetry.lock +++ b/integrations/sentry/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/sentry/pyproject.toml b/integrations/sentry/pyproject.toml index 87c280a9c1..ef84bb0f35 100644 --- a/integrations/sentry/pyproject.toml +++ b/integrations/sentry/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sentry" -version = "0.1.99" +version = "0.1.100" description = "Sentry Integration" authors = ["Dvir Segev ","Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/servicenow/CHANGELOG.md b/integrations/servicenow/CHANGELOG.md index c2d0e87915..a9ae58a1ce 100644 --- a/integrations/servicenow/CHANGELOG.md +++ b/integrations/servicenow/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.90 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.89 (2024-12-15) diff --git a/integrations/servicenow/poetry.lock b/integrations/servicenow/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/servicenow/poetry.lock +++ b/integrations/servicenow/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/servicenow/pyproject.toml b/integrations/servicenow/pyproject.toml index 8d5e049c56..a54fe5b9bb 100644 --- a/integrations/servicenow/pyproject.toml +++ b/integrations/servicenow/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "servicenow" -version = "0.1.89" +version = "0.1.90" description = "Service Now Ocean Integration" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/snyk/CHANGELOG.md b/integrations/snyk/CHANGELOG.md index 91c14392d5..1e560c3677 100644 --- a/integrations/snyk/CHANGELOG.md +++ b/integrations/snyk/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.112 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.111 (2024-12-15) diff --git a/integrations/snyk/poetry.lock b/integrations/snyk/poetry.lock index 15f6c51914..b6cc3c07e3 100644 --- a/integrations/snyk/poetry.lock +++ b/integrations/snyk/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "dbe49d03ffc3a03641df4122e2e9c7f4658759cd30ab368bebe2b7afb4dbd2ce" +content-hash = "a85a0ceb74df8055913290f33fed6904a605a58669b77a5527652282819ef816" diff --git a/integrations/snyk/pyproject.toml b/integrations/snyk/pyproject.toml index dcc505719b..a43802c866 100644 --- a/integrations/snyk/pyproject.toml +++ b/integrations/snyk/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "snyk" -version = "0.1.111" +version = "0.1.112" description = "Snyk integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" aiolimiter = "^1.1.0" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/sonarqube/CHANGELOG.md b/integrations/sonarqube/CHANGELOG.md index 17c40e61ff..7379c0d32f 100644 --- a/integrations/sonarqube/CHANGELOG.md +++ b/integrations/sonarqube/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.120 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.119 (2024-12-15) diff --git a/integrations/sonarqube/poetry.lock b/integrations/sonarqube/poetry.lock index c2af88a5a1..7741ef03f2 100644 --- a/integrations/sonarqube/poetry.lock +++ b/integrations/sonarqube/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "94e0daa80d31b7022626801aace273969d81ab08748ea420cb51d8811436edf4" +content-hash = "41d37851249c21d80ba67216a69ccdffb6ede8c7cfff967adad7d13f44f3776b" diff --git a/integrations/sonarqube/pyproject.toml b/integrations/sonarqube/pyproject.toml index 0ce44244f9..d57220b137 100644 --- a/integrations/sonarqube/pyproject.toml +++ b/integrations/sonarqube/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sonarqube" -version = "0.1.119" +version = "0.1.120" description = "SonarQube projects and code quality analysis integration" authors = ["Port Team "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} rich = "^13.5.2" cookiecutter = "^2.3.0" diff --git a/integrations/statuspage/CHANGELOG.md b/integrations/statuspage/CHANGELOG.md index d5c0b72d56..411bfb4716 100644 --- a/integrations/statuspage/CHANGELOG.md +++ b/integrations/statuspage/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.49 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.48 (2024-12-15) diff --git a/integrations/statuspage/poetry.lock b/integrations/statuspage/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/statuspage/poetry.lock +++ b/integrations/statuspage/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/statuspage/pyproject.toml b/integrations/statuspage/pyproject.toml index 0a6ebc0462..5591f65aa5 100644 --- a/integrations/statuspage/pyproject.toml +++ b/integrations/statuspage/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "statuspage" -version = "0.1.48" +version = "0.1.49" description = "Connect Statuspage to Ocean and automatically ingest incidents, updates, and impacted components for comprehensive monitoring" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/terraform-cloud/CHANGELOG.md b/integrations/terraform-cloud/CHANGELOG.md index 06ad7dfb52..319fac347a 100644 --- a/integrations/terraform-cloud/CHANGELOG.md +++ b/integrations/terraform-cloud/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.89 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.88 (2024-12-15) diff --git a/integrations/terraform-cloud/poetry.lock b/integrations/terraform-cloud/poetry.lock index 15f6c51914..b6cc3c07e3 100644 --- a/integrations/terraform-cloud/poetry.lock +++ b/integrations/terraform-cloud/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "dbe49d03ffc3a03641df4122e2e9c7f4658759cd30ab368bebe2b7afb4dbd2ce" +content-hash = "a85a0ceb74df8055913290f33fed6904a605a58669b77a5527652282819ef816" diff --git a/integrations/terraform-cloud/pyproject.toml b/integrations/terraform-cloud/pyproject.toml index a0578d5cad..2be34ec29c 100644 --- a/integrations/terraform-cloud/pyproject.toml +++ b/integrations/terraform-cloud/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "terraform-cloud" -version = "0.1.88" +version = "0.1.89" description = "Terraform Cloud Integration for Port" authors = ["Michael Armah "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} aiolimiter = "^1.1.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/wiz/CHANGELOG.md b/integrations/wiz/CHANGELOG.md index d977118330..91147651a6 100644 --- a/integrations/wiz/CHANGELOG.md +++ b/integrations/wiz/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.81 (2024-12-15) + + +### Improvements + +- Bumped ocean version to ^0.15.2 + + ## 0.1.80 (2024-12-15) diff --git a/integrations/wiz/poetry.lock b/integrations/wiz/poetry.lock index e926acd5a5..bb38bcf1e0 100644 --- a/integrations/wiz/poetry.lock +++ b/integrations/wiz/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.1" +version = "0.15.2" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.1-py3-none-any.whl", hash = "sha256:f785930524213f0bd00c7edc3d2a6e6a93d3aff3067835c05290933b955b352e"}, - {file = "port_ocean-0.15.1.tar.gz", hash = "sha256:7e33d8c218216875bdfc877d2c761f0cb65a31686decaf929a1fd989033c6500"}, + {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, + {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "10a0b86e95af3f7ab489fa733d040c4343ba2f8317d9d1f3fcdfaa8774df947f" +content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" diff --git a/integrations/wiz/pyproject.toml b/integrations/wiz/pyproject.toml index 89f688eae7..73e49e71ac 100644 --- a/integrations/wiz/pyproject.toml +++ b/integrations/wiz/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "wiz" -version = "0.1.80" +version = "0.1.81" description = "Wiz Port integration in Ocean" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.1", extras = ["cli"]} +port_ocean = {version = "^0.15.2", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration From 28144ec0e0bdc943c39f431dbaed44cb90c1e896 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 10:29:28 +0000 Subject: [PATCH 15/22] [Integration][AWS | Azure] - Update dependency aiohttp to v3.11.10 (#1221) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [aiohttp](https://redirect.github.com/aio-libs/aiohttp) | `3.11.8` -> `3.11.10` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/aiohttp/3.11.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/aiohttp/3.11.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/aiohttp/3.11.8/3.11.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/aiohttp/3.11.8/3.11.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
aio-libs/aiohttp (aiohttp) ### [`v3.11.10`](https://redirect.github.com/aio-libs/aiohttp/blob/HEAD/CHANGES.rst#31110-2024-12-05) [Compare Source](https://redirect.github.com/aio-libs/aiohttp/compare/v3.11.9...v3.11.10) \==================== ## Bug fixes - Fixed race condition in :class:`aiohttp.web.FileResponse` that could have resulted in an incorrect response if the file was replaced on the file system during `prepare` -- by :user:`bdraco`. *Related issues and pull requests on GitHub:* :issue:`10101`, :issue:`10113`. - Replaced deprecated call to :func:`mimetypes.guess_type` with :func:`mimetypes.guess_file_type` when using Python 3.13+ -- by :user:`bdraco`. *Related issues and pull requests on GitHub:* :issue:`10102`. - Disabled zero copy writes in the `StreamWriter` -- by :user:`bdraco`. *Related issues and pull requests on GitHub:* :issue:`10125`. *** ### [`v3.11.9`](https://redirect.github.com/aio-libs/aiohttp/blob/HEAD/CHANGES.rst#3119-2024-12-01) [Compare Source](https://redirect.github.com/aio-libs/aiohttp/compare/v3.11.8...v3.11.9) \=================== ## Bug fixes - Fixed invalid method logging unexpected being logged at exception level on subsequent connections -- by :user:`bdraco`. *Related issues and pull requests on GitHub:* :issue:`10055`, :issue:`10076`. ## Miscellaneous internal changes - Improved performance of parsing headers when using the C parser -- by :user:`bdraco`. *Related issues and pull requests on GitHub:* :issue:`10073`. ***
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/port-labs/ocean). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: mkarmah Co-authored-by: PagesCoffy --- integrations/aws/CHANGELOG.md | 8 ++ integrations/aws/poetry.lock | 176 ++++++++++++++---------------- integrations/aws/pyproject.toml | 2 +- integrations/azure/CHANGELOG.md | 17 +++ integrations/azure/poetry.lock | 154 +++++++++++++------------- integrations/azure/pyproject.toml | 2 +- 6 files changed, 185 insertions(+), 174 deletions(-) diff --git a/integrations/aws/CHANGELOG.md b/integrations/aws/CHANGELOG.md index c8c37150cd..76fb97e13a 100644 --- a/integrations/aws/CHANGELOG.md +++ b/integrations/aws/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.71 (2024-12-16) + + +### Improvements + +- Updated the aiohttp dependency to version 3.11.10, resolving known vulnerability issues with medium severity + + ## 0.2.70 (2024-12-15) diff --git a/integrations/aws/poetry.lock b/integrations/aws/poetry.lock index 97bdee3385..869368926f 100644 --- a/integrations/aws/poetry.lock +++ b/integrations/aws/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.5 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.4 and should not be changed by hand. [[package]] name = "aioboto3" @@ -69,102 +69,87 @@ files = [ [[package]] name = "aiohttp" -version = "3.10.10" +version = "3.11.10" description = "Async http client/server framework (asyncio)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "aiohttp-3.10.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:be7443669ae9c016b71f402e43208e13ddf00912f47f623ee5994e12fc7d4b3f"}, - {file = "aiohttp-3.10.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b06b7843929e41a94ea09eb1ce3927865387e3e23ebe108e0d0d09b08d25be9"}, - {file = "aiohttp-3.10.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:333cf6cf8e65f6a1e06e9eb3e643a0c515bb850d470902274239fea02033e9a8"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:274cfa632350225ce3fdeb318c23b4a10ec25c0e2c880eff951a3842cf358ac1"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9e5e4a85bdb56d224f412d9c98ae4cbd032cc4f3161818f692cd81766eee65a"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b606353da03edcc71130b52388d25f9a30a126e04caef1fd637e31683033abd"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab5a5a0c7a7991d90446a198689c0535be89bbd6b410a1f9a66688f0880ec026"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:578a4b875af3e0daaf1ac6fa983d93e0bbfec3ead753b6d6f33d467100cdc67b"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8105fd8a890df77b76dd3054cddf01a879fc13e8af576805d667e0fa0224c35d"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3bcd391d083f636c06a68715e69467963d1f9600f85ef556ea82e9ef25f043f7"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fbc6264158392bad9df19537e872d476f7c57adf718944cc1e4495cbabf38e2a"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e48d5021a84d341bcaf95c8460b152cfbad770d28e5fe14a768988c461b821bc"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2609e9ab08474702cc67b7702dbb8a80e392c54613ebe80db7e8dbdb79837c68"}, - {file = "aiohttp-3.10.10-cp310-cp310-win32.whl", hash = "sha256:84afcdea18eda514c25bc68b9af2a2b1adea7c08899175a51fe7c4fb6d551257"}, - {file = "aiohttp-3.10.10-cp310-cp310-win_amd64.whl", hash = "sha256:9c72109213eb9d3874f7ac8c0c5fa90e072d678e117d9061c06e30c85b4cf0e6"}, - {file = "aiohttp-3.10.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c30a0eafc89d28e7f959281b58198a9fa5e99405f716c0289b7892ca345fe45f"}, - {file = "aiohttp-3.10.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:258c5dd01afc10015866114e210fb7365f0d02d9d059c3c3415382ab633fcbcb"}, - {file = "aiohttp-3.10.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:15ecd889a709b0080f02721255b3f80bb261c2293d3c748151274dfea93ac871"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3935f82f6f4a3820270842e90456ebad3af15810cf65932bd24da4463bc0a4c"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:413251f6fcf552a33c981c4709a6bba37b12710982fec8e558ae944bfb2abd38"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1720b4f14c78a3089562b8875b53e36b51c97c51adc53325a69b79b4b48ebcb"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:679abe5d3858b33c2cf74faec299fda60ea9de62916e8b67e625d65bf069a3b7"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:79019094f87c9fb44f8d769e41dbb664d6e8fcfd62f665ccce36762deaa0e911"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fe2fb38c2ed905a2582948e2de560675e9dfbee94c6d5ccdb1301c6d0a5bf092"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a3f00003de6eba42d6e94fabb4125600d6e484846dbf90ea8e48a800430cc142"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1bbb122c557a16fafc10354b9d99ebf2f2808a660d78202f10ba9d50786384b9"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30ca7c3b94708a9d7ae76ff281b2f47d8eaf2579cd05971b5dc681db8caac6e1"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:df9270660711670e68803107d55c2b5949c2e0f2e4896da176e1ecfc068b974a"}, - {file = "aiohttp-3.10.10-cp311-cp311-win32.whl", hash = "sha256:aafc8ee9b742ce75044ae9a4d3e60e3d918d15a4c2e08a6c3c3e38fa59b92d94"}, - {file = "aiohttp-3.10.10-cp311-cp311-win_amd64.whl", hash = "sha256:362f641f9071e5f3ee6f8e7d37d5ed0d95aae656adf4ef578313ee585b585959"}, - {file = "aiohttp-3.10.10-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:9294bbb581f92770e6ed5c19559e1e99255e4ca604a22c5c6397b2f9dd3ee42c"}, - {file = "aiohttp-3.10.10-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a8fa23fe62c436ccf23ff930149c047f060c7126eae3ccea005f0483f27b2e28"}, - {file = "aiohttp-3.10.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5c6a5b8c7926ba5d8545c7dd22961a107526562da31a7a32fa2456baf040939f"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:007ec22fbc573e5eb2fb7dec4198ef8f6bf2fe4ce20020798b2eb5d0abda6138"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9627cc1a10c8c409b5822a92d57a77f383b554463d1884008e051c32ab1b3742"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:50edbcad60d8f0e3eccc68da67f37268b5144ecc34d59f27a02f9611c1d4eec7"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a45d85cf20b5e0d0aa5a8dca27cce8eddef3292bc29d72dcad1641f4ed50aa16"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b00807e2605f16e1e198f33a53ce3c4523114059b0c09c337209ae55e3823a8"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f2d4324a98062be0525d16f768a03e0bbb3b9fe301ceee99611dc9a7953124e6"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:438cd072f75bb6612f2aca29f8bd7cdf6e35e8f160bc312e49fbecab77c99e3a"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:baa42524a82f75303f714108fea528ccacf0386af429b69fff141ffef1c534f9"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a7d8d14fe962153fc681f6366bdec33d4356f98a3e3567782aac1b6e0e40109a"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c1277cd707c465cd09572a774559a3cc7c7a28802eb3a2a9472588f062097205"}, - {file = "aiohttp-3.10.10-cp312-cp312-win32.whl", hash = "sha256:59bb3c54aa420521dc4ce3cc2c3fe2ad82adf7b09403fa1f48ae45c0cbde6628"}, - {file = "aiohttp-3.10.10-cp312-cp312-win_amd64.whl", hash = "sha256:0e1b370d8007c4ae31ee6db7f9a2fe801a42b146cec80a86766e7ad5c4a259cf"}, - {file = "aiohttp-3.10.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ad7593bb24b2ab09e65e8a1d385606f0f47c65b5a2ae6c551db67d6653e78c28"}, - {file = "aiohttp-3.10.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1eb89d3d29adaf533588f209768a9c02e44e4baf832b08118749c5fad191781d"}, - {file = "aiohttp-3.10.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3fe407bf93533a6fa82dece0e74dbcaaf5d684e5a51862887f9eaebe6372cd79"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aed5155f819873d23520919e16703fc8925e509abbb1a1491b0087d1cd969e"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f05e9727ce409358baa615dbeb9b969db94324a79b5a5cea45d39bdb01d82e6"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3dffb610a30d643983aeb185ce134f97f290f8935f0abccdd32c77bed9388b42"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa6658732517ddabe22c9036479eabce6036655ba87a0224c612e1ae6af2087e"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:741a46d58677d8c733175d7e5aa618d277cd9d880301a380fd296975a9cdd7bc"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e00e3505cd80440f6c98c6d69269dcc2a119f86ad0a9fd70bccc59504bebd68a"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ffe595f10566f8276b76dc3a11ae4bb7eba1aac8ddd75811736a15b0d5311414"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bdfcf6443637c148c4e1a20c48c566aa694fa5e288d34b20fcdc58507882fed3"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d183cf9c797a5291e8301790ed6d053480ed94070637bfaad914dd38b0981f67"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:77abf6665ae54000b98b3c742bc6ea1d1fb31c394bcabf8b5d2c1ac3ebfe7f3b"}, - {file = "aiohttp-3.10.10-cp313-cp313-win32.whl", hash = "sha256:4470c73c12cd9109db8277287d11f9dd98f77fc54155fc71a7738a83ffcc8ea8"}, - {file = "aiohttp-3.10.10-cp313-cp313-win_amd64.whl", hash = "sha256:486f7aabfa292719a2753c016cc3a8f8172965cabb3ea2e7f7436c7f5a22a151"}, - {file = "aiohttp-3.10.10-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:1b66ccafef7336a1e1f0e389901f60c1d920102315a56df85e49552308fc0486"}, - {file = "aiohttp-3.10.10-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:acd48d5b80ee80f9432a165c0ac8cbf9253eaddb6113269a5e18699b33958dbb"}, - {file = "aiohttp-3.10.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3455522392fb15ff549d92fbf4b73b559d5e43dc522588f7eb3e54c3f38beee7"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45c3b868724137f713a38376fef8120c166d1eadd50da1855c112fe97954aed8"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:da1dee8948d2137bb51fbb8a53cce6b1bcc86003c6b42565f008438b806cccd8"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5ce2ce7c997e1971b7184ee37deb6ea9922ef5163c6ee5aa3c274b05f9e12fa"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28529e08fde6f12eba8677f5a8608500ed33c086f974de68cc65ab218713a59d"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f7db54c7914cc99d901d93a34704833568d86c20925b2762f9fa779f9cd2e70f"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:03a42ac7895406220124c88911ebee31ba8b2d24c98507f4a8bf826b2937c7f2"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:7e338c0523d024fad378b376a79faff37fafb3c001872a618cde1d322400a572"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:038f514fe39e235e9fef6717fbf944057bfa24f9b3db9ee551a7ecf584b5b480"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:64f6c17757251e2b8d885d728b6433d9d970573586a78b78ba8929b0f41d045a"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:93429602396f3383a797a2a70e5f1de5df8e35535d7806c9f91df06f297e109b"}, - {file = "aiohttp-3.10.10-cp38-cp38-win32.whl", hash = "sha256:c823bc3971c44ab93e611ab1a46b1eafeae474c0c844aff4b7474287b75fe49c"}, - {file = "aiohttp-3.10.10-cp38-cp38-win_amd64.whl", hash = "sha256:54ca74df1be3c7ca1cf7f4c971c79c2daf48d9aa65dea1a662ae18926f5bc8ce"}, - {file = "aiohttp-3.10.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:01948b1d570f83ee7bbf5a60ea2375a89dfb09fd419170e7f5af029510033d24"}, - {file = "aiohttp-3.10.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9fc1500fd2a952c5c8e3b29aaf7e3cc6e27e9cfc0a8819b3bce48cc1b849e4cc"}, - {file = "aiohttp-3.10.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f614ab0c76397661b90b6851a030004dac502e48260ea10f2441abd2207fbcc7"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00819de9e45d42584bed046314c40ea7e9aea95411b38971082cad449392b08c"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05646ebe6b94cc93407b3bf34b9eb26c20722384d068eb7339de802154d61bc5"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:998f3bd3cfc95e9424a6acd7840cbdd39e45bc09ef87533c006f94ac47296090"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9010c31cd6fa59438da4e58a7f19e4753f7f264300cd152e7f90d4602449762"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ea7ffc6d6d6f8a11e6f40091a1040995cdff02cfc9ba4c2f30a516cb2633554"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ef9c33cc5cbca35808f6c74be11eb7f5f6b14d2311be84a15b594bd3e58b5527"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ce0cdc074d540265bfeb31336e678b4e37316849d13b308607efa527e981f5c2"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:597a079284b7ee65ee102bc3a6ea226a37d2b96d0418cc9047490f231dc09fe8"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:7789050d9e5d0c309c706953e5e8876e38662d57d45f936902e176d19f1c58ab"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e7f8b04d83483577fd9200461b057c9f14ced334dcb053090cea1da9c8321a91"}, - {file = "aiohttp-3.10.10-cp39-cp39-win32.whl", hash = "sha256:c02a30b904282777d872266b87b20ed8cc0d1501855e27f831320f471d54d983"}, - {file = "aiohttp-3.10.10-cp39-cp39-win_amd64.whl", hash = "sha256:edfe3341033a6b53a5c522c802deb2079eee5cbfbb0af032a55064bd65c73a23"}, - {file = "aiohttp-3.10.10.tar.gz", hash = "sha256:0631dd7c9f0822cc61c88586ca76d5b5ada26538097d0f1df510b082bad3411a"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbad88a61fa743c5d283ad501b01c153820734118b65aee2bd7dbb735475ce0d"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80886dac673ceaef499de2f393fc80bb4481a129e6cb29e624a12e3296cc088f"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:61b9bae80ed1f338c42f57c16918853dc51775fb5cb61da70d590de14d8b5fb4"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e2e576caec5c6a6b93f41626c9c02fc87cd91538b81a3670b2e04452a63def6"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02c13415b5732fb6ee7ff64583a5e6ed1c57aa68f17d2bda79c04888dfdc2769"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfce37f31f20800a6a6620ce2cdd6737b82e42e06e6e9bd1b36f546feb3c44f"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3bbbfff4c679c64e6e23cb213f57cc2c9165c9a65d63717108a644eb5a7398df"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49c7dbbc1a559ae14fc48387a115b7d4bbc84b4a2c3b9299c31696953c2a5219"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:68386d78743e6570f054fe7949d6cb37ef2b672b4d3405ce91fafa996f7d9b4d"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9ef405356ba989fb57f84cac66f7b0260772836191ccefbb987f414bcd2979d9"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5d6958671b296febe7f5f859bea581a21c1d05430d1bbdcf2b393599b1cdce77"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:99b7920e7165be5a9e9a3a7f1b680f06f68ff0d0328ff4079e5163990d046767"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0dc49f42422163efb7e6f1df2636fe3db72713f6cd94688e339dbe33fe06d61d"}, + {file = "aiohttp-3.11.10-cp310-cp310-win32.whl", hash = "sha256:40d1c7a7f750b5648642586ba7206999650208dbe5afbcc5284bcec6579c9b91"}, + {file = "aiohttp-3.11.10-cp310-cp310-win_amd64.whl", hash = "sha256:68ff6f48b51bd78ea92b31079817aff539f6c8fc80b6b8d6ca347d7c02384e33"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:77c4aa15a89847b9891abf97f3d4048f3c2d667e00f8a623c89ad2dccee6771b"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:909af95a72cedbefe5596f0bdf3055740f96c1a4baa0dd11fd74ca4de0b4e3f1"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:386fbe79863eb564e9f3615b959e28b222259da0c48fd1be5929ac838bc65683"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3de34936eb1a647aa919655ff8d38b618e9f6b7f250cc19a57a4bf7fd2062b6d"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c9527819b29cd2b9f52033e7fb9ff08073df49b4799c89cb5754624ecd98299"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65a96e3e03300b41f261bbfd40dfdbf1c301e87eab7cd61c054b1f2e7c89b9e8"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98f5635f7b74bcd4f6f72fcd85bea2154b323a9f05226a80bc7398d0c90763b0"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:03b6002e20938fc6ee0918c81d9e776bebccc84690e2b03ed132331cca065ee5"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6362cc6c23c08d18ddbf0e8c4d5159b5df74fea1a5278ff4f2c79aed3f4e9f46"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3691ed7726fef54e928fe26344d930c0c8575bc968c3e239c2e1a04bd8cf7838"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31d5093d3acd02b31c649d3a69bb072d539d4c7659b87caa4f6d2bcf57c2fa2b"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:8b3cf2dc0f0690a33f2d2b2cb15db87a65f1c609f53c37e226f84edb08d10f52"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:fbbaea811a2bba171197b08eea288b9402faa2bab2ba0858eecdd0a4105753a3"}, + {file = "aiohttp-3.11.10-cp311-cp311-win32.whl", hash = "sha256:4b2c7ac59c5698a7a8207ba72d9e9c15b0fc484a560be0788b31312c2c5504e4"}, + {file = "aiohttp-3.11.10-cp311-cp311-win_amd64.whl", hash = "sha256:974d3a2cce5fcfa32f06b13ccc8f20c6ad9c51802bb7f829eae8a1845c4019ec"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b78f053a7ecfc35f0451d961dacdc671f4bcbc2f58241a7c820e9d82559844cf"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab7485222db0959a87fbe8125e233b5a6f01f4400785b36e8a7878170d8c3138"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cf14627232dfa8730453752e9cdc210966490992234d77ff90bc8dc0dce361d5"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:076bc454a7e6fd646bc82ea7f98296be0b1219b5e3ef8a488afbdd8e81fbac50"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:482cafb7dc886bebeb6c9ba7925e03591a62ab34298ee70d3dd47ba966370d2c"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf3d1a519a324af764a46da4115bdbd566b3c73fb793ffb97f9111dbc684fc4d"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24213ba85a419103e641e55c27dc7ff03536c4873470c2478cce3311ba1eee7b"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b99acd4730ad1b196bfb03ee0803e4adac371ae8efa7e1cbc820200fc5ded109"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:14cdb5a9570be5a04eec2ace174a48ae85833c2aadc86de68f55541f66ce42ab"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7e97d622cb083e86f18317282084bc9fbf261801b0192c34fe4b1febd9f7ae69"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:012f176945af138abc10c4a48743327a92b4ca9adc7a0e078077cdb5dbab7be0"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44224d815853962f48fe124748227773acd9686eba6dc102578defd6fc99e8d9"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c87bf31b7fdab94ae3adbe4a48e711bfc5f89d21cf4c197e75561def39e223bc"}, + {file = "aiohttp-3.11.10-cp312-cp312-win32.whl", hash = "sha256:06a8e2ee1cbac16fe61e51e0b0c269400e781b13bcfc33f5425912391a542985"}, + {file = "aiohttp-3.11.10-cp312-cp312-win_amd64.whl", hash = "sha256:be2b516f56ea883a3e14dda17059716593526e10fb6303189aaf5503937db408"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8cc5203b817b748adccb07f36390feb730b1bc5f56683445bfe924fc270b8816"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5ef359ebc6949e3a34c65ce20230fae70920714367c63afd80ea0c2702902ccf"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9bca390cb247dbfaec3c664326e034ef23882c3f3bfa5fbf0b56cad0320aaca5"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:811f23b3351ca532af598405db1093f018edf81368e689d1b508c57dcc6b6a32"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddf5f7d877615f6a1e75971bfa5ac88609af3b74796ff3e06879e8422729fd01"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ab29b8a0beb6f8eaf1e5049252cfe74adbaafd39ba91e10f18caeb0e99ffb34"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c49a76c1038c2dd116fa443eba26bbb8e6c37e924e2513574856de3b6516be99"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f3dc0e330575f5b134918976a645e79adf333c0a1439dcf6899a80776c9ab39"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:efb15a17a12497685304b2d976cb4939e55137df7b09fa53f1b6a023f01fcb4e"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:db1d0b28fcb7f1d35600150c3e4b490775251dea70f894bf15c678fdd84eda6a"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:15fccaf62a4889527539ecb86834084ecf6e9ea70588efde86e8bc775e0e7542"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:593c114a2221444f30749cc5e5f4012488f56bd14de2af44fe23e1e9894a9c60"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7852bbcb4d0d2f0c4d583f40c3bc750ee033265d80598d0f9cb6f372baa6b836"}, + {file = "aiohttp-3.11.10-cp313-cp313-win32.whl", hash = "sha256:65e55ca7debae8faaffee0ebb4b47a51b4075f01e9b641c31e554fd376595c6c"}, + {file = "aiohttp-3.11.10-cp313-cp313-win_amd64.whl", hash = "sha256:beb39a6d60a709ae3fb3516a1581777e7e8b76933bb88c8f4420d875bb0267c6"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0580f2e12de2138f34debcd5d88894786453a76e98febaf3e8fe5db62d01c9bf"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a55d2ad345684e7c3dd2c20d2f9572e9e1d5446d57200ff630e6ede7612e307f"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:04814571cb72d65a6899db6099e377ed00710bf2e3eafd2985166f2918beaf59"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e44a9a3c053b90c6f09b1bb4edd880959f5328cf63052503f892c41ea786d99f"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:502a1464ccbc800b4b1995b302efaf426e8763fadf185e933c2931df7db9a199"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:613e5169f8ae77b1933e42e418a95931fb4867b2991fc311430b15901ed67079"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cca22a61b7fe45da8fc73c3443150c3608750bbe27641fc7558ec5117b27fdf"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:86a5dfcc39309470bd7b68c591d84056d195428d5d2e0b5ccadfbaf25b026ebc"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:77ae58586930ee6b2b6f696c82cf8e78c8016ec4795c53e36718365f6959dc82"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:78153314f26d5abef3239b4a9af20c229c6f3ecb97d4c1c01b22c4f87669820c"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:98283b94cc0e11c73acaf1c9698dea80c830ca476492c0fe2622bd931f34b487"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:53bf2097e05c2accc166c142a2090e4c6fd86581bde3fd9b2d3f9e93dda66ac1"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5532f0441fc09c119e1dca18fbc0687e64fbeb45aa4d6a87211ceaee50a74c4"}, + {file = "aiohttp-3.11.10-cp39-cp39-win32.whl", hash = "sha256:47ad15a65fb41c570cd0ad9a9ff8012489e68176e7207ec7b82a0940dddfd8be"}, + {file = "aiohttp-3.11.10-cp39-cp39-win_amd64.whl", hash = "sha256:c6b9e6d7e41656d78e37ce754813fa44b455c3d0d0dced2a047def7dc5570b74"}, + {file = "aiohttp-3.11.10.tar.gz", hash = "sha256:b1fc6b45010a8d0ff9e88f9f2418c6fd408c99c211257334aff41597ebece42e"}, ] [package.dependencies] @@ -173,7 +158,8 @@ aiosignal = ">=1.1.2" attrs = ">=17.3.0" frozenlist = ">=1.1.1" multidict = ">=4.5,<7.0" -yarl = ">=1.12.0,<2.0" +propcache = ">=0.2.0" +yarl = ">=1.17.0,<2.0" [package.extras] speedups = ["Brotli", "aiodns (>=3.2.0)", "brotlicffi"] diff --git a/integrations/aws/pyproject.toml b/integrations/aws/pyproject.toml index 22db87bb64..78752fdf2e 100644 --- a/integrations/aws/pyproject.toml +++ b/integrations/aws/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aws" -version = "0.2.70" +version = "0.2.71" description = "This integration will map all your resources in all the available accounts to your Port entities" authors = ["Shalev Avhar ", "Erik Zaadi "] diff --git a/integrations/azure/CHANGELOG.md b/integrations/azure/CHANGELOG.md index 3e12d94be1..f35a2cf49a 100644 --- a/integrations/azure/CHANGELOG.md +++ b/integrations/azure/CHANGELOG.md @@ -1,3 +1,20 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + + +## 0.1.115 (2024-12-16) + + +### Improvements + +- Updated the aiohttp dependency to version 3.11.10, resolving known vulnerability issues with medium severity + + 0.1.114 (2024-12-15) ### Improvements diff --git a/integrations/azure/poetry.lock b/integrations/azure/poetry.lock index d37636cda0..81cdfc2e25 100644 --- a/integrations/azure/poetry.lock +++ b/integrations/azure/poetry.lock @@ -13,87 +13,87 @@ files = [ [[package]] name = "aiohttp" -version = "3.11.8" +version = "3.11.10" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.9" files = [ - {file = "aiohttp-3.11.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2d2ca685c6a851ce64e511fbcb906e4dd97d13e567ca7ecb5cb30b184e15dc6d"}, - {file = "aiohttp-3.11.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:52913bb8a0a72a57479f54b281300c9d23036aa9aa3ebbc9a32a643484eadfc2"}, - {file = "aiohttp-3.11.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:35dafc70051b6cbd6dafb533b4e3f0df6225a4896be373ef86367b2987409331"}, - {file = "aiohttp-3.11.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:561b9596a9f90266673ef0b950c27e04ab597cdb53785e2ac91b83b33c31b509"}, - {file = "aiohttp-3.11.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d479c1fdcc920056a06d04059db52eb8590ecbbb3acdcaeeea26a88ff782e94a"}, - {file = "aiohttp-3.11.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9ce8eb6444bb6e862feca664ce365afa8e2e32db24dcf1a502719a8a002f9274"}, - {file = "aiohttp-3.11.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df9bf08eb93611b1d4d6245b6fecf88728e90eece00e00d554e1b0c445557d83"}, - {file = "aiohttp-3.11.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a20ddaa58fea717177fac9a4a1fb8b39be868aa4fed2af6de4313b7a08f0f71"}, - {file = "aiohttp-3.11.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9f4aadfea6b48cfa17aef1a68ba6bee5a0246374f5a588e299a4f4ff5bd1c77b"}, - {file = "aiohttp-3.11.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:aa7deebb4bc5143745e6282139d7b9de50beb6d06609df64d2c993ef496bc7eb"}, - {file = "aiohttp-3.11.8-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fe503a76b9e3a13b62e64545693c9463afe9d429e0909120f7bb66de91ed8bc2"}, - {file = "aiohttp-3.11.8-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1c5838a68e31712354129add1b5fe32b06aa05275f835130edc650e6288af05f"}, - {file = "aiohttp-3.11.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:832e58d9454fe501b0d092cdf660c0e34e16005f61acd06e1c79b0fc45019c94"}, - {file = "aiohttp-3.11.8-cp310-cp310-win32.whl", hash = "sha256:00618c37a350884c08e87cf9a6532be274d564227ac49e0b474cf41f27e1f190"}, - {file = "aiohttp-3.11.8-cp310-cp310-win_amd64.whl", hash = "sha256:8eeaac75203da1a54afe1faea3c855a1973026b54929112aa9b67bceadbcb0ca"}, - {file = "aiohttp-3.11.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8dd02b44555893adfe7cc4b3b454fee04f9dcec45cf66ef5bb53ebf393f0505"}, - {file = "aiohttp-3.11.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:658052941324edea3dee1f681375e70779f55e437e07bdfc4b5bbe65ad53cefb"}, - {file = "aiohttp-3.11.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6c829471a9e2266da4a0666f8a9e215f19320f79778af379c1c7db324ac24ed2"}, - {file = "aiohttp-3.11.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d21951756690f5d86d0215da38eb0fd65def03b5e2a1c08a4a39718a6d0d48f2"}, - {file = "aiohttp-3.11.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2fa50ddc6b21cc1ae23e13524d6f75b27e279fdf5cf905b2df6fd171891ac4e2"}, - {file = "aiohttp-3.11.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a5afbd805e449048ecebb1a256176e953d4ca9e48bab387d4d1c8524f1c7a95"}, - {file = "aiohttp-3.11.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea68db69f2a4ddc24b28b8e754fc0b963ed7f9b9a76137f06fe44643d6821fbd"}, - {file = "aiohttp-3.11.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b3ac163145660ce660aed2f1005e6d4de840d39728990b7250525eeec4e4a8"}, - {file = "aiohttp-3.11.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e9ac0cce897904b77e109e5403ed713187dbdf96832bfd061ac07164264be16c"}, - {file = "aiohttp-3.11.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3260c77cff4e35245bc517658bd54d7a64787f71f3c4f723877c82f22835b032"}, - {file = "aiohttp-3.11.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f7fd9c11ffad6b022bf02a41a70418cb2ab3b33f2c27842a5999e3ab78daf280"}, - {file = "aiohttp-3.11.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:16bda233a7b159ab08107e8858fedca90a9de287057fab54cafde51bd83f9819"}, - {file = "aiohttp-3.11.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4867008617bbf86e9fb5b00f72dd0e3a00a579b32233caff834320867f9b7cac"}, - {file = "aiohttp-3.11.8-cp311-cp311-win32.whl", hash = "sha256:17e6b9d8e29e3bfc7f893f327e92c9769d3582cee2fb1652c1431ac3f60115a0"}, - {file = "aiohttp-3.11.8-cp311-cp311-win_amd64.whl", hash = "sha256:7f3be4961a5c2c670f31caab7641a37ea2a97031f0d8ae15bcfd36b6bf273200"}, - {file = "aiohttp-3.11.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0e3b5bfef913d6be270c81976fbc0cbf66625cd92663bbb7e03b3adbd6aa4ac6"}, - {file = "aiohttp-3.11.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cb51a81cb637b9a072c9cfae1839e35c6579638861eb3479eb5d6e6ce8bc6782"}, - {file = "aiohttp-3.11.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:dd2ca84e5f7a35f313a62eb7d6a50bac6760b60bafce34586750712731c0aeff"}, - {file = "aiohttp-3.11.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47c6663df9446aa848b478413219600da4b54bc0409e1ac4bc80fb1a81501363"}, - {file = "aiohttp-3.11.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c665ed4b52256614858b20711bbbd2755b0e19ec86870f8ff1645acf9ae9e760"}, - {file = "aiohttp-3.11.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35d4545e7684da7a954ffc2dce495462cb16a902dffdebe98572408f6aaaee83"}, - {file = "aiohttp-3.11.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85be3899e6860dd2cd3f4370ded6708e939d00d5ec922a8eb328d114db605a47"}, - {file = "aiohttp-3.11.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0ed9f1f2697713c48efc9ec483ad5d062e4aa91854f090a3eba0b19c002851d"}, - {file = "aiohttp-3.11.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c0dbae99737badf3f5e862088a118e28d3b36f03eb608a6382eddfd68178e05b"}, - {file = "aiohttp-3.11.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:beae08f900b2980af4353a0200eb162b39f276fd8a6e43079a540f83964671f4"}, - {file = "aiohttp-3.11.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d6f9e5fd1b3ecbaca3e04a15a02d1fa213248608caee99fd5bdddd4759959cf7"}, - {file = "aiohttp-3.11.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a7def89a41fe32120d89cd4577f5efbab3c52234c5890066ced8a2f7202dff88"}, - {file = "aiohttp-3.11.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:98f596cf59292e779bc387f22378a3d2c5e052c9fe2bf822ac4f547c6fe57758"}, - {file = "aiohttp-3.11.8-cp312-cp312-win32.whl", hash = "sha256:b64fa6b76b35b695cd3e5c42a4e568cbea8d41c9e59165e2a43da00976e2027e"}, - {file = "aiohttp-3.11.8-cp312-cp312-win_amd64.whl", hash = "sha256:afba47981ff73b1794c00dce774334dcfe62664b3b4f78f278b77d21ce9daf43"}, - {file = "aiohttp-3.11.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a81525430da5ca356fae6e889daeb6f5cc0d5f0cef88e59cdde48e2394ea1365"}, - {file = "aiohttp-3.11.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7565689e86a88c1d258351ebd14e343337b76a56ca5c0a2c1db96ec28149386f"}, - {file = "aiohttp-3.11.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d0f9dbe9763c014c408ad51a027dc9582518e992dc63e2ffe359ac1b4840a560"}, - {file = "aiohttp-3.11.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ca580edc3ccd7f6ea76ad9cf59f5a8756d338e770b5eda7be26bcda8fa7ef53"}, - {file = "aiohttp-3.11.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d141631a7348038fc7b5d1a81b3c9afa9aa056188ded7902fe754028fdea5c5"}, - {file = "aiohttp-3.11.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64e6b14608a56a4c76c60daac730b0c0eeaf9d10dfc3231f7fc26521a0d628fd"}, - {file = "aiohttp-3.11.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0983d0ce329f2f9dbeb355c3744bd6333f34e0dc56025b6b7d4f285b90acb51e"}, - {file = "aiohttp-3.11.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d96b93a46a3742880fa21bcb35c6c40cf27714ec0fb8ec85fe444d73b95131b9"}, - {file = "aiohttp-3.11.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f4f1779c3142d913c509c2ed1de8b8f920e07a5cd65ac1f57c61cfb6bfded5a4"}, - {file = "aiohttp-3.11.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:48be7cff468c9c0d86a02e6a826e1fe159094b16d5aa2c17703e7317f791b0f9"}, - {file = "aiohttp-3.11.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:daea456b79ca2bacc7f062845bbb1139c3b3231fc83169da5a682cf385416dd1"}, - {file = "aiohttp-3.11.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c92e763cf641e10ad9342597d20060ba23de5e411aada96660e679e3f9371189"}, - {file = "aiohttp-3.11.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a750ee5a177e0f873d6b2d7d0fa6e1e7c658fc0ca8ea56438dcba2ac94bedb09"}, - {file = "aiohttp-3.11.8-cp313-cp313-win32.whl", hash = "sha256:4448c9c7f77bad48a6569062c0c16deb77fbb7363de1dc71ed087f66fb3b3c96"}, - {file = "aiohttp-3.11.8-cp313-cp313-win_amd64.whl", hash = "sha256:481075a1949de79a8a6841e0086f2f5f464785c592cf527ed0db2c0cbd0e1ba2"}, - {file = "aiohttp-3.11.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:72779bfb34d6d6b51e55a7f4901b410e416b5431738b367d49696928c91a2ca8"}, - {file = "aiohttp-3.11.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3e6523f39071a01757048985e4cc22d04aa130bc40d9128503f3a61a3ee98328"}, - {file = "aiohttp-3.11.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:220bbce18b3046973465be45415430f1cab39d7fdc40cbcf0a8c05485c6902fe"}, - {file = "aiohttp-3.11.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:336bbf7a33dd8cb4a7afb98c70e9935a81e5e88f7ac595ba2e84b1fb5da190d6"}, - {file = "aiohttp-3.11.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3c5e4f1ba5059b85e05c551961a448ce2689c6249ed6a2e2174796842c191d10"}, - {file = "aiohttp-3.11.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9f9fd5c672c962389429abd11ed32c9c93f7932fd58584cae1e43951b141c6b"}, - {file = "aiohttp-3.11.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58bd94ad48143e1d42e05fc055da41de0a9933f378ad87760595b8aec83d317b"}, - {file = "aiohttp-3.11.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bf52642b12d70d78c18882915201bc5345f7c8f0f2ab8919d99b886aa6475a7"}, - {file = "aiohttp-3.11.8-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fee12d8487b0df2b683424cca2a0d8fb7281d5607518d742e98119a74af01026"}, - {file = "aiohttp-3.11.8-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:65fd04f1fea668ad1af48ac31b752000e222dccffedcad3de8ccf9d34489ccd3"}, - {file = "aiohttp-3.11.8-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c3f397e0511a0ec4fe331e602fc057dfd336d352062deb9969ebd81e253a149c"}, - {file = "aiohttp-3.11.8-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:cf8f05f4abe3288fe2e106e1461fd20d8abf6103886ddfb6d746a5b8fb830d2b"}, - {file = "aiohttp-3.11.8-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7d71d4ac0792ff89541179394d303be846a0b6cd3821ae67286ee69ecec16f9f"}, - {file = "aiohttp-3.11.8-cp39-cp39-win32.whl", hash = "sha256:2b6f8716044ae5e5f2a3b4e4b6bfee48e97c8b2a92e56f43aadd728c7fd26b7d"}, - {file = "aiohttp-3.11.8-cp39-cp39-win_amd64.whl", hash = "sha256:da343903214bf9f9d314b913caa499fa19e26d73e6e23a3db7d4898ea6d47028"}, - {file = "aiohttp-3.11.8.tar.gz", hash = "sha256:7bc9d64a2350cbb29a9732334e1a0743cbb6844de1731cbdf5949b235653f3fd"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbad88a61fa743c5d283ad501b01c153820734118b65aee2bd7dbb735475ce0d"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80886dac673ceaef499de2f393fc80bb4481a129e6cb29e624a12e3296cc088f"}, + {file = "aiohttp-3.11.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:61b9bae80ed1f338c42f57c16918853dc51775fb5cb61da70d590de14d8b5fb4"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e2e576caec5c6a6b93f41626c9c02fc87cd91538b81a3670b2e04452a63def6"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02c13415b5732fb6ee7ff64583a5e6ed1c57aa68f17d2bda79c04888dfdc2769"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfce37f31f20800a6a6620ce2cdd6737b82e42e06e6e9bd1b36f546feb3c44f"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3bbbfff4c679c64e6e23cb213f57cc2c9165c9a65d63717108a644eb5a7398df"}, + {file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49c7dbbc1a559ae14fc48387a115b7d4bbc84b4a2c3b9299c31696953c2a5219"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:68386d78743e6570f054fe7949d6cb37ef2b672b4d3405ce91fafa996f7d9b4d"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9ef405356ba989fb57f84cac66f7b0260772836191ccefbb987f414bcd2979d9"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5d6958671b296febe7f5f859bea581a21c1d05430d1bbdcf2b393599b1cdce77"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:99b7920e7165be5a9e9a3a7f1b680f06f68ff0d0328ff4079e5163990d046767"}, + {file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0dc49f42422163efb7e6f1df2636fe3db72713f6cd94688e339dbe33fe06d61d"}, + {file = "aiohttp-3.11.10-cp310-cp310-win32.whl", hash = "sha256:40d1c7a7f750b5648642586ba7206999650208dbe5afbcc5284bcec6579c9b91"}, + {file = "aiohttp-3.11.10-cp310-cp310-win_amd64.whl", hash = "sha256:68ff6f48b51bd78ea92b31079817aff539f6c8fc80b6b8d6ca347d7c02384e33"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:77c4aa15a89847b9891abf97f3d4048f3c2d667e00f8a623c89ad2dccee6771b"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:909af95a72cedbefe5596f0bdf3055740f96c1a4baa0dd11fd74ca4de0b4e3f1"}, + {file = "aiohttp-3.11.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:386fbe79863eb564e9f3615b959e28b222259da0c48fd1be5929ac838bc65683"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3de34936eb1a647aa919655ff8d38b618e9f6b7f250cc19a57a4bf7fd2062b6d"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c9527819b29cd2b9f52033e7fb9ff08073df49b4799c89cb5754624ecd98299"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65a96e3e03300b41f261bbfd40dfdbf1c301e87eab7cd61c054b1f2e7c89b9e8"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98f5635f7b74bcd4f6f72fcd85bea2154b323a9f05226a80bc7398d0c90763b0"}, + {file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:03b6002e20938fc6ee0918c81d9e776bebccc84690e2b03ed132331cca065ee5"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6362cc6c23c08d18ddbf0e8c4d5159b5df74fea1a5278ff4f2c79aed3f4e9f46"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3691ed7726fef54e928fe26344d930c0c8575bc968c3e239c2e1a04bd8cf7838"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31d5093d3acd02b31c649d3a69bb072d539d4c7659b87caa4f6d2bcf57c2fa2b"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:8b3cf2dc0f0690a33f2d2b2cb15db87a65f1c609f53c37e226f84edb08d10f52"}, + {file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:fbbaea811a2bba171197b08eea288b9402faa2bab2ba0858eecdd0a4105753a3"}, + {file = "aiohttp-3.11.10-cp311-cp311-win32.whl", hash = "sha256:4b2c7ac59c5698a7a8207ba72d9e9c15b0fc484a560be0788b31312c2c5504e4"}, + {file = "aiohttp-3.11.10-cp311-cp311-win_amd64.whl", hash = "sha256:974d3a2cce5fcfa32f06b13ccc8f20c6ad9c51802bb7f829eae8a1845c4019ec"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b78f053a7ecfc35f0451d961dacdc671f4bcbc2f58241a7c820e9d82559844cf"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab7485222db0959a87fbe8125e233b5a6f01f4400785b36e8a7878170d8c3138"}, + {file = "aiohttp-3.11.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cf14627232dfa8730453752e9cdc210966490992234d77ff90bc8dc0dce361d5"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:076bc454a7e6fd646bc82ea7f98296be0b1219b5e3ef8a488afbdd8e81fbac50"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:482cafb7dc886bebeb6c9ba7925e03591a62ab34298ee70d3dd47ba966370d2c"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf3d1a519a324af764a46da4115bdbd566b3c73fb793ffb97f9111dbc684fc4d"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24213ba85a419103e641e55c27dc7ff03536c4873470c2478cce3311ba1eee7b"}, + {file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b99acd4730ad1b196bfb03ee0803e4adac371ae8efa7e1cbc820200fc5ded109"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:14cdb5a9570be5a04eec2ace174a48ae85833c2aadc86de68f55541f66ce42ab"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7e97d622cb083e86f18317282084bc9fbf261801b0192c34fe4b1febd9f7ae69"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:012f176945af138abc10c4a48743327a92b4ca9adc7a0e078077cdb5dbab7be0"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44224d815853962f48fe124748227773acd9686eba6dc102578defd6fc99e8d9"}, + {file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c87bf31b7fdab94ae3adbe4a48e711bfc5f89d21cf4c197e75561def39e223bc"}, + {file = "aiohttp-3.11.10-cp312-cp312-win32.whl", hash = "sha256:06a8e2ee1cbac16fe61e51e0b0c269400e781b13bcfc33f5425912391a542985"}, + {file = "aiohttp-3.11.10-cp312-cp312-win_amd64.whl", hash = "sha256:be2b516f56ea883a3e14dda17059716593526e10fb6303189aaf5503937db408"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8cc5203b817b748adccb07f36390feb730b1bc5f56683445bfe924fc270b8816"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5ef359ebc6949e3a34c65ce20230fae70920714367c63afd80ea0c2702902ccf"}, + {file = "aiohttp-3.11.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9bca390cb247dbfaec3c664326e034ef23882c3f3bfa5fbf0b56cad0320aaca5"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:811f23b3351ca532af598405db1093f018edf81368e689d1b508c57dcc6b6a32"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddf5f7d877615f6a1e75971bfa5ac88609af3b74796ff3e06879e8422729fd01"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ab29b8a0beb6f8eaf1e5049252cfe74adbaafd39ba91e10f18caeb0e99ffb34"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c49a76c1038c2dd116fa443eba26bbb8e6c37e924e2513574856de3b6516be99"}, + {file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f3dc0e330575f5b134918976a645e79adf333c0a1439dcf6899a80776c9ab39"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:efb15a17a12497685304b2d976cb4939e55137df7b09fa53f1b6a023f01fcb4e"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:db1d0b28fcb7f1d35600150c3e4b490775251dea70f894bf15c678fdd84eda6a"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:15fccaf62a4889527539ecb86834084ecf6e9ea70588efde86e8bc775e0e7542"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:593c114a2221444f30749cc5e5f4012488f56bd14de2af44fe23e1e9894a9c60"}, + {file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7852bbcb4d0d2f0c4d583f40c3bc750ee033265d80598d0f9cb6f372baa6b836"}, + {file = "aiohttp-3.11.10-cp313-cp313-win32.whl", hash = "sha256:65e55ca7debae8faaffee0ebb4b47a51b4075f01e9b641c31e554fd376595c6c"}, + {file = "aiohttp-3.11.10-cp313-cp313-win_amd64.whl", hash = "sha256:beb39a6d60a709ae3fb3516a1581777e7e8b76933bb88c8f4420d875bb0267c6"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0580f2e12de2138f34debcd5d88894786453a76e98febaf3e8fe5db62d01c9bf"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a55d2ad345684e7c3dd2c20d2f9572e9e1d5446d57200ff630e6ede7612e307f"}, + {file = "aiohttp-3.11.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:04814571cb72d65a6899db6099e377ed00710bf2e3eafd2985166f2918beaf59"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e44a9a3c053b90c6f09b1bb4edd880959f5328cf63052503f892c41ea786d99f"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:502a1464ccbc800b4b1995b302efaf426e8763fadf185e933c2931df7db9a199"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:613e5169f8ae77b1933e42e418a95931fb4867b2991fc311430b15901ed67079"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cca22a61b7fe45da8fc73c3443150c3608750bbe27641fc7558ec5117b27fdf"}, + {file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:86a5dfcc39309470bd7b68c591d84056d195428d5d2e0b5ccadfbaf25b026ebc"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:77ae58586930ee6b2b6f696c82cf8e78c8016ec4795c53e36718365f6959dc82"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:78153314f26d5abef3239b4a9af20c229c6f3ecb97d4c1c01b22c4f87669820c"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:98283b94cc0e11c73acaf1c9698dea80c830ca476492c0fe2622bd931f34b487"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:53bf2097e05c2accc166c142a2090e4c6fd86581bde3fd9b2d3f9e93dda66ac1"}, + {file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5532f0441fc09c119e1dca18fbc0687e64fbeb45aa4d6a87211ceaee50a74c4"}, + {file = "aiohttp-3.11.10-cp39-cp39-win32.whl", hash = "sha256:47ad15a65fb41c570cd0ad9a9ff8012489e68176e7207ec7b82a0940dddfd8be"}, + {file = "aiohttp-3.11.10-cp39-cp39-win_amd64.whl", hash = "sha256:c6b9e6d7e41656d78e37ce754813fa44b455c3d0d0dced2a047def7dc5570b74"}, + {file = "aiohttp-3.11.10.tar.gz", hash = "sha256:b1fc6b45010a8d0ff9e88f9f2418c6fd408c99c211257334aff41597ebece42e"}, ] [package.dependencies] diff --git a/integrations/azure/pyproject.toml b/integrations/azure/pyproject.toml index 8e8ec62b60..49607da1a7 100644 --- a/integrations/azure/pyproject.toml +++ b/integrations/azure/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "azure" -version = "0.1.114" +version = "0.1.115" description = "Azure integration" authors = ["Tom Tankilevitch "] From b5566a9e4e85695513685c88aa613c64a289f21e Mon Sep 17 00:00:00 2001 From: Adebayo Oluwadunsin Iyanuoluwa <88881603+oiadebayo@users.noreply.github.com> Date: Mon, 16 Dec 2024 16:56:46 +0100 Subject: [PATCH 16/22] [Integration][Snyk] Corrected typo in snyk default blueprint and mapping (#1243) # Description What - A PR to correct typographical error in default blueprint and mapping for snyk integration ## Type of change Please leave one option from the following and delete the rest: - [x] Bug fix (non-breaking change which fixes an issue)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --- integrations/snyk/.port/resources/blueprints.json | 2 +- integrations/snyk/.port/resources/port-app-config.yaml | 2 +- integrations/snyk/CHANGELOG.md | 8 ++++++++ integrations/snyk/pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/integrations/snyk/.port/resources/blueprints.json b/integrations/snyk/.port/resources/blueprints.json index dbb32373d0..298554d8ea 100644 --- a/integrations/snyk/.port/resources/blueprints.json +++ b/integrations/snyk/.port/resources/blueprints.json @@ -311,7 +311,7 @@ } }, "relations": { - "synk_organization": { + "snyk_organization": { "title": "Snyk Organization", "target": "snykOrganization", "required": false, diff --git a/integrations/snyk/.port/resources/port-app-config.yaml b/integrations/snyk/.port/resources/port-app-config.yaml index 1212fc8df3..a47a3ce4f4 100644 --- a/integrations/snyk/.port/resources/port-app-config.yaml +++ b/integrations/snyk/.port/resources/port-app-config.yaml @@ -46,7 +46,7 @@ resources: properties: origin: .relationships.integration.data.attributes.integration_type relations: - synk_organization: '.relationships.organization.data.id' + snyk_organization: '.relationships.organization.data.id' - kind: vulnerability selector: query: 'true' diff --git a/integrations/snyk/CHANGELOG.md b/integrations/snyk/CHANGELOG.md index 1e560c3677..adbdbc0941 100644 --- a/integrations/snyk/CHANGELOG.md +++ b/integrations/snyk/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.113 (2024-12-16) + + +### Bug Fixes + +- Corrected typo found in the default blueprint and mapping + + ## 0.1.112 (2024-12-15) diff --git a/integrations/snyk/pyproject.toml b/integrations/snyk/pyproject.toml index a43802c866..43066200cd 100644 --- a/integrations/snyk/pyproject.toml +++ b/integrations/snyk/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "snyk" -version = "0.1.112" +version = "0.1.113" description = "Snyk integration powered by Ocean" authors = ["Isaac Coffie "] From 7c20230fb91f4ff002389aa80e3d175e395485d4 Mon Sep 17 00:00:00 2001 From: PagesCoffy Date: Tue, 17 Dec 2024 13:35:36 +0000 Subject: [PATCH 17/22] [Integration][GitLab] Add project labels (#1245) # Description What - Added project labels to the project kind response Why - How - Enriched the project response with `__labels` object ## Type of change Please leave one option from the following and delete the rest: - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] New Integration (non-breaking change which adds a new integration) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Non-breaking change (fix of existing functionality that will not change current behavior) - [ ] Documentation (added/updated documentation)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --- integrations/gitlab/CHANGELOG.md | 8 ++++++++ .../gitlab/gitlab_integration/gitlab_service.py | 13 +++++++++++++ integrations/gitlab/pyproject.toml | 2 +- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/integrations/gitlab/CHANGELOG.md b/integrations/gitlab/CHANGELOG.md index d9053f3f46..ec61ef0747 100644 --- a/integrations/gitlab/CHANGELOG.md +++ b/integrations/gitlab/CHANGELOG.md @@ -7,6 +7,14 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +0.2.5 (2024-12-16) +================== + +### Improvements + +- Added labels as an extra property to the project kind response + + 0.2.4 (2024-12-15) ================== diff --git a/integrations/gitlab/gitlab_integration/gitlab_service.py b/integrations/gitlab/gitlab_integration/gitlab_service.py index 0ecaec3671..b2fa6519de 100644 --- a/integrations/gitlab/gitlab_integration/gitlab_service.py +++ b/integrations/gitlab/gitlab_integration/gitlab_service.py @@ -547,6 +547,18 @@ async def get_all_projects(self) -> typing.AsyncIterator[List[Project]]: else: logger.info("No valid projects found for the token in the current page") + @classmethod + async def async_project_labels_wrapper(cls, project: Project) -> dict[str, Any]: + try: + labels = await anyio.to_thread.run_sync(project.labels.list) + serialized_labels = [label.attributes for label in labels] + return {"__labels": serialized_labels} + except Exception as e: + logger.warning( + f"Failed to get labels for project={project.path_with_namespace}. error={e}" + ) + return {"__labels": []} + @classmethod async def async_project_language_wrapper(cls, project: Project) -> dict[str, Any]: try: @@ -562,6 +574,7 @@ async def async_project_language_wrapper(cls, project: Project) -> dict[str, Any async def enrich_project_with_extras(cls, project: Project) -> Project: tasks = [ cls.async_project_language_wrapper(project), + cls.async_project_labels_wrapper(project), ] tasks_extras = await asyncio.gather(*tasks) for task_extras in tasks_extras: diff --git a/integrations/gitlab/pyproject.toml b/integrations/gitlab/pyproject.toml index f7ea173be3..83dc642747 100644 --- a/integrations/gitlab/pyproject.toml +++ b/integrations/gitlab/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitlab" -version = "0.2.4" +version = "0.2.5" description = "Gitlab integration for Port using Port-Ocean Framework" authors = ["Yair Siman-Tov "] From 195849aa40a1796780f7298e7354974cf105029a Mon Sep 17 00:00:00 2001 From: Matan <51418643+matan84@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:50:57 +0200 Subject: [PATCH 18/22] [Integration] [fake integration] Added webhooks to fake integration (#1250) # Description What - added webhook route Why - load tests for realtime How - ## Type of change Please leave one option from the following and delete the rest: - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] New Integration (non-breaking change which adds a new integration) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Non-breaking change (fix of existing functionality that will not change current behavior) - [ ] Documentation (added/updated documentation)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --- integrations/fake-integration/CHANGELOG.md | 8 ++++++++ .../fake_org_data/fake_client.py | 6 ++++++ integrations/fake-integration/main.py | 17 ++++++++++++++++- integrations/fake-integration/pyproject.toml | 2 +- 4 files changed, 31 insertions(+), 2 deletions(-) diff --git a/integrations/fake-integration/CHANGELOG.md b/integrations/fake-integration/CHANGELOG.md index f99ac39112..b2fda262a2 100644 --- a/integrations/fake-integration/CHANGELOG.md +++ b/integrations/fake-integration/CHANGELOG.md @@ -5,6 +5,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.27-dev (2024-12-18) + + +### Improvements + +- Added webhook route to the fake integration + + ## 0.1.26-dev (2024-12-15) diff --git a/integrations/fake-integration/fake_org_data/fake_client.py b/integrations/fake-integration/fake_org_data/fake_client.py index 3df92c35e8..5f6fdb52c1 100644 --- a/integrations/fake-integration/fake_org_data/fake_client.py +++ b/integrations/fake-integration/fake_org_data/fake_client.py @@ -106,6 +106,12 @@ async def get_fake_persons() -> AsyncGenerator[List[Dict[Any, Any]], None]: yield current_result +async def get_random_person_from_batch() -> Dict[Any, Any]: + async for persons_batch in get_fake_persons(): + return persons_batch[0] + return {} + + async def get_departments() -> AsyncGenerator[List[Dict[Any, Any]], None]: single_department_run = ocean.integration_config.get( FakeIntegrationConfigKeys.SINGLE_PERF_RUN, False diff --git a/integrations/fake-integration/main.py b/integrations/fake-integration/main.py index 385f10203a..aa94d61a1b 100644 --- a/integrations/fake-integration/main.py +++ b/integrations/fake-integration/main.py @@ -1,7 +1,14 @@ +from typing import Any + +from fastapi import Request from port_ocean.context.ocean import ocean from loguru import logger -from fake_org_data.fake_client import get_fake_persons, get_departments +from fake_org_data.fake_client import ( + get_fake_persons, + get_departments, + get_random_person_from_batch, +) from port_ocean.core.ocean_types import ASYNC_GENERATOR_RESYNC_TYPE from fake_org_data.fake_router import initialize_fake_routes @@ -23,6 +30,14 @@ async def resync_persons(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: initialize_fake_routes() +@ocean.router.post("/webhook") +async def webhook_handler(request: Request) -> dict[str, Any]: + logger.info("Received a webhook!") + person = await get_random_person_from_batch() + await ocean.register_raw("fake-person", [person]) + return {"ok": True} + + @ocean.on_start() async def on_start() -> None: print("Starting fake integration!") diff --git a/integrations/fake-integration/pyproject.toml b/integrations/fake-integration/pyproject.toml index 1d9aa02652..3e3a143e40 100644 --- a/integrations/fake-integration/pyproject.toml +++ b/integrations/fake-integration/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fake-integration" -version = "0.1.26-dev" +version = "0.1.27-dev" description = "A useless fake integration that helps us test the Ocean Core" authors = ["Erik Zaadi "] From 6b44ba5a98ee764da238353a004e02f6f555b49c Mon Sep 17 00:00:00 2001 From: PagesCoffy Date: Wed, 18 Dec 2024 17:24:24 +0000 Subject: [PATCH 19/22] [Integration][Sentry] - Add Users and Teams (#1229) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Description What - Added sentry users and teams Why - For improved data model How - Added sentryUser and sentryTeam blueprint. And added a relation between issue and user ## Type of change Please leave one option from the following and delete the rest: - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] New Integration (non-breaking change which adds a new integration) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Non-breaking change (fix of existing functionality that will not change current behavior) - [ ] Documentation (added/updated documentation)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. Screenshot 2024-12-12 at 7 40 42 PM Screenshot 2024-12-12 at 7 41 03 PM ## API Documentation [Users](https://docs.sentry.io/api/organizations/list-an-organizations-members/) [Teams](https://docs.sentry.io/api/teams/list-an-organizations-teams/) [Team Members](https://docs.sentry.io/api/teams/list-a-teams-members/) --- .../sentry/.port/resources/blueprints.json | 114 +++++++++++++++++- .../.port/resources/port-app-config.yaml | 42 ++++++- integrations/sentry/.port/spec.yaml | 7 +- integrations/sentry/CHANGELOG.md | 9 ++ integrations/sentry/clients/sentry.py | 31 +++++ integrations/sentry/integration.py | 20 ++- integrations/sentry/main.py | 49 +++++++- integrations/sentry/pyproject.toml | 2 +- 8 files changed, 264 insertions(+), 10 deletions(-) diff --git a/integrations/sentry/.port/resources/blueprints.json b/integrations/sentry/.port/resources/blueprints.json index 165b2079ce..587780372a 100644 --- a/integrations/sentry/.port/resources/blueprints.json +++ b/integrations/sentry/.port/resources/blueprints.json @@ -1,4 +1,103 @@ [ + { + "identifier": "sentryUser", + "description": "This blueprint represents a Sentry user in our software catalog.", + "title": "Sentry User", + "icon": "Sentry", + "schema": { + "properties": { + "username": { + "type": "string", + "title": "Username" + }, + "isActive": { + "type": "boolean", + "title": "Is Active" + }, + "dateJoined": { + "type": "string", + "format": "date-time", + "title": "Date Joined" + }, + "lastLogin": { + "type": "string", + "format": "date-time", + "title": "Last Login" + }, + "orgRole": { + "icon": "DefaultProperty", + "title": "Organization Role", + "type": "string", + "enum": [ + "member", + "admin", + "owner", + "manager", + "biling" + ], + "enumColors": { + "member": "pink", + "admin": "green", + "owner": "green", + "manager": "yellow", + "biling": "lightGray" + } + }, + "inviteStatus": { + "type": "string", + "title": "Invite Status", + "icon": "DefaultProperty" + } + }, + "required": [] + }, + "mirrorProperties": {}, + "calculationProperties": {}, + "aggregationProperties": {}, + "relations": {} + }, + { + "identifier": "sentryTeam", + "description": "This blueprint represents an Sentry team in our software catalog", + "title": "Sentry Team", + "icon": "Sentry", + "schema": { + "properties": { + "dateCreated": { + "type": "string", + "title": "Date Created", + "format": "date-time" + }, + "memberCount": { + "type": "number", + "title": "Number of Members" + }, + "roles": { + "type": "string", + "title": "Roles" + }, + "projects": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Projects" + } + }, + "required": [] + }, + "mirrorProperties": {}, + "calculationProperties": {}, + "aggregationProperties": {}, + "relations": { + "members": { + "title": "Members", + "target": "sentryUser", + "required": false, + "many": true + } + } + }, { "identifier": "sentryProject", "title": "Sentry Project Environment", @@ -34,7 +133,14 @@ }, "mirrorProperties": {}, "calculationProperties": {}, - "relations": {} + "relations": { + "team": { + "title": "Team", + "target": "sentryTeam", + "required": false, + "many": false + } + } }, { "identifier": "sentryIssue", @@ -78,6 +184,12 @@ "target": "sentryProject", "required": false, "many": true + }, + "assignedTo": { + "title": "Assigned To", + "target": "sentryUser", + "required": false, + "many": false } } } diff --git a/integrations/sentry/.port/resources/port-app-config.yaml b/integrations/sentry/.port/resources/port-app-config.yaml index cf952ecc84..e19aaa377f 100644 --- a/integrations/sentry/.port/resources/port-app-config.yaml +++ b/integrations/sentry/.port/resources/port-app-config.yaml @@ -1,6 +1,39 @@ createMissingRelatedEntities: true deleteDependentEntities: true resources: + - kind: user + selector: + query: 'true' + port: + entity: + mappings: + identifier: .email + title: .user.name + blueprint: '"sentryUser"' + properties: + username: .user.username + isActive: .user.isActive + dateJoined: .user.dateJoined + lastLogin: .user.lastLogin + orgRole: .orgRole + inviteStatus: .inviteStatus + - kind: team + selector: + query: 'true' + includeMembers: true + port: + entity: + mappings: + identifier: .slug + title: .name + blueprint: '"sentryTeam"' + properties: + dateCreated: .dateCreated + memberCount: .memberCount + roles: .teamRole + projects: .projects | map (.slug) + relations: + members: if .__members != null then .__members | map(.user.email) | map(select(. != null)) else [] end - kind: project-tag selector: query: "true" @@ -16,7 +49,13 @@ resources: platform: .platform status: .status link: .organization.links.organizationUrl + "/projects/" + .name - + relations: + team: + combinator: '"and"' + rules: + - property: '"projects"' + operator: '"contains"' + value: .slug - kind: issue-tag selector: query: "true" @@ -33,3 +72,4 @@ resources: isUnhandled: .isUnhandled relations: projectEnvironment: '[(.project.slug as $slug | .__tags[] | "\($slug)-\(.name)")]' + assignedTo: .assignedTo.email diff --git a/integrations/sentry/.port/spec.yaml b/integrations/sentry/.port/spec.yaml index 1deaa10120..efbd5df45e 100644 --- a/integrations/sentry/.port/spec.yaml +++ b/integrations/sentry/.port/spec.yaml @@ -9,16 +9,19 @@ features: - kind: issue - kind: project-tag - kind: issue-tag + - kind: user + - kind: team configurations: - name: sentryHost required: true type: url description: "Sentry host URL" + default: "https://sentry.io" - name: sentryToken required: true - type: string - description: "Sentry token" sensitive: true + type: string + description: The Sentry API token used for authentication. To create a token, see the Sentry documentation - name: sentryOrganization required: true type: string diff --git a/integrations/sentry/CHANGELOG.md b/integrations/sentry/CHANGELOG.md index bce58fed58..505daf44db 100644 --- a/integrations/sentry/CHANGELOG.md +++ b/integrations/sentry/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.101 (2024-12-17) + + +### Improvements + +- Added support for Sentry users and teams and established a relationship between the two resources +- Updated issues blueprint to include an assignedTo relation + + ## 0.1.100 (2024-12-15) diff --git a/integrations/sentry/clients/sentry.py b/integrations/sentry/clients/sentry.py index e6914a31ec..367c606c34 100644 --- a/integrations/sentry/clients/sentry.py +++ b/integrations/sentry/clients/sentry.py @@ -242,3 +242,34 @@ async def get_projects_tags_from_projects( if project_tags_batch: project_tags.append(project_tags_batch) return flatten_list(project_tags) + + async def get_paginated_teams( + self, + ) -> AsyncGenerator[list[dict[str, Any]], None]: + async for teams in self._get_paginated_resource( + f"{self.api_url}/organizations/{self.organization}/teams/" + ): + yield teams + + async def get_paginated_users( + self, + ) -> AsyncGenerator[list[dict[str, Any]], None]: + async for users in self._get_paginated_resource( + f"{self.api_url}/organizations/{self.organization}/members/" + ): + yield users + + async def get_team_members(self, team_slug: str) -> list[dict[str, Any]]: + logger.info(f"Getting team members for team {team_slug}") + team_members_List = [] + async for team_members_batch in self._get_paginated_resource( + f"{self.api_url}/teams/{self.organization}/{team_slug}/members/" + ): + logger.info( + f"Received a batch of {len(team_members_batch)} members for team {team_slug}" + ) + team_members_List.extend(team_members_batch) + logger.info( + f"Received a total of {len(team_members_List)} members for team {team_slug}" + ) + return team_members_List diff --git a/integrations/sentry/integration.py b/integrations/sentry/integration.py index f1452f9579..ca2ffcf133 100644 --- a/integrations/sentry/integration.py +++ b/integrations/sentry/integration.py @@ -1,4 +1,6 @@ from pydantic.fields import Field +from typing import Literal + from port_ocean.core.handlers.port_app_config.api import APIPortAppConfig from port_ocean.core.handlers.port_app_config.models import ( @@ -17,12 +19,28 @@ class SentrySelector(Selector): ) +class TeamSelector(Selector): + include_members: bool = Field( + alias="includeMembers", + default=False, + description="Whether to include the members of the team, defaults to false", + ) + + class SentryResourceConfig(ResourceConfig): selector: SentrySelector + kind: Literal["project", "issue", "project-tag", "issue-tag"] + + +class TeamResourceConfig(ResourceConfig): + kind: Literal["team"] + selector: TeamSelector class SentryPortAppConfig(PortAppConfig): - resources: list[SentryResourceConfig] = Field(default_factory=list) # type: ignore + resources: list[SentryResourceConfig | TeamResourceConfig | ResourceConfig] = Field( + default_factory=list + ) class SentryIntegration(BaseIntegration): diff --git a/integrations/sentry/main.py b/integrations/sentry/main.py index 76e45cabdc..e72ac770ce 100644 --- a/integrations/sentry/main.py +++ b/integrations/sentry/main.py @@ -1,19 +1,24 @@ from enum import StrEnum +from typing import Any, cast +import asyncio +from loguru import logger from port_ocean.context.ocean import ocean -from clients.sentry import SentryClient +from port_ocean.context.event import event from port_ocean.core.ocean_types import ASYNC_GENERATOR_RESYNC_TYPE - -from loguru import logger - from port_ocean.utils.async_iterators import stream_async_iterators_tasks +from integration import TeamResourceConfig +from clients.sentry import SentryClient + class ObjectKind(StrEnum): PROJECT = "project" ISSUE = "issue" PROJECT_TAG = "project-tag" ISSUE_TAG = "issue-tag" + USER = "user" + TEAM = "team" def init_client() -> SentryClient: @@ -25,6 +30,42 @@ def init_client() -> SentryClient: return sentry_client +async def enrich_team_with_members( + sentry_client: SentryClient, + team_batch: list[dict[str, Any]], +) -> list[dict[str, Any]]: + team_tasks = [sentry_client.get_team_members(team["slug"]) for team in team_batch] + results = await asyncio.gather(*team_tasks) + + for team, members in zip(team_batch, results): + team["__members"] = members + + return team_batch + + +@ocean.on_resync(ObjectKind.USER) +async def on_resync_user(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: + sentry_client = init_client() + async for users in sentry_client.get_paginated_users(): + logger.info(f"Received {len(users)} users") + yield users + + +@ocean.on_resync(ObjectKind.TEAM) +async def on_resync_team(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: + sentry_client = init_client() + selector = cast(TeamResourceConfig, event.resource_config).selector + async for team_batch in sentry_client.get_paginated_teams(): + logger.info(f"Received {len(team_batch)} teams") + if selector.include_members: + team_with_members = await enrich_team_with_members( + sentry_client, team_batch + ) + yield team_with_members + else: + yield team_batch + + @ocean.on_resync(ObjectKind.PROJECT) async def on_resync_project(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: sentry_client = init_client() diff --git a/integrations/sentry/pyproject.toml b/integrations/sentry/pyproject.toml index ef84bb0f35..fdb4ad404c 100644 --- a/integrations/sentry/pyproject.toml +++ b/integrations/sentry/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sentry" -version = "0.1.100" +version = "0.1.101" description = "Sentry Integration" authors = ["Dvir Segev ","Matan Geva "] From 5f6a8917a1439bce18af9aa41bf10960f31eb47f Mon Sep 17 00:00:00 2001 From: PagesCoffy Date: Fri, 20 Dec 2024 09:03:20 +0000 Subject: [PATCH 20/22] [Integration][GitLab] Make Project Labels Optional (#1257) # Description What - Added mechanism to make the enrichment of project labels optional Why - Not making it optional could leave to potential rate limit How - Added an `includeLabels` param to the project kind ## Type of change Please leave one option from the following and delete the rest: - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] New Integration (non-breaking change which adds a new integration) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Non-breaking change (fix of existing functionality that will not change current behavior) - [ ] Documentation (added/updated documentation)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --- .../gitlab/.port/resources/blueprints.json | 7 +++++++ .../.port/resources/port-app-config.yaml | 2 ++ integrations/gitlab/CHANGELOG.md | 8 ++++++++ .../gitlab_integration/events/hooks/push.py | 19 +++++++++++++++++-- .../gitlab_integration/git_integration.py | 16 ++++++++++++++-- .../gitlab_integration/gitlab_service.py | 15 ++++++++++----- .../gitlab/gitlab_integration/ocean.py | 13 +++++++++---- integrations/gitlab/pyproject.toml | 2 +- 8 files changed, 68 insertions(+), 14 deletions(-) diff --git a/integrations/gitlab/.port/resources/blueprints.json b/integrations/gitlab/.port/resources/blueprints.json index b51ae9d793..1db263a330 100644 --- a/integrations/gitlab/.port/resources/blueprints.json +++ b/integrations/gitlab/.port/resources/blueprints.json @@ -45,6 +45,13 @@ "Other": "yellow" }, "icon": "DefaultProperty" + }, + "labels": { + "items": { + "type": "object" + }, + "type": "array", + "title": "Labels" } }, "required": [] diff --git a/integrations/gitlab/.port/resources/port-app-config.yaml b/integrations/gitlab/.port/resources/port-app-config.yaml index d1c2882763..c2b5817b83 100644 --- a/integrations/gitlab/.port/resources/port-app-config.yaml +++ b/integrations/gitlab/.port/resources/port-app-config.yaml @@ -4,6 +4,7 @@ resources: - kind: project selector: query: "true" + includeLabels: "true" port: entity: mappings: @@ -15,3 +16,4 @@ resources: readme: file://README.md description: .description language: .__languages | to_entries | max_by(.value) | .key + labels: .__labels diff --git a/integrations/gitlab/CHANGELOG.md b/integrations/gitlab/CHANGELOG.md index ec61ef0747..e022334d3c 100644 --- a/integrations/gitlab/CHANGELOG.md +++ b/integrations/gitlab/CHANGELOG.md @@ -7,6 +7,14 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +0.2.6 (2024-12-19) +================== + +### Improvements + +- Added mechanism to make the enrichment of project labels optional + + 0.2.5 (2024-12-16) ================== diff --git a/integrations/gitlab/gitlab_integration/events/hooks/push.py b/integrations/gitlab/gitlab_integration/events/hooks/push.py index 8cbc804415..99e04db4c6 100644 --- a/integrations/gitlab/gitlab_integration/events/hooks/push.py +++ b/integrations/gitlab/gitlab_integration/events/hooks/push.py @@ -7,7 +7,10 @@ from gitlab_integration.core.utils import generate_ref, does_pattern_apply from gitlab_integration.events.hooks.base import ProjectHandler -from gitlab_integration.git_integration import GitlabPortAppConfig +from gitlab_integration.git_integration import ( + GitlabPortAppConfig, + GitLabProjectResourceConfig, +) from gitlab_integration.utils import ObjectKind from port_ocean.clients.port.types import UserAgentType @@ -100,8 +103,9 @@ async def _on_hook(self, body: dict[str, Any], gitlab_project: Project) -> None: logger.info( f"Updating project information after push hook for project {gitlab_project.path_with_namespace}" ) + include_labels = self.should_enrich_project_with_labels(config) enriched_project = await self.gitlab_service.enrich_project_with_extras( - gitlab_project + gitlab_project, include_labels ) await ocean.register_raw(ObjectKind.PROJECT, [enriched_project.asdict()]) await self._register_object_with_members( @@ -188,3 +192,14 @@ async def _process_files( logger.debug( f"Skipped {len(skipped_files)} files as they didn't match {spec_path} Skipped files: {skipped_files}" ) + + def should_enrich_project_with_labels(self, config: GitlabPortAppConfig) -> bool: + """Determine if a project should be enriched with labels based on config.""" + return any( + resource_config.selector.include_labels + for resource_config in config.resources + if ( + resource_config.kind == ObjectKind.PROJECT + and isinstance(resource_config, GitLabProjectResourceConfig) + ) + ) diff --git a/integrations/gitlab/gitlab_integration/git_integration.py b/integrations/gitlab/gitlab_integration/git_integration.py index 7c8faca24f..0195af7af4 100644 --- a/integrations/gitlab/gitlab_integration/git_integration.py +++ b/integrations/gitlab/gitlab_integration/git_integration.py @@ -122,7 +122,6 @@ class GitlabResourceConfig(ResourceConfig): class GitlabMemberSelector(Selector): - include_inherited_members: bool = Field( alias="includeInheritedMembers", default=False, @@ -147,6 +146,14 @@ class FilesSelector(BaseModel): ) +class GitLabProjectSelector(Selector): + include_labels: bool = Field( + alias="includeLabels", + description="Whether to enrich projects with labels", + default=False, + ) + + class GitLabFilesSelector(Selector): files: FilesSelector @@ -156,6 +163,11 @@ class GitLabFilesResourceConfig(ResourceConfig): kind: Literal["file"] +class GitLabProjectResourceConfig(ResourceConfig): + selector: GitLabProjectSelector + kind: Literal["project"] + + class GitlabPortAppConfig(PortAppConfig): spec_path: str | List[str] = Field(alias="specPath", default="**/port.yml") branch: str | None @@ -165,7 +177,7 @@ class GitlabPortAppConfig(PortAppConfig): project_visibility_filter: str | None = Field( alias="projectVisibilityFilter", default=None ) - resources: list[GitlabObjectWithMembersResourceConfig | GitLabFilesResourceConfig | GitlabResourceConfig] = Field(default_factory=list) # type: ignore + resources: list[GitlabObjectWithMembersResourceConfig | GitLabFilesResourceConfig | GitLabProjectResourceConfig | GitlabResourceConfig] = Field(default_factory=list) # type: ignore def _get_project_from_cache(project_id: int) -> Project | None: diff --git a/integrations/gitlab/gitlab_integration/gitlab_service.py b/integrations/gitlab/gitlab_integration/gitlab_service.py index b2fa6519de..0e21033806 100644 --- a/integrations/gitlab/gitlab_integration/gitlab_service.py +++ b/integrations/gitlab/gitlab_integration/gitlab_service.py @@ -571,11 +571,16 @@ async def async_project_language_wrapper(cls, project: Project) -> dict[str, Any return {"__languages": {}} @classmethod - async def enrich_project_with_extras(cls, project: Project) -> Project: - tasks = [ - cls.async_project_language_wrapper(project), - cls.async_project_labels_wrapper(project), - ] + async def enrich_project_with_extras( + cls, project: Project, include_labels: bool = False + ) -> Project: + if include_labels: + tasks = [ + cls.async_project_language_wrapper(project), + cls.async_project_labels_wrapper(project), + ] + else: + tasks = [cls.async_project_language_wrapper(project)] tasks_extras = await asyncio.gather(*tasks) for task_extras in tasks_extras: for key, value in task_extras.items(): diff --git a/integrations/gitlab/gitlab_integration/ocean.py b/integrations/gitlab/gitlab_integration/ocean.py index c6b8766920..5340faf1ac 100644 --- a/integrations/gitlab/gitlab_integration/ocean.py +++ b/integrations/gitlab/gitlab_integration/ocean.py @@ -16,6 +16,7 @@ GitlabResourceConfig, GitLabFilesResourceConfig, GitlabObjectWithMembersResourceConfig, + GitLabProjectResourceConfig, ) from gitlab_integration.utils import ObjectKind, get_cached_all_services from port_ocean.context.event import event @@ -132,7 +133,6 @@ async def resync_groups(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: @ocean.on_resync(ObjectKind.GROUPWITHMEMBERS) async def resync_groups_with_members(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: - for service in get_cached_all_services(): group_with_members_resource_config: GitlabObjectWithMembersResourceConfig = ( typing.cast(GitlabObjectWithMembersResourceConfig, event.resource_config) @@ -164,6 +164,9 @@ async def resync_groups_with_members(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: @ocean.on_resync(ObjectKind.PROJECT) async def resync_projects(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: + project_selector = typing.cast( + GitLabProjectResourceConfig, event.resource_config + ).selector for service in get_cached_all_services(): masked_token = len(str(service.gitlab_client.private_token)[:-4]) * "*" logger.info(f"fetching projects for token {masked_token}") @@ -182,7 +185,11 @@ async def resync_projects(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: ) tasks = [] for project in projects_batch: - tasks.append(service.enrich_project_with_extras(project)) + tasks.append( + service.enrich_project_with_extras( + project, project_selector.include_labels + ) + ) enriched_projects = await asyncio.gather(*tasks) logger.info( f"Finished Processing extras for {projects_processed_in_full_batch}/{len(projects)} projects in batch" @@ -194,9 +201,7 @@ async def resync_projects(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: @ocean.on_resync(ObjectKind.PROJECTWITHMEMBERS) async def resync_project_with_members(kind: str) -> ASYNC_GENERATOR_RESYNC_TYPE: - for service in get_cached_all_services(): - project_with_members_resource_config: GitlabObjectWithMembersResourceConfig = ( typing.cast(GitlabObjectWithMembersResourceConfig, event.resource_config) ) diff --git a/integrations/gitlab/pyproject.toml b/integrations/gitlab/pyproject.toml index 83dc642747..f24540325e 100644 --- a/integrations/gitlab/pyproject.toml +++ b/integrations/gitlab/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitlab" -version = "0.2.5" +version = "0.2.6" description = "Gitlab integration for Port using Port-Ocean Framework" authors = ["Yair Siman-Tov "] From 0cd47428eefc652cdacf47ac0649712551c68435 Mon Sep 17 00:00:00 2001 From: Yaeli Gimelshtein Date: Sun, 22 Dec 2024 02:56:35 -0800 Subject: [PATCH 21/22] [Core] Extend ocean new cli command (#1255) # Description fixed the flow of the ocean new command since it was not working properly by getting all data needed from the user and filling it out for him, and added debug file ## Type of change Please leave one option from the following and delete the rest: - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] Documentation (added/updated documentation)

All tests should be run against the port production environment(using a testing org).

### Core testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync finishes successfully - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Scheduled resync able to abort existing resync and start a new one - [ ] Tested with at least 2 integrations from scratch - [ ] Tested with Kafka and Polling event listeners - [ ] Tested deletion of entities that don't pass the selector ### Integration testing checklist - [ ] Integration able to create all default resources from scratch - [ ] Resync able to create entities - [ ] Resync able to update entities - [ ] Resync able to detect and delete entities - [ ] Resync finishes successfully - [ ] If new resource kind is added or updated in the integration, add example raw data, mapping and expected result to the `examples` folder in the integration directory. - [ ] If resource kind is updated, run the integration with the example data and check if the expected result is achieved - [ ] If new resource kind is added or updated, validate that live-events for that resource are working as expected - [ ] Docs PR link [here](#) ### Preflight checklist - [ ] Handled rate limiting - [ ] Handled pagination - [ ] Implemented the code in async - [ ] Support Multi account ## Screenshots Include screenshots from your environment showing how the resources of the integration will look. ## API Documentation Provide links to the API documentation used for this integration. --------- Co-authored-by: Matan <51418643+matan84@users.noreply.github.com> --- .vscode/launch.json | 11 +++++++++ CHANGELOG.md | 6 +++++ .../docs/getting-started/getting-started.md | 23 ++++++++++++------- port_ocean/cli/commands/new.py | 11 ++++----- port_ocean/cli/cookiecutter/cookiecutter.json | 3 +++ .../.env.example | 8 +++++-- port_ocean/debug_cli.py | 5 ++++ pyproject.toml | 2 +- 8 files changed, 51 insertions(+), 18 deletions(-) create mode 100644 port_ocean/debug_cli.py diff --git a/.vscode/launch.json b/.vscode/launch.json index 9c29bec36b..ee22cd0a3d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -98,6 +98,17 @@ "python": "${workspaceFolder}/integrations/backstage/.venv/bin/python", "request": "launch", "type": "debugpy" + }, + { + "console": "integratedTerminal", + "cwd": "${workspaceFolder}/port_ocean/cli", + "justMyCode": true, + "name": "Run ocean new command", + "program": "${workspaceFolder}/port_ocean/debug_cli.py", + "python": "${workspaceFolder}/.venv/bin/python", + "request": "launch", + "type": "debugpy", + "args": ["new"] } ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index 292aad97b6..3d745fb814 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.15.3 (2024-12-22) + +### Bug Fixes + +- Extended `Ocean new` cli command to fill out more information for the user and also fixed wrong output + ## 0.15.2 (2024-12-15) diff --git a/docs/framework-guides/docs/getting-started/getting-started.md b/docs/framework-guides/docs/getting-started/getting-started.md index e8d03355f0..d84960274b 100644 --- a/docs/framework-guides/docs/getting-started/getting-started.md +++ b/docs/framework-guides/docs/getting-started/getting-started.md @@ -44,18 +44,25 @@ $ straw@hat.com release_date [2023-08-06]: $ 2023-08-06 +is_private_integration [y/n] (y): +$ n -🌊 Ahoy, Captain! Your project is ready to set sail into the vast ocean of possibilities! -Here are your next steps: +port_client_id (you can find it using: https://docs.getport.io/build-your-software-catalog/custom-integration/api/#find-your-port-credentials): +$ + +port_client_secret (you can find it using: https://docs.getport.io/build-your-software-catalog/custom-integration/api/#find-your-port-credentials): +$ -⚓️ Install necessary packages: Run make install to install all required packages for your project. -▶️ cd ./my_integration && make install && . .venv/bin/activate +is_us_region [y/n] (n): +$ y -⚓️ Set sail with Ocean: Run ocean sail to run the project using Ocean. -▶️ ocean sail ./my_integration +🌊 Ahoy, Captain! Your project is ready to set sail into the vast ocean of possibilities! +Here are your next steps: -⚓️ Smooth sailing with Make: Alternatively, you can run make run to launch your project using Make. -▶️ make run ./my_integration +⚓️ Install necessary packages: Run cd ./my_integration && make install && . .venv/bin/activate to install all required packages for your project. +⚓️ Copy example env file: Run cp .env.example .env and update your integration's configuration in the .env file. +⚓️ Set sail with Ocean: Run ocean sail to run the project using Ocean. +⚓️ Smooth sailing with Make: Alternatively, you can run make run ./my_integration to launch your project using Make. ```
diff --git a/port_ocean/cli/commands/new.py b/port_ocean/cli/commands/new.py index c8422a714f..0c39bdef87 100644 --- a/port_ocean/cli/commands/new.py +++ b/port_ocean/cli/commands/new.py @@ -77,18 +77,15 @@ def new(path: str, is_private_integration: bool) -> None: ) console.print("Here are your next steps:\n", style="bold") console.print( - "⚓️ Install necessary packages: Run [bold][blue]make install[/blue][/bold] to install all required packages for your project.\n" - f"▶️ [bold][blue]cd {path}/{name} && make install && . .venv/bin/activate[/blue][/bold]\n" + f"⚓️ Install necessary packages: Run [bold][blue]cd {path}/{name} && make install && . .venv/bin/activate[/blue][/bold] to install all required packages for your project." ) console.print( - f"⚓️ Copy example env file: Run [bold][blue]cp {path}/{name}.env.example {path}/{name}/.env [/blue][/bold] and set your port credentials in the created file.\n" + "⚓️ Copy example env file: Run [bold][blue]cp .env.example .env [/blue][/bold] and update your integration's configuration in the .env file." ) console.print( - "⚓️ Set sail with [blue]Ocean[/blue]: Run [bold][blue]ocean sail[/blue] [/bold] to run the project using Ocean.\n" - f"▶️ [bold][blue]ocean sail {path}/{name}[/blue][/bold] \n" + "⚓️ Set sail with [blue]Ocean[/blue]: Run [bold][blue]ocean sail[/blue][/bold] to run the project using Ocean." ) if not final_private_integration: console.print( - "⚓️ Smooth sailing with [blue]Make[/blue]: Alternatively, you can run [bold][blue]make run[/blue][/bold] to launch your project using Make. \n" - f"▶️ [bold][blue]make run {path}/{name}[/blue][/bold]" + f"⚓️ Smooth sailing with [blue]Make[/blue]: Alternatively, you can run [bold][blue]make run {path}/{name}[/blue][/bold] to launch your project using Make." ) diff --git a/port_ocean/cli/cookiecutter/cookiecutter.json b/port_ocean/cli/cookiecutter/cookiecutter.json index 7d15761a22..0cfd649ad9 100644 --- a/port_ocean/cli/cookiecutter/cookiecutter.json +++ b/port_ocean/cli/cookiecutter/cookiecutter.json @@ -6,6 +6,9 @@ "email": "Your address email ", "release_date": "{% now 'local' %}", "is_private_integration": true, + "port_client_id": "you can find it using: https://docs.getport.io/build-your-software-catalog/custom-integration/api/#find-your-port-credentials", + "port_client_secret": "you can find it using: https://docs.getport.io/build-your-software-catalog/custom-integration/api/#find-your-port-credentials", + "is_us_region": false, "_extensions": [ "jinja2_time.TimeExtension", "extensions.VersionExtension" diff --git a/port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.env.example b/port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.env.example index 263a38a9c0..37caa46948 100644 --- a/port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.env.example +++ b/port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/.env.example @@ -1,2 +1,6 @@ -OCEAN__PORT__CLIENT_ID="" -OCEAN__PORT__CLIENT_SECRET="" +OCEAN__PORT__CLIENT_ID={{ cookiecutter.port_client_id }} +OCEAN__PORT__CLIENT_SECRET={{ cookiecutter.port_client_secret }} +OCEAN__INTEGRATION__IDENTIFIER={{ cookiecutter.integration_slug }} +OCEAN__PORT__BASE_URL={% if cookiecutter.is_us_region %}https://api.us.getport.io{% else %}https://api.getport.io{% endif %} +OCEAN__EVENT_LISTENER__TYPE=POLLING +OCEAN__INITIALIZE_PORT_RESOURCES=true diff --git a/port_ocean/debug_cli.py b/port_ocean/debug_cli.py new file mode 100644 index 0000000000..1f5a7c3072 --- /dev/null +++ b/port_ocean/debug_cli.py @@ -0,0 +1,5 @@ +from port_ocean.cli.commands.main import cli_start + + +if __name__ == "__main__": + cli_start() diff --git a/pyproject.toml b/pyproject.toml index e94fed2990..2a57a18ccc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io" From 40d2ff447e5641572c6cb7e8a2a6e0544b89f875 Mon Sep 17 00:00:00 2001 From: Port Bot <110599342+portmachineuser@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:23:59 +0200 Subject: [PATCH 22/22] [Integration] Apply Ocean version 0.15.3 to all integrations (#1259) This PR was automatically created by a GitHub Action. ## What does this PR do? Apply Ocean version 0.15.3 to all integrations ## How should this be manually tested? ./scripts/bump-all.sh ^0.15.3 --------- Co-authored-by: GitHub Action --- integrations/argocd/CHANGELOG.md | 8 ++++++++ integrations/argocd/poetry.lock | 8 ++++---- integrations/argocd/pyproject.toml | 4 ++-- integrations/aws/CHANGELOG.md | 8 ++++++++ integrations/aws/poetry.lock | 10 +++++----- integrations/aws/pyproject.toml | 4 ++-- integrations/azure-devops/CHANGELOG.md | 8 ++++++++ integrations/azure-devops/poetry.lock | 8 ++++---- integrations/azure-devops/pyproject.toml | 4 ++-- integrations/azure/CHANGELOG.md | 7 +++++++ integrations/azure/poetry.lock | 8 ++++---- integrations/azure/pyproject.toml | 4 ++-- integrations/backstage/CHANGELOG.md | 8 ++++++++ integrations/backstage/poetry.lock | 8 ++++---- integrations/backstage/pyproject.toml | 4 ++-- integrations/datadog/CHANGELOG.md | 8 ++++++++ integrations/datadog/poetry.lock | 8 ++++---- integrations/datadog/pyproject.toml | 4 ++-- integrations/dynatrace/CHANGELOG.md | 8 ++++++++ integrations/dynatrace/poetry.lock | 8 ++++---- integrations/dynatrace/pyproject.toml | 4 ++-- integrations/fake-integration/CHANGELOG.md | 8 ++++++++ integrations/fake-integration/poetry.lock | 8 ++++---- integrations/fake-integration/pyproject.toml | 4 ++-- integrations/firehydrant/CHANGELOG.md | 8 ++++++++ integrations/firehydrant/poetry.lock | 8 ++++---- integrations/firehydrant/pyproject.toml | 4 ++-- integrations/gcp/CHANGELOG.md | 8 ++++++++ integrations/gcp/poetry.lock | 8 ++++---- integrations/gcp/pyproject.toml | 4 ++-- integrations/gitlab/CHANGELOG.md | 8 ++++++++ integrations/gitlab/poetry.lock | 8 ++++---- integrations/gitlab/pyproject.toml | 4 ++-- integrations/jenkins/CHANGELOG.md | 8 ++++++++ integrations/jenkins/poetry.lock | 8 ++++---- integrations/jenkins/pyproject.toml | 4 ++-- integrations/jira/CHANGELOG.md | 8 ++++++++ integrations/jira/poetry.lock | 8 ++++---- integrations/jira/pyproject.toml | 4 ++-- integrations/kafka/CHANGELOG.md | 8 ++++++++ integrations/kafka/poetry.lock | 8 ++++---- integrations/kafka/pyproject.toml | 4 ++-- integrations/kubecost/CHANGELOG.md | 8 ++++++++ integrations/kubecost/poetry.lock | 8 ++++---- integrations/kubecost/pyproject.toml | 4 ++-- integrations/launchdarkly/CHANGELOG.md | 8 ++++++++ integrations/launchdarkly/poetry.lock | 8 ++++---- integrations/launchdarkly/pyproject.toml | 4 ++-- integrations/linear/CHANGELOG.md | 8 ++++++++ integrations/linear/poetry.lock | 8 ++++---- integrations/linear/pyproject.toml | 4 ++-- integrations/newrelic/CHANGELOG.md | 8 ++++++++ integrations/newrelic/poetry.lock | 8 ++++---- integrations/newrelic/pyproject.toml | 4 ++-- integrations/octopus/CHANGELOG.md | 7 +++++++ integrations/octopus/poetry.lock | 8 ++++---- integrations/octopus/pyproject.toml | 4 ++-- integrations/opencost/CHANGELOG.md | 8 ++++++++ integrations/opencost/poetry.lock | 8 ++++---- integrations/opencost/pyproject.toml | 4 ++-- integrations/opsgenie/CHANGELOG.md | 8 ++++++++ integrations/opsgenie/poetry.lock | 8 ++++---- integrations/opsgenie/pyproject.toml | 4 ++-- integrations/pagerduty/CHANGELOG.md | 8 ++++++++ integrations/pagerduty/poetry.lock | 8 ++++---- integrations/pagerduty/pyproject.toml | 4 ++-- integrations/sentry/CHANGELOG.md | 8 ++++++++ integrations/sentry/poetry.lock | 8 ++++---- integrations/sentry/pyproject.toml | 4 ++-- integrations/servicenow/CHANGELOG.md | 8 ++++++++ integrations/servicenow/poetry.lock | 8 ++++---- integrations/servicenow/pyproject.toml | 4 ++-- integrations/snyk/CHANGELOG.md | 8 ++++++++ integrations/snyk/poetry.lock | 8 ++++---- integrations/snyk/pyproject.toml | 4 ++-- integrations/sonarqube/CHANGELOG.md | 8 ++++++++ integrations/sonarqube/poetry.lock | 8 ++++---- integrations/sonarqube/pyproject.toml | 4 ++-- integrations/statuspage/CHANGELOG.md | 8 ++++++++ integrations/statuspage/poetry.lock | 8 ++++---- integrations/statuspage/pyproject.toml | 4 ++-- integrations/terraform-cloud/CHANGELOG.md | 8 ++++++++ integrations/terraform-cloud/poetry.lock | 8 ++++---- integrations/terraform-cloud/pyproject.toml | 4 ++-- integrations/wiz/CHANGELOG.md | 8 ++++++++ integrations/wiz/poetry.lock | 8 ++++---- integrations/wiz/pyproject.toml | 4 ++-- 87 files changed, 405 insertions(+), 175 deletions(-) diff --git a/integrations/argocd/CHANGELOG.md b/integrations/argocd/CHANGELOG.md index 62990a11f5..4809aef9f0 100644 --- a/integrations/argocd/CHANGELOG.md +++ b/integrations/argocd/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.112 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.111 (2024-12-15) diff --git a/integrations/argocd/poetry.lock b/integrations/argocd/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/argocd/poetry.lock +++ b/integrations/argocd/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/argocd/pyproject.toml b/integrations/argocd/pyproject.toml index 77adde8632..452da1968a 100644 --- a/integrations/argocd/pyproject.toml +++ b/integrations/argocd/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "argocd" -version = "0.1.111" +version = "0.1.112" description = "Argo CD integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/aws/CHANGELOG.md b/integrations/aws/CHANGELOG.md index 76fb97e13a..3ea09d8d15 100644 --- a/integrations/aws/CHANGELOG.md +++ b/integrations/aws/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.72 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.2.71 (2024-12-16) diff --git a/integrations/aws/poetry.lock b/integrations/aws/poetry.lock index 869368926f..7a55fa25a5 100644 --- a/integrations/aws/poetry.lock +++ b/integrations/aws/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.4 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.5 and should not be changed by hand. [[package]] name = "aioboto3" @@ -2270,13 +2270,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -4032,4 +4032,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "d3983977ccacdaa4762ebe9b9da2eb087fcdd810add559a091a7239a63da10db" +content-hash = "9564ff1e370093252584a35cb32cb2e1ceab5fa61c94de34cc382735787cd423" diff --git a/integrations/aws/pyproject.toml b/integrations/aws/pyproject.toml index 78752fdf2e..843cbb6cbe 100644 --- a/integrations/aws/pyproject.toml +++ b/integrations/aws/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "aws" -version = "0.2.71" +version = "0.2.72" description = "This integration will map all your resources in all the available accounts to your Port entities" authors = ["Shalev Avhar ", "Erik Zaadi "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} python-dotenv = "^1.0.1" aioboto3 = "^12.4.0" boto3-stubs = {version = "1.34.76", extras = ["acm", "apigateway", "appconfig", "athena", "cloudcontrol", "cloudformation", "cloudwatch", "dynamodb", "ec2", "ec2-instance-connect", "ecr", "ecs", "elasticache", "elb", "elbv2", "events", "iam", "lambda", "logs", "organizations", "rds", "route53", "s3", "sagemaker", "secretsmanager", "sns", "sqs", "ssm", "sts"]} diff --git a/integrations/azure-devops/CHANGELOG.md b/integrations/azure-devops/CHANGELOG.md index 2dc9c8fca9..9988fd5ef9 100644 --- a/integrations/azure-devops/CHANGELOG.md +++ b/integrations/azure-devops/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.96 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.95 (2024-12-15) diff --git a/integrations/azure-devops/poetry.lock b/integrations/azure-devops/poetry.lock index 4667cd3566..b3c840e253 100644 --- a/integrations/azure-devops/poetry.lock +++ b/integrations/azure-devops/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "67a52aa0c6149c8fc46acdfc1b867094ad9c0338ed14f0f17a17a5180b5aa027" +content-hash = "a697839b49a83969d3d9918f4740e37cb9785df4a2288cba2eaae8d6c3879859" diff --git a/integrations/azure-devops/pyproject.toml b/integrations/azure-devops/pyproject.toml index 63bbe4dbe2..d2e3d36a0b 100644 --- a/integrations/azure-devops/pyproject.toml +++ b/integrations/azure-devops/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "azure-devops" -version = "0.1.95" +version = "0.1.96" description = "An Azure Devops Ocean integration" authors = ["Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/azure/CHANGELOG.md b/integrations/azure/CHANGELOG.md index f35a2cf49a..30a3d71f52 100644 --- a/integrations/azure/CHANGELOG.md +++ b/integrations/azure/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +0.1.116 (2024-12-22) + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.115 (2024-12-16) diff --git a/integrations/azure/poetry.lock b/integrations/azure/poetry.lock index 81cdfc2e25..77846634e0 100644 --- a/integrations/azure/poetry.lock +++ b/integrations/azure/poetry.lock @@ -1589,13 +1589,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -2495,4 +2495,4 @@ propcache = ">=0.2.0" [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "83c46a0c2d727d2145ab03bd7cfcd8a636f67fdf5e90c0ce2db669ead87102b3" +content-hash = "07daebccdfaa573aaddcf20e39c413f9c6af532ce7b4f602ec9639f4d12fa91d" diff --git a/integrations/azure/pyproject.toml b/integrations/azure/pyproject.toml index 49607da1a7..8341d737f0 100644 --- a/integrations/azure/pyproject.toml +++ b/integrations/azure/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "azure" -version = "0.1.115" +version = "0.1.116" description = "Azure integration" authors = ["Tom Tankilevitch "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} # due to patching the azure-mgmt-resource package, we need to use a specific version azure-mgmt-resource = "23.2.0" azure-identity = "^1.13.0" diff --git a/integrations/backstage/CHANGELOG.md b/integrations/backstage/CHANGELOG.md index 7eacd84170..7ab4e18cf1 100644 --- a/integrations/backstage/CHANGELOG.md +++ b/integrations/backstage/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.19-beta (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.18-beta (2024-12-15) diff --git a/integrations/backstage/poetry.lock b/integrations/backstage/poetry.lock index af26a81923..3fdad5ddb0 100644 --- a/integrations/backstage/poetry.lock +++ b/integrations/backstage/poetry.lock @@ -913,13 +913,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1521,4 +1521,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "81bf3b73f1e836342dfe00e68f9f9fb7aa2e5c23d5baec2967b6e3d9a7f4228a" +content-hash = "86830a2fe87db72201938739e1d7b7e09faf386eeebb03f003e75ab9e20bdc13" diff --git a/integrations/backstage/pyproject.toml b/integrations/backstage/pyproject.toml index 630035b7cb..70e2b99a82 100644 --- a/integrations/backstage/pyproject.toml +++ b/integrations/backstage/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "backstage" -version = "0.1.18-beta" +version = "0.1.19-beta" description = "Importing resources from Backstage IDP" authors = ["Roi Talpaz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/datadog/CHANGELOG.md b/integrations/datadog/CHANGELOG.md index ef8e9be99c..1e7cd63cbd 100644 --- a/integrations/datadog/CHANGELOG.md +++ b/integrations/datadog/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.67 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.66 (2024-12-15) diff --git a/integrations/datadog/poetry.lock b/integrations/datadog/poetry.lock index 7bf2e53e39..dc8b9ae175 100644 --- a/integrations/datadog/poetry.lock +++ b/integrations/datadog/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "1b01157efc3341d4a43629ca4c24ff43b605c65e723bcd01d35e6e94c96b4d62" +content-hash = "b3be124a4b23e73d5e24fe5b5738813174e30a415524ff8794849c15b2f5a69f" diff --git a/integrations/datadog/pyproject.toml b/integrations/datadog/pyproject.toml index dd668e7d4f..031412310d 100644 --- a/integrations/datadog/pyproject.toml +++ b/integrations/datadog/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "datadog" -version = "0.1.66" +version = "0.1.67" description = "Datadog Ocean Integration" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} loguru = "^0.7.2" [tool.poetry.group.dev.dependencies] diff --git a/integrations/dynatrace/CHANGELOG.md b/integrations/dynatrace/CHANGELOG.md index c81cd9dcc4..cf4cdd2cb9 100644 --- a/integrations/dynatrace/CHANGELOG.md +++ b/integrations/dynatrace/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.77 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.76 (2024-12-15) diff --git a/integrations/dynatrace/poetry.lock b/integrations/dynatrace/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/dynatrace/poetry.lock +++ b/integrations/dynatrace/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/dynatrace/pyproject.toml b/integrations/dynatrace/pyproject.toml index 0e8d30d795..257b740211 100644 --- a/integrations/dynatrace/pyproject.toml +++ b/integrations/dynatrace/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "dynatrace" -version = "0.1.76" +version = "0.1.77" description = "An integration used to import Dynatrace resources into Port" authors = ["Ayodeji Adeoti <>"] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/fake-integration/CHANGELOG.md b/integrations/fake-integration/CHANGELOG.md index b2fda262a2..893f920802 100644 --- a/integrations/fake-integration/CHANGELOG.md +++ b/integrations/fake-integration/CHANGELOG.md @@ -5,6 +5,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.28-dev (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.27-dev (2024-12-18) diff --git a/integrations/fake-integration/poetry.lock b/integrations/fake-integration/poetry.lock index e212e68d33..68495e3ac9 100644 --- a/integrations/fake-integration/poetry.lock +++ b/integrations/fake-integration/poetry.lock @@ -1168,13 +1168,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1903,4 +1903,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "62f475ed0baf6b7eb628e2b02de9221086dae498d70e052381d3192d15d77ee8" +content-hash = "ea1184a9346db2b1b6e59328a04a0689ee6819184dacb67bc93ae22596941147" diff --git a/integrations/fake-integration/pyproject.toml b/integrations/fake-integration/pyproject.toml index 3e3a143e40..4888a55f7a 100644 --- a/integrations/fake-integration/pyproject.toml +++ b/integrations/fake-integration/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "fake-integration" -version = "0.1.27-dev" +version = "0.1.28-dev" description = "A useless fake integration that helps us test the Ocean Core" authors = ["Erik Zaadi "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} faker = "^28.0.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/firehydrant/CHANGELOG.md b/integrations/firehydrant/CHANGELOG.md index 4e132de7a8..981dc18d38 100644 --- a/integrations/firehydrant/CHANGELOG.md +++ b/integrations/firehydrant/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.99 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.98 (2024-12-15) diff --git a/integrations/firehydrant/poetry.lock b/integrations/firehydrant/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/firehydrant/poetry.lock +++ b/integrations/firehydrant/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/firehydrant/pyproject.toml b/integrations/firehydrant/pyproject.toml index 0dcd0daacc..181193f689 100644 --- a/integrations/firehydrant/pyproject.toml +++ b/integrations/firehydrant/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "firehydrant" -version = "0.1.98" +version = "0.1.99" description = "FireHydrant Integration Powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/gcp/CHANGELOG.md b/integrations/gcp/CHANGELOG.md index c1544bf308..ff3afbd903 100644 --- a/integrations/gcp/CHANGELOG.md +++ b/integrations/gcp/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.80 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.79 (2024-12-15) diff --git a/integrations/gcp/poetry.lock b/integrations/gcp/poetry.lock index 2329221ddc..ade1ba77a3 100644 --- a/integrations/gcp/poetry.lock +++ b/integrations/gcp/poetry.lock @@ -1460,13 +1460,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -2267,4 +2267,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "bf62bdf735dd419bdf5853663f85fb9d8bc91639e4d56dc59285c79616120654" +content-hash = "81f7f164ce4abbefc63267428c172bb85a937d7d0be79c211d3cc795d3278e85" diff --git a/integrations/gcp/pyproject.toml b/integrations/gcp/pyproject.toml index 6865ba7a37..91c025679f 100644 --- a/integrations/gcp/pyproject.toml +++ b/integrations/gcp/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "gcp" -version = "0.1.79" +version = "0.1.80" description = "A GCP ocean integration" authors = ["Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} google-cloud-asset = "^3.25.1" google-cloud-pubsub = "^2.21.1" google-cloud-resource-manager = "^1.12.3" diff --git a/integrations/gitlab/CHANGELOG.md b/integrations/gitlab/CHANGELOG.md index e022334d3c..e27531fdd2 100644 --- a/integrations/gitlab/CHANGELOG.md +++ b/integrations/gitlab/CHANGELOG.md @@ -7,6 +7,14 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +0.2.7 (2024-12-22) +================== + +### Improvements + +- Bumped ocean version to ^0.15.3 + + 0.2.6 (2024-12-19) ================== diff --git a/integrations/gitlab/poetry.lock b/integrations/gitlab/poetry.lock index b610f9c65a..cfd1575b55 100644 --- a/integrations/gitlab/poetry.lock +++ b/integrations/gitlab/poetry.lock @@ -1128,13 +1128,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1905,4 +1905,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "ff07aab5a7e03e496d28123fc4e8c85dd6b0a94f0da526f0936ede4d5929efda" +content-hash = "931d736b30d49a7b467f219fdab08db662bfd9385b526df673b4b692fbd111f0" diff --git a/integrations/gitlab/pyproject.toml b/integrations/gitlab/pyproject.toml index f24540325e..c59cb3b3c3 100644 --- a/integrations/gitlab/pyproject.toml +++ b/integrations/gitlab/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitlab" -version = "0.2.6" +version = "0.2.7" description = "Gitlab integration for Port using Port-Ocean Framework" authors = ["Yair Siman-Tov "] @@ -11,7 +11,7 @@ aiolimiter = "^1.1.0" python-gitlab = "^3.14.0" pathlib = "^1.0.1" jsonschema = "^4.17.3" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/jenkins/CHANGELOG.md b/integrations/jenkins/CHANGELOG.md index 17f1c26c2c..d02004adf5 100644 --- a/integrations/jenkins/CHANGELOG.md +++ b/integrations/jenkins/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.82 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.81 (2024-12-15) diff --git a/integrations/jenkins/poetry.lock b/integrations/jenkins/poetry.lock index f0ac1cdfe9..9d629cf036 100644 --- a/integrations/jenkins/poetry.lock +++ b/integrations/jenkins/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "e581fb7400ca2856d90873f6684dda96aaa9cdcb9fa3916f5c64c463028c9e51" +content-hash = "614f1fa2e598d09e489b226131612d770741cc5f40018d61dea0f795b412d163" diff --git a/integrations/jenkins/pyproject.toml b/integrations/jenkins/pyproject.toml index 949c6e4a5e..423914f5a5 100644 --- a/integrations/jenkins/pyproject.toml +++ b/integrations/jenkins/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "jenkins" -version = "0.1.81" +version = "0.1.82" description = "Jenkins Integration to Port Ocean" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} pip = "^23.3.1" python-dotenv = "^1.0.0" loguru = "^0.7.2" diff --git a/integrations/jira/CHANGELOG.md b/integrations/jira/CHANGELOG.md index 9c0b13ff02..8874fe4aa6 100644 --- a/integrations/jira/CHANGELOG.md +++ b/integrations/jira/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.6 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.2.5 (2024-12-15) diff --git a/integrations/jira/poetry.lock b/integrations/jira/poetry.lock index 6b4b37fd75..58b92840c6 100644 --- a/integrations/jira/poetry.lock +++ b/integrations/jira/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "fe6be59f31d6dcd79f1cbc40a561476079061b1d4ffb1615987ae8ad356b7dc0" +content-hash = "1a3ab6488b9d04d7b1dc9da57045685454c0bf842b2cf5141788bee4a94fa2d2" diff --git a/integrations/jira/pyproject.toml b/integrations/jira/pyproject.toml index aae8ca84f1..ea8909d8e1 100644 --- a/integrations/jira/pyproject.toml +++ b/integrations/jira/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "jira" -version = "0.2.5" +version = "0.2.6" description = "Integration to bring information from Jira into Port" authors = ["Mor Paz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/kafka/CHANGELOG.md b/integrations/kafka/CHANGELOG.md index 4254dc2420..0670a206e5 100644 --- a/integrations/kafka/CHANGELOG.md +++ b/integrations/kafka/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.98 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.97 (2024-12-15) diff --git a/integrations/kafka/poetry.lock b/integrations/kafka/poetry.lock index bcf377c85d..9c32c1b6a0 100644 --- a/integrations/kafka/poetry.lock +++ b/integrations/kafka/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "3cbfe89afdd2d79f959745fb45d38838aebe38a63788aa93836bb7a99e5663e3" +content-hash = "c388e75ab456b455a9106859047e4434199755ee91026ceed506a4ac78f0c2d4" diff --git a/integrations/kafka/pyproject.toml b/integrations/kafka/pyproject.toml index 9911325e3b..6cca4b1e8c 100644 --- a/integrations/kafka/pyproject.toml +++ b/integrations/kafka/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "kafka" -version = "0.1.97" +version = "0.1.98" 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 "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} confluent-kafka = "^2.2.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/kubecost/CHANGELOG.md b/integrations/kubecost/CHANGELOG.md index edf5841ea7..7b5ae5631f 100644 --- a/integrations/kubecost/CHANGELOG.md +++ b/integrations/kubecost/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.103 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.102 (2024-12-15) diff --git a/integrations/kubecost/poetry.lock b/integrations/kubecost/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/kubecost/poetry.lock +++ b/integrations/kubecost/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/kubecost/pyproject.toml b/integrations/kubecost/pyproject.toml index d3eb5a7d66..06ae2465bc 100644 --- a/integrations/kubecost/pyproject.toml +++ b/integrations/kubecost/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "kubecost" -version = "0.1.102" +version = "0.1.103" description = "Kubecost integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/launchdarkly/CHANGELOG.md b/integrations/launchdarkly/CHANGELOG.md index 557adaacf3..05372472be 100644 --- a/integrations/launchdarkly/CHANGELOG.md +++ b/integrations/launchdarkly/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.75 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.74 (2024-12-15) diff --git a/integrations/launchdarkly/poetry.lock b/integrations/launchdarkly/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/launchdarkly/poetry.lock +++ b/integrations/launchdarkly/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/launchdarkly/pyproject.toml b/integrations/launchdarkly/pyproject.toml index b93ba7c634..83c15b3726 100644 --- a/integrations/launchdarkly/pyproject.toml +++ b/integrations/launchdarkly/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "launchdarkly" -version = "0.1.74" +version = "0.1.75" description = "Launchdarkly integration for Port" authors = ["Michael Armah "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/linear/CHANGELOG.md b/integrations/linear/CHANGELOG.md index 5451ad388a..bf9625750a 100644 --- a/integrations/linear/CHANGELOG.md +++ b/integrations/linear/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.61 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.60 (2024-12-15) diff --git a/integrations/linear/poetry.lock b/integrations/linear/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/linear/poetry.lock +++ b/integrations/linear/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/linear/pyproject.toml b/integrations/linear/pyproject.toml index 1b7c128721..69a15203be 100644 --- a/integrations/linear/pyproject.toml +++ b/integrations/linear/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "linear" -version = "0.1.60" +version = "0.1.61" description = "Integration to bring information from Linear into Port" authors = ["Mor Paz "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/newrelic/CHANGELOG.md b/integrations/newrelic/CHANGELOG.md index d19c94a9ac..f051279a00 100644 --- a/integrations/newrelic/CHANGELOG.md +++ b/integrations/newrelic/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.108 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.107 (2024-12-15) diff --git a/integrations/newrelic/poetry.lock b/integrations/newrelic/poetry.lock index 6b4b37fd75..58b92840c6 100644 --- a/integrations/newrelic/poetry.lock +++ b/integrations/newrelic/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "fe6be59f31d6dcd79f1cbc40a561476079061b1d4ffb1615987ae8ad356b7dc0" +content-hash = "1a3ab6488b9d04d7b1dc9da57045685454c0bf842b2cf5141788bee4a94fa2d2" diff --git a/integrations/newrelic/pyproject.toml b/integrations/newrelic/pyproject.toml index ee832fb003..217d8fe99f 100644 --- a/integrations/newrelic/pyproject.toml +++ b/integrations/newrelic/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "newrelic" -version = "0.1.107" +version = "0.1.108" description = "New Relic Integration" authors = ["Tom Tankilevitch "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/octopus/CHANGELOG.md b/integrations/octopus/CHANGELOG.md index 64c1544f14..bb671f0121 100644 --- a/integrations/octopus/CHANGELOG.md +++ b/integrations/octopus/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +# Port_Ocean 0.1.35 (2024-12-22) + +### Improvements + +- Bumped ocean version to ^0.15.3 + + # Port_Ocean 0.1.34 (2024-12-15) ### Improvements diff --git a/integrations/octopus/poetry.lock b/integrations/octopus/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/octopus/poetry.lock +++ b/integrations/octopus/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/octopus/pyproject.toml b/integrations/octopus/pyproject.toml index 42ed52eae7..17d696ab2f 100644 --- a/integrations/octopus/pyproject.toml +++ b/integrations/octopus/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "octopus" -version = "0.1.34" +version = "0.1.35" description = "This integration ingest data from octopus deploy" authors = ["Adebayo Iyanuoluwa "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # Uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/opencost/CHANGELOG.md b/integrations/opencost/CHANGELOG.md index dc25a7367f..dbceaa9dc3 100644 --- a/integrations/opencost/CHANGELOG.md +++ b/integrations/opencost/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.101 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.100 (2024-12-15) diff --git a/integrations/opencost/poetry.lock b/integrations/opencost/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/opencost/poetry.lock +++ b/integrations/opencost/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/opencost/pyproject.toml b/integrations/opencost/pyproject.toml index 07c27c6481..520ea7a362 100644 --- a/integrations/opencost/pyproject.toml +++ b/integrations/opencost/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "opencost" -version = "0.1.100" +version = "0.1.101" description = "Ocean integration for OpenCost" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/opsgenie/CHANGELOG.md b/integrations/opsgenie/CHANGELOG.md index 3bc8705740..0b72626c7c 100644 --- a/integrations/opsgenie/CHANGELOG.md +++ b/integrations/opsgenie/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.2.26 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.2.25 (2024-12-15) diff --git a/integrations/opsgenie/poetry.lock b/integrations/opsgenie/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/opsgenie/poetry.lock +++ b/integrations/opsgenie/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/opsgenie/pyproject.toml b/integrations/opsgenie/pyproject.toml index 1872870d63..1b901c67d1 100644 --- a/integrations/opsgenie/pyproject.toml +++ b/integrations/opsgenie/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "opsgenie" -version = "0.2.25" +version = "0.2.26" description = "Ocean integration for OpsGenie" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/pagerduty/CHANGELOG.md b/integrations/pagerduty/CHANGELOG.md index 70b2b5d2a5..7f149da71c 100644 --- a/integrations/pagerduty/CHANGELOG.md +++ b/integrations/pagerduty/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.129 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.128 (2024-12-15) diff --git a/integrations/pagerduty/poetry.lock b/integrations/pagerduty/poetry.lock index 6b4b37fd75..58b92840c6 100644 --- a/integrations/pagerduty/poetry.lock +++ b/integrations/pagerduty/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "fe6be59f31d6dcd79f1cbc40a561476079061b1d4ffb1615987ae8ad356b7dc0" +content-hash = "1a3ab6488b9d04d7b1dc9da57045685454c0bf842b2cf5141788bee4a94fa2d2" diff --git a/integrations/pagerduty/pyproject.toml b/integrations/pagerduty/pyproject.toml index 539e53f8d6..507e059726 100644 --- a/integrations/pagerduty/pyproject.toml +++ b/integrations/pagerduty/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "pagerduty" -version = "0.1.128" +version = "0.1.129" description = "Pagerduty Integration" authors = ["Port Team "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} httpx = "^0.27.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/sentry/CHANGELOG.md b/integrations/sentry/CHANGELOG.md index 505daf44db..0abc96b2fa 100644 --- a/integrations/sentry/CHANGELOG.md +++ b/integrations/sentry/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.102 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.101 (2024-12-17) diff --git a/integrations/sentry/poetry.lock b/integrations/sentry/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/sentry/poetry.lock +++ b/integrations/sentry/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/sentry/pyproject.toml b/integrations/sentry/pyproject.toml index fdb4ad404c..34c1336af6 100644 --- a/integrations/sentry/pyproject.toml +++ b/integrations/sentry/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sentry" -version = "0.1.101" +version = "0.1.102" description = "Sentry Integration" authors = ["Dvir Segev ","Matan Geva "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/servicenow/CHANGELOG.md b/integrations/servicenow/CHANGELOG.md index a9ae58a1ce..75978dbb33 100644 --- a/integrations/servicenow/CHANGELOG.md +++ b/integrations/servicenow/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.91 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.90 (2024-12-15) diff --git a/integrations/servicenow/poetry.lock b/integrations/servicenow/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/servicenow/poetry.lock +++ b/integrations/servicenow/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/servicenow/pyproject.toml b/integrations/servicenow/pyproject.toml index a54fe5b9bb..4e4ec878c1 100644 --- a/integrations/servicenow/pyproject.toml +++ b/integrations/servicenow/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "servicenow" -version = "0.1.90" +version = "0.1.91" description = "Service Now Ocean Integration" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/snyk/CHANGELOG.md b/integrations/snyk/CHANGELOG.md index adbdbc0941..2d091da353 100644 --- a/integrations/snyk/CHANGELOG.md +++ b/integrations/snyk/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.114 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.113 (2024-12-16) diff --git a/integrations/snyk/poetry.lock b/integrations/snyk/poetry.lock index b6cc3c07e3..40d9476e02 100644 --- a/integrations/snyk/poetry.lock +++ b/integrations/snyk/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "a85a0ceb74df8055913290f33fed6904a605a58669b77a5527652282819ef816" +content-hash = "ca68d5efa589cc720095550010a9a0ccb4fab13302de3554ef23f2b737b8d45c" diff --git a/integrations/snyk/pyproject.toml b/integrations/snyk/pyproject.toml index 43066200cd..55d4083dbb 100644 --- a/integrations/snyk/pyproject.toml +++ b/integrations/snyk/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "snyk" -version = "0.1.113" +version = "0.1.114" description = "Snyk integration powered by Ocean" authors = ["Isaac Coffie "] [tool.poetry.dependencies] python = "^3.12" aiolimiter = "^1.1.0" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/sonarqube/CHANGELOG.md b/integrations/sonarqube/CHANGELOG.md index 7379c0d32f..6a01525aae 100644 --- a/integrations/sonarqube/CHANGELOG.md +++ b/integrations/sonarqube/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.121 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.120 (2024-12-15) diff --git a/integrations/sonarqube/poetry.lock b/integrations/sonarqube/poetry.lock index 7741ef03f2..a019a2f4f8 100644 --- a/integrations/sonarqube/poetry.lock +++ b/integrations/sonarqube/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "41d37851249c21d80ba67216a69ccdffb6ede8c7cfff967adad7d13f44f3776b" +content-hash = "2cdd764aa7a106d54d469ad7df6d866581a652fe4a59d19e0e75d72d8f240a17" diff --git a/integrations/sonarqube/pyproject.toml b/integrations/sonarqube/pyproject.toml index d57220b137..af849112f7 100644 --- a/integrations/sonarqube/pyproject.toml +++ b/integrations/sonarqube/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "sonarqube" -version = "0.1.120" +version = "0.1.121" description = "SonarQube projects and code quality analysis integration" authors = ["Port Team "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} rich = "^13.5.2" cookiecutter = "^2.3.0" diff --git a/integrations/statuspage/CHANGELOG.md b/integrations/statuspage/CHANGELOG.md index 411bfb4716..a1288ad371 100644 --- a/integrations/statuspage/CHANGELOG.md +++ b/integrations/statuspage/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.50 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.49 (2024-12-15) diff --git a/integrations/statuspage/poetry.lock b/integrations/statuspage/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/statuspage/poetry.lock +++ b/integrations/statuspage/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/statuspage/pyproject.toml b/integrations/statuspage/pyproject.toml index 5591f65aa5..a1d19c18c4 100644 --- a/integrations/statuspage/pyproject.toml +++ b/integrations/statuspage/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "statuspage" -version = "0.1.49" +version = "0.1.50" description = "Connect Statuspage to Ocean and automatically ingest incidents, updates, and impacted components for comprehensive monitoring" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration diff --git a/integrations/terraform-cloud/CHANGELOG.md b/integrations/terraform-cloud/CHANGELOG.md index 319fac347a..41666befcc 100644 --- a/integrations/terraform-cloud/CHANGELOG.md +++ b/integrations/terraform-cloud/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.90 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.89 (2024-12-15) diff --git a/integrations/terraform-cloud/poetry.lock b/integrations/terraform-cloud/poetry.lock index b6cc3c07e3..40d9476e02 100644 --- a/integrations/terraform-cloud/poetry.lock +++ b/integrations/terraform-cloud/poetry.lock @@ -1052,13 +1052,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1671,4 +1671,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "a85a0ceb74df8055913290f33fed6904a605a58669b77a5527652282819ef816" +content-hash = "ca68d5efa589cc720095550010a9a0ccb4fab13302de3554ef23f2b737b8d45c" diff --git a/integrations/terraform-cloud/pyproject.toml b/integrations/terraform-cloud/pyproject.toml index 2be34ec29c..a8f8c2e00b 100644 --- a/integrations/terraform-cloud/pyproject.toml +++ b/integrations/terraform-cloud/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "terraform-cloud" -version = "0.1.89" +version = "0.1.90" description = "Terraform Cloud Integration for Port" authors = ["Michael Armah "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} aiolimiter = "^1.1.0" [tool.poetry.group.dev.dependencies] diff --git a/integrations/wiz/CHANGELOG.md b/integrations/wiz/CHANGELOG.md index 91147651a6..1cc749f546 100644 --- a/integrations/wiz/CHANGELOG.md +++ b/integrations/wiz/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## 0.1.82 (2024-12-22) + + +### Improvements + +- Bumped ocean version to ^0.15.3 + + ## 0.1.81 (2024-12-15) diff --git a/integrations/wiz/poetry.lock b/integrations/wiz/poetry.lock index bb38bcf1e0..3a41d0c9ea 100644 --- a/integrations/wiz/poetry.lock +++ b/integrations/wiz/poetry.lock @@ -1041,13 +1041,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "port-ocean" -version = "0.15.2" +version = "0.15.3" description = "Port Ocean is a CLI tool for managing your Port projects." optional = false python-versions = "<4.0,>=3.12" files = [ - {file = "port_ocean-0.15.2-py3-none-any.whl", hash = "sha256:5e4123200777d6b097c7b3bbaa3e34c7364c6e81f2913012f0693690001df7d9"}, - {file = "port_ocean-0.15.2.tar.gz", hash = "sha256:7788a31c364a418b08c16a403cf937486acaf37881d47ab139a1b1ea37300ad6"}, + {file = "port_ocean-0.15.3-py3-none-any.whl", hash = "sha256:91a2a5f7a39462d42f29d9906d841faffd3180ad66aa82c5aef7261f78ee4d98"}, + {file = "port_ocean-0.15.3.tar.gz", hash = "sha256:fe7e7f59ac6f4df8ba755149fd97c09dbaf3959ad59e3d22b0683b26c48fecd9"}, ] [package.dependencies] @@ -1660,4 +1660,4 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "615ffa50726e8bbe2cb65325412465179c06f81ab40cf71e9ab172308af11386" +content-hash = "aaeed7b9bbeff55060e75267936d29b833eb85a98a78e5b233048f2c818fed3f" diff --git a/integrations/wiz/pyproject.toml b/integrations/wiz/pyproject.toml index 73e49e71ac..39466470a9 100644 --- a/integrations/wiz/pyproject.toml +++ b/integrations/wiz/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "wiz" -version = "0.1.81" +version = "0.1.82" description = "Wiz Port integration in Ocean" authors = ["Albert Luganga "] [tool.poetry.dependencies] python = "^3.12" -port_ocean = {version = "^0.15.2", extras = ["cli"]} +port_ocean = {version = "^0.15.3", extras = ["cli"]} [tool.poetry.group.dev.dependencies] # uncomment this if you want to debug the ocean core together with your integration