Files
scrabble-game/loadtest/go.mod
T
Ilia Denisov ff87a3bf62
CI / changes (pull_request) Successful in 1s
CI / unit (pull_request) Successful in 9s
CI / integration (pull_request) Successful in 12s
CI / ui (pull_request) Has been skipped
CI / gate (pull_request) Successful in 0s
CI / deploy (pull_request) Successful in 1m11s
fix(engine): single-word rule connects along the play line
Bumps the engine to scrabble-solver v1.1.1, where a single-word-per-turn play
must form its word along its own line through an existing tile: a multi-tile play
that touches the board only perpendicular to itself (the contour РЮМ/КЕД/ОР cases)
no longer connects. For a single tile that abuts the board on both axes the engine
now plays the higher-scoring legal orientation instead of the geometrically longer
one (playDirection), so a real word is never rejected in favour of a non-word.

Reworks the single-word solver/engine tests for the corrected rule (no longer a
superset of standard play) and updates ARCHITECTURE/FUNCTIONAL/PRERELEASE.
2026-06-14 14:49:16 +02:00

17 lines
398 B
Modula-2

module scrabble/loadtest
go 1.26.3
require (
connectrpc.com/connect v1.19.2
gitea.iliadenisov.ru/developer/scrabble-solver v1.1.1
github.com/google/flatbuffers v23.5.26+incompatible
github.com/google/uuid v1.6.0
github.com/iliadenisov/dafsa v1.1.0
github.com/jackc/pgx/v5 v5.9.2
golang.org/x/net v0.53.0
google.golang.org/protobuf v1.36.11
scrabble/gateway v0.0.0
scrabble/pkg v0.0.0
)