aboutsummaryrefslogtreecommitdiffhomepage
path: root/commands
AgeCommit message (Collapse)Author
2024-11-25commands: Fix flaw in the livereload logicBjørn Erik Pedersen
I guess most commonly an issue with TailwindCSS editing in templates: * Build changes both CSS and index.html => reload OK. * Build changes both CSS and index.html and some other files => only CSS reloaded. The above would fix itself with one more edit, but that's annoying.
2024-11-16Remove deprecations <= v0.122.0 (note)Bjørn Erik Pedersen
These have, once we release this, been logging ERROR for 6 minor versions.
2024-11-14commands: Add -O flag to server to open browserBjørn Erik Pedersen
Fixes #13040
2024-11-05commands: Print the "deploy not available" error message even if flags providedBjørn Erik Pedersen
Fixes #13012
2024-10-30Build without the deploy feature by defaultBjørn Erik Pedersen
Build tags setup changed to: * !nodeploy => withdeploy * nodeploy => !withdeploy Also move the deploy feature out into its own release archives. See #12994 for the primary motivation for this change. But this also greatly reduces the number of dependencies in Hugo when you don't need this feature and cuts the binary size greatly. Fixes #12994
2024-10-24hugolib/commands: Fix stuck server error issuesBjørn Erik Pedersen
Fixes #11378
2024-10-20Make sure that HugoSites is always closed when doneBjørn Erik Pedersen
Including all the integration tests.
2024-10-15commands: Use consistent style when describing subcommandsRohan Hasabe
Closes #12897 Change-Id: Ib27a4a7b540d45243e6252db769d4b9fb7447718 Signed-off-by: Rohan Hasabe <[email protected]>
2024-09-30commands: Add "hugo build" as an alias for "hugo"Bjørn Erik Pedersen
Closes #11391
2024-09-19commands: Ignore "module does not exist" errors in hugo mod initBjørn Erik Pedersen
Closes #11458
2024-09-18Add exclusion for helix .bck filesDavid Else
Updates #12677
2024-07-07commands: Fix --navigateToChanged server behavior when editing headless contentBjørn Erik Pedersen
Fixes #12648
2024-07-07commands: Simplify the browser live reload logicBjørn Erik Pedersen
And improve the logging for live reload. Closes #12643
2024-07-06Use xxHash for the change detectorBjørn Erik Pedersen
Much faster compared to MD5: ``` name old time/op new time/op delta HashingFs-10 21.3µs ± 2% 3.2µs ±17% -84.96% (p=0.029 n=4+4) name old alloc/op new alloc/op delta HashingFs-10 12.9kB ± 0% 12.8kB ± 1% -1.31% (p=0.029 n=4+4) name old allocs/op new allocs/op delta HashingFs-10 10.0 ± 0% 7.0 ± 0% -30.00% (p=0.029 n=4+4) ``` Updates #12643
2024-07-06commands: Fix hugo mod get -u ./...Bjørn Erik Pedersen
Fixes #12625
2024-06-25Add css.TailwindCSSBjørn Erik Pedersen
Closes #12618 Closes #12620
2024-06-15Fix live reload when both CSS and HTML changesBjørn Erik Pedersen
This seems to be a browser bug (tested in both Chrome and Safari on MacOS), but it seems that doing a `window.location.reload()` (or `window.location.reload(true)`) doesn't refresh the CSS changes, even if HTTP caching is disabled. This commit works around this by doing additional refreshes of the CSSes. Closes #12600
2024-06-05Misc remote HTTP/content adapter enhancementsBjørn Erik Pedersen
* Recover from server errors * Improve go adapter rebuilds when adding new content See #12502 Fixes #12570
2024-06-04Add a HTTP cache for remote resources.Bjørn Erik Pedersen
Fixes #12502 Closes #11891
2024-05-30commands: Add shorthand flags -M (--renderToMemory) and -N (--navigateToChanged)Bjørn Erik Pedersen
Closes #12530
2024-05-22commands: Improve list commandJoe Mooring
- Improve help text - Add "kind" and "section" to CSV output - Add a "published" subcommand to list content that is not draft, expired, or future. Closes #12520
2024-05-14Create pages from _content.gotmplBjørn Erik Pedersen
Closes #12427 Closes #12485 Closes #6310 Closes #5074
2024-05-01commands: Print "Webserver is ..." right before "Total ..."Bjørn Erik Pedersen
Also fix it so * It's not printed when running `hugo -w` * It'd printed for all kinds of rebuilds Fixes #12384
2024-04-25commands: Clarify that create or install a theme are two optionsPeter van Dijk
2024-04-20Fix partial rebuilds for SCSS fetched with GetMatch and similarBjørn Erik Pedersen
Fixes #12395
2024-04-20commands: Add gen chromastyles --lineNumbersTableStyle flagJoe Mooring
For symmetry, also rename --linesStyle to --lineNumbersInlineStyle. Closes #12393
2024-04-18commands: Provide examples for chromastyles flagsJoe Mooring
Closes #12387
2024-04-13hugolib: Display server address after each rebuildJoe Mooring
Closes #12359
2024-04-11commands: Adjust completionsBjørn Erik Pedersen
2024-04-11completion: Improve existing argument completions, add many moreVille Skyttä
Do not offer filenames to arguments not taking one, complete arguments of options taking resource kinds, directory names, --logLevel, release --step, config and new --format. As an internal refactoring, use higher level functions to set flag completions. SetAnnotation works, but is more verbose than alternatives, and uses bash specific wording. While at it, move setting completions next to flag definitions consistently. Remove superfluous --destination completer setting, which is already set elsewhere.
2024-04-11all: Typo fixesChristian Oliff
2024-03-16Add segments config + --renderSegments flagBjørn Erik Pedersen
Named segments can be defined in `hugo.toml`. * Eeach segment consists of zero or more `exclude` filters and zero or more `include` filters. * Eeach filter consists of one or more field Glob matchers. * Eeach filter in a section (`exclude` or `include`) is ORed together, each matcher in a filter is ANDed together. The current list of fields that can be filtered are: * path as defined in https://gohugo.io/methods/page/path/ * kind * lang * output (output format, e.g. html). It is recommended to put coarse grained filters (e.g. for language and output format) in the excludes section, e.g.: ```toml [segments.segment1] [[segments.segment1.excludes]] lang = "n*" [[segments.segment1.excludes]] no = "en" output = "rss" [[segments.segment1.includes]] term = "{home,term,taxonomy}" [[segments.segment1.includes]] path = "{/docs,/docs/**}" ``` By default, Hugo will render all segments, but you can enable filters by setting the `renderSegments` option or `--renderSegments` flag, e.g: ``` hugo --renderSegments segment1,segment2 ``` For segment `segment1` in the configuration above, this will: * Skip rendering of all languages matching `n*`, e.g. `no`. * Skip rendering of the output format `rss` for the `en` language. * It will render all pages of kind `home`, `term` or `taxonomy` * It will render the `/docs` section and all pages below. Fixes #10106
2024-03-13common/hugo: Rename IsMultiHost and IsMultiLingualJoe Mooring
hugo.IsMultiHost => hugo.IsMultihost hugo.IsMultiLingual => hugo.IsMultilingual Closes #12232
2024-03-07docs: Fix hyphens and grammar in synopsis of command 'hugo server'Andreas Deininger
2024-02-20Fix dart sass import regressionBjørn Erik Pedersen
Fixes #12072
2024-02-17commands: Fix --clock with the list commandBjørn Erik Pedersen
Fixes #11888
2024-02-07Avoid impporting deploy from config when nodeploy tag is setBjørn Erik Pedersen
Test: ``` go list -tags nodeploy ./... | grep deploy ``` Fixes #12009
2024-02-05commands: Remove unused memstats flagBjørn Erik Pedersen
2024-02-05source: Remove unused Filesystem structfix/dotfilererr-11993Bjørn Erik Pedersen
2024-02-05commands: Revert the recent changes that allowed profiling on server rebuildsBjørn Erik Pedersen
There have been indications that this may freeze the server.
2024-02-05commands: Make the server flag --renderToDisk into --renderToMemory (note)Bjørn Erik Pedersen
Fixes #11987
2024-02-04Handle resource changes when the resources is already evicted from cacheBjørn Erik Pedersen
Also fix a logical flaw in the cache resizer that made it too aggressive. After this I haven't been able to reproduce #11988, but I need to look closer. Closes #11973 Updates #11988
2024-02-02Misc resource fixes/improvementsBjørn Erik Pedersen
* Add --pprof flag to server to enable profile debugging. * Don't cache the resource content, it seem to eat memory on bigger sites. * Keep --printMemoryUsag running in server Fixes #11974
2024-01-31docs: Make null booleans falsy in the docs helperBjørn Erik Pedersen
2024-01-27all: Rework page store, add a dynacache, improve partial rebuilds, and some ↵develop2024Bjørn Erik Pedersen
general spring cleaning There are some breaking changes in this commit, see #11455. Closes #11455 Closes #11549 This fixes a set of bugs (see issue list) and it is also paying some technical debt accumulated over the years. We now build with Staticcheck enabled in the CI build. The performance should be about the same as before for regular sized Hugo sites, but it should perform and scale much better to larger data sets, as objects that uses lots of memory (e.g. rendered Markdown, big JSON files read into maps with transform.Unmarshal etc.) will now get automatically garbage collected if needed. Performance on partial rebuilds when running the server in fast render mode should be the same, but the change detection should be much more accurate. A list of the notable new features: * A new dependency tracker that covers (almost) all of Hugo's API and is used to do fine grained partial rebuilds when running the server. * A new and simpler tree document store which allows fast lookups and prefix-walking in all dimensions (e.g. language) concurrently. * You can now configure an upper memory limit allowing for much larger data sets and/or running on lower specced PCs. We have lifted the "no resources in sub folders" restriction for branch bundles (e.g. sections). Memory Limit * Hugos will, by default, set aside a quarter of the total system memory, but you can set this via the OS environment variable HUGO_MEMORYLIMIT (in gigabytes). This is backed by a partitioned LRU cache used throughout Hugo. A cache that gets dynamically resized in low memory situations, allowing Go's Garbage Collector to free the memory. New Dependency Tracker: Hugo has had a rule based coarse grained approach to server rebuilds that has worked mostly pretty well, but there have been some surprises (e.g. stale content). This is now revamped with a new dependency tracker that can quickly calculate the delta given a changed resource (e.g. a content file, template, JS file etc.). This handles transitive relations, e.g. $page -> js.Build -> JS import, or $page1.Content -> render hook -> site.GetPage -> $page2.Title, or $page1.Content -> shortcode -> partial -> site.RegularPages -> $page2.Content -> shortcode ..., and should also handle changes to aggregated values (e.g. site.Lastmod) effectively. This covers all of Hugo's API with 2 known exceptions (a list that may not be fully exhaustive): Changes to files loaded with template func os.ReadFile may not be handled correctly. We recommend loading resources with resources.Get Changes to Hugo objects (e.g. Page) passed in the template context to lang.Translate may not be detected correctly. We recommend having simple i18n templates without too much data context passed in other than simple types such as strings and numbers. Note that the cachebuster configuration (when A changes then rebuild B) works well with the above, but we recommend that you revise that configuration, as it in most situations should not be needed. One example where it is still needed is with TailwindCSS and using changes to hugo_stats.json to trigger new CSS rebuilds. Document Store: Previously, a little simplified, we split the document store (where we store pages and resources) in a tree per language. This worked pretty well, but the structure made some operations harder than they needed to be. We have now restructured it into one Radix tree for all languages. Internally the language is considered to be a dimension of that tree, and the tree can be viewed in all dimensions concurrently. This makes some operations re. language simpler (e.g. finding translations is just a slice range), but the idea is that it should also be relatively inexpensive to add more dimensions if needed (e.g. role). Fixes #10169 Fixes #10364 Fixes #10482 Fixes #10630 Fixes #10656 Fixes #10694 Fixes #10918 Fixes #11262 Fixes #11439 Fixes #11453 Fixes #11457 Fixes #11466 Fixes #11540 Fixes #11551 Fixes #11556 Fixes #11654 Fixes #11661 Fixes #11663 Fixes #11664 Fixes #11669 Fixes #11671 Fixes #11807 Fixes #11808 Fixes #11809 Fixes #11815 Fixes #11840 Fixes #11853 Fixes #11860 Fixes #11883 Fixes #11904 Fixes #7388 Fixes #7425 Fixes #7436 Fixes #7544 Fixes #7882 Fixes #7960 Fixes #8255 Fixes #8307 Fixes #8863 Fixes #8927 Fixes #9192 Fixes #9324
2023-11-01Avoid double printing INFO deprecation messagesBjørn Erik Pedersen
Fixes #11645
2023-10-30commands/new: Remove format flag from new content cmdJoe Mooring
Fixes #11462
2023-10-26Revise the deprecation loggingBjørn Erik Pedersen
This introduces a more automatic way of increasing the log levels for deprecation log statements based on the version it was deprecated. The thresholds are a little arbitrary, but * We log INFO for 6 releases * We log WARN for another 6 releases * THen ERROR (failing the build) This should give theme authors plenty of time to catch up without having the log filled with warnings.
2023-10-06commands: Update message displayed when running CLI from GUIJoe Mooring
Fixes #11525
2023-10-05all: Format files with gofmtOleksandr Redko