···51515252 with subtest("the backend starts and responds"):
5353 server.wait_for_open_port(${toString backendPort})
5454- server.succeed("curl --fail localhost:${toString backendPort}/api/v3/site")
5454+ # wait until succeeds, it just needs few seconds for migrations, but lets give it 10s max
5555+ server.wait_until_succeeds("curl --fail localhost:${toString backendPort}/api/v3/site", 10)
55565657 with subtest("the UI starts and responds"):
5758 server.wait_for_unit("lemmy-ui.service")
+8-8
pkgs/applications/editors/vscode/vscode.nix
···3030 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
31313232 sha256 = {
3333- x86_64-linux = "0nffz9xqm1iny7sqi1pkmnfcski15qsycw9gxir18j51kfzz50wf";
3434- x86_64-darwin = "082m2wwd67ayjadlywqimnmdm8imw6lz0rd8rnwjd2sjksxnrsk8";
3535- aarch64-linux = "0wlm8ajm1xw8lpmnbkzkgvaakfa9gacwi7m2fdyc4822rq7fn09b";
3636- aarch64-darwin = "1rgcljj97f551yr0q5f0vxdkvbhxrbyqrw85gb6qfxpg5d0l7y4f";
3737- armv7l-linux = "1wpslrysi8a6rnx99lq16zx277lnmqjp02q6gxmkpcvrvw27m6yj";
3333+ x86_64-linux = "17fzqq44p7ix4ihkg8nq582njjy96a8zz8vz9hl62hdxxg3llgfg";
3434+ x86_64-darwin = "12vbkzv2l02wifcjd7amq583vlv0iqixpa2kf5swhl0arww1viqa";
3535+ aarch64-linux = "1myv8zy2cycsmnp8xhjbm2lpcad3hj9zh79ywcinc50yncwj6wdl";
3636+ aarch64-darwin = "0vvbwcbxf0fmcfyk2y231qd8lxaj869ap865zps6wcdjqr5wnbdq";
3737+ armv7l-linux = "04gy6ls3gnbdcg4998widy9b9h04rx1gzp6iml6pi73li1cmfawz";
3838 }.${system} or throwSystem;
3939in
4040 callPackage ./generic.nix rec {
4141 # Please backport all compatible updates to the stable release.
4242 # This is important for the extension ecosystem.
4343- version = "1.86.1";
4343+ version = "1.86.2";
4444 pname = "vscode" + lib.optionalString isInsiders "-insiders";
45454646 # This is used for VS Code - Remote SSH test
4747- rev = "31c37ee8f63491495ac49e43b8544550fbae4533";
4747+ rev = "903b1e9d8990623e3d7da1df3d33db3e42d80eda";
48484949 executableName = "code" + lib.optionalString isInsiders "-insiders";
5050 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders";
···6868 src = fetchurl {
6969 name = "vscode-server-${rev}.tar.gz";
7070 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable";
7171- sha256 = "1hq6i51d1dhpippc8gmhygw3kj9cx021y54ga58l5b80wvg2cf1y";
7171+ sha256 = "06jv2kzxy7p7y7294c4sq6fk6slwk4gfw6jqh79avnq0riy669gv";
7272 };
7373 };
7474