summaryrefslogtreecommitdiffstats
path: root/testscripts/commands
AgeCommit message (Collapse)Author
2024-03-14deps: Upgrade github.com/alecthomas/chroma/v2 to v2.13.0Paul Jolly
Closes #11862
2024-03-10hugolib: Deprecate .Site.MultiLingual in favor of hugo.IsMultiLingualJoe Mooring
Closes #12224
2024-03-07Add hugo.IsMultiHostrazonyang
2024-02-22commands/mod: Ignore invalid module pathRazon Yang
2024-02-22Fix regression on handling of overlapping file mountsBjørn Erik Pedersen
But note that the overlay file system is set up horizontally (project -> module1 -> module2), so I would not recommend too complex overlapping mount setups within the same module. But this worked in v0.122.0, so we should fix it. Fixes #12103
2024-02-17commands: Fix --clock with the list commandBjørn Erik Pedersen
Fixes #11888
2024-02-05commands: Make the server flag --renderToDisk into --renderToMemory (note)Bjørn Erik Pedersen
Fixes #11987
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-01Add a field prefix to the deprecated log statementsBjørn Erik Pedersen
To make theme easier to spot, esp. on INFO level.
2023-10-31Fix deprecation printing on info levelBjørn Erik Pedersen
Fixes #11638
2023-10-22Fix so hugo get -u updates transitivelyRazon Yang
2023-09-14commands/gen: Remove default highlight styleJoe Mooring
Fixes #11445
2023-08-30Delay the creation of cache directories until they're usedBjørn Erik Pedersen
Fixes #11390
2023-08-30testscripts: Move hugo new tests to where they belongBjørn Erik Pedersen
2023-08-23Make sure resources directory isn't created in hugo new themeBjørn Erik Pedersen
Fixes #11382
2023-08-23testscripts: Make mod vendor test stableBjørn Erik Pedersen
2023-08-23Fix it so disable a module does not disable transitive dependency required ↵Bjørn Erik Pedersen
by others The motivation behind the original implementation was probably to show disabled modules when running `hugo mod graph`. Fixes #11376
2023-08-23create/skeletons: Move theme's site config to top levelJoe Mooring
Closes #11380
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-01Fix module config watch regressionBjørn Erik Pedersen
Fixes #11313
2023-07-27Use os.UserCacheDir as first fallback if cacheDir is not setBjørn Erik Pedersen
We will now try 1. cacheDir (or, commonly set in environment as `HUGO_CACHEDIR`) 2. if on Netlify we use `/opt/build/cache/hugo_cache/` 3. os.UserCacheDir 4. A temp dir Storing the cache, especially the module cache, in a temporary idea has had lots of hard to debug issues, especially on MacOS, which this commit tries to fix. This should also make it easier to locate the Hugo cache: >UserCacheDir returns the default root directory to use for user-specific cached data. Users should create their own application-specific subdirectory within this one and use that. > >On Unix systems, it returns $XDG_CACHE_HOME as specified by https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html if non-empty, else $HOME/.cache. On Darwin, it returns $HOME/Library/Caches. On Windows, it returns %LocalAppData%. On Plan 9, it returns $home/lib/cache. > >If the location cannot be determined (for example, $HOME is not defined), then it will return an error. Fixes #11286 Fixes #11291
2023-07-19commands: Move testscript into its correct placeBjørn Erik Pedersen
2023-07-19Re-instate disableLiveReload as a config option (and not just a flag)Bjørn Erik Pedersen
Closes #11259
2023-07-08Fix hugo mod vendor for modules with hugo.tomlBjørn Erik Pedersen
Fixes #11221
2023-06-29commands: Handle hugo mod get --helpBjørn Erik Pedersen
Fixes #11141
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
2023-06-24commands: Enable format flag with hugo new siteJoe Mooring
Fixes #11155
2023-06-18deploy: Fix deploy defaults for non-zero flag values (e.g. maxDeletes, ↵Bjørn Erik Pedersen
invalidateCDN) This was broken in the config rewrite in Hugo 0.112.0. The workaround is to be explicit about setting these flag values (even if just using the defaults), e.g.: ``` hugo deploy --invalidateCDN --maxDeletes 256 ``` Fixes #11127
2023-06-13Fix handling of aliases (e.g. hugo serve)Bjørn Erik Pedersen
Fixes #11090
2023-06-05commands: Add TLS/HTTPS support to hugo serverBjørn Erik Pedersen
* commands: Add TLS/HTTPS support to hugo server The "auto cert" handling in this PR is backed by mkcert (see link below). To get this up and running on a new PC, you can: ``` hugo server trust hugo server --tlsAuto ``` When `--tlsAuto` (or `--tlsCertFile` and `--tlsKeyFile`) is set and no `--baseURL` is provided as a flag, the server is started with TLS and `https` as the protocol. Note that you only need to run `hugo server trust` once per PC. If you already have the key and the cert file (e.g. by using mkcert directly), you can do: ``` hugo server --tlsCertFile mycert.pem --tlsKeyFile mykey.pem ``` See https://github.com/FiloSottile/mkcert Fixes #11064
2023-06-02Don't inject livereload script on hugo -wBjørn Erik Pedersen
Fixes #11061
2023-05-28Fix Processed images count regression for multiple languagesBjørn Erik Pedersen
Fixes #11002
2023-05-28commands: Reinstate some of the removed build flags (e.g. --theme) to new ↵Bjørn Erik Pedersen
and mod Fixes #11018
2023-05-28Don't create the public folder unless neededBjørn Erik Pedersen
Fixes #11031
2023-05-27commands: Fail the build when no config file or config dirBjørn Erik Pedersen
Fixes #11019
2023-05-27Fix --renderStaticToDisk regressionBjørn Erik Pedersen
Fixes #11026
2023-05-27commands: Re-introduce the -f shorthand for hugo new siteBjørn Erik Pedersen
Fixes #11015
2023-05-24Fix regression when loading config -e is empty or HUGO_ENV or ↵Bjørn Erik Pedersen
HUGO_ENVIRONMENT is set Fixes #11013
2023-05-24Fix regression with site.IsServer when not running a serverBjørn Erik Pedersen
Fixes #11006
2023-05-22Add --format to hugo configBjørn Erik Pedersen
Now default to TOML.
2023-05-22Fix "unknown command" message when no suggestionBjørn Erik Pedersen
Updates #10953
2023-05-22commands: Make all list commands list what 'all' did beforeBjørn Erik Pedersen
Also, always include the CSV header. Updates #10953
2023-05-21commands: Fix build logic when listing expired/future draft contentBjørn Erik Pedersen
Fixes #10972
2023-05-19Re-add --printUnusedTemplates and --printPathWarningsBjørn Erik Pedersen
And now with tests. Updates #10953
2023-05-18commands: Load config before creating the filesystemBjørn Erik Pedersen
To allow publishDir to be set in config file.
2023-05-17commands: Improve the common build flag handlingBjørn Erik Pedersen
Updates #10947
2023-05-17Re-establish all the server flagsBjørn Erik Pedersen
Updates #10947
2023-05-16Create a struct with all of Hugo's config optionsBjørn Erik Pedersen
Primary motivation is documentation, but it will also hopefully simplify the code. Also, * Lower case the default output format names; this is in line with the custom ones (map keys) and how it's treated all the places. This avoids doing `stringds.EqualFold` everywhere. Closes #10896 Closes #10620