diff --git a/apps/api/tests/test_secret_redactor.py b/apps/api/tests/test_secret_redactor.py index 5544bd8e..9e77e89b 100644 --- a/apps/api/tests/test_secret_redactor.py +++ b/apps/api/tests/test_secret_redactor.py @@ -20,7 +20,7 @@ def test_google_key_redacted(): def test_telegram_bot_token_redacted(): - assert "" in redact("8474499448:AAFqu_i4-PN4zGFOK5ea8o0Ud56qqEtCMeI") + assert "" in redact("111222333:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") def test_aws_key_redacted(): diff --git a/docs/superpowers/plans/2026-04-19-aider-watch.md b/docs/superpowers/plans/2026-04-19-aider-watch.md index ab6f70db..c89a6138 100644 --- a/docs/superpowers/plans/2026-04-19-aider-watch.md +++ b/docs/superpowers/plans/2026-04-19-aider-watch.md @@ -340,7 +340,7 @@ def test_anthropic_key_redacted(): assert "" in redact("sk-ant-api03-abcDEF_123-xyz") def test_telegram_bot_token_redacted(): - assert "" in redact("8474499448:AAFqu_i4-PN4zGFOK5ea8o0Ud56qqEtCMeI") + assert "" in redact("111222333:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") def test_clean_text_passthrough(): s = "hello world, nothing secret here" @@ -348,7 +348,7 @@ def test_clean_text_passthrough(): def test_dict_recursive(): d = {"msg": "token=ghp_abcdef0123456789ABCDEFghijklmnopqrst", - "nested": {"tg": "8474499448:AAFqu_i4-PN4zGFOK5ea8o0Ud56qqEtCMeI"}} + "nested": {"tg": "111222333:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"}} out = redact(d) assert "ghp_abcdef" not in str(out) assert "" in out["msg"] @@ -1861,7 +1861,7 @@ git commit -m "feat(install): one-shot installer" cat > ~/.aider-watch.env <<'EOF' # aider-watch secrets | 2026-04-19 @ Asia/Taipei AIDER_WATCH_DATABASE_URL=postgresql://aider_watch:@192.168.0.188:5432/aider_watch -AIDER_WATCH_TELEGRAM_TOKEN=8474499448:AAFqu_i4-PN4zGFOK5ea8o0Ud56qqEtCMeI +AIDER_WATCH_TELEGRAM_TOKEN=111222333:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AIDER_WATCH_TELEGRAM_CHAT_ID=5619078117 AIDER_WATCH_HOSTNAME=ogt-mac EOF diff --git a/docs/superpowers/plans/2026-04-20-aider-watch-v2.md b/docs/superpowers/plans/2026-04-20-aider-watch-v2.md index 393d9872..d3bdf0e7 100644 --- a/docs/superpowers/plans/2026-04-20-aider-watch-v2.md +++ b/docs/superpowers/plans/2026-04-20-aider-watch-v2.md @@ -192,7 +192,7 @@ def test_google_key_redacted(): def test_telegram_bot_token_redacted(): - assert "" in redact("8474499448:AAFqu_i4-PN4zGFOK5ea8o0Ud56qqEtCMeI") + assert "" in redact("111222333:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") def test_aws_key_redacted():