Probably a noob question as I only 'got into Linux' few months ago. For whatever reason I decided to check if there are any nginx vulnerabilities and I found CVE-2018-16845, which states that "nginx before versions 1.15.6, 1.14.1 has a vulnerability...".
I have my Ubuntu server set to auto-update so I decided to check what version of nginx-light am I running.
myself@server:~$ nginx -v
nginx version: nginx/1.14.0 (Ubuntu)
myself@server:~$ uname -a
Linux server 4.15.0-66-generic #75-Ubuntu SMP Tue Oct 1 05:24:09 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
myself@server:~$ sudo apt update
Hit:1 http://as-repository.openvpn.net/as/debian bionic InRelease
Hit:2 http://gb.archive.ubuntu.com/ubuntu bionic InRelease
Hit:3 http://ppa.launchpad.net/certbot/certbot/ubuntu bionic InRelease
Hit:4 http://gb.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:5 http://gb.archive.ubuntu.com/ubuntu bionic-backports InRelease
Hit:6 http://gb.archive.ubuntu.com/ubuntu bionic-security InRelease
Reading package lists... Done
Building dependency tree
Reading state information... Done
All packages are up to date.
myself@server:~$
And this is where I'm getting lost. According to nginx website, latest version is 1.17.5, or 1.14.2 for 1.14 branch. Does it mean Ubuntu repository has outdated vulnerable version, or is there something more to this puzzle that I am missing?