| Age | Commit message (Expand) | Author | Files | Lines |
| 2023-12-20 | all: cleanup unused code, part 1 (#10661) | Andrew Lytvynov | 2 | -5/+4 |
| 2023-08-27 | util/deephash: add IncludeFields, ExcludeFields HasherForType Options | Brad Fitzpatrick | 2 | -7/+138 |
| 2023-08-19 | util/deephash: relax an annoyingly needy test | Brad Fitzpatrick | 1 | -3/+3 |
| 2023-08-08 | all: require Go 1.21 | Brad Fitzpatrick | 1 | -6/+2 |
| 2023-07-25 | tailcfg,ipn/ipnlocal,wgengine: add values to PeerCapabilities | Maisem Ali | 1 | -1/+1 |
| 2023-07-08 | tailcfg,etc: remove unused tailcfg.Node.KeepAlive field | Brad Fitzpatrick | 1 | -2/+2 |
| 2023-06-25 | .github: actually run tests in CI | Maisem Ali | 1 | -3/+13 |
| 2023-04-13 | tailcfg: make SelfNodeV4MasqAddrForThisPeer a pointer | Maisem Ali | 1 | -2/+2 |
| 2023-04-08 | tailcfg,wgengine: add initial support for WireGuard only peers | Charlotte Brandhorst-Satzkorn | 1 | -2/+2 |
| 2023-03-23 | tailcfg: add Node.SelfNodeV4MasqAddrForThisPeer | Maisem Ali | 1 | -2/+2 |
| 2023-02-01 | all: update to Go 1.20, use strings.CutPrefix/Suffix instead of our fork | Brad Fitzpatrick | 1 | -2/+2 |
| 2023-01-27 | all: update copyright and license headers | Will Norris | 9 | -27/+18 |
| 2023-01-19 | all: start groundwork for using capver for localapi & peerapi | Brad Fitzpatrick | 1 | -3/+4 |
| 2023-01-11 | control/controlclient, tailcfg: add Node.Expired field, set for expired nodes | Andrew Dunham | 1 | -1/+1 |
| 2022-11-30 | types/ptr: move all the ptrTo funcs to one new package's ptr.To | Brad Fitzpatrick | 1 | -6/+5 |
| 2022-11-02 | tailcfg: add Node.UnsignedPeerAPIOnly to let server mark node as peerapi-only | Brad Fitzpatrick | 1 | -1/+1 |
| 2022-09-29 | all: fix spelling mistakes | Josh Soref | 3 | -8/+8 |
| 2022-09-27 | util/deephash: add AppendSum method (#5768) | Andrew Dunham | 2 | -0/+33 |
| 2022-09-22 | tailcfg, util/deephash: add DataPlaneAuditLogID to Node and DomainDataPlaneAu... | Aaron Klotz | 1 | -1/+1 |
| 2022-08-30 | util/deephash: handle slice edge-cases (#5471) | Joe Tsai | 2 | -6/+84 |
| 2022-08-27 | util/deephash: remove getTypeInfo (#5469) | Joe Tsai | 2 | -93/+32 |
| 2022-08-27 | util/deephash: require pointer in API (#5467) | Joe Tsai | 2 | -122/+97 |
| 2022-08-27 | util/deephash: move pointer and interface logic to separate function (#5465) | Joe Tsai | 1 | -35/+49 |
| 2022-08-27 | util/deephash: move map logic to separate function (#5464) | Joe Tsai | 2 | -57/+64 |
| 2022-08-27 | util/deephash: coalesce struct logic (#5466) | Joe Tsai | 1 | -64/+48 |
| 2022-08-27 | util/deephash: move array and slice logic to separate function (#5463) | Joe Tsai | 1 | -41/+39 |
| 2022-08-27 | util/deephash: use unsafe.Pointer instead of reflect.Value (#5459) | Joe Tsai | 5 | -162/+408 |
| 2022-08-27 | util/deephash: add debug printer (#5460) | Joe Tsai | 1 | -0/+38 |
| 2022-08-26 | util/deephash: rely on direct memory hashing for primitive kinds (#5457) | Joe Tsai | 2 | -97/+31 |
| 2022-08-26 | util/deephash: delete slow path (#5423) | Joe Tsai | 2 | -229/+49 |
| 2022-08-24 | util/deephash: expand fast-path capabilities (#5404) | Joe Tsai | 1 | -28/+56 |
| 2022-08-22 | control/controlclient,tailcfg: [capver 40] create KeySignature field in tailc... | Tom DNetto | 1 | -1/+1 |
| 2022-08-18 | util/deephash: specialize for netip.Addr and drop AppendTo support (#5402) | Joe Tsai | 3 | -54/+140 |
| 2022-08-16 | util/hashx: move from sha256x (#5388) | Joe Tsai | 1 | -1/+1 |
| 2022-08-16 | util/sha256x: rename Hash as Block512 (#5351) | Joe Tsai | 2 | -6/+13 |
| 2022-08-16 | util/deephash: move typeIsRecursive and canMemHash to types.go (#5386) | Joe Tsai | 4 | -188/+206 |
| 2022-08-15 | util/deephash: simplify typeIsRecursive (#5385) | Joe Tsai | 1 | -32/+11 |
| 2022-08-15 | util/deephash: remove unused stack slice in typeIsRecursive (#5363) | Joe Tsai | 1 | -4/+0 |
| 2022-08-15 | util/deephash: simplify canMemHash (#5384) | Joe Tsai | 2 | -22/+21 |
| 2022-08-15 | util/deephash: avoid variadic argument for Update (#5372) | Joe Tsai | 1 | -6/+5 |
| 2022-08-12 | util/deephash: use binary encoding of time.Time (#5352) | Joe Tsai | 2 | -14/+72 |
| 2022-08-11 | util/deephash: use sha256x (#5339) | Joe Tsai | 2 | -139/+112 |
| 2022-08-11 | util/deephash: avoid using sync.Pool for reflect.MapIter (#5333) | Joe Tsai | 1 | -7/+2 |
| 2022-08-09 | util/deephash: always keep values addressable (#5328) | Joe Tsai | 2 | -109/+135 |
| 2022-08-02 | all: migrate more code code to net/netip directly | Brad Fitzpatrick | 1 | -2/+1 |
| 2022-08-02 | all: gofmt for Go 1.19 | Brad Fitzpatrick | 1 | -5/+5 |
| 2022-07-27 | util/deephash: fix unexported time.Time hashing | Brad Fitzpatrick | 3 | -2/+56 |
| 2022-07-25 | all: convert more code to use net/netip directly | Brad Fitzpatrick | 1 | -9/+9 |
| 2022-07-25 | all: use various net/netip parse funcs directly | Brad Fitzpatrick | 1 | -16/+17 |
| 2022-07-25 | net/netaddr: start migrating to net/netip via new netaddr adapter package | Brad Fitzpatrick | 1 | -1/+1 |