summaryrefslogtreecommitdiffstats
path: root/commands
AgeCommit message (Collapse)Author
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
2023-09-20commands: Update CLI docs with the important -u flag in hugo mod getBjørn Erik Pedersen
2023-09-14commands/gen: Remove default highlight styleJoe Mooring
Fixes #11445
2023-09-11commands: Print language code after web server address infoilmari-lauhakangas
2023-08-23Make sure resources directory isn't created in hugo new themeBjørn Erik Pedersen
Fixes #11382
2023-08-21commands/new: Embed site and theme skeletonsJoe Mooring
The skeletons are used when creating new sites and themes with the CLI. Closes #11358
2023-08-08commands: Handle floats without decimals in hugo configBjørn Erik Pedersen
Updates #11345
2023-08-08docs: Replace docs.json with docs.yamlBjørn Erik Pedersen
Updates #11345
2023-08-07Add all config to docshelper.jsonBjørn Erik Pedersen
Also consolidate so the mediaTypes and outputFormats are listed once only. Fixes #11328
2023-08-01releaser: Prepare repository for 0.117.0-DEVrelease-0.116.1hugoreleaser
[ci skip]
2023-08-01releaser: Bump versions for release of 0.116.1v0.116.1hugoreleaser
[ci skip]
2023-07-31releaser: Bump versions for release of 0.116.0v0.116.0hugoreleaser
[ci skip]
2023-07-29commands: Update cacheDir descriptionJoe Mooring
2023-07-28commands: Replace deprecated ioutil with osOleksandr Redko
2023-07-20releaser: Prepare repository for 0.116.0-DEVrelease-0.115.4hugoreleaser
[ci skip]
2023-07-20releaser: Bump versions for release of 0.115.4v0.115.4hugoreleaser
[ci skip]
2023-07-19commands: Delay server builds after the watcher is set upBjørn Erik Pedersen
See #11264
2023-07-19Re-instate disableLiveReload as a config option (and not just a flag)Bjørn Erik Pedersen
Closes #11259
2023-07-13releaser: Prepare repository for 0.116.0-DEVrelease-0.115.3hugoreleaser
[ci skip]
2023-07-13releaser: Bump versions for release of 0.115.3v0.115.3hugoreleaser
[ci skip]
2023-07-08releaser: Prepare repository for 0.116.0-DEVrelease-0.115.2hugoreleaser
[ci skip]
2023-07-08releaser: Bump versions for release of 0.115.2v0.115.2hugoreleaser
[ci skip]
2023-07-08Fix defaultContentLanguageInSubdir with only 1 languageBjørn Erik Pedersen
Fixes #10064
2023-07-04Bump github.com/bep/clock v0.3.0 to renamed github.com/bep/clocks v0.5.0Anthony Fok
2023-07-03releaser: Prepare repository for 0.116.0-DEVrelease-0.115.1hugoreleaser
[ci skip]
2023-07-03releaser: Bump versions for release of 0.115.1v0.115.1hugoreleaser
[ci skip]
2023-06-30commands: Fix index out of range in hugo mod getBjørn Erik Pedersen
Fixes #11190
2023-06-30Only print the path warnings onceBjørn Erik Pedersen
We could reset and rerun it on server rebuilds, but that report needs a full build to make sense. Also clean up the config vs flags in this area: Make all config settings match the flags e.g. `printPathWarnings`, but set up aliases for the old. Fixes #11187
2023-06-29releaser: Bump versions for release of 0.115.0v0.115.0hugoreleaser
[ci skip]
2023-06-29commands: Handle hugo mod get --helpBjørn Erik Pedersen
Fixes #11141
2023-06-28commands: Fix panic when running hugo new theme without theme nameAndreas Deininger
Closes #11162.
2023-06-28Print help message when triggered with no flagsMos Roshanavand
2023-06-28commands: Fix help message for hugo new themeAndreas Deininger
Closes #11161.
2023-06-27Fix false path warnings with resources.PostProcessBjørn Erik Pedersen
Fixes #7735