Remove expired new-in labels

This commit is contained in:
Joe Mooring
2025-01-22 08:04:36 -08:00
committed by GitHub
parent 11e89dfcb0
commit fe10d9899d
5 changed files with 27 additions and 27 deletions
+27 -19
View File
@@ -109,34 +109,42 @@ weight
[RFC 5646]: https://datatracker.ietf.org/doc/html/rfc5646#section-2.1
[translating by file name]: #translation-by-file-name
### Changes in Hugo 0.112.0
### Site parameters
{{< new-in 0.112.0 >}}
In Hugo `v0.112.0` we consolidated all configuration options, and improved how the languages and their parameters are merged with the main configuration. But while testing this on Hugo sites out there, we received some error reports and reverted some of the changes in favor of deprecation warnings:
1. `site.Language.Params` is deprecated. Use `site.Params` directly.
1. Adding custom parameters to the top level language configuration is deprecated. Define custom parameters within `languages.xx.params`. See `color` in the example below.
Set language-specific site parameters under each language's `params` key:
{{< code-toggle file=hugo >}}
title = "My blog"
languageCode = "en-us"
[params]
color = "red"
[languages]
[languages.sv]
title = "Min blogg"
languageCode = "sv"
[languages.en.params]
color = "blue"
[languages.de]
languageCode = 'de-DE'
title = 'Projekt Dokumentation'
weight = 1
[languages.de.params]
color = 'blue'
subtitle = 'Referenz, Tutorials und Erklärungen'
[languages.en]
languageCode = 'en-US'
title = 'Project Documentation'
weight = 2
[languages.en.params]
subtitle = 'Reference, Tutorials, and Explanations'
{{< /code-toggle >}}
In the example above, all settings except `color` below `params` map to predefined configuration options in Hugo for the site and its language, and should be accessed via the documented accessors:
When building the English site:
```go-html-template
{{ site.Title }}
{{ site.Language.LanguageCode }}
{{ site.Params.color }}
{{ site.Params.color }} --> red
{{ site.Params.subtitle }} --> Reference, Tutorials, and Explanations
```
When building the English site:
```go-html-template
{{ site.Params.color }} --> blue
{{ site.Params.subtitle }} --> 'Referenz, Tutorials und Erklärungen'
```
### Disable a language
-2
View File
@@ -13,5 +13,3 @@ action:
```go-html-template
{{ hugo.WorkingDir }} → /home/user/projects/my-hugo-site
```
{{< new-in 0.112.0 >}}
-2
View File
@@ -10,8 +10,6 @@ action:
signatures: [math.Abs VALUE]
---
{{< new-in 0.112.0 >}}
```go-html-template
{{ math.Abs -2.1 }} → 2.1
```
-2
View File
@@ -12,8 +12,6 @@ action:
aliases: [/functions/urls.joinpath]
---
{{< new-in 0.112.0 >}}
```go-html-template
{{ urls.JoinPath }} → "" (empty string)
{{ urls.JoinPath "" }} → /
@@ -34,8 +34,6 @@ See [Configure Cache Busters](#configure-cache-busters).
## Configure cache busters
{{< new-in 0.112.0 >}}
The `build.cachebusters` configuration option was added to support development using Tailwind 3.x's JIT compiler where a `build` configuration may look like this:
{{< code-toggle file=hugo >}}