merge from main

This commit is contained in:
Kenneth Kehl
2025-09-03 08:15:36 -07:00
4 changed files with 918 additions and 912 deletions

View File

@@ -13,3 +13,7 @@ updates:
- "dependabot" # Custom label to identify Dependabot PRs
assignees:
- "alexjanousekGSA"
ignore:
# gevent 25.8+ breaks Celery/Kombu compatibility (potentially)
- dependency-name: "gevent"
versions: [">=25.8.0"]

1810
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -36,7 +36,7 @@ gunicorn = {version = "==23.0.0", extras = ["gevent"]}
iso8601 = "==2.1.0"
jsonschema = {version = "==4.25.1", extras = ["format"]}
lxml = "==6.0.1"
marshmallow = "^4.0.0"
marshmallow = "^4.0.1"
marshmallow-sqlalchemy = "^1.4.2"
newrelic = "^10.16.0"
packaging = "==25.0"
@@ -52,14 +52,14 @@ bleach = "^6.1.0"
geojson = "^3.2.0"
numpy = "^2.3.2"
ordered-set = "^4.1.0"
phonenumbers = "^9.0.12"
phonenumbers = "^9.0.13"
python-json-logger = "^3.3.0"
regex = "^2025.7.34"
regex = "^2025.9.1"
shapely = "^2.1.1"
smartypants = "^2.0.1"
mistune = "^3.1.3"
mistune = "^3.1.4"
blinker = "^1.9.0"
cryptography = "^45.0.6"
cryptography = "^45.0.7"
idna = "^3.7"
jmespath = "^1.0.1"
markupsafe = "^3.0.2"

View File

@@ -60,8 +60,8 @@ module "ses_email" {
cf_org_name = local.cf_org_name
cf_space_name = local.cf_space_name
name = "${local.app_name}-ses-${local.env}"
aws_region = "us-gov-west-1"
email_domain = "notify.sandbox.10x.gsa.gov"
aws_region = "us-west-2"
mail_from_subdomain = "mail"
email_receipt_error = "notify-support@gsa.gov"
}
@@ -71,6 +71,6 @@ module "sns_sms" {
cf_org_name = local.cf_org_name
cf_space_name = local.cf_space_name
name = "${local.app_name}-sns-${local.env}"
aws_region = "us-gov-west-1"
aws_region = "us-east-1"
monthly_spend_limit = 25
}