--- - branch: MAIN date: Mon Feb 6 22:03:10 UTC 2023 files: - new: '1.3' old: '1.2' path: pkgsrc/www/hugo/DESCR pathrev: pkgsrc/www/hugo/DESCR@1.3 type: modified - new: '1.71' old: '1.70' path: pkgsrc/www/hugo/Makefile pathrev: pkgsrc/www/hugo/Makefile@1.71 type: modified - new: '1.18' old: '1.17' path: pkgsrc/www/hugo/distinfo pathrev: pkgsrc/www/hugo/distinfo@1.18 type: modified - new: '1.9' old: '1.8' path: pkgsrc/www/hugo/go-modules.mk pathrev: pkgsrc/www/hugo/go-modules.mk@1.9 type: modified id: 20230206T220310Z.b66f101fd2f9f3b801021228ff01fae86cd8d027 log: "hugo: update to version 0.110.0\n\nChangeLog:\n\nv0.110.0\nNote\n Make readFile return nil when file not found (note) 3c51625 @bep #9620\n Make hugo.toml the new config.toml f38a2fb @bep #8979\n\nBug fixes\n Fix permalinks issue with repeated sections 671f64b @bep #10377\n Fix HEAD method in resources.GetRemote f13531e @bep #10604\n Fix order when reading custom headers in resources.GetRemote b5d4850 @bep #10616\n resource: Fix Go Doc vs .Data.Integrity fbc3e08 @bep\n\nImprovements\n \ related: Handly []any d595419 @bep #10624\n tpl/strings: Add findRESubmatch 2fb40ec @bep #10594\n config/security: Add GO\\w+ (e.g. GOROOT) to the default allowed list c6b3887 @bep #10429\n Preserve front matter slice value types (e.g. int) 21af5b3 @bep #10624\n Make hugo.toml the new config.toml f38a2fb @bep #8979\n Add fill HTTP Response info into .Data in resources.GetRemote 6a579eb @bep #10604\n tpl/compare: Sort special float values as string f95fd57 @acclassic #10389\n tpl/diagrams: Move Goat to its own file e754d5c @bep\n \ Update CONTRIBUTING.md 002cd52 @bep\n Update CONTRIBUTING.md a76c405 @bep\n\nDependency Updates\n deps: Upgrade github.com/evanw/esbuild v0.15.18 => v0.17.0 6e9fa9e @bep #10536\n\nDocumentation\n dos: Regen CLI docs 19e9605 @bep\n docs: Regen docshelper 80e8bd3 @bep\n Update README.md c4f3a46 @bep\n Misc doc, code refactoring to improve documentation e402d91 @bep\n Update README.md c0a03a2 @bep\n\nBuild Setup\n Remove reference to Goreleaser in code comment dd6d0a6 @omarkohl\n\nv0.109.0\n\nHugo v0.109.0 is the last release of 2022 รข\x80\x93 and with that we're wishing all of you a very merry Christmas and a prosperous new year1.\nNotable new features\nPass variables to SCSS/SASS\n\nHugo has had great SCSS/SASS support, but passing variables (e.g. theme colours from config) down to the transpiler has been much harder than it should.\n\nIn Hugo v0.109.0 we added a new vars option and you can finally just do:\n\n{{ $vars := dict \"color1\" \"blue\" \"color2\" \"green\" \"font_size\" \"24px\" }}\n{{ $opts := (dict \"transpiler\" \"dartsass\" \"outputStyle\" \"compressed\" \"vars\" $vars ) }}\n{{ $r := resources.Get \"scss/main.scss\" | toCSS $opts }}\n\nAnd then in the SCSS file:\n\n@use \"hugo:vars\" as v;\n\np {\n color: v.$color1;\n font-size: v.$font-size;\n}\n\nMore examples here.\nHugo Module Workspaces\n\nWorkspace support was added in Go 1.18, and in this release Hugo finally gets solid support for it.\n\nA common use case for a workspace is to simplify local development of a site with its theme modules.\n\nA workspace can be configured in a *.work file and activated with the module.workspace setting, which for this use is commonly controlled via the HUGO_MODULE_WORKSPACE OS environment variable.\n\nSee the hugo.work file in the Hugo Docs repo for an example:\n\ngo 1.19\n\nuse .\nuse ../gohugoioTheme\n\nUsing the use directive, list all the modules you want to work on, pointing to its relative location. As in the example above, it's recommended to always include the main project (the \".\") in the list.\n\nWith that you can start the Hugo server with that workspace enabled:\n\nHUGO_MODULE_WORKSPACE=hugo.work hugo server --ignoreVendorPaths \"**\"\n\nThe --ignoreVendorPaths flag is added above to ignore any of the vendored dependencies inside _vendor. If you don't use vendoring, you don't need that flag. But now the server is set up watching the files and directories in the workspace and you can see your local edits reloaded.\nBreadcrumbs\n\nWe have added a new .Ancestors method on Page that walks up the tree to the home page. With this, breadcrumbs templates can be greatly simplified:\n\n
    \n \n
\n\nThe path to /public now available in PostCSS\n\nSo you can do process.env.HUGO_PUBLISHDIR in your postcss.config.js to figure out where Hugo publishes\nits files.\n\nNote that the value will always be an absolute file path and will point to a directory on disk even when running hugo server in memory mode.\n\nIf you write to this folder from PostCSS when running the server, you could run the server with one of these flags:\n\nhugo server --renderToDisk\nhugo server --renderStaticToDisk\n\nNote\n modules: Make the module.workspace=off as default (note) 0d4b17d @bep #10553\n release: Add a note section in release notes 3afaca7 @bep\n helpers: Allow at signs in UnicodeSanitize (note) 2d217cb @jmooring #10548\n Also consider wrapped errors when checking for file IsNotExist errors ad20598 @bep #10534\n\nBug fixes\n If you use the legacy libsass transpiler in toCSS and uses the cached build\n to avoid having the extended version installed on the CI server, you need to\n rebuild those assets and commit them to source control (e.g. with hugo --gc).\n tpl/resources: Fix data race in ToCSS aa2c724 @bep #10542\n tocss: Fix unquote case with double quotes 5d5f0a2 @septs #10555\n \ resources/js: Fix some import discrepancies between Hugo and ESBuild b54de1b @bep #10527\n parser/metadecoders: Fix spelling e0e63f3 @lacamera\n\nImprovements\n \ Adjust \"you need the extended version\" error message 180dfeb @bep\n resource/page: Slight adjustment of Page.Ancestors eb0c8f9 @bep #10567\n resource/page: Add Page.Ancestors 3a21618 @septs #10567\n Annotate test assertions 7183232 @jmooring\n \ hugolib: Exclude non-linkable pages from translations map 37ab1cf @jmooring #9073\n Add HUGO_PUBLISHDIR to the Node environment 59af05c @bep #10554\n Revert \"tpl/tplimpl: Use https in sitemap templates\" 4989da6 @jmooring\n tocss: Add some more test cases effa6a4 @bep #10555\n Allow \"fast render mode\" even if --disableLiveReload is set d20d265 @bep #10561\n tocss: Add vars option 41a080b @bep #10555\n modules: Improve \"module workspace\" not found error eda1e72 @bep\n modules: Adjust watch logic vs workspace use definitions 330fa89 @bep\n Add any configured Go Workspace file to the config watcher 6db5274 @bep #10556\n parser/metadecoders: Remove superflous cast in test 17055d1 @bep\n \ parser/metadecoders: Simplify nil check in Unmarshal 2a81a49 @bep\n parser/metadecoders: Add empty /data JSON file as empty map e30d711 @acclassic #8601\n tpl/openapi3: Wrap *kopenapi3.T 87e898a @bep\n github: Use ruby/setup-ruby d894269 @bep #10517\n \ tpl/tplimpl: Use https in sitemap templates 3fd0b78 @jmooring #10515\n\nDependency Updates\n build(deps): bump golang.org/x/tools from 0.3.0 to 0.4.0 7874b96 @dependabot[bot]\n\nDocumentation\n docs: Regen docs helper JSON 10bb29d @bep\n \ tpl: Improve template funcs GoDoc cd1ed56 @bep\n\nBuild Setup\n github: Update to Dart Sass 1.56.2 c9354d5 @bep\n We're working on some bigger and even more exiting Hugo features that will\n be ready early next year. Stay tuned!\n\nv0.108.0\nWith Hugo v0.108.0 you can render standalone Markdown images without a\nsurrounding paragraph. Both the HTML- and CommonMark-specification defines\nimage as an inline element. For Markdown, this has meant that if you put an\nimage on its own (not inlined in another paragraph), it would be wrapped\nin

tags, even if you provide your own Render Hook Template.\n\nNow you can get by this annoyance by setting markup.goldmark.parser.wrapStandAloneImageWithinParagraph = false\n\n[markup]\n [markup.goldmark]\n [markup.goldmark.parser]\n wrapStandAloneImageWithinParagraph = false\n [markup.goldmark.parser.attribute]\n block = true\n\nIn the above we have also enabled attribute support for Markdown blocks to\nillustrate another nice side effect of this; it's now possible to use Markdown\nattributes (e.g. CSS classes) on standalone images:\n\nThis is an inline image: ![Inline Image](/inline.jpg). Some more text.\n\n![Block Image](/block.jpg)\n{.blue}\n\nThe images in the above Markdown example would, given the hook template below, be rendered wrapped in a figure element with the blue CSS class applied in the latter example.\n\n{{ if .IsBlock }}
\"{{
\n{{ else }}\"{{{{ end }}\n\nTwo new fields are added to the render context passed to image render hooks:\n IsBlock: Returns true if this is a standalone image and the config option\n markup.goldmark.parser.wrapStandAloneImageWithinParagraph is disabled.\n Ordinal: Zero-based ordinal for all the images in the current document.\n\nBug fixes\n common/hugio: Fix multiWriteCloser.Close 5067775 @bep #10505\n tpl/collections: Fix some index cases where the indices given is a slice and be more lenient with nil inputs d373774 @bep #10489\n\nImprovements\n \ Make the hugo env non verbose output slightly more verbose f97544a @bep\n \ Add dart-sass-embedded version info to hugo env -v d8efe08 @bep\n tpl/embedded: Make Open Graph's series optional b82b547 @razonyang\n dartsass: Add sourceMapIncludeSources option e93138d @bep\n github: Update Dart Sass Embedded to 1.56.1 7d16c3c @bep\n \ markup/goldmark: Add removeSurroundingParagraph for Markdown images 63126c6 @bep #8362 #10492 #10494 #10501\n tpl/tplimpl: Allow alternate comment syntax 0b976d2 @jmooring #10495\n resources: Increase timeout for http.Client a49e51f @dirtymew #10478\n config/security: Add CI env var to whitelist dc44bca @septs\n \ tpl: Use consistent delimiter spacing in examples b8d5c37 @jmooring\n\nDependency Updates\n deps: Upgrade github.com/bep/godartsass v0.15.0 => v0.16.0 f5b5b71 @bep\n build(deps): bump github.com/getkin/kin-openapi from 0.109.0 to 0.110.0 50549c8 @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.15.16 to 0.15.18 535ea8c @dependabot[bot]\n build(deps): bump golang.org/x/text from 0.4.0 to 0.5.0 8bbec42 @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.15.15 to 0.15.16 0bfa293 @dependabot[bot]\n deps: Upgrade github.com/bep/godartsass v0.14.0 => v0.15.0 83080df @bep\n\nDocumentation\n docs: Add basic doc for wrapStandAloneImageWithinParagraph etc. de9c554 @bep #10492\n tpl: Misco GoDoc improvements 7d5e3ab @bep\n docs: Regen docs helper 75f782a @bep\n\nv0.107.0\nThis release is mostly interesting if you do code highlighting. We fixed a\nbottle neck which should show a significant performance boost for sites using\ncode highlighting. Hugo's gohugo.io docs site builds ~20% faster. Also, Chroma,\nthe highlighting library, is upgraded to v2.4.0 with new lexers and lots of\nimprovements.\n\nBug fixes\n hugo/parser: Fix shortcode boolean param parsing 00fe7e0 @jmooring #10451\n\nImprovements\n Add a cache for lexers.Get 7855b47 @bep\n markup/goldmark: Improve benchmark 34d1150 @bep\n commands: Create assets directory with new site 85e2ac1 @jmooring #10460\n\nDependency Updates\n build(deps): bump github.com/getkin/kin-openapi from 0.108.0 to 0.109.0 6a004b8 @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.15.14 to 0.15.15 0923622 @dependabot[bot]\n build(deps): bump github.com/frankban/quicktest from 1.14.3 to 1.14.4 7477672 @dependabot[bot]\n build(deps): bump golang.org/x/tools from 0.2.0 to 0.3.0 63f7f0f @dependabot[bot]\n deps: Upgrade github.com/alecthomas/chroma/v2 v2.4.0 bcb62d8 @bep\n\nv0.106.0\nBug fixes\n Fix taxonomy weight sort regression 52ea07d @bep #10406\n tlp/resources: resources.Get returns nil when given empty string db945a6 @shifterbit\n tpl/internal: Sync go_templates f6ab955 @bep #10411\n\nDependency Updates\n build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.4 to 2.0.6 bafb389 @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.15.13 to 0.15.14 cdd83bf @dependabot[bot]\n deps: Update the libweb version string e00220a @bep\n deps: Upgrade github.com/bep/gowebp v0.1.0 => v0.2.0 a662dda @bep\n build(deps): bump github.com/yuin/goldmark from 1.5.2 to 1.5.3 fe08d35 @dependabot[bot]\n build(deps): bump github.com/spf13/afero from 1.9.2 to 1.9.3 4b675dd @dependabot[bot]\n build(deps): bump github.com/getkin/kin-openapi from 0.107.0 to 0.108.0 24eaa29 @dependabot[bot]\n build(deps): bump github.com/clbanning/mxj/v2 from 2.5.6 to 2.5.7 58a98c7 @dependabot[bot]\n build(deps): bump golang.org/x/net from 0.1.0 to 0.2.0 900904f @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.15.12 to 0.15.13 24eca0c @dependabot[bot]\n\nDocumentation\n docs: Regen CLI docs 0a019a1 @bep\n docs: Regenerate docs helper 9f7fb0a @bep\n Add Go 1.16+ install method to README 60e0e2c @vgnh\n readme: Update ToC 13adf3e @vgnh\n\nv0.105.0\nBug fixes\n Avoid nilpointer when shortcode page content output nil e5d2a8f @davidejones #10391\n Revise the fix for shortcode vs output format nilpointer 631d768 @bep #10391\n\nImprovements\n livereload: Use text/javascript here, too 00ff161 @bep\n media: Rename application/javascript, application/typescript to text/javascript etc. 588710a @bep\n Skip flakey server tests on GitHub Action on Windows 20ef6dc @bep\n github: Avoid duplicate test runs d1cd1db @bep\n \ tpl/encoding: Add noHTMLEscape option to jsonify 09e1011 @bep\n Don't use self-closing generator tag 01ebb6e @djibe\n github: Use SHA versions 1fd3320 @bep\n Resolve dependency-path not found error in workflow 0fb2b3d @jongwooo\n \ Use setup-go action to cache dependencies db05232 @jongwooo\n\nDependency Updates\n build(deps): bump golang.org/x/tools from 0.1.12 to 0.2.0 f505854 @dependabot[bot]\n build(deps): bump github.com/getkin/kin-openapi from 0.106.0 to 0.107.0 2aedccc @dependabot[bot]\n build(deps): bump golang.org/x/text from 0.3.7 to 0.4.0 c109314 @dependabot[bot]\n build(deps): bump github.com/spf13/cobra from 1.5.0 to 1.6.1 4732c47 @dependabot[bot]\n build(deps): bump github.com/getkin/kin-openapi from 0.103.0 to 0.106.0 62780ec @dependabot[bot]\n build(deps): bump github.com/tdewolff/minify/v2 from 2.12.1 to 2.12.4 351d6b0 @dependabot[bot]\n build(deps): bump github.com/yuin/goldmark from 1.4.15 to 1.5.2 ed930db @dependabot[bot]\n build(deps): bump github.com/fsnotify/fsnotify from 1.5.4 to 1.6.0 05df964 @dependabot[bot]\n build(deps): bump github.com/magefile/mage from 1.13.0 to 1.14.0 9860e0e @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.15.9 to 0.15.12 2ef60db @dependabot[bot]\n\nDocumentation\n Update Go and Alpine version in Dockerfile 6275aad @wind0r\n\nBuild Setup\n build: Update to Go 1.19.2 a066e98 @bep\n\nv0.104.3\nWhat's Changed\nNote that none of the fixes below are regressions from v0.104.*; the first one,\nthe GIF fix, comes from v0.101, back when we added support for processing\nanimated GIFs.\n\n resources/images: Fix 2 animated GIF resize issues 3a9cb7b @bep #10354\n server: Fix flaky TestServerPathEncodingIssues tests 0addb30 @anthonyfok #10332\n commands: Remove extraneous newline from result of convert toTOML b002d47 @jmooring #10351\n config/security: Fix filename e3f3135 @felicianotech\n\nv0.104.2\nFix htimes /: operation not permitted error on config changes when running the\nserver. This regression was introduced in Hugo v0.104.1 4611b69 @bep\n\nv0.104.1\nWhat's Changed\n Fix /static performance regression from Hugo 0.103.0 29ccb36 @bep #10328\n\nv0.104.0\nSome bug fixes, dependency upgrades and a new $image.Colors method. This method\nreturns a slice of the most dominant colors in an image. The library we use is\nimplemented by @marekm4 and is both fast and accurate. One use case for this may\nbe to use as a placeholder before the image is loaded, as seen on this Hugo\ngallery [theme source]. You need a slow enough internet connection to notice\nthis effect so you may want to try this with Chrome's dev console open and\nthrottle the network to slow 3G, which would make it look something like this.\n\nBug fixes\n hugofs: Fix glob case-sensitivity bug 281554e @satotake\n server: Fix 404 redirects on Windows f3560aa @bep #10314\n\nImprovements\n Consolidate the glob case logic 5c41653 @bep\n Run go mod tidy 0171fb2 @bep\n resources/images: Add $image.Colors a402811 @bep #10307\n commands: Skip flaky test on CI 08f0984 @bep\n config/security: Allow proxy variables in subcommands 86653fa @sathieu\n\nDependency Updates\n build(deps): bump github.com/evanw/esbuild from 0.15.8 to 0.15.9 edf9038 @dependabot[bot]\n build(deps): bump github.com/yuin/goldmark from 1.4.14 to 1.4.15 78f49b4 @dependabot[bot]\n build(deps): bump github.com/getkin/kin-openapi from 0.100.0 to 0.103.0 fa4b77e @dependabot[bot]\n build(deps): bump github.com/alecthomas/chroma/v2 from 2.2.0 to 2.3.0 4d909d4 @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.15.7 to 0.15.8 4eb6d97 @dependabot[bot]\n\nDocumentation\n docs: Regen docs helper 8377c3c @bep\n docs: Regenerate CLI docs 4f9cb4f @bep\n\nv0.103.1\nWhat's Changed\n server: Fix redirects when file path contains bytes > 0x80 or whitespace 6be6752 @bep #10287\n\nv0.103.0\nThere are 3 main topics in this release:\n The hugo server finally comes with proper 404 support.\n You can now use PostProcess'ed resources in all file types (e.g. JSON), not\n just HTML.\n We have standardised the archive names for the release archives (as you can\n see further below). Hugo has since the first version used a rather odd and\n non-standard mixed case naming of the archive files\n (e.g. hugo_0.102.3_OpenBSD-64bit.tar.gz). We now use the standard\n GOOS/GOARCH values as-is, which makes it easier for people to script\n against. To avoid breakage when running on Netlify and similar, we create\n aliases for the most commonly downloaded Linux-archives on the old format\n and will continue to do so in the foreseeable future.\n\nBug fixes\n \ Fix usage description ab5ce59 @satotake\n scss: Handle single-file sourcemaps correctly 02c89a4 @toothrot #8174\n\nImprovements\n Filter out any duplicate files to post process 8e77bcc @bep #10269\n Support PostProcess for all file types 74daca6 @bep #10269\n server: Add 404 support a5cda5c @bep\n Add --force to hugo new 7d40da8 @satotake #9243\n Update stale.yml 5e03de0 @sashashura\n\nDependency Updates\n build(deps): bump github.com/gobuffalo/flect from 0.2.5 to 0.3.0 1fd4c56 @dependabot[bot]\n build(deps): bump github.com/getkin/kin-openapi from 0.98.0 to 0.100.0 5e2b28d @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.15.5 to 0.15.7 f2019f0 @dependabot[bot]\n build(deps): bump github.com/yuin/goldmark from 1.4.13 to 1.4.14 475638f @dependabot[bot]\n\nBuild Setup\n Use standard GOOS/GOARCH values in release archives 3f0b40f @bep #10073\n release: Bump Hugoreleaser version 06c3ac6 @bep\n\nv0.102.3\nWhat's Changed\n Fix shortcode parser regression with quoted param values 8e5044d @bep #10236\n\nv0.102.2\nWhat's Changed\n deps: Update github.com/tdewolff/minify/v2 v2.12.0 => v2.12.1 5046a6c @jmooring #10230\n\nv0.102.1\nWhat's Changed\n release: Fix the Deb archives 79932e7 @bep #10220\n\nv0.102.0\n\nNote: there were an issue with the Deb Linux binaries (see #10220), so those\nare now removed; will create a patch release with a fresh set later today.\n\nThis release adds Linux ARM64 extended archives (see issue #8257). If you look\nbehind the scenes of this, you may say that \"this looks like a lot of work for\none file\", but the current serial build setup was already closing in on the\ntimeout limits of CircleCI (mostly because of the relatively resource-intensive\nextended build with CGO/webp/libsass). So, we eventually had to do something.\nThis release is built using Hugoreleaser, a custom build tool that allows us to\npartition the build step. The Linux ARM64 binaries are built in its own Docker\ncontainer, and we also get a general speedup of the entire build:\n\nNotes\n The MacOS archives have been replaced with universal/fat binaries that\n works on all MacOS platforms, named *macOS-universal.tar.gz.\n \ These archives are removed: 32 bit Linux archives, Windows 32-bit and ARM,\n \ Linux ARM Deb. We may re-add some of these if enough people shout.\n\nBug fixes\n common/hugio: One more fix for non-OS fs f5ba6fd @bep\n common/hugio: Fix CopyDir when fs is not OS c4bbc1e @bep\n markup/goldmark/codeblock: Fix attributes when no language identifier in CodeBlock cbdaff2 @chick-p #10118\n \ commands: Fix embed in livereload.go 3fefea0 @yyqqing\n\nImprovements\n license: Add copyright info c983484 @bep #10218\n github: Use GitHub's Choco-Install function to retry installs f7e00c0 @anthonyfok\n livereload: Inject script without head or body tag b017f7c @satotake #10105\n Externalise and embed livereload.js string 21562e3 @satotake\n Cache when not found in LookupLayout 9c24b86 @bep\n \ parser/pageparser: Don't store the byte slices 223bf28 @bep\n Make the baseline benchmark's test files stable 72b0ccd @bep\n Accept vendor-specified build date if .git/ is unavailable 8ebcaa5 @anthonyfok #10053\n Extract the baseline benchmark to a test d1278f6 @bep\n Add a baseline benchmark 92f31ae @bep\n\nDependency Updates\n build(deps): bump go.uber.org/atomic from 1.9.0 to 1.10.0 2de393c @dependabot[bot]\n build(deps): bump github.com/kyokomi/emoji/v2 from 2.2.9 to 2.2.10 7efb356 @dependabot[bot]\n build(deps): bump github.com/getkin/kin-openapi from 0.97.0 to 0.98.0 ddbcc67 @dependabot[bot]\n deps: Update github.com/pelletier/go-toml/v2 v2.0.2 => v2.0.4 fd75f12 @bep #10210\n build(deps): bump github.com/spf13/afero from 1.8.2 to 1.9.2 14878ca @dependabot[bot]\n build(deps): bump github.com/tdewolff/parse/v2 from 2.6.1 to 2.6.2 e88873b @dependabot[bot]\n build(deps): bump github.com/mattn/go-isatty from 0.0.14 to 0.0.16 4219993 @dependabot[bot]\n build(deps): bump github.com/rogpeppe/go-internal from 1.8.1 to 1.9.0 988e141 @dependabot[bot]\n build(deps): bump github.com/yuin/goldmark from 1.4.12 to 1.4.13 4252988 @dependabot[bot]\n build(deps): bump github.com/spf13/cobra from 1.4.0 to 1.5.0 45f1b1c @dependabot[bot]\n build(deps): bump github.com/tdewolff/minify/v2 from 2.11.10 to 2.12.0 369bdf2 @dependabot[bot]\n build(deps): bump github.com/evanw/esbuild from 0.14.43 to 0.15.5 d1b03a0 @dependabot[bot]\n\nBuild Setup\n releaser: Bump versions for release of 0.102.0 0ff4a93 @bep\n Add linux/arm64 extended to release setup 45e1084 @bep #8257\n snap: Delete obsolete custom x-nodejs plugins 0e0fb1b @anthonyfok\n releaser: Fat MacOS binaries 7fb2808 @bep #9131\n \ Update to Go 1.19 0cd1929 @bep #10145\n snap: Replace mage with \"go build\" and set VendorInfo=snap 2414819 @anthonyfok\n snap: Use interface names etc-gitconfig and gitconfig, Take 2 5caed8a @anthonyfok #6226\n snap: Use interface names etc-gitconfig and gitconfig fd3953c @anthonyfok #6226\n releaser: Prepare repository for 0.102.0-DEV 15463f8 @bep\n\nDocumentation\n readme: Add Golang URL to Go links 941c28a @reecerussell\n Update README.md ffbdcc7 @bep\n Update README.md 95d9764 @bep\n Update README.md b66f9f2 @bep\n Update README.md 5c48ba9 @bep #10136\n" module: pkgsrc subject: 'CVS commit: pkgsrc/www/hugo' unixtime: '1675720990' user: nikita