From db688779fb4bca768a0f73a2409cf79e58f56640 Mon Sep 17 00:00:00 2001 From: Carlos Matos Date: Fri, 20 Dec 2024 09:33:55 -0500 Subject: [PATCH 1/2] python sucks --- MANIFEST.in | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 3279b11..5aa5a2c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include config/*.ini +include config/* diff --git a/setup.py b/setup.py index 841b1de..507b11c 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,9 @@ long_description_content_type="text/markdown", url="https://github.com/crowdstrike/falcon-integration-gateway", packages=find_packages(), - package_data={'': ['config/*.ini']}, + package_data={ + 'fig': ['../config/*.ini'], + }, include_package_data=True, install_requires=[ 'boto3', From 4ceb37321170a078f8a326de70253a7b2baf248a Mon Sep 17 00:00:00 2001 From: Carlos Matos Date: Fri, 20 Dec 2024 09:35:17 -0500 Subject: [PATCH 2/2] try this again --- README.md | 2 +- .../gke/deployer/chart/falcon-integration-gateway/Chart.yaml | 2 +- .../chart/falcon-integration-gateway/templates/application.yaml | 2 +- docs/listings/gke/deployer/schema.yaml | 2 +- fig/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 913e311..b6bab4e 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ To install as a container: Falcon Integration Gateway (FIG) is available on the [Python Package Index](https://pypi.org/project/falcon-integration-gateway/). > [!WARNING] -> Falcon Integration Gateway (FIG) versions below 3.2.2 on PyPI are broken and will not install correctly. Please ensure you install version 3.2.2 or higher from PyPI. +> Falcon Integration Gateway (FIG) versions below 3.2.3 on PyPI are broken and will not install correctly. Please ensure you install version 3.2.3 or higher from PyPI. 1. Install the package: diff --git a/docs/listings/gke/deployer/chart/falcon-integration-gateway/Chart.yaml b/docs/listings/gke/deployer/chart/falcon-integration-gateway/Chart.yaml index eed5087..2e45392 100644 --- a/docs/listings/gke/deployer/chart/falcon-integration-gateway/Chart.yaml +++ b/docs/listings/gke/deployer/chart/falcon-integration-gateway/Chart.yaml @@ -21,4 +21,4 @@ version: 0.2.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: 3.2.2 +appVersion: 3.2.3 diff --git a/docs/listings/gke/deployer/chart/falcon-integration-gateway/templates/application.yaml b/docs/listings/gke/deployer/chart/falcon-integration-gateway/templates/application.yaml index 1331f2b..a3725fd 100644 --- a/docs/listings/gke/deployer/chart/falcon-integration-gateway/templates/application.yaml +++ b/docs/listings/gke/deployer/chart/falcon-integration-gateway/templates/application.yaml @@ -23,7 +23,7 @@ spec: kind: Secret descriptor: type: falcon-integration-gateway - version: '3.2.2' + version: '3.2.3' description: |- Falcon Integration Gateway (FIG) forwards threat detection findings from CrowdStrike Falcon platform to the backend of your choice. This instance forwards detection findings to GCP diff --git a/docs/listings/gke/deployer/schema.yaml b/docs/listings/gke/deployer/schema.yaml index 80ec1a8..adb2e3c 100644 --- a/docs/listings/gke/deployer/schema.yaml +++ b/docs/listings/gke/deployer/schema.yaml @@ -3,7 +3,7 @@ x-google-marketplace: applicationApiVersion: v1beta1 - publishedVersion: "3.2.2" + publishedVersion: "3.2.3" publishedVersionMetadata: releaseNote: >- 3.1 diff --git a/fig/__init__.py b/fig/__init__.py index 29e4a94..3220610 100644 --- a/fig/__init__.py +++ b/fig/__init__.py @@ -1 +1 @@ -__version__ = '3.2.2' +__version__ = '3.2.3'