-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
146 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
Summary: Service for generating badges for updown.io checks | ||
Name: updown-badge-server | ||
Version: 1.3.2 | ||
Version: 1.4.0 | ||
Release: 0%{?dist} | ||
Group: Applications/System | ||
License: Apache License, Version 2.0 | ||
|
@@ -26,7 +26,7 @@ Source100: checksum.sha512 | |
|
||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | ||
|
||
BuildRequires: golang >= 1.21 | ||
BuildRequires: golang >= 1.22 | ||
|
||
Requires: systemd | ||
|
||
|
@@ -100,6 +100,10 @@ exit 0 | |
################################################################################ | ||
|
||
%changelog | ||
* Thu Oct 10 2024 Anton Novojilov <[email protected]> - 1.4.0-0 | ||
- Code refactoring | ||
- Dependencies update | ||
|
||
* Mon Jun 24 2024 Anton Novojilov <[email protected]> - 1.3.2-0 | ||
- Code refactoring | ||
- Dependencies update | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
module github.com/essentialkaos/updown-badge-server | ||
|
||
go 1.18 | ||
go 1.22.8 | ||
|
||
require ( | ||
github.com/essentialkaos/ek/v12 v12.130.0 | ||
github.com/essentialkaos/ek/v13 v13.6.0 | ||
github.com/essentialkaos/go-badge v1.4.1 | ||
github.com/valyala/fasthttp v1.56.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/essentialkaos/depsy v1.3.0 // indirect | ||
github.com/andybalholm/brotli v1.1.1 // indirect | ||
github.com/essentialkaos/depsy v1.3.1 // indirect | ||
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/klauspost/compress v1.17.10 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
golang.org/x/image v0.18.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/image v0.21.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
) |
Oops, something went wrong.