···23 Support is planned until the end of October 2020, handing over to 20.09.24 </para>25 </listitem>0000026 </itemizedlist>27 </section>28
···23 Support is planned until the end of October 2020, handing over to 20.09.24 </para>25 </listitem>26+ <listitem>27+ <para>28+ Postgresql for NixOS service now defaults to v11.29+ </para>30+ </listitem>31 </itemizedlist>32 </section>33
+2-1
nixos/modules/services/databases/postgresql.nix
···226 # Note: when changing the default, make it conditional on227 # ‘system.stateVersion’ to maintain compatibility with existing228 # systems!229- mkDefault (if versionAtLeast config.system.stateVersion "17.09" then pkgs.postgresql_9_60230 else if versionAtLeast config.system.stateVersion "16.03" then pkgs.postgresql_9_5231 else throw "postgresql_9_4 was removed, please upgrade your postgresql version.");232
···226 # Note: when changing the default, make it conditional on227 # ‘system.stateVersion’ to maintain compatibility with existing228 # systems!229+ mkDefault (if versionAtLeast config.system.stateVersion "20.03" then pkgs.postgresql_11230+ else if versionAtLeast config.system.stateVersion "17.09" then pkgs.postgresql_9_6231 else if versionAtLeast config.system.stateVersion "16.03" then pkgs.postgresql_9_5232 else throw "postgresql_9_4 was removed, please upgrade your postgresql version.");233