| Age | Commit message (Expand) | Author |
| 2022-03-31 | text/template: remove newline special casing in documentation | Sean Liao |
| 2022-03-15 | text/template/parse: allow space after continue or break | Rob Pike |
| 2021-12-13 | all: gofmt -w -r 'interface{} -> any' src | Russ Cox |
| 2021-10-29 | text/template: use reflect.Value.FieldByIndexErr | Rob Pike |
| 2021-10-26 | all: use reflect.{Pointer,PointerTo} | Cuong Manh Le |
| 2021-10-18 | html/template: remove unused `mode` field on `Tree` struct | Gusted |
| 2021-10-06 | all: use bytes.Cut, strings.Cut | Russ Cox |
| 2021-10-05 | text/template: only unwrap final and/or value | Ian Lance Taylor |
| 2021-10-01 | text/template: undo reflect.Value wrapping for short-circuit and/or | Ian Lance Taylor |
| 2021-09-29 | text/template: check final value for short-circuit and/or | Ian Lance Taylor |
| 2021-09-23 | html/template, text/template: implement break and continue for range loops | Russ Cox |
| 2021-09-21 | text/template: implement short-circuit and, or | Russ Cox |
| 2021-09-20 | text/template: initialize template before locking it | Ian Lance Taylor |
| 2021-05-06 | text/template: fix type bug in eq | Russ Cox |
| 2021-05-06 | text/template/parse: rename DeferFuncCheck to SkipFuncCheck | Russ Cox |
| 2021-05-04 | text/template: add lock for Template.tmpl to fix data race | Ian Lance Taylor |
| 2021-04-19 | text/template/parse: add a mode to skip func-check on parsing | Ariel Mashraki |
| 2021-04-12 | text/template: replace os.MkdirTemp with T.TempDir | Manlio Perillo |
| 2021-03-05 | text/template: wrap errors returned by template functions instead of stringif... | Adrien Delorme |
| 2021-02-25 | reflect: add Method.IsExported and StructField.IsExported methods | Joe Tsai |
| 2020-12-15 | text/template: error on range over send channel | Meng Zhuo |
| 2020-12-09 | all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTemp | Russ Cox |
| 2020-10-20 | all: update references to symbols moved from io/ioutil to io | Russ Cox |
| 2020-10-20 | html/template, text/template: add ParseFS | Russ Cox |
| 2020-10-12 | text/template: allow newlines inside action delimiters | Russ Cox |
| 2020-08-28 | text/template: add CommentNode to template parse tree | Ariel Mashraki |
| 2020-07-14 | html/template: add tests from text/template | Russ Cox |
| 2020-06-23 | text/template: fix lint typo in VariableNode doc | Macks |
| 2020-05-21 | all: use a hermetic "go" tool in standard-library tests | Bryan C. Mills |
| 2020-04-16 | html/template,text/template: switch to Unicode escapes for JSON compatibility | empijei |
| 2020-04-15 | text/template: avoid a global map to help the linker's deadcode elimination | Brad Fitzpatrick |
| 2020-02-24 | text/template: make reflect.Value indirections more robust | Daniel Martí |
| 2020-01-23 | text/template/parse: remove redundant return | Ariel Mashraki |
| 2019-12-19 | text/template: indirect interfaces before slicing | Daniel Martí |
| 2019-12-17 | text/template: remove an incorrect comment and clarify docs for AddParseTree | Oliver Powell |
| 2019-11-21 | text/template: harden JSEscape to also escape ampersand and equal | Roberto Clapis |
| 2019-11-12 | text/template: add error check for parenthesized first argument in pipeline | Rob Pike |
| 2019-10-03 | text/template/parse: speed up nodes printing | Ariel Mashraki |
| 2019-10-01 | text/template/parse: remove duplication in peekNonSpace | Ariel Mashraki |
| 2019-10-01 | text/template/parse: use strings.Builder in Chain and List nodes | Ariel Mashraki |
| 2019-10-01 | text/template/parse: use strings.Builder in String methods | Ariel Mashraki |
| 2019-10-01 | text/template: further simplify building the vars list | Rob Pike |
| 2019-09-30 | text/template/parse: specify slice capacity in Pipenode.CopyPipe() | Pantelis Sampaziotis |
| 2019-09-25 | text/template: don't evaluate '.' as a float64 | Daniel Martí |
| 2019-09-25 | text/template: support all comparable types in eq | Ariel Mashraki |
| 2019-09-06 | text/template: refer to sorted map keys as "ordered" not "comparable" in docs | Mihai Borobocea |
| 2019-08-27 | text/template: avoid allocating a new common in copy | tnclong |
| 2019-08-27 | text/template: replace bytes.Buffer with strings.Builder | Dong-hee Na |
| 2019-06-17 | html/template, text/template: document glob semantics | Andrew Gerrand |
| 2019-06-07 | text/template: clarify the safety of Template.New | Daniel Martí |