hugo:release-0.105.0

Last commit made on 2022-10-28
Get this branch:
git clone -b release-0.105.0 https://git.launchpad.net/hugo

Branch merges

Branch information

Name:
release-0.105.0
Repository:
lp:hugo

Recent commits

77fc74a... by hugoreleaser <email address hidden>

releaser: Prepare repository for 0.106.0-DEV

[ci skip]

0e3b42b... by hugoreleaser <email address hidden>

releaser: Bump versions for release of 0.105.0

[ci skip]

f505854... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

build(deps): bump golang.org/x/tools from 0.1.12 to 0.2.0

Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.1.12 to 0.2.0.
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](https://github.com/golang/tools/compare/v0.1.12...v0.2.0)

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

Signed-off-by: dependabot[bot] <email address hidden>

2aedccc... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

build(deps): bump github.com/getkin/kin-openapi from 0.106.0 to 0.107.0

Bumps [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) from 0.106.0 to 0.107.0.
- [Release notes](https://github.com/getkin/kin-openapi/releases)
- [Commits](https://github.com/getkin/kin-openapi/compare/v0.106.0...v0.107.0)

---
updated-dependencies:
- dependency-name: github.com/getkin/kin-openapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <email address hidden>

c109314... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

build(deps): bump golang.org/x/text from 0.3.7 to 0.4.0

Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.7 to 0.4.0.
- [Release notes](https://github.com/golang/text/releases)
- [Commits](https://github.com/golang/text/compare/v0.3.7...v0.4.0)

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

Signed-off-by: dependabot[bot] <email address hidden>

4732c47... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

build(deps): bump github.com/spf13/cobra from 1.5.0 to 1.6.1

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.5.0 to 1.6.1.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](https://github.com/spf13/cobra/compare/v1.5.0...v1.6.1)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <email address hidden>

62780ec... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

build(deps): bump github.com/getkin/kin-openapi from 0.103.0 to 0.106.0

Bumps [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) from 0.103.0 to 0.106.0.
- [Release notes](https://github.com/getkin/kin-openapi/releases)
- [Commits](https://github.com/getkin/kin-openapi/compare/v0.103.0...v0.106.0)

---
updated-dependencies:
- dependency-name: github.com/getkin/kin-openapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <email address hidden>

351d6b0... by "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>

build(deps): bump github.com/tdewolff/minify/v2 from 2.12.1 to 2.12.4

Bumps [github.com/tdewolff/minify/v2](https://github.com/tdewolff/minify) from 2.12.1 to 2.12.4.
- [Release notes](https://github.com/tdewolff/minify/releases)
- [Commits](https://github.com/tdewolff/minify/compare/v2.12.1...v2.12.4)

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

Signed-off-by: dependabot[bot] <email address hidden>

631d768... by Bjørn Erik Pedersen

Revise the fix for shortcode vs output format nilpointer

We do lazy initialization and (potentially) reuse of an output format's rendered content. We do this evaluation when we
start a new rendering a new output format. There are, however, situation where these borders gets crossed (e.g.
accessing content from another output format). We have a check for this in place for most cases, but not the content
rendering of inner markdown blocks inside shortcodes. This patch applies that same logic to the newly introduced
RenderContent method (which is not available from the templates).

Fixes #10391

e5d2a8f... by davidejones <email address hidden>

Avoid nilpointer when shortcode page content output nil

Updates #10391