Oracle’s Java 8 Update 31 has been updated to …. Java 8 Update 31

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 11:39 AM
FYI. Oracle has released a new update for Java 8, where Oracle has put out a new build but didn’t bump the version number from Java 8 Update 31. Folks who had previously installed Java 8 Update 31 may receive a message to update to Java 8 Update 31 from their current version, which will also be Java 8 Update 31.
I've got a post on it here:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 11:51 AM
Lovely. Thanks for the heads up Rich. Oracle has gone to new heights of dumb. :-/

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 12:13 PM
Is this even worth updating? (security fixes?)
I'm just worried that Java 8 Update 31 build build 17 will come out tomorrow :)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 12:26 PM
I think Oracle is in cahoots with Pearson to drive all K12 techs insane.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 12:38 PM
My primary system is on Java 8 Update 31 (old build)....
If i got to system preferences-> Java, it reports that there is a new version available...
But, if i go to java.com to check my version, it says i'm up to date because i have Java 8 Update 31...
Well done, Oracle

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 12:45 PM
Yes, exactly @kstrick. The java web page doesn't do the same check as their built in update check in the client. Total mess if you ask me. Why not just increment the version up if something changed? Who makes boneheaded decisions like this?
In addition to this, there are lots of Extension Attributes out there folks are using (including us) to capture the Oracle Java version that won't be able to tell the difference between the old 1.8.31 and the new one, since many of them don't also capture the build information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 01:03 PM
In case you need an EA
#!/bin/bash
# Displays Java Web Plugin Version
if [ -e /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java ]; then
result="$(/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java -version 2>&1 | grep "Java(TM)" | awk '{ print substr($6, 1, length($6)-1); }')"
echo "<result>$result</result>"
else
echo "<result>Java not installed</result>"
fi

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 01:28 PM
Nice! Thanks, Jason!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 02-13-2015 01:43 PM
I think Oracle is in cahoots with Pearson to drive all K12 techs insane.
As somebody who's primary responsibility is PowerSchool and SuccessMaker, I approve this message.
