diff --git a/docker-compose.yml b/docker-compose.yml index a7ede05..7eb4be4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ services: autopatch-llm-dispatch-service: - image: ghcr.io/sysec-uic/autopatch-llm/llm-dispatch-service:0.9.0 + image: ghcr.io/sysec-uic/autopatch-llm/llm-dispatch-service:0.9.1 networks: - autopatch-llm_autopatch-docker-network build: ./src/llm-dispatch-service @@ -19,7 +19,7 @@ services: - ./assets/input_codebase:/app/input_codebase:ro working_dir: /app autopatch-code-property-graph-generator: - image: ghcr.io/sysec-uic/autopatch-llm/code-property-graph-generator:0.9.0 + image: ghcr.io/sysec-uic/autopatch-llm/code-property-graph-generator:0.9.1 networks: - autopatch-llm_autopatch-docker-network build: ./src/code-property-graph-generator @@ -33,7 +33,7 @@ services: - ./assets/input_codebase:/app/input_codebase:ro working_dir: /app autopatch-fuzzing-service: - image: ghcr.io/sysec-uic/autopatch-llm/fuzzing-service:0.9.0 + image: ghcr.io/sysec-uic/autopatch-llm/fuzzing-service:0.9.1 networks: - autopatch-llm_autopatch-docker-network build: ./src/fuzzing-service @@ -49,7 +49,7 @@ services: - ./src/fuzzing-service/seed_input:/app/seed_input:ro working_dir: /app autopatch-patch-evaluation-service: - image: ghcr.io/sysec-uic/autopatch-llm/patch-evaluation-service:0.9.0 + image: ghcr.io/sysec-uic/autopatch-llm/patch-evaluation-service:0.9.1 networks: - autopatch-llm_autopatch-docker-network build: ./src/patch-evaluation-service diff --git a/pyproject.toml b/pyproject.toml index cd52e4f..655c097 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = 'autopatch' -version = '0.9.0' +version = '0.9.1' requires-python = '>=3.12.3' description = '' authors = [ diff --git a/src/autopatchdatatypes/pyproject.toml b/src/autopatchdatatypes/pyproject.toml index 96f0280..4dd5c93 100644 --- a/src/autopatchdatatypes/pyproject.toml +++ b/src/autopatchdatatypes/pyproject.toml @@ -1,6 +1,6 @@ [project] name = 'autopatchdatatypes' -version = '0.9.0' +version = '0.9.1' description = 'Shared data types for the autopatch project' authors = [ { name = 'Robert D. Hernandez', email = 'rherna70@uic.edu' } diff --git a/src/autopatchpubsub/pyproject.toml b/src/autopatchpubsub/pyproject.toml index bfcf350..65eebc5 100644 --- a/src/autopatchpubsub/pyproject.toml +++ b/src/autopatchpubsub/pyproject.toml @@ -1,6 +1,6 @@ [project] name = 'autopatchpubsub' -version = '0.9.0' +version = '0.9.1' description = 'Message Broker Publish Subscribe Facade for the autopatch project' authors = [ { name = 'Robert D. Hernandez', email = 'rherna70@uic.edu' } diff --git a/src/autopatchshared/pyproject.toml b/src/autopatchshared/pyproject.toml index 652d1fe..5750471 100644 --- a/src/autopatchshared/pyproject.toml +++ b/src/autopatchshared/pyproject.toml @@ -1,6 +1,6 @@ [project] name = 'autopatchshared' -version = '0.9.0' +version = '0.9.1' requires-python = '>=3.12.3' readme = 'README.md' authors = [ diff --git a/src/code-property-graph-generator/Dockerfile b/src/code-property-graph-generator/Dockerfile index d3d9ca3..0500e4d 100644 --- a/src/code-property-graph-generator/Dockerfile +++ b/src/code-property-graph-generator/Dockerfile @@ -46,9 +46,9 @@ RUN apt-get install -y --no-install-recommends \ WORKDIR /deps COPY requirements.txt . -COPY autopatchshared-0.9.0-py3-none-any.whl . -COPY autopatchdatatypes-0.9.0-py3-none-any.whl . -COPY autopatchpubsub-0.9.0-py3-none-any.whl . +COPY autopatchshared-0.9.1-py3-none-any.whl . +COPY autopatchdatatypes-0.9.1-py3-none-any.whl . +COPY autopatchpubsub-0.9.1-py3-none-any.whl . RUN pip install --break-system-packages --no-cache-dir -r requirements.txt diff --git a/src/code-property-graph-generator/config/config.json b/src/code-property-graph-generator/config/config.json index b063fbf..4866d6a 100644 --- a/src/code-property-graph-generator/config/config.json +++ b/src/code-property-graph-generator/config/config.json @@ -1,6 +1,6 @@ { "appname": "autopatch.code-property-graph-generator", - "version": "0.9.0-beta", + "version": "0.9.1-beta", "logging_config" : "config/logging-config.json", "scan_tool_full_path": "/opt/joern/joern-cli/joern-scan", "concurrency_threshold": 10, diff --git a/src/code-property-graph-generator/config/dev-config.json b/src/code-property-graph-generator/config/dev-config.json index 389234b..0694e88 100644 --- a/src/code-property-graph-generator/config/dev-config.json +++ b/src/code-property-graph-generator/config/dev-config.json @@ -1,6 +1,6 @@ { "appname": "autopatch.code-property-graph-generator", - "version": "0.9.0-beta", + "version": "0.9.1-beta", "logging_config" : "/workspace/AutoPatch-LLM/src/code-property-graph-generator/config/dev-logging-config.json", "scan_tool_full_path": "/opt/joern/joern-cli/joern-scan", "concurrency_threshold": 10, diff --git a/src/code-property-graph-generator/pyproject.toml b/src/code-property-graph-generator/pyproject.toml index ed9ab18..9af054b 100644 --- a/src/code-property-graph-generator/pyproject.toml +++ b/src/code-property-graph-generator/pyproject.toml @@ -1,6 +1,6 @@ [project] name = 'code-property-graph-generator' -version = '0.9.0' +version = '0.9.1' requires-python = '>=3.12.3' readme = 'README.md' authors = [ diff --git a/src/code-property-graph-generator/requirements.txt b/src/code-property-graph-generator/requirements.txt index 8745e65..2bdf0f5 100644 --- a/src/code-property-graph-generator/requirements.txt +++ b/src/code-property-graph-generator/requirements.txt @@ -1,5 +1,5 @@ -autopatchdatatypes-0.9.0-py3-none-any.whl -autopatchshared-0.9.0-py3-none-any.whl -autopatchpubsub-0.9.0-py3-none-any.whl +autopatchdatatypes-0.9.1-py3-none-any.whl +autopatchshared-0.9.1-py3-none-any.whl +autopatchpubsub-0.9.1-py3-none-any.whl paho-mqtt==2.1.0 cloudevents==1.11.0 diff --git a/src/code-property-graph-generator/test_code_property_graph_generator.py b/src/code-property-graph-generator/test_code_property_graph_generator.py index 092b9b3..ee9c619 100644 --- a/src/code-property-graph-generator/test_code_property_graph_generator.py +++ b/src/code-property-graph-generator/test_code_property_graph_generator.py @@ -12,7 +12,7 @@ def mock_CpgSvcConfig() -> CpgSvcConfig: mock_config = { - "version": "0.5.0-alpha", + "version": "0.9.1-beta", "appname": "autopatch.code-property-graph-generator", "logging_config": "/workspace/AutoPatch-LLM/src/code-property-graph-generator/config/dev-logging-config.json", "scan_tool_full_path": "/opt/joern/joern-cli/joern-scan", diff --git a/src/fuzzing-service/Dockerfile b/src/fuzzing-service/Dockerfile index 373eae1..483f40a 100755 --- a/src/fuzzing-service/Dockerfile +++ b/src/fuzzing-service/Dockerfile @@ -19,9 +19,9 @@ RUN apt-get install -y --no-install-recommends \ WORKDIR /deps COPY requirements.txt . -COPY autopatchshared-0.9.0-py3-none-any.whl . -COPY autopatchdatatypes-0.9.0-py3-none-any.whl . -COPY autopatchpubsub-0.9.0-py3-none-any.whl . +COPY autopatchshared-0.9.1-py3-none-any.whl . +COPY autopatchdatatypes-0.9.1-py3-none-any.whl . +COPY autopatchpubsub-0.9.1-py3-none-any.whl . RUN pip install --break-system-packages --no-cache-dir -r requirements.txt diff --git a/src/fuzzing-service/config/config.json b/src/fuzzing-service/config/config.json index 0dc0d09..84b2291 100644 --- a/src/fuzzing-service/config/config.json +++ b/src/fuzzing-service/config/config.json @@ -1,6 +1,6 @@ { "appname": "autopatch.fuzzing-service", - "version": "0.9.0-beta", + "version": "0.9.1-beta", "logging_config" : "config/logging-config.json", "concurrency_threshold": 10, "message_broker_host": "mosquitto", diff --git a/src/fuzzing-service/config/dev-config.json b/src/fuzzing-service/config/dev-config.json index 4fac8e0..d1f9a16 100644 --- a/src/fuzzing-service/config/dev-config.json +++ b/src/fuzzing-service/config/dev-config.json @@ -1,6 +1,6 @@ { "appname": "autopatch.fuzzing-service", - "version": "0.9.0-alpha", + "version": "0.9.1-alpha", "logging_config" : "/workspace/AutoPatch-LLM/src/fuzzing-service/config/dev-logging-config.json", "concurrency_threshold": 10, "message_broker_host": "mosquitto", diff --git a/src/fuzzing-service/pyproject.toml b/src/fuzzing-service/pyproject.toml index 45b296c..ccb5d42 100644 --- a/src/fuzzing-service/pyproject.toml +++ b/src/fuzzing-service/pyproject.toml @@ -1,6 +1,6 @@ [project] name = 'autopatch.fuzzing-service' -version = '0.9.0' +version = '0.9.1' requires-python = '>=3.12.3' readme = 'README.md' authors = [ diff --git a/src/fuzzing-service/requirements.txt b/src/fuzzing-service/requirements.txt index 58cf283..4b11170 100644 --- a/src/fuzzing-service/requirements.txt +++ b/src/fuzzing-service/requirements.txt @@ -1,5 +1,5 @@ paho-mqtt==2.1.0 -autopatchdatatypes-0.9.0-py3-none-any.whl -autopatchshared-0.9.0-py3-none-any.whl -autopatchpubsub-0.9.0-py3-none-any.whl +autopatchdatatypes-0.9.1-py3-none-any.whl +autopatchshared-0.9.1-py3-none-any.whl +autopatchpubsub-0.9.1-py3-none-any.whl cloudevents==1.11.0 diff --git a/src/fuzzing-service/test_fuzzing_service.py b/src/fuzzing-service/test_fuzzing_service.py index ebb2930..c5630f2 100644 --- a/src/fuzzing-service/test_fuzzing_service.py +++ b/src/fuzzing-service/test_fuzzing_service.py @@ -26,7 +26,7 @@ def mock_FuzzSvcConfig() -> FuzzSvcConfig: mock_config = { - "version": "0.9.0-beta", + "version": "0.9.1-beta", "appname": "autopatch.fuzzing-service", "logging_config": "config/logging-config.json", "concurrency_threshold": 10, diff --git a/src/llm-dispatch-service/Dockerfile b/src/llm-dispatch-service/Dockerfile index 2abe76c..c7c40dd 100644 --- a/src/llm-dispatch-service/Dockerfile +++ b/src/llm-dispatch-service/Dockerfile @@ -17,9 +17,9 @@ RUN apt-get install -y --no-install-recommends \ WORKDIR /deps COPY requirements.txt . -COPY autopatchshared-0.9.0-py3-none-any.whl . -COPY autopatchdatatypes-0.9.0-py3-none-any.whl . -COPY autopatchpubsub-0.9.0-py3-none-any.whl . +COPY autopatchshared-0.9.1-py3-none-any.whl . +COPY autopatchdatatypes-0.9.1-py3-none-any.whl . +COPY autopatchpubsub-0.9.1-py3-none-any.whl . RUN pip install --break-system-packages --no-cache-dir -r requirements.txt diff --git a/src/llm-dispatch-service/config/config.json b/src/llm-dispatch-service/config/config.json index 5860c32..991607d 100644 --- a/src/llm-dispatch-service/config/config.json +++ b/src/llm-dispatch-service/config/config.json @@ -1,6 +1,6 @@ { "appName": "autopatch.llm-dispatch-service", - "appVersion": "0.9.0-beta", + "appVersion": "0.9.1-beta", "appDescription": "A system for managing and dispatching requests to various language models.", "cpg_gen_wait_time": 240, "cpg_scan_result_input_topic" : "autopatch/cpg-scan-result", diff --git a/src/llm-dispatch-service/config/dev-config.json b/src/llm-dispatch-service/config/dev-config.json index 0c4d80a..735ef09 100644 --- a/src/llm-dispatch-service/config/dev-config.json +++ b/src/llm-dispatch-service/config/dev-config.json @@ -1,6 +1,6 @@ { "appName": "autopatch.llm-dispatch-service", - "appVersion": "0.9.0-beta", + "appVersion": "0.9.1-beta", "appDescription": "A system for managing and dispatching requests to various language models.", "cpg_gen_wait_time": 240, "cpg_scan_result_input_topic" : "autopatch/cpg-scan-result", diff --git a/src/llm-dispatch-service/pyproject.toml b/src/llm-dispatch-service/pyproject.toml index 280e751..e9c3a1b 100644 --- a/src/llm-dispatch-service/pyproject.toml +++ b/src/llm-dispatch-service/pyproject.toml @@ -1,6 +1,6 @@ [project] name = 'autopatch.llm-dispatch' -version = '0.9.0' +version = '0.9.1' requires-python = '>=3.12.3' readme = 'README.md' authors = [ diff --git a/src/llm-dispatch-service/requirements.txt b/src/llm-dispatch-service/requirements.txt index 2634b34..c8c3bf4 100644 --- a/src/llm-dispatch-service/requirements.txt +++ b/src/llm-dispatch-service/requirements.txt @@ -1,6 +1,6 @@ paho-mqtt==2.1.0 -autopatchdatatypes-0.9.0-py3-none-any.whl -autopatchshared-0.9.0-py3-none-any.whl -autopatchpubsub-0.9.0-py3-none-any.whl +autopatchdatatypes-0.9.1-py3-none-any.whl +autopatchshared-0.9.1-py3-none-any.whl +autopatchpubsub-0.9.1-py3-none-any.whl openai==1.69.0 cloudevents==1.11.0 \ No newline at end of file diff --git a/src/llm-dispatch-service/test_llm_dispatch_service.py b/src/llm-dispatch-service/test_llm_dispatch_service.py index 6f55f72..8e094c2 100644 --- a/src/llm-dispatch-service/test_llm_dispatch_service.py +++ b/src/llm-dispatch-service/test_llm_dispatch_service.py @@ -27,7 +27,7 @@ def mock_LLMDispatchSvcConfig() -> LLMDispatchSvcConfig: mock_config = { "appName": "autopatch.llm-dispatch", - "appVersion": "0.9.0-beta", + "appVersion": "0.9.1-beta", "appDescription": "A system for managing and dispatching requests to various language models.", "cpg_gen_wait_time": 1, "system_prompt_full_path": "/workspace/AutoPatch-LLM/src/llm-dispatch/data/prompts/system_prompt.txt", diff --git a/src/patch-evaluation-service/Dockerfile b/src/patch-evaluation-service/Dockerfile index 837011b..3ced52e 100755 --- a/src/patch-evaluation-service/Dockerfile +++ b/src/patch-evaluation-service/Dockerfile @@ -16,9 +16,9 @@ WORKDIR /deps COPY requirements.txt . -COPY autopatchdatatypes-0.9.0-py3-none-any.whl . -COPY autopatchshared-0.9.0-py3-none-any.whl . -COPY autopatchpubsub-0.9.0-py3-none-any.whl . +COPY autopatchdatatypes-0.9.1-py3-none-any.whl . +COPY autopatchshared-0.9.1-py3-none-any.whl . +COPY autopatchpubsub-0.9.1-py3-none-any.whl . RUN pip install --break-system-packages --no-cache-dir -r requirements.txt diff --git a/src/patch-evaluation-service/config/config.json b/src/patch-evaluation-service/config/config.json index 88c2e5b..1c53d42 100644 --- a/src/patch-evaluation-service/config/config.json +++ b/src/patch-evaluation-service/config/config.json @@ -1,6 +1,6 @@ { "appname": "autopatch.patch-evaluation-service", - "version": "0.9.0-beta", + "version": "0.9.1-beta", "input_codebase_full_path": "/app/input_codebase", "logging_config" : "/app/config/logging-config.json", "patch_eval_results_full_path":"/app/data", diff --git a/src/patch-evaluation-service/config/dev-config.json b/src/patch-evaluation-service/config/dev-config.json index 33b6853..9b4622c 100644 --- a/src/patch-evaluation-service/config/dev-config.json +++ b/src/patch-evaluation-service/config/dev-config.json @@ -1,6 +1,6 @@ { "appname": "autopatch.patch-evaluation-service", - "version": "0.9.0-beta", + "version": "0.9.1-beta", "input_codebase_full_path": "/workspace/AutoPatch-LLM/assets/input_codebase", "logging_config" : "/workspace/AutoPatch-LLM/src/patch-evaluation-service/config/dev-logging-config.json", "patch_eval_results_full_path":"/workspace/AutoPatch-LLM/src/patch-evaluation-service/data", diff --git a/src/patch-evaluation-service/pyproject.toml b/src/patch-evaluation-service/pyproject.toml index 5587614..fd0cb6d 100644 --- a/src/patch-evaluation-service/pyproject.toml +++ b/src/patch-evaluation-service/pyproject.toml @@ -1,6 +1,6 @@ [project] name = 'autopatch.patch-evaluation-service' -version = '0.9.0' +version = '0.9.1' requires-python = '>=3.12.3' readme = 'README.md' authors = [ diff --git a/src/patch-evaluation-service/requirements.txt b/src/patch-evaluation-service/requirements.txt index f58e628..0c1eb43 100644 --- a/src/patch-evaluation-service/requirements.txt +++ b/src/patch-evaluation-service/requirements.txt @@ -1,4 +1,4 @@ -autopatchdatatypes-0.9.0-py3-none-any.whl -autopatchshared-0.9.0-py3-none-any.whl -autopatchpubsub-0.9.0-py3-none-any.whl +autopatchdatatypes-0.9.1-py3-none-any.whl +autopatchshared-0.9.1-py3-none-any.whl +autopatchpubsub-0.9.1-py3-none-any.whl paho-mqtt==2.1.0 diff --git a/src/patch-evaluation-service/test_patch_evaluation_service.py b/src/patch-evaluation-service/test_patch_evaluation_service.py index 843fd99..b1ed1b5 100644 --- a/src/patch-evaluation-service/test_patch_evaluation_service.py +++ b/src/patch-evaluation-service/test_patch_evaluation_service.py @@ -40,7 +40,7 @@ def kill(self): def dummy_config_content() -> Dict: return { "appname": "autopatch.patch-evaluation-service", - "version": "0.9.0-beta", + "version": "0.9.1-beta", "logging_config": "/workspace/AutoPatch-LLM/src/patch-evaluation-service/config/dev-logging-config.json", "patch_eval_results_full_path": "/workspace/AutoPatch-LLM/src/patch-evaluation-service/data", "patched_codes_path": "/workspace/AutoPatch-LLM/src/patch-evaluation-service/patched_codes",