1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

84 Commits

Author SHA1 Message Date
78178d0c2a all: Typo fixes 2024-03-15 17:25:52 +01:00
dd6d0a6de1 Remove reference to Goreleaser in code comment
Hugo no longer uses the Goreleaser tool.
2023-01-03 20:25:44 +01:00
160a067c81 snap: Use "snapcraftctl set-grade"
This, together with 'snapcraftctl set-version", negates the need to
modify snap/snapcraft.yaml upon each release, so the corresponding code
is removed from releaser/releaser.go.

Also, vendorInfo is extended to include the snap version number.

See #10225
2022-08-30 05:23:18 -06:00
79932e7225 release: Fix the Deb archives
Fixes #10220
2022-08-29 14:56:15 +02:00
45e1084ff2 Add linux/arm64 extended to release setup
Fixes #8257
2022-08-28 18:23:01 +02:00
ee55fde5e5 releaser: Fix version replacement 2022-05-18 13:12:42 +02:00
7bc3401eb5 common/hugo: Fix version logic
[ci skip]
2022-05-16 13:01:52 +02:00
f2946da9e8 Improve error messages, esp. when the server is running
* Add file context to minifier errors when publishing
* Misc fixes (see issues)
* Allow custom server error template in layouts/server/error.html

To get to this, this commit also cleans up and simplifies the code surrounding errors and files. This also removes the usage of `github.com/pkg/errors`, mostly because of https://github.com/pkg/errors/issues/223 -- but also because most of this is now built-in to Go.

Fixes #9852
Fixes #9857
Fixes #9863
2022-05-06 19:43:22 +02:00
d80d5a104f releaser: Reduce parallelism 2022-04-14 10:38:31 +02:00
b80853de90 all: gofmt -w -r 'interface{} -> any' .
Updates #9687
2022-03-17 22:03:27 +01:00
ff02d41721 releaser: Remove the GitHub link syntax around release contributors
Fixes #9581
2022-03-08 19:36:31 +01:00
0fa40ce58f releaser: Simplify the release process
Make it into a one step even for major releases.
2021-12-08 09:38:15 +01:00
bf537f1c6d releaser: Remove unused code 2021-12-08 09:02:45 +01:00
3473e31eb1 releaser: Add "note" to Note regexp 2021-12-04 16:27:56 +01:00
24a893cf83 releaser: Rework and simplify to use GitHub only for release notes 2021-12-03 17:02:20 +01:00
d7331aaa7e releaser: Fix regexp
Original regexp used a char class which caused the regexp to only
check 1 symbol instead of a substring like "See" and "Closes".
So it would match `e #x` instead of `See #x` and many other
weird combinations.

Tests were passing as they never checked against an input that
would confuse that regexp.

Found with go-critic static analyzer, `badRegexp` checker.
2021-10-12 11:32:09 +02:00
fab1e43de5 Revert "Remove credit from release notes"
See b2eaf4c8c2e31aa1c1bc4a2c0061f661e01d2de1
2021-09-23 14:02:00 +02:00
a352d19d88 Fix theme count in release notes 2021-07-21 16:35:38 +02:00
b2eaf4c8c2 Remove credit from release notes 2021-06-25 21:14:11 +02:00
a1694b06af releaser: Increase timeout 2021-06-18 16:44:12 +02:00
6fc52d185a Remove duplicate references from release notes
Closes #8360
2021-04-15 21:15:20 +02:00
b65518ac63 releaser: Increase build timeout 2021-02-19 17:57:24 +01:00
29fb456c9e build: Add arm64 to Darwinextended build and add vendorInfo
Closes #8003
2021-02-18 14:11:48 +01:00
10ae7c3210 Improve LookPath 2020-12-19 17:03:07 +01:00
04b89857e1 all: Fix minor typos 2020-12-16 12:11:32 +01:00
d90e37e0c6 all: Format code with gofumpt
See https://github.com/mvdan/gofumpt
2020-12-03 13:12:58 +01:00
740fa4a91d Remove credit (#7347) 2020-06-02 19:31:15 +02:00
4d53ae697e releaser: Adjust the "thanks" section 2020-05-31 12:46:18 +02:00
1ce3e7d521 releaser: Include "Revert" commits in change log 2020-03-21 18:51:29 +01:00
df6e9efd8f Update releasenotes_writer.go 2020-01-07 13:15:22 +01:00
9e57182705 tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
2c7c361091 releaser: Create a proper automated title for patch releases
Fixes #6126
2019-07-30 09:02:03 +02:00
544f826dd6 releaser: Make it a one click release for patch releases 2019-07-28 15:05:15 +02:00
53da3881de releaser: Remove unused function
gitLog function is not used
2019-07-20 12:33:30 +02:00
9225db636e releaser: Remove version replacement in docs config
Fixes #5665
2019-04-01 09:11:36 +02:00
f7ef7d3761 releaser: Adjust patch vs images logic
Fixes #5664
2019-04-01 09:07:19 +02:00
b5f39d23b8 all: Apply staticcheck recommendations 2019-03-24 16:14:51 +01:00
9b619dc023 releaser: Adjust patch logic
See #5639
2019-02-01 10:09:14 +01:00
831d23cb4d Add tpl/site and tpl/hugo
This means that the current `.Site` and ´.Hugo` is available as a globals, so you can do `site.IsServer`, `hugo.Version` etc.

Fixes #5470
Fixes #5467
Fixes #5503
2018-12-06 14:37:25 +01:00
35fbfb19a1 commands: Show server error info in browser
The main item in this commit is showing of errors with a file context when running `hugo server`.

This can be turned off: `hugo server --disableBrowserError` (can also be set in `config.toml`).

But to get there, the error handling in Hugo needed a revision. There are some items left TODO for commits soon to follow, most notable errors in content and config files.

Fixes #5284
Fixes #5290
See #5325
See #5324
2018-10-16 22:10:56 +02:00
048a64be1c releaser: Update path to snap/snapcraft.yaml 2018-09-25 07:21:09 -06:00
4b82f74848 Update releasenotes_writer.go
Add @onedrawingperday to the release credit list. The activity on the theme repo is increasing and the work he and @digitalcraftsman 
 is doing is very much appreciated.
2018-09-14 23:25:54 +02:00
ccd3285484 releaser: Fix golint issues
struct field HtmlURL should be HTMLURL
2018-09-07 08:25:51 +02:00
de23293486 releaser: Work around a Goreleaser bug
Closes #4918
2018-08-17 11:03:28 +02:00
cfc5096e83 releaser: Put release notes below /en
Fixes #4712
2018-05-25 17:53:03 +02:00
10fef32de6 releaser: Adjust the "thank you" section 2018-03-16 20:56:28 +01:00
55fb0eac20 releaser: Remove suplerflous release notes slug 2018-02-27 10:33:35 +01:00
8dc77b84a5 releaser: Create bundles for the release notes
Fixes #4413
2018-02-21 10:22:08 +01:00
f82428d2e0 releaser: Git info bounds checking 2018-01-11 09:39:42 +01:00
c4bf03a558 releaser: Improve release notes front matter 2017-10-19 12:34:03 +02:00