Updated to v3.3; web UI thinks CORE still at v3.2.1

Please follow the below template, it will help us to help you!

Expected Behaviour:

Pi-hole core should also be updated to v3.3.

Actual Behaviour:

It appears Pi-hole core did not update to v3.3 with latest release. Core stuck at commit v3.2.1-73-g1e87850.

Debug Token:

c67826ndvp

1 Like

I've run pihole -r and did a Repair but this did not make a difference.

27%20PM

Admin web UI footer.

What is the output from:

cd /etc/.pihole
sudo git status

On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean

By the by, LOVE Pi-hole. :slight_smile:

Try

cd /etc/.pihole
sudo git pull
pihole -r

sudo git pull
Already up-to-date.

Okay, let's look at the tags your install knows about.

cd /etc/.pihole
sudo git fetch
sudo git tag

For brevity...

...
v3.2
v3.2.1
v3.3

You have the current tags, try:

cd /etc/.pihole
git checkout tags/v3.3

And then if that works, run pihole -r to make sure everything is good.

One thing I first checked was what code in the admin web UI was checking the local version.

I found cd /etc/.pihole/ && git describe --long --tags, ran that and got...

v3.2.1-73-g1e87850

Are you running any outside modifications like the dark theme or the speedtest addon?

Negatory.

The only modification I've done is what's described here.

Got the following when I checked out tags/v3.3...

Note: checking out 'tags/v3.3'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

git checkout -b new_branch_name

HEAD is now at e602008... Merge pull request #1856 from pi-hole/release/v3.2.1

Try the pihole -r now to balance everything.

Checked out tags/v3.3, ran pihole -r, Repaired.

pihole version
Pi-hole version is v3.2.1 (Latest: v3.3)
AdminLTE version is v3.3 (Latest: v3.3)
FTL version is v3.0 (Latest: v3.0)

Try pihole checkout master and we'll see if that kicks things over.

The commit hash that you posted is the v3.3 hash, so you are running version 3.3, but for some reason you are getting a version mismatch. The tags haven't mapped to the release hash. Will take a look at this further.

Yeah, literally just did that.

Same result. :slight_smile:

Diff between doing pihole -r after checking out tags/v3.3 versus off of master appears to be this (at the commit level)...

tags/v3.3

  • Pi-hole version is v3.2.1 (Latest: v3.3)

master

  • Pi-hole version is v3.2.1-73-g1e87850 (Latest: v3.3)

That is v3.3, if you go to our Github page you'll see that 1e87850 as the version 3.3 latest release.