Skip to content

Commit d7dbe1a

Browse files
committed
feat: added section with logs containing breaking changes
1 parent 2507fd5 commit d7dbe1a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

lua/lazy/view/sections.lua

+16
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,22 @@ return {
6161
end,
6262
title = "Updated",
6363
},
64+
{
65+
filter = function(plugin)
66+
return has_task(plugin, function(task)
67+
if task.type ~= "log" then
68+
return
69+
end
70+
local lines = vim.split(task.output, "\n")
71+
for _, line in ipairs(lines) do
72+
if line:find("^%w+ %S+!:") then
73+
return true
74+
end
75+
end
76+
end)
77+
end,
78+
title = "Breaking Changes",
79+
},
6480
{
6581
filter = function(plugin)
6682
return has_task(plugin, function(task)

0 commit comments

Comments
 (0)