Solved : Snapshot changelog questions

Hello,

1] Are these the change logs?

https://git.openwrt.org/?p=openwrt/openwrt.git;a=shortlog

2] If yes, I have a question about the time of the new changes the snapshot.

Example : There are snapshot builds out for today the 15th but when I check the changelogs I see commits 3 hours ago etc. Are those included in the snapshots or is it only till 14th?

Thank you.

2 Likes

When looking at git logs, there are two times to be aware of. The first is when the "original" author committed. This is what is shown in common git log output. For example

commit 0b204902075157dbb002ea04f41a5b1a4fbe848c
Author: Sven Eckelmann <sven.eckelmann@openmesh.com>
Date:   Wed Aug 9 13:52:07 2017 +0200

[...]

Knowing what was in a branch at a specific time requires additional options to reveal the time it was committed to the branch. For example:

lede_source$ git log -1 --format=fuller 0b204902075157dbb002ea04f41a5b1a4fbe848c
commit 0b204902075157dbb002ea04f41a5b1a4fbe848c
Author:     Sven Eckelmann <sven.eckelmann@openmesh.com>
AuthorDate: Wed Aug 9 13:52:07 2017 +0200
Commit:     Mathias Kresin <dev@kresin.me>
CommitDate: Mon Apr 23 22:07:22 2018 +0200

[...]
2 Likes

The first 10 Hex characters of the parent commit section will match the LuCI version number.

LEDE Reboot 17.01.4 r3560-79f57e422d

As you can see from the link below, the last commit before the marking was 79f57e422d:

https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=444add156f2a6d92fc15005c5ade2208a978966c

So, simply look at the change log and compare the version to the commit.

1 Like

Thank you. Gotcha