{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":77234579,"defaultBranch":"main","name":"aiida-core","ownerLogin":"aiidateam","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-12-23T15:38:21.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/22181836?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1720704167.0","currentOid":""},"activityList":{"items":[{"before":"03d6a31e8b05084338b0064dd9babbe885a1b91a","after":"e32d4d52dcc13883651048606649bc782d54a851","ref":"refs/heads/gh-pages","pushedAt":"2024-07-11T21:00:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 954cbdd3ee5127d6618db9d144508505e41cffcc [ci skip]","shortMessageHtmlLink":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 954cbdd"}},{"before":"cba6e7c757ec74194afc63809b5dac72bb81a771","after":"954cbdd3ee5127d6618db9d144508505e41cffcc","ref":"refs/heads/main","pushedAt":"2024-07-11T20:52:44.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"`Scheduler`: Refactor interface to make it more generic (#6043)\n\nThe original `Scheduler` interface made the assumption that all\r\ninterfaces would interact with the scheduler through a command line\r\ninterface that would be invoked through a bash shell. However, this is\r\nnot always the case. Prime example is the new FirecREST service, being\r\ndeveloped by CSCS, that will allow to interact with the scheduler\r\nthrough a REST API. Due to the assumptions of the `Scheduler` interface,\r\nit was difficult to implement it for this use case.\r\n\r\nThe `Scheduler` interface is made more generic, by removing the\r\nfollowing (abstract) methods:\r\n\r\n * `_get_joblist_command`\r\n * `_parse_joblist_output`\r\n * `_get_submit_command`\r\n * `_parse_submit_output`\r\n * `submit_from_script`\r\n * `kill`\r\n * `_get_kill_command`\r\n * `_parse_kill_output`\r\n\r\nThey are replaced by three abstract methods:\r\n\r\n * `submit_job`\r\n * `get_jobs`\r\n * `kill_job`\r\n\r\nThe new interface no longer makes an assumption about how a plugin\r\nimplements these methods. The first one should simply submit the job,\r\ngiven the location of the submission script on the remote computer. The\r\nsecond should return the status of the list of active jobs. And the\r\nfinal should kill a job and return the result.\r\n\r\nUnfortunately, this change is backwards incompatible and will break\r\nexisting scheduler plugins. To simplify the migration pathway, a\r\nsubclass `BashCliScheduler` is added. This implements the new `Scheduler`\r\ninterface while maintaining the old interface. This means that this new\r\nclass is a drop-in replacement of the old `Scheduler` class for existing\r\nplugins. The plugins that ship with `aiida-core` are all updated to\r\nsubclass from `BashCliScheduler`. Any existing plugins that subclassed\r\nfrom these plugins will therefore not be affected whatsoever by these\r\nchanges.","shortMessageHtmlLink":"Scheduler: Refactor interface to make it more generic (#6043)"}},{"before":"f28ef5071745f2a1fbf6110ae293b09e651b3077","after":"03d6a31e8b05084338b0064dd9babbe885a1b91a","ref":"refs/heads/gh-pages","pushedAt":"2024-07-11T14:02:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for cba6e7c757ec74194afc63809b5dac72bb81a771 [ci skip]","shortMessageHtmlLink":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for cba6e7c"}},{"before":"9579378ba063237baa5b73380eb8e9f0a28529ee","after":"cba6e7c757ec74194afc63809b5dac72bb81a771","ref":"refs/heads/main","pushedAt":"2024-07-11T13:54:18.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"Dependencies: Update requirement to `psycopg~=3.0` (#6362)\n\nThe `psycopg` library is used by `sqlalchemy` to connect to the\r\nPostgreSQL server. So far, the `psycopg2` package was used, but the\r\nnext generation v3 has already been out for a while. The release comes\r\nwith a number of performance improvements according to the author.\r\nAlthough there is no clear timeline for support of v2, we are not\r\nwaiting and switching now to the new version.\r\n\r\nWhen v2 was released, instead of releasing a new major version, it was\r\nreleased as a new library changing the name from `psycopg` to `psycopg2`\r\nbut for v3 they are switching back to `psycopg`. This means that users\r\nwould still be able to run v2 and v3 along side one another in a single\r\nPython environment. This supports the decision to move to v3.\r\n\r\nNote that `aiida-core` will not be supporting both at the same time and\r\nfrom now only supports v3. Interestingly, from the very early versions\r\nof AiiDA, the profile would contain the `database_engine` key. This is\r\nstill an option in `verdi setup` and `verdi quicksetup`, except it is\r\nnot really an option as it is hardcoded to `postgresql_psycopg2`.\r\nSo all `core.psql_dos` profiles out there contain:\r\n\r\n 'main': {\r\n 'storage': {\r\n 'backend': 'core.psql_dos',\r\n 'config': {\r\n 'database_engine': 'postgresql_psycopg2',\r\n ...\r\n }\r\n },\r\n }\r\n\r\nThe value is not actually used however as the connection string for\r\nsqlalchemy's engine, where it _could_ be used, simply hardcodes this to\r\n`postgres://` which is the default psycopg dialect and maps to\r\n`postgres+psycopg2://`. This value is now simply updated to\r\n`postgres+psycopg://` to target the new version of `psycopg`.\r\n\r\nBecause it is hardcoded, a migration for the existing configs is not\r\nrequired and it can be left as a vestigial attribute. Since `verdi setup`\r\nand `verdi quicksetup` are deprecated now anyway, the options don't have\r\nto be removed here.","shortMessageHtmlLink":"Dependencies: Update requirement to psycopg~=3.0 (#6362)"}},{"before":"b407e542c635b156d253dd8703becd96908f9883","after":"f28ef5071745f2a1fbf6110ae293b09e651b3077","ref":"refs/heads/gh-pages","pushedAt":"2024-07-11T13:31:17.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 9579378ba063237baa5b73380eb8e9f0a28529ee [ci skip]","shortMessageHtmlLink":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 9579378"}},{"before":"1ad934e5f8f6a014d6734ca732135124365f92f1","after":null,"ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T13:22:47.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"}},{"before":"120c8ac6dcd15cec1ff3260ab65276c60027dd5f","after":"9579378ba063237baa5b73380eb8e9f0a28529ee","ref":"refs/heads/main","pushedAt":"2024-07-11T13:22:44.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"Docker: Replace sleep with `s6-notifyoncheck` (#6475)\n\nFor the `aiida-core-with-services` image where the services are part of\r\nthe image, we cannot rely on the health check for the services provided\r\nby docker-build as is used for the `aiida-core-base` case. Instead, a\r\nsimple sleep was added to the `aiida-prepare.sh` script that sets up \r\nthe profile, to make sure the services are up before the profile is\r\ncreated.\r\n\r\nThis solution is neither elegant nor robust. Here the sleep approach is\r\nreplaced by `s6-notifyoncheck`. This hook allows blocking the startup\r\nfrom continuing until a script returns a 0 exit code. The script in\r\nquestion first calls `rabbitmq-diagnostics ping` to make sure the\r\nRabbitMQ server is even up, followed by a call to\r\n`rabbitmq-diagnostics check_running`. If the latter returns 0, it means\r\nRabbitMQ is up and running and the script returns 0 as well, which will\r\ntrigger `s6-notifyoncheck` to continue with the rest of the startup.\r\n\r\nNote that `rabbitmq-diagnostics is_running` could not be used as that\r\ncommand sometimes returns 0 even if the service is not ready at all.\r\n\r\nCo-authored-by: Sebastiaan Huber ","shortMessageHtmlLink":"Docker: Replace sleep with s6-notifyoncheck (#6475)"}},{"before":"410de22b0f8944c3a2922247be493b9efd5036f2","after":"1ad934e5f8f6a014d6734ca732135124365f92f1","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T12:38:01.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"do not use is_running or is_booting","shortMessageHtmlLink":"do not use is_running or is_booting"}},{"before":"be66d4418a09c32362deeb58364bba4d684d824d","after":"410de22b0f8944c3a2922247be493b9efd5036f2","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T11:42:41.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"do not check is_booting","shortMessageHtmlLink":"do not check is_booting"}},{"before":"92cc58915348a515da083d37a6dfdabc32138978","after":"be66d4418a09c32362deeb58364bba4d684d824d","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T11:32:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"step-wise checking","shortMessageHtmlLink":"step-wise checking"}},{"before":"a61b7db40c7b39511eb863b403ed9ad6d4632101","after":"92cc58915348a515da083d37a6dfdabc32138978","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T10:57:50.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"another try","shortMessageHtmlLink":"another try"}},{"before":"992d7273955b8099b6eefdc34337dfeb763fe3df","after":"a61b7db40c7b39511eb863b403ed9ad6d4632101","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T10:44:56.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"another try","shortMessageHtmlLink":"another try"}},{"before":"c005082b40606ab6e84d06062b0198da2bc82549","after":"992d7273955b8099b6eefdc34337dfeb763fe3df","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T10:33:07.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"try with ping","shortMessageHtmlLink":"try with ping"}},{"before":"c6d21efd45a3d05fcb5de2792512cdb47a37cf64","after":"c005082b40606ab6e84d06062b0198da2bc82549","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T10:15:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"try until in aiida-prepare script itself","shortMessageHtmlLink":"try until in aiida-prepare script itself"}},{"before":"86dd0e87c4a60efac7017c85f0443abb1a63621a","after":"c6d21efd45a3d05fcb5de2792512cdb47a37cf64","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T09:58:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"try both","shortMessageHtmlLink":"try both"}},{"before":"85c5e4a44dd22eca9f11db9b4be95dd80f55dc79","after":"86dd0e87c4a60efac7017c85f0443abb1a63621a","ref":"refs/heads/fix/6448/s6-notification-polling-check","pushedAt":"2024-07-11T09:09:45.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"Using s6 service ready notification instead of sleep","shortMessageHtmlLink":"Using s6 service ready notification instead of sleep"}},{"before":"103cf562dbff627a5b014edbca14726c650e8b7b","after":"b407e542c635b156d253dd8703becd96908f9883","ref":"refs/heads/gh-pages","pushedAt":"2024-07-10T13:03:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 120c8ac6dcd15cec1ff3260ab65276c60027dd5f [ci skip]","shortMessageHtmlLink":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 120c8ac"}},{"before":"9355a9878134b7c8e3e75bb029c251f0bf0a7357","after":"120c8ac6dcd15cec1ff3260ab65276c60027dd5f","ref":"refs/heads/main","pushedAt":"2024-07-10T12:55:51.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"CLI: Catch `NotImplementedError` in `verdi calcjob gotocomputer` (#6525)\n\nNot all transport plugins implement the `gotocomputer` method.\r\nInstead of excepting, the remote working directory is now displayed.","shortMessageHtmlLink":"CLI: Catch NotImplementedError in verdi calcjob gotocomputer (#6525)"}},{"before":"c937821449d5ff0ebead0b62e1923d58eb157bb5","after":"103cf562dbff627a5b014edbca14726c650e8b7b","ref":"refs/heads/gh-pages","pushedAt":"2024-07-10T12:01:53.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 9355a9878134b7c8e3e75bb029c251f0bf0a7357 [ci skip]","shortMessageHtmlLink":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 9355a98"}},{"before":"a5da4eda131f844c3639bdb01a256b9e9a7873a2","after":"9355a9878134b7c8e3e75bb029c251f0bf0a7357","ref":"refs/heads/main","pushedAt":"2024-07-10T11:53:47.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"CLI: Add default for `output_file` in computer and code export commands (#6486)","shortMessageHtmlLink":"CLI: Add default for output_file in computer and code export comman…"}},{"before":"bd30070b67d67a07946076a660a2f3ee276552e6","after":"c937821449d5ff0ebead0b62e1923d58eb157bb5","ref":"refs/heads/gh-pages","pushedAt":"2024-07-10T09:33:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for a5da4eda131f844c3639bdb01a256b9e9a7873a2 [ci skip]","shortMessageHtmlLink":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for a5da4ed"}},{"before":"c740b99f2bfe366a733f140164a21048cd51198e","after":"a5da4eda131f844c3639bdb01a256b9e9a7873a2","ref":"refs/heads/main","pushedAt":"2024-07-10T09:25:36.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"Devops: Mark `test_leak_ssh_calcjob` as nightly (#6521)\n\nIt is a very slow test and is unlikely to be affected by typical\r\nchanges to the codebase.","shortMessageHtmlLink":"Devops: Mark test_leak_ssh_calcjob as nightly (#6521)"}},{"before":"d08ca4e8196d1c7c782f2b5051bf481a4737ebed","after":"bd30070b67d67a07946076a660a2f3ee276552e6","ref":"refs/heads/gh-pages","pushedAt":"2024-07-05T15:01:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for c740b99f2bfe366a733f140164a21048cd51198e [ci skip]","shortMessageHtmlLink":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for c740b99"}},{"before":"b66389bb9582ea3691103904fbca513c298ce247","after":null,"ref":"refs/heads/docker-fix-tag","pushedAt":"2024-07-05T14:53:59.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"}},{"before":"a3f734d8a89715ea27f273df64e130cac89957a6","after":"c740b99f2bfe366a733f140164a21048cd51198e","ref":"refs/heads/main","pushedAt":"2024-07-05T14:53:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"Docker: Fix release tag in publish workflow (#6520)\n\nThe `AIIDA_VERSION` variable was no longer present in the env.\r\nIt is now retrieved separately from the tag version.","shortMessageHtmlLink":"Docker: Fix release tag in publish workflow (#6520)"}},{"before":"1ddbd022d09ae81e7afe7b9e68f1991326a81213","after":"b66389bb9582ea3691103904fbca513c298ce247","ref":"refs/heads/docker-fix-tag","pushedAt":"2024-07-05T12:19:39.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"danielhollas","name":"Daniel Hollas","path":"/danielhollas","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9539441?s=80&v=4"},"commit":{"message":"Docker image: Fix release tag in publish workflow","shortMessageHtmlLink":"Docker image: Fix release tag in publish workflow"}},{"before":null,"after":"1ddbd022d09ae81e7afe7b9e68f1991326a81213","ref":"refs/heads/docker-fix-tag","pushedAt":"2024-07-05T11:57:00.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"danielhollas","name":"Daniel Hollas","path":"/danielhollas","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9539441?s=80&v=4"},"commit":{"message":"WIP: Docker: Fix release tag","shortMessageHtmlLink":"WIP: Docker: Fix release tag"}},{"before":"5c1f5d6fcb3dcbe51fe7c8eda88daf123f191635","after":"a3f734d8a89715ea27f273df64e130cac89957a6","ref":"refs/heads/main","pushedAt":"2024-07-05T11:14:35.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"Docs: Update `redirects.txt` for installation pages (#6509)","shortMessageHtmlLink":"Docs: Update redirects.txt for installation pages (#6509)"}},{"before":"6196dcd3b321758ae8dfb84b22a59e1c77d8e933","after":"5c1f5d6fcb3dcbe51fe7c8eda88daf123f191635","ref":"refs/heads/main","pushedAt":"2024-07-05T08:15:23.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sphuber","name":"Sebastiaan Huber","path":"/sphuber","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6992332?s=80&v=4"},"commit":{"message":"Docs: Add `robots.txt` to only allow indexing of `latest` and `stable` (#6517)\n\nCurrently, all versions of the documentation are indexed with the result\r\nthat google searches come up with very outdated versions and the latest\r\nversion is almost impossible to find. The `robots.txt` now disallows\r\nany path from being indexed except for the `latest` and `stable`\r\nversions of the documentation.","shortMessageHtmlLink":"Docs: Add robots.txt to only allow indexing of latest and stable ("}},{"before":"5aba83e63f97f2a819c21f151d42ddc4bf5f1e5f","after":"d08ca4e8196d1c7c782f2b5051bf481a4737ebed","ref":"refs/heads/gh-pages","pushedAt":"2024-07-05T07:57:29.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 6196dcd3b321758ae8dfb84b22a59e1c77d8e933 [ci skip]","shortMessageHtmlLink":"add pytest-benchmarks:ubuntu-22.04,psql_dos benchmark result for 6196dcd"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEfUD4BwA","startCursor":null,"endCursor":null}},"title":"Activity · aiidateam/aiida-core"}