Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

261,101

Downloads of v 0.149.0:

723

Last Update:

27 Aug 2025

Package Maintainer(s):

Software Author(s):

  • Hugo Authors

Tags:

Hugo Extended

This is not the latest version of Hugo Extended available.

  • 1
  • 2
  • 3

0.149.0 | Updated: 27 Aug 2025

Downloads:

261,101

Downloads of v 0.149.0:

723

Maintainer(s):

Software Author(s):

  • Hugo Authors

Hugo Extended 0.149.0

This is not the latest version of Hugo Extended available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Hugo Authors. The inclusion of Hugo Authors trademark(s), if any, upon this webpage is solely to identify Hugo Authors goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Hugo Extended, run the following command from the command line or from PowerShell:

>

To upgrade Hugo Extended, run the following command from the command line or from PowerShell:

>

To uninstall Hugo Extended, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade hugo-extended -y --source="'INTERNAL REPO URL'" --version="'0.149.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade hugo-extended -y --source="'INTERNAL REPO URL'" --version="'0.149.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install hugo-extended
  win_chocolatey:
    name: hugo-extended
    version: '0.149.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'hugo-extended' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.149.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller hugo-extended
{
    Name     = "hugo-extended"
    Version  = "0.149.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'hugo-extended':
  ensure   => '0.149.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 27 Aug 2025.

Description

Hugo is a static HTML and CSS website generator written in Go. It is optimized for speed, ease of use, and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website.

Hugo relies on Markdown files with front matter for metadata, and you can run Hugo from any directory. This works well for shared hosts and other systems where you don’t have a privileged account.

Hugo renders a typical website of moderate size in a fraction of a second. A good rule of thumb is that each piece of content renders in around 1 millisecond.

Hugo is designed to work well for any kind of website including blogs, tumbles, and docs.

NOTE:: This package does not include the deploy feature. If you need this, see the hugo-extended-withdeploy package.

NOTE:: This extended version allows native Sass compilation.

NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$zipFile  = 'hugo_extended_0.149.0_windows-amd64.zip'
$filePath = Join-Path -Path $toolsDir -ChildPath $zipFile

$packageArgs = @{
    packageName    = $env:ChocolateyPackageName
    fileFullPath64 = $filePath
    destination    = $toolsDir
}

Get-ChocolateyUnzip @packageArgs
tools\hugo_extended_0.149.0_windows-amd64.zip
md5: FFD7CDB8589F3282901181B1509FEBD1 | sha1: B81F6D7CCA9A850400E17523F85D4AE5F474E099 | sha256: CEA8BFA1895A8A3A4EF9D189C0BCCEB1A6904E8AE3ACD3CE5A1EC5B73D2245DB | sha512: 058AF4DD1F4BE6DC405E7630D085E82EB7333C943B257CC976AA4AFDF5888AA5C913B723F60F3F7E50FE2A1C78F75405B6B7C1EF67BB25C4D2FF77CA706B223B
tools\LICENSE.txt
From: https://github.com/gohugoio/hugo/blob/master/LICENSE

                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright 2022 The Hugo Authors.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
tools\VERIFICATION.txt
To verify the embedded files:

1. Please go to the project source location and download the release matching the package version.
2. Use Get-FileHash -Path <FILE TO VERIFY> to get the file hash value from both the official release file (from step 1 above) and the file from the package and compare them.

x64 URL: https://github.com/gohugoio/hugo/releases/download/v0.149.0/hugo_extended_0.149.0_windows-amd64.zip
x64 Checksum Type: SHA256
x64 Checksum: CEA8BFA1895A8A3A4EF9D189C0BCCEB1A6904E8AE3ACD3CE5A1EC5B73D2245DB

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Hugo Extended 0.149.1 429 Thursday, September 4, 2025 Approved
Hugo Extended 0.149.0 723 Wednesday, August 27, 2025 Approved
Hugo Extended 0.148.2 2045 Sunday, July 27, 2025 Approved
Hugo Extended 0.148.1 1260 Friday, July 11, 2025 Approved
Hugo Extended 0.148.0 386 Tuesday, July 8, 2025 Approved
Hugo Extended 0.147.9 1159 Monday, June 23, 2025 Approved
Hugo Extended 0.147.8 1205 Saturday, June 7, 2025 Approved
Hugo Extended 0.147.7 685 Saturday, May 31, 2025 Approved
Hugo Extended 0.147.6 483 Tuesday, May 27, 2025 Approved
Hugo Extended 0.147.5 568 Thursday, May 22, 2025 Approved
Hugo Extended 0.147.4 304 Tuesday, May 20, 2025 Approved
Hugo Extended 0.147.3 829 Monday, May 12, 2025 Approved
Hugo Extended 0.147.2 589 Tuesday, May 6, 2025 Approved
Hugo Extended 0.147.1 573 Thursday, May 1, 2025 Approved
Hugo Extended 0.147.0 666 Friday, April 25, 2025 Approved
Hugo Extended 0.146.7 424 Tuesday, April 22, 2025 Approved
Hugo Extended 0.146.5 610 Wednesday, April 16, 2025 Approved
Hugo Extended 0.146.4 347 Monday, April 14, 2025 Approved
Hugo Extended 0.146.3 270 Saturday, April 12, 2025 Approved
Hugo Extended 0.146.2 198 Friday, April 11, 2025 Approved
Hugo Extended 0.146.1 193 Thursday, April 10, 2025 Approved
Hugo Extended 0.145.0 3100 Wednesday, February 26, 2025 Approved
Hugo Extended 0.144.2 789 Wednesday, February 19, 2025 Approved
Hugo Extended 0.144.1 203 Tuesday, February 18, 2025 Approved
Hugo Extended 0.144.0 212 Monday, February 17, 2025 Approved
Hugo Extended 0.143.1 1324 Tuesday, February 4, 2025 Approved
Hugo Extended 0.143.0 416 Saturday, February 1, 2025 Approved
Hugo Extended 0.142.0 951 Wednesday, January 22, 2025 Approved
Hugo Extended 0.141.0 728 Thursday, January 16, 2025 Approved
Hugo Extended 0.140.2 1455 Monday, December 30, 2024 Approved
Hugo Extended 0.140.1 590 Monday, December 23, 2024 Approved
Hugo Extended 0.140.0 633 Tuesday, December 17, 2024 Approved
Hugo Extended 0.139.4 881 Monday, December 9, 2024 Approved
Hugo Extended 0.139.3 982 Friday, November 29, 2024 Approved
Hugo Extended 0.139.2 664 Saturday, November 23, 2024 Approved
Hugo Extended 0.139.0 545 Monday, November 18, 2024 Approved
Hugo Extended 0.138.0 1140 Wednesday, November 6, 2024 Approved
Hugo Extended 0.137.1 260 Tuesday, November 5, 2024 Approved
Hugo Extended 0.137.0 125 Monday, November 4, 2024 Approved
Hugo Extended 0.136.5 1054 Thursday, October 24, 2024 Approved
Hugo Extended 0.136.4 409 Tuesday, October 22, 2024 Approved
Hugo Extended 0.136.3 218 Monday, October 21, 2024 Approved
Hugo Extended 0.136.2 529 Thursday, October 17, 2024 Approved
Hugo Extended 0.136.1 232 Wednesday, October 16, 2024 Approved
Hugo Extended 0.136.0 164 Tuesday, October 15, 2024 Approved
Hugo Extended 0.135.0 1700 Friday, September 27, 2024 Approved
Hugo Extended 0.134.3 892 Thursday, September 19, 2024 Approved
Hugo Extended 0.134.2 956 Tuesday, September 10, 2024 Approved
Hugo Extended 0.134.1 493 Thursday, September 5, 2024 Approved
Hugo Extended 0.134.0 525 Tuesday, September 3, 2024 Approved
Hugo Extended 0.133.1 838 Monday, August 26, 2024 Approved
Hugo Extended 0.133.0 981 Sunday, August 18, 2024 Approved
Hugo Extended 0.132.2 437 Wednesday, August 14, 2024 Approved
Hugo Extended 0.132.1 204 Tuesday, August 13, 2024 Approved
Hugo Extended 0.132.0 98 Monday, August 12, 2024 Approved
Hugo Extended 0.131.0 1017 Friday, August 2, 2024 Approved
Hugo Extended 0.130.0 494 Monday, July 29, 2024 Approved
Hugo Extended 0.129.0 1108 Wednesday, July 17, 2024 Approved
Hugo Extended 0.128.2 1207 Thursday, July 4, 2024 Approved
Hugo Extended 0.128.1 348 Tuesday, July 2, 2024 Approved
Hugo Extended 0.128.0 798 Tuesday, June 25, 2024 Approved
Hugo Extended 0.127.0 1768 Wednesday, June 5, 2024 Approved
Hugo Extended 0.126.3 508 Sunday, June 2, 2024 Approved
Hugo Extended 0.126.2 446 Thursday, May 30, 2024 Approved
Hugo Extended 0.126.1 1029 Tuesday, May 21, 2024 Approved
Hugo Extended 0.125.7 1248 Wednesday, May 8, 2024 Approved
Hugo Extended 0.125.6 604 Sunday, May 5, 2024 Approved
Hugo Extended 0.125.5 536 Wednesday, May 1, 2024 Approved
Hugo Extended 0.125.4 2524 Thursday, April 25, 2024 Approved
Hugo Extended 0.125.3 520 Monday, April 22, 2024 Approved
Hugo Extended 0.125.2 405 Saturday, April 20, 2024 Approved
Hugo Extended 0.125.1 413 Thursday, April 18, 2024 Approved
Hugo Extended 0.125.0 401 Tuesday, April 16, 2024 Approved
Hugo Extended 0.124.1 2297 Wednesday, March 20, 2024 Approved
Hugo Extended 0.124.0 668 Saturday, March 16, 2024 Approved
Hugo Extended 0.123.8 1026 Thursday, March 7, 2024 Approved
Hugo Extended 0.123.7 807 Friday, March 1, 2024 Approved
Hugo Extended 0.123.6 354 Thursday, February 29, 2024 Approved
Hugo Extended 0.123.5 139 Wednesday, February 28, 2024 Approved
Hugo Extended 0.123.4 396 Monday, February 26, 2024 Approved
Hugo Extended 0.123.3 494 Friday, February 23, 2024 Approved
Hugo Extended 0.123.2 262 Thursday, February 22, 2024 Approved
Hugo Extended 0.123.1 315 Wednesday, February 21, 2024 Approved
Hugo Extended 0.123.0 425 Monday, February 19, 2024 Approved
Hugo Extended 0.122.0 2057 Friday, January 26, 2024 Approved
Hugo Extended 0.121.2 1890 Friday, January 5, 2024 Approved
Hugo Extended 0.121.1 2168 Friday, December 8, 2023 Approved
Hugo Extended 0.121.0 516 Tuesday, December 5, 2023 Approved
Hugo Extended 0.120.4 2362 Wednesday, November 8, 2023 Approved
Hugo Extended 0.120.3 903 Thursday, November 2, 2023 Approved
Hugo Extended 0.120.2 292 Tuesday, October 31, 2023 Approved
Hugo Extended 0.120.1 303 Monday, October 30, 2023 Approved
Hugo Extended 0.119.0 3314 Sunday, September 24, 2023 Approved
Hugo Extended 0.118.2 2966 Thursday, August 31, 2023 Approved
Hugo Extended 0.117.0 2781 Monday, August 7, 2023 Approved
Hugo Extended 0.116.1 992 Tuesday, August 1, 2023 Approved
Hugo Extended 0.116.0 348 Monday, July 31, 2023 Approved
Hugo Extended 0.115.4 1442 Thursday, July 20, 2023 Approved
Hugo Extended 0.115.3 991 Thursday, July 13, 2023 Approved
Hugo Extended 0.115.2 825 Saturday, July 8, 2023 Approved
Hugo Extended 0.115.1 680 Tuesday, July 4, 2023 Approved
Hugo Extended 0.115.0 593 Thursday, June 29, 2023 Approved
Hugo Extended 0.114.1 1091 Friday, June 23, 2023 Approved
Hugo Extended 0.114.0 539 Monday, June 19, 2023 Approved
Hugo Extended 0.113.0 1547 Monday, June 5, 2023 Approved
Hugo Extended 0.112.7 172 Monday, June 5, 2023 Approved
Hugo Extended 0.112.5 994 Monday, May 29, 2023 Approved
Hugo Extended 0.112.4 239 Sunday, May 28, 2023 Approved
Hugo Extended 0.112.3 622 Wednesday, May 24, 2023 Approved
Hugo Extended 0.112.2 105 Wednesday, May 24, 2023 Approved
Hugo Extended 0.112.1 279 Tuesday, May 23, 2023 Approved
Hugo Extended 0.111.3 6420 Sunday, March 12, 2023 Approved
Hugo Extended 0.111.2 1155 Sunday, March 5, 2023 Approved
Hugo Extended 0.111.1 589 Thursday, March 2, 2023 Approved
Hugo Extended 0.111.0 229 Thursday, March 2, 2023 Approved
Hugo Extended 0.110.0 4613 Wednesday, January 18, 2023 Approved
Hugo Extended 0.109.0 5132 Friday, December 23, 2022 Approved
Hugo Extended 0.108.0 1740 Tuesday, December 6, 2022 Approved
Hugo Extended 0.107.0 1398 Thursday, November 24, 2022 Approved
Hugo Extended 0.106.0 862 Thursday, November 17, 2022 Approved
Hugo Extended 0.105.0 1903 Friday, October 28, 2022 Approved
Hugo Extended 0.104.3 2142 Tuesday, October 4, 2022 Approved
Hugo Extended 0.104.2 676 Thursday, September 29, 2022 Approved
Hugo Extended 0.104.1 456 Monday, September 26, 2022 Approved
Hugo Extended 0.104.0 490 Friday, September 23, 2022 Approved
Hugo Extended 0.103.1 362 Wednesday, September 21, 2022 Approved
Hugo Extended 0.102.3 1675 Thursday, September 1, 2022 Approved
Hugo Extended 0.102.2 269 Wednesday, August 31, 2022 Approved
Hugo Extended 0.102.1 345 Monday, August 29, 2022 Approved
Hugo Extended 0.102.0 280 Sunday, August 28, 2022 Approved
Hugo Extended 0.101.0 4481 Thursday, June 16, 2022 Approved
Hugo Extended 0.100.2 715 Wednesday, June 8, 2022 Approved
Hugo Extended 0.100.1 651 Wednesday, June 1, 2022 Approved
Hugo Extended 0.100.0 307 Tuesday, May 31, 2022 Approved
Hugo Extended 0.99.1 886 Wednesday, May 18, 2022 Approved
Hugo Extended 0.99.0 420 Monday, May 16, 2022 Approved
Hugo Extended 0.98.0 1216 Thursday, April 28, 2022 Approved
Hugo Extended 0.97.3 99 Tuesday, April 19, 2022 Approved
Hugo Extended 0.97.2 1020 Sunday, April 17, 2022 Approved
Hugo Extended 0.97.1 180 Saturday, April 16, 2022 Approved
Hugo Extended 0.97.0 396 Thursday, April 14, 2022 Approved
Hugo Extended 0.96.0 1849 Saturday, March 26, 2022 Approved
Hugo Extended 0.95.0 1134 Wednesday, March 16, 2022 Approved
Hugo Extended 0.94.2 16650 Saturday, March 12, 2022 Approved
Hugo Extended 0.94.1 224 Friday, March 11, 2022 Approved
Hugo Extended 0.94.0 264 Thursday, March 10, 2022 Approved
Hugo Extended 0.93.3 465 Tuesday, March 8, 2022 Approved
Hugo Extended 0.93.2 632 Friday, March 4, 2022 Approved
Hugo Extended 0.93.1 435 Wednesday, March 2, 2022 Approved
Hugo Extended 0.93.0 485 Monday, February 28, 2022 Approved
Hugo Extended 0.92.2 1569 Friday, February 11, 2022 Approved
Hugo Extended 0.92.1 1399 Friday, January 28, 2022 Approved
Hugo Extended 0.92.0 1656 Wednesday, January 12, 2022 Approved
Hugo Extended 0.91.2 1456 Thursday, December 23, 2021 Approved
Hugo Extended 0.91.1 223 Wednesday, December 22, 2021 Approved
Hugo Extended 0.91.0 650 Friday, December 17, 2021 Approved
Hugo Extended 0.90.1 842 Friday, December 10, 2021 Approved
Hugo Extended 0.90.0 451 Wednesday, December 8, 2021 Approved
Hugo Extended 0.89.4 1803 Wednesday, November 17, 2021 Approved
Hugo Extended 0.89.3 355 Monday, November 15, 2021 Approved
Hugo Extended 0.89.2 751 Monday, November 8, 2021 Approved
Hugo Extended 0.89.1 519 Friday, November 5, 2021 Approved
Hugo Extended 0.89.0 483 Tuesday, November 2, 2021 Approved
Hugo Extended 0.88.1 3856 Saturday, September 4, 2021 Approved
Hugo Extended 0.88.0 362 Thursday, September 2, 2021 Approved
Hugo Extended 0.87.0 2490 Tuesday, August 3, 2021 Approved
Hugo Extended 0.86.1 563 Friday, July 30, 2021 Approved
Hugo Extended 0.86.0 1051 Wednesday, July 21, 2021 Approved
Hugo Extended 0.85.0 1544 Monday, July 5, 2021 Approved
Hugo Extended 0.84.4 501 Thursday, July 1, 2021 Approved
Hugo Extended 0.84.3 460 Tuesday, June 29, 2021 Approved
Hugo Extended 0.84.2 311 Monday, June 28, 2021 Approved
Hugo Extended 0.84.1 509 Thursday, June 24, 2021 Approved
Hugo Extended 0.84.0 560 Friday, June 18, 2021 Approved
Hugo Extended 0.83.1 3008 Sunday, May 2, 2021 Approved
Hugo Extended 0.83.0 239 Saturday, May 1, 2021 Approved
Hugo Extended 0.82.0 2126 Sunday, March 21, 2021 Approved
Hugo Extended 0.81.0 1516 Friday, February 19, 2021 Approved
Hugo Extended 0.80.0 2622 Thursday, December 31, 2020 Approved
Hugo Extended 0.79.1 798 Saturday, December 19, 2020 Approved
Hugo Extended 0.79.0 1239 Friday, November 27, 2020 Approved
Hugo Extended 0.78.2 791 Friday, November 13, 2020 Approved
Hugo Extended 0.78.1 832 Thursday, November 5, 2020 Approved
Hugo Extended 0.78.0 285 Tuesday, November 3, 2020 Approved
Hugo Extended 0.77.0 466 Friday, October 30, 2020 Approved
Hugo Extended 0.76.5 2594 Wednesday, October 14, 2020 Approved
Hugo Extended 0.76.4 404 Monday, October 12, 2020 Approved
Hugo Extended 0.76.3 498 Thursday, October 8, 2020 Approved
Hugo Extended 0.76.2 278 Wednesday, October 7, 2020 Approved
Hugo Extended 0.76.0 212 Tuesday, October 6, 2020 Approved
Hugo Extended 0.75.1 1104 Tuesday, September 15, 2020 Approved
Hugo Extended 0.75.0 282 Monday, September 14, 2020 Approved
Hugo Extended 0.74.3 2104 Thursday, July 23, 2020 Approved
Hugo Extended 0.74.2 532 Friday, July 17, 2020 Approved
Hugo Extended 0.74.1 412 Tuesday, July 14, 2020 Approved
Hugo Extended 0.74.0 256 Monday, July 13, 2020 Approved
Hugo Extended 0.73.0 1094 Tuesday, June 23, 2020 Approved
Hugo Extended 0.72.0 1161 Sunday, May 31, 2020 Approved
Hugo Extended 0.71.1 513 Monday, May 25, 2020 Approved
Hugo Extended 0.71.0 567 Monday, May 18, 2020 Approved
Hugo Extended 0.70.0 944 Wednesday, May 6, 2020 Approved
Hugo Extended 0.69.2 806 Friday, April 24, 2020 Approved
Hugo Extended 0.69.1 347 Wednesday, April 22, 2020 Approved
Hugo Extended 0.69.0 17737 Friday, April 10, 2020 Approved
Hugo Extended 0.68.3 1187 Tuesday, March 24, 2020 Approved
Hugo Extended 0.68.2 235 Tuesday, March 24, 2020 Approved
Hugo Extended 0.68.1 366 Sunday, March 22, 2020 Approved
Hugo Extended 0.68.0 277 Saturday, March 21, 2020 Approved
Hugo Extended 0.67.1 524 Monday, March 16, 2020 Approved
Hugo Extended 0.67.0 518 Tuesday, March 10, 2020 Approved
Hugo Extended 0.66.0 523 Tuesday, March 3, 2020 Approved
Hugo Extended 0.65.3 666 Sunday, February 23, 2020 Approved
Hugo Extended 0.65.2 273 Friday, February 21, 2020 Approved
Hugo Extended 0.65.1 254 Thursday, February 20, 2020 Approved
Hugo Extended 0.65.0 196 Thursday, February 20, 2020 Approved
Hugo Extended 0.64.1 669 Monday, February 10, 2020 Approved
Hugo Extended 0.64.0 229 Tuesday, February 4, 2020 Approved
Hugo Extended 0.63.2 749 Monday, January 27, 2020 Approved
Hugo Extended 0.63.1 331 Friday, January 24, 2020 Approved
Hugo Extended 0.63.0 249 Thursday, January 23, 2020 Approved
Hugo Extended 0.62.2 862 Monday, January 6, 2020 Approved
Hugo Extended 0.62.1 192 Wednesday, January 1, 2020 Approved
Hugo Extended 0.62.0 615 Monday, December 23, 2019 Approved
Hugo Extended 0.61.0 596 Wednesday, December 11, 2019 Approved
Hugo Extended 0.60.1 557 Friday, November 29, 2019 Approved
Hugo Extended 0.60.0 290 Wednesday, November 27, 2019 Approved
Hugo Extended 0.59.1 948 Thursday, October 31, 2019 Approved
Hugo Extended 0.59.0 503 Monday, October 21, 2019 Approved
Hugo Extended 0.58.3 663 Thursday, September 19, 2019 Approved
Hugo Extended 0.58.2 372 Friday, September 13, 2019 Approved
Hugo Extended 0.58.1 338 Friday, September 6, 2019 Approved
Hugo Extended 0.58.0 275 Wednesday, September 4, 2019 Approved
Hugo Extended 0.57.2 2452 Saturday, August 17, 2019 Approved
Hugo Extended 0.57.1 261 Friday, August 16, 2019 Approved
Hugo Extended 0.57.0 340 Wednesday, August 14, 2019 Approved
Hugo Extended 0.56.3 9597 Wednesday, July 31, 2019 Approved
Hugo Extended 0.56.2 268 Tuesday, July 30, 2019 Approved
Hugo Extended 0.56.1 367 Sunday, July 28, 2019 Approved
Hugo Extended 0.56.0 293 Thursday, July 25, 2019 Approved
Hugo Extended 0.55.6 2320 Saturday, May 18, 2019 Approved
Hugo Extended 0.55.5 578 Friday, May 3, 2019 Approved
Hugo Extended 0.55.4 440 Thursday, April 25, 2019 Approved
Hugo Extended 0.55.3 334 Saturday, April 20, 2019 Approved
Hugo Extended 0.55.2 280 Wednesday, April 17, 2019 Approved
Hugo Extended 0.55.1 363 Friday, April 12, 2019 Approved
Hugo Extended 0.55.0 311 Monday, April 8, 2019 Approved
Hugo Extended 0.54.0 930 Friday, February 1, 2019 Approved
Hugo Extended 0.53 545 Monday, December 24, 2018 Approved
Hugo Extended 0.52 374 Wednesday, November 28, 2018 Approved
Hugo Extended 0.51 340 Wednesday, November 7, 2018 Approved
Hugo Extended 0.50 316 Monday, October 29, 2018 Approved
Hugo Extended 0.49.2 316 Friday, October 12, 2018 Approved
Hugo Extended 0.49.1 255 Wednesday, October 10, 2018 Approved
Hugo Extended 0.49 300 Tuesday, September 25, 2018 Approved
Hugo Extended 0.48 251 Saturday, September 22, 2018 Approved

> [!NOTE]
> If running on Netlify, make sure you have configured your build with their latest build image, see this issue.

Hugo v0.149.0 comes with bug fixes and a set of new features/improvements, notably:

  • We now build with the recently released Go 1.25
  • A new collections.D template function that generates random sequences of integers using J. S. Vitter’s Method D, by some called The Best Algorithm No One Knows About.
  • Two new permalinks tokens, :sectionslug and :sectionslugs, especially useful in multilingual Hugo projects.
  • A new --omitClassComments flag on hugo gen chromastyles
  • Several improvements to how ToC from Markdown gets rendered, see #13401 and #12605.
  • A new format option in transform.Unmarshal

Note

  • Remove test with deprecated path usage 80e973ea5 @bep

Bug fixes

  • create: Fix new content command with future dates bb4e66cd7 @justuswilhelm #12599
  • Fix server rebuild when adding a new leaf bundle with resources in one go 13b43e611 @bep #13925
  • Fix rebuild when deleting a content adapter file 87e100e61 @bep

Improvements

  • tpl/collections: Add an integration test for collections.D 84b512391 @bep
  • tpl/collections: Add collections.D using Vitter's Method D for sequential random sampling 1ba80874e @bep
  • commands: Deprecate --omitEmpty on chromastyles command 61ec7a20a @bep
  • commands: Add --omitClassComments to the chromastyles command c289fcaaa @bep
  • all: Use slices.Equal ecdef2be7 @minxinyi
  • resources/page: Add :sectionslug and :sectionslugs permalink tokens 12ace3ad5 @DustinFischer #13788
  • Upgrade to Go 1.25 c14fdddad @bep #13924 #13931
  • common/hcontext: Replace with external package 186934feb @bep
  • resources/page: Use reflect.TypeFor bff4dddb1 @cuiweixie
  • tpl/strings: Remove unnecessary error check 348aae91e @Nigel2392
  • markup/goldmark: Apply Hugo Goldmark Extras when rendering TOC 61482cfab @jmooring #12605
  • markup/goldmark: Sanitize TOC heading titles 5fdcc0906 @jmooring #13401
  • Add a key to the partialCached deadlock prevention 221602862 @n1xx1 #13889
  • transform: Add support for "format" option in transform.Unmarshal ecc3dd1f5 @n1xx1 #13887
  • Skip flakey test on CI de4a7f1e0 @bep

Dependency Updates

  • build(deps): bump github.com/getkin/kin-openapi from 0.132.0 to 0.133.0 45ec2f88b @dependabot[bot]
  • build(deps): bump google.golang.org/api from 0.247.0 to 0.248.0 84dd495f2 @dependabot[bot]
  • build(deps): bump github.com/evanw/esbuild from 0.25.6 to 0.25.9 327bbc613 @dependabot[bot]
  • build(deps): bump gocloud.dev from 0.40.0 to 0.43.0 2447138f1 @dependabot[bot]
  • deps: Upgrade github.com/alecthomas/chroma/v2 v2.19.0 => v2.20.0 cfc38ecfe @bep #13917
  • build(deps): bump github.com/aws/aws-sdk-go-v2/service/cloudfront 22e579e05 @dependabot[bot]
  • build(deps): bump github.com/tdewolff/minify/v2 from 2.23.11 to 2.24.0 b886615d1 @dependabot[bot]
  • build(deps): bump github.com/tdewolff/minify/v2 from 2.23.8 to 2.23.11 885cd299b @dependabot[bot]
  • build(deps): bump github.com/olekukonko/tablewriter from 1.0.8 to 1.0.9 debf3c559 @dependabot[bot]
  • build(deps): bump google.golang.org/api from 0.237.0 to 0.247.0 1649f3126 @dependabot[bot]
  • build(deps): bump github.com/aws/aws-sdk-go-v2 from 1.36.4 to 1.38.0 ccd6a4b71 @dependabot[bot]
  • build(deps): bump golang.org/x/tools from 0.35.0 to 0.36.0 6dc1a1752 @dependabot[bot]
  • build(deps): bump github.com/bep/simplecobra from 0.6.0 to 0.6.1 806d4848c @dependabot[bot]
  • build(deps): bump golang.org/x/mod from 0.25.0 to 0.27.0 04ee1b978 @dependabot[bot]
  • build(deps): bump github.com/yuin/goldmark from 1.7.12 to 1.7.13 7a86fe990 @dependabot[bot]
  • build(deps): bump golang.org/x/image from 0.28.0 to 0.30.0 f5245a7d5 @dependabot[bot]
  • deps: Upgrade github.com/niklasfasching/go-org v1.8.0 => v1.9.1 5029676ac @jmooring #13846

Documentation

  • misc: Update Go version to 1.24.0 in README 291241595 @jmooring
  • Update README.md 01b0eda96 @bep

This package has no dependencies.

Discussion for the Hugo Extended Package

Ground Rules:

  • This discussion is only about Hugo Extended and the Hugo Extended package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Hugo Extended, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus