From 96f3baf3c4f41e76553f2fb8826b22282a1e53c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 27 Sep 2024 15:23:40 +0000 Subject: [PATCH] Auto-update HTMGO dependencies --- examples/todo-list/go.mod | 2 +- examples/todo-list/go.sum | 2 ++ framework-ui/go.mod | 2 +- framework-ui/go.sum | 2 ++ htmgo-site/go.mod | 2 +- htmgo-site/go.sum | 2 ++ templates/starter/go.mod | 2 +- templates/starter/go.sum | 2 ++ 8 files changed, 12 insertions(+), 4 deletions(-) diff --git a/examples/todo-list/go.mod b/examples/todo-list/go.mod index 03da329..a3e76b9 100644 --- a/examples/todo-list/go.mod +++ b/examples/todo-list/go.mod @@ -5,7 +5,7 @@ go 1.23.0 require ( entgo.io/ent v0.14.1 github.com/google/uuid v1.6.0 - github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd + github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424 github.com/mattn/go-sqlite3 v1.14.23 ) diff --git a/examples/todo-list/go.sum b/examples/todo-list/go.sum index f4f3043..940ecda 100644 --- a/examples/todo-list/go.sum +++ b/examples/todo-list/go.sum @@ -53,6 +53,8 @@ github.com/maddalax/htmgo/framework v0.0.0-20240927151004-681b873eb070 h1:7s+b4t github.com/maddalax/htmgo/framework v0.0.0-20240927151004-681b873eb070/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd h1:B+fhPmLvzOC2zO3TmNzFYH9/deilhGaaG9eoKi5KfuM= github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= +github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424 h1:3yqG/YLsJQr84//agGjf9PlmKPWWmxiw811cl9+sP+w= +github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= github.com/mattn/go-sqlite3 v1.14.23 h1:gbShiuAP1W5j9UOksQ06aiiqPMxYecovVGwmTxWtuw0= github.com/mattn/go-sqlite3 v1.14.23/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 h1:DpOJ2HYzCv8LZP15IdmG+YdwD2luVPHITV96TkirNBM= diff --git a/framework-ui/go.mod b/framework-ui/go.mod index fb1629a..fdbdc18 100644 --- a/framework-ui/go.mod +++ b/framework-ui/go.mod @@ -2,7 +2,7 @@ module github.com/maddalax/htmgo/framework-ui go 1.23.0 -require github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd +require github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424 require ( github.com/go-chi/chi/v5 v5.1.0 // indirect diff --git a/framework-ui/go.sum b/framework-ui/go.sum index ebf6edd..864538d 100644 --- a/framework-ui/go.sum +++ b/framework-ui/go.sum @@ -24,3 +24,5 @@ github.com/maddalax/htmgo/framework v0.0.0-20240927151004-681b873eb070 h1:7s+b4t github.com/maddalax/htmgo/framework v0.0.0-20240927151004-681b873eb070/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd h1:B+fhPmLvzOC2zO3TmNzFYH9/deilhGaaG9eoKi5KfuM= github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= +github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424 h1:3yqG/YLsJQr84//agGjf9PlmKPWWmxiw811cl9+sP+w= +github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= diff --git a/htmgo-site/go.mod b/htmgo-site/go.mod index 514fb99..e55a6c4 100644 --- a/htmgo-site/go.mod +++ b/htmgo-site/go.mod @@ -5,7 +5,7 @@ go 1.23.0 require ( github.com/go-chi/chi/v5 v5.1.0 github.com/google/uuid v1.6.0 - github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd + github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424 github.com/yuin/goldmark v1.7.4 github.com/yuin/goldmark-highlighting/v2 v2.0.0-20230729083705-37449abec8cc ) diff --git a/htmgo-site/go.sum b/htmgo-site/go.sum index 5e442a6..e263a5e 100644 --- a/htmgo-site/go.sum +++ b/htmgo-site/go.sum @@ -32,6 +32,8 @@ github.com/maddalax/htmgo/framework v0.0.0-20240927151004-681b873eb070 h1:7s+b4t github.com/maddalax/htmgo/framework v0.0.0-20240927151004-681b873eb070/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd h1:B+fhPmLvzOC2zO3TmNzFYH9/deilhGaaG9eoKi5KfuM= github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= +github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424 h1:3yqG/YLsJQr84//agGjf9PlmKPWWmxiw811cl9+sP+w= +github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= diff --git a/templates/starter/go.mod b/templates/starter/go.mod index d97ac78..ba32e25 100644 --- a/templates/starter/go.mod +++ b/templates/starter/go.mod @@ -4,7 +4,7 @@ go 1.23.0 require ( github.com/go-chi/chi/v5 v5.1.0 - github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd + github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424 ) require github.com/google/uuid v1.6.0 // indirect diff --git a/templates/starter/go.sum b/templates/starter/go.sum index dba7ba0..fbc8e43 100644 --- a/templates/starter/go.sum +++ b/templates/starter/go.sum @@ -24,6 +24,8 @@ github.com/maddalax/htmgo/framework v0.0.0-20240927151004-681b873eb070 h1:7s+b4t github.com/maddalax/htmgo/framework v0.0.0-20240927151004-681b873eb070/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd h1:B+fhPmLvzOC2zO3TmNzFYH9/deilhGaaG9eoKi5KfuM= github.com/maddalax/htmgo/framework v0.0.0-20240927152050-1208857c5ffd/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= +github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424 h1:3yqG/YLsJQr84//agGjf9PlmKPWWmxiw811cl9+sP+w= +github.com/maddalax/htmgo/framework v0.0.0-20240927152257-2456beb49424/go.mod h1:HYKI49Pb6oyY2opSJdTt145B1vWgfWIDohvlolynv80= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=