Add https://github.com/vibhorkum/pg_background, which allows you to execute arbitrary SQL commands in background worker processes within PostgreSQL (version >= 9.5). It provides a convenient way to offload long-running tasks, perform operations asynchronously, and implement autonomous transactions.
Before the change `pkgsLLVM.git-doc` evaluated to uncatchable error:
$ nix build --no-link -f. pkgsLLVM.git-doc
error:
… while evaluating a branch condition
at pkgs/top-level/splice.nix:59:11:
58| # on to splice them together.
59| if lib.isDerivation defaultValue then
| ^
60| augmentedValue
… while evaluating the attribute 'git-doc'
at pkgs/top-level/all-packages.nix:1159:3:
1158|
1159| git-doc = lib.addMetaAttrs {
| ^
1160| description = "Additional documentation for Git";
(stack trace truncated; use '--show-trace' to show the full, detailed trace)
error: attribute 'doc' missing
at pkgs/top-level/all-packages.nix:1165:5:
1164| '';
1165| } gitFull.doc;
| ^
1166|
Did you mean src?
After the change it's more typical `throw` error:
$ nix build --no-link -f. pkgsLLVM.git-doc
error:
… while evaluating a branch condition
at pkgs/top-level/splice.nix:59:11:
58| # on to splice them together.
59| if lib.isDerivation defaultValue then
| ^
60| augmentedValue
… while evaluating the attribute 'git-doc'
at pkgs/top-level/all-packages.nix:1159:3:
1158|
1159| git-doc =
| ^
1160| # doc attribnute is not present at least for pkgsLLVM
(stack trace truncated; use '--show-trace' to show the full, detailed trace)
error: 'git-doc' can't be evaluated as 'gitFull' does no expose 'doc' attribute
Co-authored-by: Colin <accounts.github@uninsane.org>
Co-authored-by: Doron Behar <doron.behar@gmail.com>
Disabled tests as they require Kubernetes control plane components
(etcd) that are not available in the Nix build sandbox. The new
version introduced extensive integration tests that were not present
in 0.23.0.
- Update Editor method signatures for new nixpkgs-plugin-update API
- Restore automatic git commits by extracting versions and returning updated_plugins list
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>