Pass the authenticated viewer to Changelog.timeline/2 and projection/2 for #70
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
lib/openagents/changelog.ex -
modified
lib/openagents_web/controllers/changelog_controller.ex -
modified
lib/openagents_web/live/changelog_live.ex -
added
test/openagents_web/controllers/changelog_controller_test.exs
Diff
4 files changed, +95 -14
lib/openagents/changelog.ex modified +20 -11
@@ -36,10 +36,15 @@ defmodule OpenAgents.Changelog do
| 36 | 36 |
|
| 37 | 37 |
|
| 38 | 38 |
|
| 39 |
|
|
| 40 |
|
|
| 39 | 41 |
|
| 40 | 42 |
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 43 | 48 |
|
| 44 | 49 |
|
| 45 | 50 |
|
@@ -69,12 +74,16 @@ defmodule OpenAgents.Changelog do
| 69 | 74 |
|
| 70 | 75 |
|
| 71 | 76 |
|
| 72 |
|
|
| 73 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 74 | 80 |
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 78 | 87 |
|
| 79 | 88 |
|
| 80 | 89 |
|
@@ -83,7 +92,7 @@ defmodule OpenAgents.Changelog do
| 83 | 92 |
|
| 84 | 93 |
|
| 85 | 94 |
|
| 86 |
|
|
| 95 |
|
|
| 87 | 96 |
|
| 88 | 97 |
|
| 89 | 98 |
|
@@ -98,10 +107,10 @@ defmodule OpenAgents.Changelog do
| 98 | 107 |
|
| 99 | 108 |
|
| 100 | 109 |
|
| 101 |
|
|
| 110 |
|
|
| 102 | 111 |
|
| 103 | 112 |
|
| 104 |
|
|
| 113 |
|
|
| 105 | 114 |
|
| 106 | 115 |
|
| 107 | 116 |
|
@@ -120,7 +129,7 @@ defmodule OpenAgents.Changelog do
| 120 | 129 |
|
| 121 | 130 |
|
| 122 | 131 |
|
| 123 |
|
|
| 132 |
|
|
| 124 | 133 |
|
| 125 | 134 |
|
| 126 | 135 |
|
lib/openagents_web/controllers/changelog_controller.ex modified +2 -1
@@ -11,8 +11,9 @@ defmodule OpenAgentsWeb.ChangelogController do
| 11 | 11 |
|
| 12 | 12 |
|
| 13 | 13 |
|
| 14 |
|
|
| 14 | 15 |
|
| 15 |
|
|
| 16 |
|
|
| 16 | 17 |
|
| 17 | 18 |
|
| 18 | 19 |
|
lib/openagents_web/live/changelog_live.ex modified +2 -2
@@ -20,7 +20,7 @@ defmodule OpenAgentsWeb.ChangelogLive do
| 20 | 20 |
|
| 21 | 21 |
|
| 22 | 22 |
|
| 23 |
|
|
| 23 |
|
|
| 24 | 24 |
|
| 25 | 25 |
|
| 26 | 26 |
|
@@ -53,7 +53,7 @@ defmodule OpenAgentsWeb.ChangelogLive do
| 53 | 53 |
|
| 54 | 54 |
|
| 55 | 55 |
|
| 56 |
|
|
| 56 |
|
|
| 57 | 57 |
|
| 58 | 58 |
|
| 59 | 59 |
|
test/openagents_web/controllers/changelog_controller_test.exs added +71
@@ -0,0 +1,71 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|