This CDFS has nothing to do with old L:CDFileSystem (aka cdfs.library 40.11), which be gone?
It probably has, yes, though that was a long time ago. CDFS was updated originally by Jörg Strohmeier, then by Sebastian Bauer, all for Os 4.0 and later, so the Os 4 version is at 52.4 or so. The backport beta (or rather, alpha) we have right now is again 45.1, so version numbers are certainly a bit backwards. Adding the "auto-boot" capabilitiy of the cdfs.library is by that in principle possible, though this mounts hardcoded on the "scsi.device" and not every Amiga has it. Besides, the ROM is full anyhow.
There have been some queue-handler replacements around too, don't know if you know about them? One is versioned 50.something, so I wonder if maybe it comes from OS4.0 or OS4.1 for classic.
Queue-Handler is new from scratch, no relation to the old code (which was just broken) nor any other new code. The problem with all the replacements (and the old code) was that it didn't work right with the new shell pipe support.
In particular, the following is an interesting race condition one had to fix: If you have a long directory listing (say) going and pipe that to "more", such as
list all | more
and then abort "more" with ^C, then you somehow need to take care of to interrupt "list" as well. None of the pipe handlers I found did that right. Also, you somehow need to tell commands that cannot read from "stdin" to read from the pipe. The "hack-me-up" approach of the "C:Pipe" command you find in aminet is to do second-level parsing, which is a dangerous thing to do with the weird shell syntax, so that approach is long gone. Pipes are intrinsic in the shell. Now, instead, you can now (with the new pipe handler) use the unnamed Pipe to do just the same:
list all | type hex PIPE:
will give you the directory output in hex. For whatever this should be good for, but... we have it. Also "Sort" can be run on a pipe, and "Dir" reformats its output according to the shell window size.
So, all tiny tiny improvements here and there. There is no "big new thing" that will come with 3.1.4. It is just "cleaning out the dust and bring down the trash".
But no, we're still busy, and CDFS will keep me busy for more time. Besides, I will be away for conferences, meetings and vacations for the next weeks, which will slow things do. Nothing is dead here, not at all.