From 63a90d2545fed2af2e366490c960bf027bbfaa4f Mon Sep 17 00:00:00 2001 From: PagesCoffy Date: Tue, 10 Dec 2024 14:43:41 +0000 Subject: [PATCH 01/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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/14] [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