Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ When integrating consumer concepts, keep `autent` generic:
- Do not add meaningless tests just to force doc-only or marker packages over the coverage threshold
- Keep the public root module compatible with Go `1.24` or newer unless the dependency floor changes
- Treat the contributor-facing `magefiles/` module separately; it currently requires Go `1.26.1` because of `laslig`
- Before opening a PR, check for newer versions of direct dependencies in the module being changed
- Prefer keeping direct dependencies current, but do not update transitive-only dependencies just because newer versions exist
- For every direct-dependency update, confirm it does not force code changes, break checks, or raise the public module floor without an explicit decision

For non-trivial changes, use subagents when they help parallelize bounded work.
Subagents are optional, not mandatory, for very small edits.
Expand Down
2 changes: 1 addition & 1 deletion magefiles/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/evanmschultz/autent/magefiles

go 1.26.1

require github.com/evanmschultz/laslig v0.2.1
require github.com/evanmschultz/laslig v0.2.3

require (
charm.land/glamour/v2 v2.0.0 // indirect
Expand Down
6 changes: 2 additions & 4 deletions magefiles/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@ github.com/clipperhouse/uax29/v2 v2.7.0 h1:+gs4oBZ2gPfVrKPthwbMzWZDaAFPGYK72F0NJ
github.com/clipperhouse/uax29/v2 v2.7.0/go.mod h1:EFJ2TJMRUaplDxHKj1qAEhCtQPW2tJSwu5BF98AuoVM=
github.com/dlclark/regexp2 v1.11.5 h1:Q/sSnsKerHeCkc/jSTNq1oCm7KiVgUMZRDUoRu0JQZQ=
github.com/dlclark/regexp2 v1.11.5/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
github.com/evanmschultz/laslig v0.1.1 h1:vGV9hue1xeoiRWKnV3E4c+pywx3Z1jSBUKoErct23Kw=
github.com/evanmschultz/laslig v0.1.1/go.mod h1:7N2h1tPxjc6whmaRtl6n8JAKTd63bgBxVq/ilbWF754=
github.com/evanmschultz/laslig v0.2.1 h1:oxC3YxefyH5G69Ma+qck6++rXrVZlTeP2pjxZ9HByQE=
github.com/evanmschultz/laslig v0.2.1/go.mod h1:4+qYxQTo7ar8F6aLZCtwonxmjpmf4JrnVwCPQrhOOAU=
github.com/evanmschultz/laslig v0.2.3 h1:QM/NhoFjOimQWJF/xPhZNPxh0mPo6uqGBjDR5VwJok4=
github.com/evanmschultz/laslig v0.2.3/go.mod h1:4+qYxQTo7ar8F6aLZCtwonxmjpmf4JrnVwCPQrhOOAU=
github.com/gorilla/css v1.0.1 h1:ntNaBIghp6JmvWnxbZKANoLyuXTPZ4cAMlo6RyhlbO8=
github.com/gorilla/css v1.0.1/go.mod h1:BvnYkspnSzMmwRK+b8/xgNPLiIuNZr6vbZBTPQ2A3b0=
github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM=
Expand Down