mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
1.6 KiB
1.6 KiB
title | description | categories | keywords | menu | weight | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Deprecation | The Hugo project follows a formal and consistent process to deprecate functions, methods, and configuration settings. |
|
|
50 |
When a project deprecates something, they are telling its users:
- Don't use Thing One anymore.
- Use Thing Two instead.
- We're going to remove Thing One at some point in the future.
Common reasons for deprecation:
- A feature has been replaced by a more powerful alternative.
- A feature contains a design flaw.
- A feature is considered extraneous, and will be removed in the future in order to simplify the system as a whole.
- A future version of the software will make major structural changes, making it impossible or impractical to support older features.
- Standardization or increased consistency in naming.
- A feature that once was available only independently is now combined with its co-feature.
After the project team deprecates something in code, Hugo will:
- Log an INFO message for 6 minor releases1
- Log a WARN message for another 6 minor releases
- Log an ERROR message and fail the build thereafter
To see the INFO messages, you must use the --logLevel
command line flag:
hugo --logLevel info
To limit the output to deprecation notices:
hugo --logLevel info | grep deprecate
Run the above command every time you upgrade Hugo.
-
For example, v0.1.1 => v0.2.0 is a minor release. ↩︎