aprs.me/lib/aprsme
Graham McIntire adaf9599e2
chore: update dependencies and fix pre-existing issues
Dep upgrades (mix deps.update --all):
- phoenix_live_view 1.1.27 → 1.1.28
- swoosh 1.23.1 → 1.25.0
- bandit 1.10.3 → 1.10.4
- credo 1.7.17 → 1.7.18
- hammer 7.2.0 → 7.3.0
- igniter 0.7.6 → 0.7.9
- and minor: fine, lazy_html, meck, mimerl
- removed stale lock entries: geocalc, gettext_pseudolocalize, gridsquare

Bug fixes surfaced during update:
- ETS cache tables were :protected (owned by Application master), preventing
  the Cache GenServer from writing; change to :public + write_concurrency
  so device/symbol/query caches actually work
- historical_dot_html returned Phoenix.HTML.safe tuple instead of plain string;
  symbol_html is JSON-encoded for JS so it must be binary
- String.slice always returns binary so the || "Unknown error" fallback was
  unreachable dead code (dialyzer guard_fail)
- Supervisor.which_children always returns a list so the _ -> branch in
  database_metrics was unreachable dead code (dialyzer pattern_match_cov)
- Add @type t :: %__MODULE__{} to User schema to resolve unknown_type in user_auth spec
- Extract nested if in leader_election to fix Credo nesting depth violation
- Update .dialyzer_ignore.exs: remove 2 stale entries, add false positives for
  Ecto.Multi/Gettext opaque types and Mix.Task PLT limitations
2026-04-15 14:07:29 -05:00
..
accounts chore: update dependencies and fix pre-existing issues 2026-04-15 14:07:29 -05:00
cluster chore: update dependencies and fix pre-existing issues 2026-04-15 14:07:29 -05:00
is fix: guard APRS send_message when disconnected 2026-03-22 17:16:44 -05:00
packets fix: stabilize moving station tracking 2026-03-26 18:48:43 -05:00
performance Fix packet buffer overflow and system load adjustment issues 2025-07-15 08:16:11 -05:00
telemetry chore: update dependencies and fix pre-existing issues 2026-04-15 14:07:29 -05:00
workers Partition packets table by day and simplify cleanup 2026-02-20 11:25:16 -06:00
accounts.ex Fix callsign registration to be case-insensitive 2026-02-19 13:20:07 -06:00
application.ex chore: update dependencies and fix pre-existing issues 2026-04-15 14:07:29 -05:00
bad_packet.ex refactor to use external parser 2025-06-24 14:22:09 -05:00
broadcast_task_supervisor.ex perf: optimize slow tests - 40% reduction in top 10 slowest tests 2026-03-03 10:47:40 -06:00
cache.ex fix: address security vulnerabilities and concurrency issues 2026-03-23 16:59:09 -05:00
callsign.ex Fix code review findings: security, correctness, performance, dead code 2026-02-19 18:49:27 -06:00
circuit_breaker.ex Fix code review findings: security, correctness, performance, dead code 2026-02-19 18:49:27 -06:00
cleanup_scheduler.ex fix: performance improvements and bug fixes across backend and frontend 2026-03-19 12:41:36 -05:00
connection_monitor.ex fix: guard connection monitor stats lookup 2026-03-22 17:09:07 -05:00
convert.ex more i18n 2025-07-06 10:28:27 -05:00
data_extended.ex update deps 2025-07-16 08:20:20 -05:00
db_optimizer.ex fix: address security vulnerabilities and concurrency issues 2026-03-23 16:59:09 -05:00
deployment_notifier.ex Fix code formatting 2025-07-28 13:24:16 -05:00
device_cache.ex fix: guard device cache refresh when stopped 2026-03-22 17:31:54 -05:00
device_identification.ex fix: address security vulnerabilities and concurrency issues 2026-03-23 16:59:09 -05:00
device_parser.ex refactor 2025-10-12 10:56:49 -05:00
devices.ex refactor to use external parser 2025-06-24 14:22:09 -05:00
devices_seeder.ex Fix potential crashes and unsafe operations throughout the app 2025-07-28 08:35:12 -05:00
dynamic_supervisor.ex Add distributed Erlang clustering for single APRS-IS connection 2025-07-25 10:30:29 -05:00
encoding.ex Fix APRS object display and comment encoding issues 2026-02-20 18:06:32 -06:00
encoding_utils.ex Fix APRS object display and comment encoding issues 2026-02-20 18:06:32 -06:00
error_handler.ex clean up warnings 2025-07-16 08:55:46 -05:00
error_notifier.ex chore: update dependencies and fix pre-existing issues 2026-04-15 14:07:29 -05:00
geo_utils.ex Increase GPS drift threshold from 15m to 50m 2025-07-21 11:23:37 -05:00
log_sanitizer.ex more tests 2026-02-09 17:21:16 -06:00
maidenhead.ex Partition packets table by day and simplify cleanup 2026-02-20 11:25:16 -06:00
mailer.ex refactor to use external parser 2025-06-24 14:22:09 -05:00
migration_lock.ex format 2025-07-27 11:16:16 -05:00
packet.ex fix: inline regex module attributes to fix deprecation warning 2026-03-27 16:18:27 -05:00
packet_consumer.ex fix: stabilize packet broadcast tests 2026-03-22 16:17:55 -05:00
packet_consumer_pool.ex Fix packet buffer overflow with parallel consumer pool 2025-07-19 14:49:52 -05:00
packet_counter.ex performance improvements 2025-07-14 16:35:58 -05:00
packet_field_whitelist.ex Consolidate 24 packet columns into JSONB data field 2026-02-20 13:02:47 -06:00
packet_pipeline_supervisor.ex Fix multiple TODO bugs: drain handler, callsign dedup, packet pipeline 2026-02-19 18:27:25 -06:00
packet_producer.ex Add TCP backpressure to packet pipeline 2026-02-19 15:31:51 -06:00
packet_replay.ex clean up warnings 2025-07-16 08:55:46 -05:00
packet_replay_behaviour.ex refactor to use external parser 2025-06-24 14:22:09 -05:00
packet_sanitizer.ex Consolidate 24 packet columns into JSONB data field 2026-02-20 13:02:47 -06:00
packets.ex fix: performance improvements and bug fixes across backend and frontend 2026-03-19 12:41:36 -05:00
packets_behaviour.ex refactor: Remove CachedQueries and rename optimized functions 2025-07-30 13:17:56 -05:00
partition_manager.ex fix: close review findings 2026-03-26 12:36:50 -05:00
postgres_notifier.ex Improve info page live updates and fix APRS parser 2025-07-28 15:14:33 -05:00
postgres_types.ex refactor to use external parser 2025-06-24 14:22:09 -05:00
rate_limiter.ex update deps 2025-07-16 08:20:20 -05:00
regex_cache.ex fix: code review refinements 2026-03-27 16:18:27 -05:00
release.ex fix: address security vulnerabilities and concurrency issues 2026-03-23 16:59:09 -05:00
repo.ex refactor to use external parser 2025-06-24 14:22:09 -05:00
schema.ex refactor to use external parser 2025-06-24 14:22:09 -05:00
shutdown_handler.ex Remove dead modules, unused deps, and commented-out code 2026-02-20 08:09:22 -06:00
signal_handler.ex fix: address security vulnerabilities and concurrency issues 2026-03-23 16:59:09 -05:00
spatial_pubsub.ex fix: address security vulnerabilities and concurrency issues 2026-03-23 16:59:09 -05:00
streaming_packets_pubsub.ex fix: address security vulnerabilities and concurrency issues 2026-03-23 16:59:09 -05:00