]> git.maquefel.me Git - brevno-suite/hugo/log
brevno-suite/hugo
3 years agoall: Fix comments for exported functions and packages
Oleksandr Redko [Thu, 18 May 2023 09:05:56 +0000 (12:05 +0300)]
all: Fix comments for exported functions and packages

3 years agodeps: Update github.com/bep/golibsass v1.1.0 => v1.1.1
Bjørn Erik Pedersen [Thu, 18 May 2023 17:25:51 +0000 (19:25 +0200)]
deps: Update github.com/bep/golibsass v1.1.0 => v1.1.1

Fixes #10629
Fixes #10491

3 years agoMake GOMAXPROCS to be CPU limit aware
Benjamin Elder [Thu, 18 May 2023 17:32:49 +0000 (10:32 -0700)]
Make GOMAXPROCS to be CPU limit aware

Fixes #10950

3 years agoAllow empty params.mainSections
Bjørn Erik Pedersen [Thu, 18 May 2023 13:50:48 +0000 (15:50 +0200)]
Allow empty params.mainSections

Updates #10953

3 years agomodules: Fix format flag in error
Oleksandr Redko [Thu, 18 May 2023 09:20:39 +0000 (12:20 +0300)]
modules: Fix format flag in error

3 years agocommands: Load config before creating the filesystem
Bjørn Erik Pedersen [Thu, 18 May 2023 11:29:33 +0000 (13:29 +0200)]
commands: Load config before creating the filesystem

To allow publishDir to be set in config file.

3 years agoFix some recently introduced error handling issues
Bjørn Erik Pedersen [Thu, 18 May 2023 08:36:48 +0000 (10:36 +0200)]
Fix some recently introduced error handling issues

Updates #10953

3 years agotpl/lang: document delimiter option for FormatNumberCustom
Joe Mooring [Mon, 20 Mar 2023 16:39:33 +0000 (09:39 -0700)]
tpl/lang: document delimiter option for FormatNumberCustom

Closes gohugoio/hugoDocs#1760

3 years agoRe-add site.LanguagePrefix
Bjørn Erik Pedersen [Wed, 17 May 2023 21:27:40 +0000 (23:27 +0200)]
Re-add site.LanguagePrefix

Updates #10947

3 years agogithub: Trim the test flow a little
Bjørn Erik Pedersen [Wed, 17 May 2023 20:14:15 +0000 (22:14 +0200)]
github: Trim the test flow a little

We now have much improved end to end tests, so cut the building of the docs site to save some time of the PR builds.

3 years agocommands: Improve the common build flag handling
Bjørn Erik Pedersen [Wed, 17 May 2023 16:45:23 +0000 (18:45 +0200)]
commands: Improve the common build flag handling

Updates #10947

3 years agoSupport, but warn, about top level language custom params
Bjørn Erik Pedersen [Wed, 17 May 2023 14:29:06 +0000 (16:29 +0200)]
Support, but warn, about top level language custom params

Updates #10947

3 years agoHandle transient errors in config loading etc.
Bjørn Erik Pedersen [Wed, 17 May 2023 11:12:49 +0000 (13:12 +0200)]
Handle transient errors in config loading etc.

As in: Get the Kubernetes site to build with the new Hugo version.

Updates #10947

3 years agoRe-establish all the server flags
Bjørn Erik Pedersen [Wed, 17 May 2023 10:45:51 +0000 (12:45 +0200)]
Re-establish all the server flags

Updates #10947

3 years agoDeprecate site.Language.Params and some other fixes
Bjørn Erik Pedersen [Wed, 17 May 2023 07:59:57 +0000 (09:59 +0200)]
Deprecate site.Language.Params and some other fixes

Updates #10947

3 years agoRevert "Make GOMAXPROCS CPU limit aware"
Bjørn Erik Pedersen [Wed, 17 May 2023 19:01:52 +0000 (21:01 +0200)]
Revert "Make GOMAXPROCS CPU limit aware"

I shouldn't have merged this without running the tests.

This libray logs to stderr on init, which is a no go for us.

Re. test failure:

```
[stderr]
2023/05/17 18:21:04 maxprocs: Leaving GOMAXPROCS=2: CPU quota undefined
```
This reverts commit 59050f97f637b7cb423e6f5b63e36c1ea973c183.

3 years agoMake GOMAXPROCS CPU limit aware
Benjamin Elder [Wed, 17 May 2023 18:17:22 +0000 (11:17 -0700)]
Make GOMAXPROCS CPU limit aware

Fixes #10950

3 years agoAdd Sections to Site interface
Bjørn Erik Pedersen [Tue, 16 May 2023 16:53:34 +0000 (18:53 +0200)]
Add Sections to Site interface

See https://github.com/gohugoio/hugo/issues/10947#issuecomment-1550012671

Updates #10947

3 years agohelpers: simplify path tests with T.TempDir
Oleksandr Redko [Mon, 15 May 2023 08:52:06 +0000 (11:52 +0300)]
helpers: simplify path tests with T.TempDir

3 years agotpl: Add math.Abs
Oleksandr Redko [Tue, 16 May 2023 16:32:07 +0000 (19:32 +0300)]
tpl: Add math.Abs

Fixes #10941.

3 years agoCreate a struct with all of Hugo's config options
Bjørn Erik Pedersen [Wed, 4 Jan 2023 17:24:36 +0000 (18:24 +0100)]
Create a struct with all of Hugo's config options

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

3 years agoImprove date parsing performance for the common case
Bjørn Erik Pedersen [Mon, 15 May 2023 08:19:53 +0000 (10:19 +0200)]
Improve date parsing performance for the common case

```
name                    old time/op    new time/op    delta
Baseline/skiprender-10    24.5ms ±10%    22.3ms ± 4%   -8.93%  (p=0.029 n=4+4)

name                    old alloc/op   new alloc/op   delta
Baseline/skiprender-10    30.0MB ± 0%    26.2MB ± 0%  -12.74%  (p=0.029 n=4+4)

name                    old allocs/op  new allocs/op  delta
Baseline/skiprender-10      373k ± 0%      279k ± 0%  -25.07%  (p=0.029 n=4+4)
```

Fixes #10942

3 years agoAdd a counter helper
Bjørn Erik Pedersen [Mon, 15 May 2023 07:23:26 +0000 (09:23 +0200)]
Add a counter helper

3 years agoExpand the baseline benchmark a little
Bjørn Erik Pedersen [Mon, 15 May 2023 06:39:52 +0000 (08:39 +0200)]
Expand the baseline benchmark a little

3 years agoRevert "Update syntax-highlighting.md (#10929)" (#10930)
Joe Mooring [Sat, 6 May 2023 16:36:29 +0000 (09:36 -0700)]
Revert "Update syntax-highlighting.md (#10929)" (#10930)

This reverts commit a4fb8dc6bc4358ca5c307e1af4a50fee2a0c4c12.

3 years agoUpdate syntax-highlighting.md (#10929)
Kirill Bobyrev [Sat, 6 May 2023 14:00:37 +0000 (07:00 -0700)]
Update syntax-highlighting.md (#10929)

3 years agoUpdate README.md
Bjørn Erik Pedersen [Thu, 4 May 2023 21:56:57 +0000 (23:56 +0200)]
Update README.md

3 years agotpl/strings: Clarify findRESubmatch description
Joe Mooring [Tue, 18 Apr 2023 20:47:52 +0000 (13:47 -0700)]
tpl/strings: Clarify findRESubmatch description

3 years agolangs/i18n: Fallback to defaultContentLanguage instead of English
Joe Mooring [Sat, 22 Apr 2023 22:58:44 +0000 (15:58 -0700)]
langs/i18n: Fallback to defaultContentLanguage instead of English

Co-authored-by: 641bill <wo23636@126.com>
Fixes #9216

3 years agotpl/debug: Add VisualizeSpaces
Bjørn Erik Pedersen [Thu, 20 Apr 2023 09:27:55 +0000 (11:27 +0200)]
tpl/debug: Add VisualizeSpaces

3 years agoUpdate README.md
Bjørn Erik Pedersen [Tue, 18 Apr 2023 06:35:37 +0000 (08:35 +0200)]
Update README.md

3 years agoPrevent the global error collector to panic when sending on closed channel
Bjørn Erik Pedersen [Thu, 13 Apr 2023 09:44:22 +0000 (11:44 +0200)]
Prevent the global error collector to panic when sending on closed channel

3 years agomarkup/goldmark: Add config options for the typographer extension
Bjørn Erik Pedersen [Wed, 12 Apr 2023 08:15:02 +0000 (10:15 +0200)]
markup/goldmark: Add config options for the typographer extension

Note that the config per language part of this will be handled in #10602.

Updates #9772

3 years agoreadme: Fix build command
Kiril Isakov [Sun, 9 Apr 2023 09:59:46 +0000 (11:59 +0200)]
readme: Fix build command

3 years agoUpdate README.md
Bjørn Erik Pedersen [Thu, 30 Mar 2023 08:19:35 +0000 (10:19 +0200)]
Update README.md

3 years agoAdd test for ToC vs include
Bjørn Erik Pedersen [Wed, 29 Mar 2023 09:00:40 +0000 (11:00 +0200)]
Add test for ToC vs include

See #10866

3 years agoresources.functions: improve validation
Andreas Deininger [Thu, 16 Mar 2023 15:56:05 +0000 (16:56 +0100)]
resources.functions: improve validation

3 years agoresources: Fix typos in error message and variables
Oleksandr Redko [Sat, 18 Mar 2023 11:01:38 +0000 (13:01 +0200)]
resources: Fix typos in error message and variables

3 years agomarkup/goldmark: Fail on invalid Markdown attributes
Bjørn Erik Pedersen [Tue, 14 Mar 2023 11:45:09 +0000 (12:45 +0100)]
markup/goldmark: Fail on invalid Markdown attributes

3 years agocommands: Fix data race in test
Bjørn Erik Pedersen [Tue, 14 Mar 2023 11:18:42 +0000 (12:18 +0100)]
commands: Fix data race in test

Note that this is a test fix only.

3 years agotpl/math: Return error if less than 2 input numbers
septs [Tue, 14 Mar 2023 08:28:38 +0000 (16:28 +0800)]
tpl/math: Return error if less than 2 input numbers

Fixes #10827

3 years agoreleaser: Prepare repository for 0.112.0-DEV
hugoreleaser [Sun, 12 Mar 2023 11:51:49 +0000 (11:51 +0000)]
releaser: Prepare repository for 0.112.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.111.3
hugoreleaser [Sun, 12 Mar 2023 11:40:50 +0000 (11:40 +0000)]
releaser: Bump versions for release of 0.111.3

[ci skip]

3 years agodeps: Update go-org to v1.6.6
Niklas Fasching [Sun, 12 Mar 2023 10:31:05 +0000 (11:31 +0100)]
deps: Update go-org to v1.6.6

among other things, fixes a race condition in html writer and bug preventing
explicit line breaks immediately following emphasis

3 years agoFix "unknown shortcode token" when calling shortcode within fenced code block
Bjørn Erik Pedersen [Sun, 12 Mar 2023 09:50:16 +0000 (10:50 +0100)]
Fix "unknown shortcode token" when calling shortcode within fenced code block

Fixes #10819

3 years agoRun gofmt -s on source files
Andreas Deininger [Fri, 10 Mar 2023 19:18:41 +0000 (20:18 +0100)]
Run gofmt -s on source files

3 years agodocs: Improve examples of variadic math functions
Joe Mooring [Sat, 11 Mar 2023 18:51:07 +0000 (10:51 -0800)]
docs: Improve examples of variadic math functions

3 years agotpl/math: Allow multi numbers in add, sub, mul, div, min and max
septs [Sat, 11 Mar 2023 10:21:08 +0000 (18:21 +0800)]
tpl/math: Allow multi numbers in add, sub, mul, div, min and max

3 years agoreadme: Update dependency list
Andreas Deininger [Sat, 11 Mar 2023 09:15:16 +0000 (10:15 +0100)]
readme: Update dependency list

3 years agoImprove error message for unclosed shortcode with inner content
Andreas Deininger [Fri, 10 Mar 2023 17:41:17 +0000 (18:41 +0100)]
Improve error message for unclosed shortcode with inner content

3 years agoDon't fail when calling Paginate with an empty pages.PagesGroup
Bjørn Erik Pedersen [Wed, 8 Mar 2023 08:28:46 +0000 (09:28 +0100)]
Don't fail when calling Paginate with an empty pages.PagesGroup

Fixes #10802

3 years agoserver: Replace golang.org/x/net/context with context
Oleksandr Redko [Sat, 18 Feb 2023 21:56:08 +0000 (23:56 +0200)]
server: Replace golang.org/x/net/context with context

3 years agotpl: Add hasSuffix alias
Jonathan Fisher [Wed, 1 Mar 2023 22:29:33 +0000 (14:29 -0800)]
tpl: Add hasSuffix alias

strings.HasPrefix already has an alias of hasPrefix
but strings.HasSuffix has no such alias.
This PR adds a hasSuffix alias to the tpl function with corresponding
function documentation.
It also adds a Minor update to the hasPrefix function documentation
re: keywords and relatedfuncs.

 Completes https://github.com/gohugoio/hugo/issues/10474

3 years agowatcher: use time.NewTicker to prevent leaks
Oleksandr Redko [Wed, 1 Mar 2023 13:26:05 +0000 (15:26 +0200)]
watcher: use time.NewTicker to prevent leaks

Replace time.Tick with time.NewTicker.

3 years agoensure we default to 10 correctly
davidejones [Mon, 6 Mar 2023 21:26:59 +0000 (21:26 +0000)]
ensure we default to 10 correctly

3 years agoswitch transfers to workers
davidejones [Sat, 4 Mar 2023 09:18:43 +0000 (09:18 +0000)]
switch transfers to workers

3 years agocustomize parallel transfer count
davidejones [Fri, 3 Mar 2023 16:52:31 +0000 (16:52 +0000)]
customize parallel transfer count

3 years agometadecoders: Add support for native org dates in frontmatter
johannesengl [Mon, 6 Mar 2023 14:29:31 +0000 (15:29 +0100)]
metadecoders: Add support for native org dates in frontmatter
PR #7433 added support for Org timestamps for the DATE header. This PR widens the support with additional front matter headers LASTMOD, PUBLISHDATE and EXPIRYDATE.

Fixes #8536

3 years agoreleaser: Prepare repository for 0.112.0-DEV
hugoreleaser [Sun, 5 Mar 2023 12:43:18 +0000 (12:43 +0000)]
releaser: Prepare repository for 0.112.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.111.2
hugoreleaser [Sun, 5 Mar 2023 12:32:20 +0000 (12:32 +0000)]
releaser: Bump versions for release of 0.111.2

[ci skip]

3 years agoFix .Fragments when called cross sites on uninitialized output format
Bjørn Erik Pedersen [Sun, 5 Mar 2023 09:32:00 +0000 (10:32 +0100)]
Fix .Fragments when called cross sites on uninitialized output format

Fixes #10794

3 years agoAllow page.TableOfContents on self in shortcode
Bjørn Erik Pedersen [Sun, 5 Mar 2023 08:51:14 +0000 (09:51 +0100)]
Allow page.TableOfContents on self in shortcode

Fixes #10791

3 years agotpl/partial: Consolidate GoDoc
Bjørn Erik Pedersen [Sat, 4 Mar 2023 21:04:01 +0000 (22:04 +0100)]
tpl/partial: Consolidate GoDoc

3 years agoFix "context canceled" with partial
Bjørn Erik Pedersen [Sat, 4 Mar 2023 17:08:29 +0000 (18:08 +0100)]
Fix "context canceled" with partial

Make sure the context used for timeouts isn't created based on the incoming
context, as we have cases where this can cancel the context prematurely.

Fixes #10789

3 years agocache: Fix --gc failure on Windows
Oleksandr Redko [Sat, 4 Mar 2023 14:49:25 +0000 (16:49 +0200)]
cache: Fix --gc failure on Windows

Fixes "Error: failed to prune cache" on Windows and removes
work around from ec1c97e7e9d62ce5245135e0906fdedf14af0cae.

Follows #10781.

3 years agoPage context handling in i18n
Bjørn Erik Pedersen [Sat, 4 Mar 2023 13:43:23 +0000 (14:43 +0100)]
Page context handling in i18n

This is a workaround. We need to improve on this, but not today.

Fixes #10782

3 years agoWork around --gc failure on Windows <= 10
Bjørn Erik Pedersen [Sat, 4 Mar 2023 10:09:03 +0000 (11:09 +0100)]
Work around --gc failure on Windows <= 10

This applies two related fixes/improvements:

* The --gc now keeps empty `_resources/_gen/images` etc folders, even if empty. This should have been the behaviour
from the start.
* Also, if removal of an empty dir on Windows fails with the "used by another process" error, just ignore it for now.

Fixes #10781

3 years agoUpdate to Go 1.20.1
Bjørn Erik Pedersen [Sat, 4 Mar 2023 09:36:44 +0000 (10:36 +0100)]
Update to Go 1.20.1

Fixes #10785

3 years agosnap: Fix dart-sass-embedded installation
Joe Mooring [Sat, 4 Mar 2023 01:13:49 +0000 (17:13 -0800)]
snap: Fix dart-sass-embedded installation

Closes #10783

3 years agoCorrect typos in Go comments
Oleksandr Redko [Sat, 18 Feb 2023 20:47:35 +0000 (22:47 +0200)]
Correct typos in Go comments

3 years agoreleaser: Prepare repository for 0.112.0-DEV
hugoreleaser [Thu, 2 Mar 2023 10:19:25 +0000 (10:19 +0000)]
releaser: Prepare repository for 0.112.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.111.1
hugoreleaser [Thu, 2 Mar 2023 10:08:26 +0000 (10:08 +0000)]
releaser: Bump versions for release of 0.111.1

[ci skip]

3 years agoMerge branch 'release-0.111.0'
Bjørn Erik Pedersen [Thu, 2 Mar 2023 10:05:24 +0000 (11:05 +0100)]
Merge branch 'release-0.111.0'

3 years agoFix "page" not defined
Bjørn Erik Pedersen [Thu, 2 Mar 2023 08:37:07 +0000 (09:37 +0100)]
Fix "page" not defined

Fixes #10774

3 years agoreleaser: Prepare repository for 0.112.0-DEV
hugoreleaser [Wed, 1 Mar 2023 21:08:27 +0000 (21:08 +0000)]
releaser: Prepare repository for 0.112.0-DEV

[ci skip]

3 years agoreleaser: Bump versions for release of 0.111.0
hugoreleaser [Wed, 1 Mar 2023 20:57:44 +0000 (20:57 +0000)]
releaser: Bump versions for release of 0.111.0

[ci skip]

3 years agoRevert "build(deps): bump gocloud.dev from 0.24.0 to 0.28.0 (#10610)"
Bjørn Erik Pedersen [Wed, 1 Mar 2023 18:34:51 +0000 (19:34 +0100)]
Revert "build(deps): bump gocloud.dev from 0.24.0 to 0.28.0 (#10610)"

This reverts commit c3a59a7d5a53eff9723861d0c4b18a574e2769bc.

See #10770

3 years agobuild: Bump build images
Bjørn Erik Pedersen [Wed, 1 Mar 2023 20:32:12 +0000 (21:32 +0100)]
build: Bump build images

To fix changed Shuffle behaviour on Go 1.20.

3 years agobuild: Update Linux ARM build image
Bjørn Erik Pedersen [Wed, 1 Mar 2023 17:55:22 +0000 (18:55 +0100)]
build: Update Linux ARM build image

3 years agotpl/tplimpl: Remove the Google News internal template
Joe Mooring [Fri, 30 Dec 2022 06:57:15 +0000 (22:57 -0800)]
tpl/tplimpl: Remove the Google News internal template

This was deprecated, with a warning message, on 21 Nov 2021.

Reference #9190

3 years agostrings: fix Truncate behavior for formatted html
Khayyam Saleem [Fri, 27 Jan 2023 16:57:31 +0000 (11:57 -0500)]
strings: fix Truncate behavior for formatted html

Before this fix, strings.Truncate would erroneously re-include
attributes from the opening tag in the closing tag when closing
formatted html, due to a bug in how tagnames were extracted from the
regex capture group for html tags used in `truncate.go`. This change
ensures that only the tagname is retained and all attributes are discarded
when storing the tags for closing them later.

Fixes #10399

3 years agotpl/strings: Adjust benchmark
Bjørn Erik Pedersen [Wed, 1 Mar 2023 16:59:02 +0000 (17:59 +0100)]
tpl/strings: Adjust benchmark

3 years agotpl/strings: Add BenchmarkTruncate
Bjørn Erik Pedersen [Wed, 1 Mar 2023 16:51:09 +0000 (17:51 +0100)]
tpl/strings: Add BenchmarkTruncate

3 years agocods: Regen docs helper
Bjørn Erik Pedersen [Wed, 1 Mar 2023 15:35:23 +0000 (16:35 +0100)]
cods: Regen docs helper

3 years agoMove the Related doc counter to prevent a race
Bjørn Erik Pedersen [Wed, 1 Mar 2023 13:59:08 +0000 (14:59 +0100)]
Move the Related doc counter to prevent a race

Closes #10768

3 years agoMisc ioutil deprecation adjustments
Bjørn Erik Pedersen [Wed, 1 Mar 2023 08:34:13 +0000 (09:34 +0100)]
Misc ioutil deprecation adjustments

To make the tests pass.

* Replace io => os.ReadFile in magefile.go
* Adjust failing image test vs fs.DirEntry
* Adjust poller test

See #10732

3 years agoReplace deprecated ioutil with io and os
Oleksandr Redko [Sat, 18 Feb 2023 22:43:26 +0000 (00:43 +0200)]
Replace deprecated ioutil with io and os

https://pkg.go.dev/io/ioutil is deprecated since Go 1.16.

3 years agoMerge commit '336622d5e7afd9334cd2de7150d4f16bdf7c24f9'
Bjørn Erik Pedersen [Wed, 1 Mar 2023 10:56:07 +0000 (11:56 +0100)]
Merge commit '336622d5e7afd9334cd2de7150d4f16bdf7c24f9'

3 years agoSquashed 'docs/' changes from 36dd5483f..6e32d0591
Bjørn Erik Pedersen [Wed, 1 Mar 2023 10:56:07 +0000 (11:56 +0100)]
Squashed 'docs/' changes from 36dd5483f..6e32d0591

6e32d0591 Update quick-start.md (#1984)
eddd25ff4 Mermaid: reflect latest docs specifications
b2a23b6f5 Mermaid: switch to ESM import
43d83c131 Update index.md

git-subtree-dir: docs
git-subtree-split: 6e32d05910fb9d623ef26b647def10ea0e00cd15

3 years agobuild(deps): bump github.com/tdewolff/parse/v2 from 2.6.4 to 2.6.5
dependabot[bot] [Sun, 5 Feb 2023 19:23:07 +0000 (19:23 +0000)]
build(deps): bump github.com/tdewolff/parse/v2 from 2.6.4 to 2.6.5

Bumps [github.com/tdewolff/parse/v2](https://github.com/tdewolff/parse) from 2.6.4 to 2.6.5.
- [Release notes](https://github.com/tdewolff/parse/releases)
- [Commits](https://github.com/tdewolff/parse/compare/v2.6.4...v2.6.5)

---
updated-dependencies:
- dependency-name: github.com/tdewolff/parse/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agobuild(deps): bump github.com/mattn/go-isatty from 0.0.16 to 0.0.17
dependabot[bot] [Mon, 27 Feb 2023 08:57:42 +0000 (08:57 +0000)]
build(deps): bump github.com/mattn/go-isatty from 0.0.16 to 0.0.17

Bumps [github.com/mattn/go-isatty](https://github.com/mattn/go-isatty) from 0.0.16 to 0.0.17.
- [Release notes](https://github.com/mattn/go-isatty/releases)
- [Commits](https://github.com/mattn/go-isatty/compare/v0.0.16...v0.0.17)

---
updated-dependencies:
- dependency-name: github.com/mattn/go-isatty
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agobuild(deps): bump golang.org/x/image
dependabot[bot] [Mon, 27 Feb 2023 08:57:47 +0000 (08:57 +0000)]
build(deps): bump golang.org/x/image

Bumps [golang.org/x/image](https://github.com/golang/image) from 0.0.0-20211028202545-6944b10bf410 to 0.5.0.
- [Release notes](https://github.com/golang/image/releases)
- [Commits](https://github.com/golang/image/commits/v0.5.0)

---
updated-dependencies:
- dependency-name: golang.org/x/image
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoRemove unused temp directory
Oleksandr Redko [Thu, 23 Feb 2023 19:46:42 +0000 (21:46 +0200)]
Remove unused temp directory

3 years agoexif: Return the proper exposure time value in some special cases
WaltCuller [Sun, 26 Feb 2023 10:19:49 +0000 (18:19 +0800)]
exif: Return the proper exposure time value in some special cases

Return value in float64 if exposure time is int or greater than 1, otherwise return in fraction.

Fixes #10738

3 years agoAdd a page template func
Bjørn Erik Pedersen [Sat, 25 Feb 2023 08:24:59 +0000 (09:24 +0100)]
Add a page template func

Fixes #9339

3 years agodartsass: Import CSS without extension at compile time
Joe Mooring [Fri, 24 Feb 2023 00:23:36 +0000 (16:23 -0800)]
dartsass: Import CSS without extension at compile time

Applicable to Dart Sass only:

- Sass imports with the .css extension indicate a plain CSS @import.
- Sass imports without the .css extension are imported at compile time.

Fixes #10592

3 years agoSplit parse and render for Goldmark
Bjørn Erik Pedersen [Fri, 24 Feb 2023 06:23:10 +0000 (07:23 +0100)]
Split parse and render for Goldmark

This also speeds up situations where you only need the fragments/toc and not the rendered content, e.g. Related
with fragments type indexing:

```bash

name            old time/op    new time/op    delta
RelatedSite-10    12.3ms ± 2%    10.7ms ± 1%  -12.95%  (p=0.029 n=4+4)

name            old alloc/op   new alloc/op   delta
RelatedSite-10    38.6MB ± 0%    38.2MB ± 0%   -1.08%  (p=0.029 n=4+4)

name            old allocs/op  new allocs/op  delta
RelatedSite-10      117k ± 0%      115k ± 0%   -1.36%  (p=0.029 n=4+4)
```

Fixes #10750

3 years agorelated: Add config option cardinalityThreshold
Bjørn Erik Pedersen [Thu, 23 Feb 2023 14:20:31 +0000 (15:20 +0100)]
related: Add config option cardinalityThreshold

Fixes #10744

3 years ago docs: Another fix related docs example
Bjørn Erik Pedersen [Thu, 23 Feb 2023 10:09:55 +0000 (11:09 +0100)]
 docs: Another fix related docs example

3 years agodocs: Fix related docs example
Bjørn Erik Pedersen [Thu, 23 Feb 2023 09:54:30 +0000 (10:54 +0100)]
docs: Fix related docs example