Skip to content

Commit ce9060a

Browse files
authored
Merge pull request #7 from aws-solutions-library-samples/fix/securityUpdates
fix: security vulnerabilities in dependencies
2 parents fdb232a + 06d7222 commit ce9060a

File tree

4 files changed

+68
-607
lines changed

4 files changed

+68
-607
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Based on AWS Pricing Calculator: [View Detailed Estimate](https://calculator.aws
131131

132132
**Software Requirements:**
133133

134-
- Python 3.8-3.13
134+
- Python 3.10-3.13
135135
- Poetry (dependency management)
136136
- AWS CLI v2
137137
- Git
@@ -341,18 +341,22 @@ The guidance includes a comprehensive CLI tool (`ccwb`) for deployment and manag
341341
### Documentation
342342

343343
**Getting Started:**
344+
344345
- [CLI Reference](/assets/docs/CLI_REFERENCE.md) - Complete command reference for the `ccwb` tool
345346

346347
**Architecture & Deployment:**
348+
347349
- [Architecture Guide](/assets/docs/ARCHITECTURE.md) - System architecture and design decisions
348350
- [Deployment Guide](/assets/docs/DEPLOYMENT.md) - Detailed deployment instructions and options
349351
- [Local Testing Guide](/assets/docs/LOCAL_TESTING.md) - Testing the guidance locally before deployment
350352

351353
**Monitoring & Analytics:**
354+
352355
- [Monitoring and Telemetry Guide](/assets/docs/MONITORING.md) - Guide to deploying and using Claude Code Telemetry with OpenTelemetry
353356
- [Analytics Guide](/assets/docs/ANALYTICS.md) - Advanced analytics with Kinesis Firehose, S3 data lake, and Athena SQL queries
354357

355358
**OIDC Provider Setup Guides:**
359+
356360
- [Okta Setup](/assets/docs/providers/okta-setup.md)
357361
- [Microsoft Entra ID (Azure AD) Setup](/assets/docs/providers/microsoft-entra-id-setup.md)
358362
- [Auth0 Setup](/assets/docs/providers/auth0-setup.md)

source/claude_code_with_bedrock/cli/commands/init.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def _check_prerequisites(self) -> bool:
175175
checks = {
176176
"AWS CLI installed": self._check_aws_cli(),
177177
"AWS credentials configured": self._check_aws_credentials(),
178-
"Python 3.8+ available": self._check_python_version(),
178+
"Python 3.10+ available": self._check_python_version(),
179179
}
180180

181181
# Check current region and Bedrock access
@@ -666,7 +666,7 @@ def _check_aws_credentials(self) -> bool:
666666
def _check_python_version(self) -> bool:
667667
"""Check Python version."""
668668
import sys
669-
return sys.version_info >= (3, 8)
669+
return sys.version_info >= (3, 10)
670670

671671
def _get_bedrock_regions(self) -> List[str]:
672672
"""Get list of regions where Bedrock is available."""

0 commit comments

Comments
 (0)