{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":30203935,"defaultBranch":"master","name":"metabase","ownerLogin":"metabase","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2015-02-02T19:25:47.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/10520629?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1717765911.0","currentOid":""},"activityList":{"items":[{"before":"5116cd64909c54d6be7a820eb3a9dadabe46860d","after":"a43633ec77e96cafe9ea345cad291f7372b3a289","ref":"refs/heads/rename-query-field-direct-to-explicit","pushedAt":"2024-06-07T13:12:25.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"crisptrutski","name":"Chris Truter","path":"/crisptrutski","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/881351?s=80&v=4"},"commit":{"message":"Fix version","shortMessageHtmlLink":"Fix version"}},{"before":"8ee4042a3c4c8908fd6abbcdc957e7816b3b60a9","after":null,"ref":"refs/heads/backport-43296-v49","pushedAt":"2024-06-07T13:11:51.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"johnswanson","name":"John Swanson","path":"/johnswanson","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2152134?s=80&v=4"}},{"before":"22cd7633c31a7866be9df61932bd181d3a4dd533","after":"5eb26508d0abbfae99e6626a2025fff4c5bd0066","ref":"refs/heads/release-x.49.x","pushedAt":"2024-06-07T13:11:50.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"johnswanson","name":"John Swanson","path":"/johnswanson","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2152134?s=80&v=4"},"commit":{"message":"Fix remaining `tinyint` booleans in MySQL (#43296) (Backport #43296) (#43781)\n\n* Correct type for `report_card.dataset`\r\n\r\nThis was missed in the original migration of boolean types to\r\n${boolean.type} in MySQL/MariaDB, and then missed again by me when I\r\nmigrated `collection_preview` over a week ago.\r\n\r\n* Change all boolean types to `bit(1)` in MySQL\r\n\r\nLiquibase changed their boolean type in MySQL from `bit(1)` to\r\n`tinyint(4)` in version 4.25.1. Our JDBC driver does not recognize these\r\nas booleans, so we needed to migrate them to `bit(1)`s.\r\n\r\nAs discussed [here](#36964), we\r\nchanged all existing `boolean` types that were in the\r\n`001_update_migrations.yml` but not the SQL initialization file.\r\n\r\nFor new installations, this works: things in the SQL initialization file\r\nget created with the `bit(1)` type.\r\n\r\nHowever, for existing installations, there's a potential issue. Say I'm\r\non v42 and am upgrading to v49. In v43, a new `boolean` was added.\r\n\r\nIn this case, I'll get the `boolean` from the liquibase migration rather\r\nthan from the SQL initialization file, and it need to be changed to a\r\n`bit(1)`.\r\n\r\nI installed Metabase v41 with MySQL, migrated the database, and then\r\ninstalled Metabase v49 and migrated again. I made a list of all the\r\ncolumns that had the type `tinyint`:\r\n\r\n```\r\nmysql> SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, COLUMN_TYPE, COLUMN_DEFAULT, IS_NULLABLE FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_TYPE = 'tinyint' AND TABLE_SCHEMA='metabase_test';\r\n+---------------+------------------------------+-------------------+-------------+----------------+-------------+\r\n| TABLE_SCHEMA | TABLE_NAME | COLUMN_NAME | COLUMN_TYPE | COLUMN_DEFAULT | IS_NULLABLE |\r\n+---------------+------------------------------+-------------------+-------------+----------------+-------------+\r\n| metabase_test | core_user | is_datasetnewb | tinyint | 1 | NO |\r\n| metabase_test | metabase_field | database_required | tinyint | 0 | NO |\r\n| metabase_test | metabase_fieldvalues | has_more_values | tinyint | 0 | YES |\r\n| metabase_test | permissions_group_membership | is_group_manager | tinyint | 0 | NO |\r\n| metabase_test | persisted_info | active | tinyint | 0 | NO |\r\n| metabase_test | report_card | dataset | tinyint | 0 | NO |\r\n| metabase_test | timeline | archived | tinyint | 0 | NO |\r\n| metabase_test | timeline | default | tinyint | 0 | NO |\r\n| metabase_test | timeline_event | archived | tinyint | 0 | NO |\r\n| metabase_test | timeline_event | time_matters | tinyint | NULL | NO |\r\n+---------------+------------------------------+-------------------+-------------+----------------+-------------+\r\n10 rows in set (0.01 sec)\r\n```\r\n\r\nThen wrote migrations. For each column, we:\r\n\r\n- turn it into a `bit(1)`,\r\n\r\n- re-set the previously existing default value, and\r\n\r\n- re-add the NOT NULL constraint, if applicable.\r\n\r\n* Change author and add missing `dbms`\r\n\r\n---------\r\n\r\nCo-authored-by: SakuragiYoshimasa ","shortMessageHtmlLink":"Fix remaining tinyint booleans in MySQL (#43296) (Backport #43296) (#…"}},{"before":"50333d9d22374af40ba1c5fa7419b42da7fe8781","after":null,"ref":"refs/heads/backport-43296-v50","pushedAt":"2024-06-07T13:11:37.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"johnswanson","name":"John Swanson","path":"/johnswanson","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2152134?s=80&v=4"}},{"before":"757ba8b5a8117b1f89aa07ab6bb0258fce9cffe7","after":"3589efcd0176669ea452046fa05dfa9eae3eb2eb","ref":"refs/heads/release-x.50.x","pushedAt":"2024-06-07T13:11:36.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"johnswanson","name":"John Swanson","path":"/johnswanson","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2152134?s=80&v=4"},"commit":{"message":"Fix remaining `tinyint` booleans in MySQL (#43296) (Backport #43296) (#43782)\n\nLiquibase changed their boolean type in MySQL from `bit(1)` to\r\n`tinyint(4)` in version 4.25.1. Our JDBC driver does not recognize these\r\nas booleans, so we needed to migrate them to `bit(1)`s.\r\n\r\nAs discussed [here](#36964), we\r\nchanged all existing `boolean` types that were in the\r\n`001_update_migrations.yml` but not the SQL initialization file.\r\n\r\nFor new installations, this works: things in the SQL initialization file\r\nget created with the `bit(1)` type.\r\n\r\nHowever, for existing installations, there's a potential issue. Say I'm\r\non v42 and am upgrading to v49. In v43, a new `boolean` was added.\r\n\r\nIn this case, I'll get the `boolean` from the liquibase migration rather\r\nthan from the SQL initialization file, and it need to be changed to a\r\n`bit(1)`.\r\n\r\nI installed Metabase v41 with MySQL, migrated the database, and then\r\ninstalled Metabase v49 and migrated again. I made a list of all the\r\ncolumns that had the type `tinyint`:\r\n\r\n```\r\nmysql> SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, COLUMN_TYPE, COLUMN_DEFAULT, IS_NULLABLE FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_TYPE = 'tinyint' AND TABLE_SCHEMA='metabase_test';\r\n+---------------+------------------------------+-------------------+-------------+----------------+-------------+\r\n| TABLE_SCHEMA | TABLE_NAME | COLUMN_NAME | COLUMN_TYPE | COLUMN_DEFAULT | IS_NULLABLE |\r\n+---------------+------------------------------+-------------------+-------------+----------------+-------------+\r\n| metabase_test | core_user | is_datasetnewb | tinyint | 1 | NO |\r\n| metabase_test | metabase_field | database_required | tinyint | 0 | NO |\r\n| metabase_test | metabase_fieldvalues | has_more_values | tinyint | 0 | YES |\r\n| metabase_test | permissions_group_membership | is_group_manager | tinyint | 0 | NO |\r\n| metabase_test | persisted_info | active | tinyint | 0 | NO |\r\n| metabase_test | report_card | dataset | tinyint | 0 | NO |\r\n| metabase_test | timeline | archived | tinyint | 0 | NO |\r\n| metabase_test | timeline | default | tinyint | 0 | NO |\r\n| metabase_test | timeline_event | archived | tinyint | 0 | NO |\r\n| metabase_test | timeline_event | time_matters | tinyint | NULL | NO |\r\n+---------------+------------------------------+-------------------+-------------+----------------+-------------+\r\n10 rows in set (0.01 sec)\r\n```\r\n\r\nThen wrote migrations. For each column, we:\r\n\r\n- turn it into a `bit(1)`,\r\n\r\n- re-set the previously existing default value, and\r\n\r\n- re-add the NOT NULL constraint, if applicable.\r\n\r\n---------\r\n\r\nCo-authored-by: SakuragiYoshimasa ","shortMessageHtmlLink":"Fix remaining tinyint booleans in MySQL (#43296) (Backport #43296) (#…"}},{"before":"c90931faf14d146648e27d0b8e87d1e23ef3cfa7","after":"5b0a5038f90964b26e7fc26a55e917c9b42b48be","ref":"refs/heads/rtk-query-task-info","pushedAt":"2024-06-07T12:59:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"nemanjaglumac","name":"Nemanja Glumac","path":"/nemanjaglumac","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/31325167?s=80&v=4"},"commit":{"message":"Simplify fetching logic","shortMessageHtmlLink":"Simplify fetching logic"}},{"before":null,"after":"5116cd64909c54d6be7a820eb3a9dadabe46860d","ref":"refs/heads/rename-query-field-direct-to-explicit","pushedAt":"2024-06-07T12:51:34.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"crisptrutski","name":"Chris Truter","path":"/crisptrutski","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/881351?s=80&v=4"},"commit":{"message":"Rename 'direct' fields references to 'explicit'\n\nThis name is more precise, and more importantly it makes \"direct\" and \"indirect\" available as terminology for references that directly reference a table, versus those that do so indirectly via a model.","shortMessageHtmlLink":"Rename 'direct' fields references to 'explicit'"}},{"before":"d5c8d159d4bd1a7fbe488a33582eb8c353c8d67f","after":null,"ref":"refs/heads/gitbutler/integration","pushedAt":"2024-06-07T12:49:12.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"crisptrutski","name":"Chris Truter","path":"/crisptrutski","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/881351?s=80&v=4"}},{"before":null,"after":"d5c8d159d4bd1a7fbe488a33582eb8c353c8d67f","ref":"refs/heads/gitbutler/integration","pushedAt":"2024-06-07T12:48:54.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"crisptrutski","name":"Chris Truter","path":"/crisptrutski","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/881351?s=80&v=4"},"commit":{"message":"GitButler Integration Commit\n\nThis is an integration commit for the virtual branches that GitButler is tracking.\n\nDue to GitButler managing multiple virtual branches, you cannot switch back and\nforth between git branches and virtual branches easily. \n\nIf you switch to another branch, GitButler will need to be reinitialized.\nIf you commit on this branch, GitButler will throw it away.\n\nHere are the branches that are currently applied:\n - rename-query-field-ids-refs-types (refs/gitbutler/rename-query-field-ids-refs-types)\n branch head: 24299cf015f22ed2711f0c42018b2eab747e65ea\n - src/metabase/native_query_analyzer.clj\n - src/metabase/models/query_field.clj\n - test/metabase/native_query_analyzer_test.clj\n - resources/migrations/001_update_migrations.yaml\nFor more information about what we're doing here, check out our docs:\nhttps://docs.gitbutler.com/features/virtual-branches/integration-branch","shortMessageHtmlLink":"GitButler Integration Commit"}},{"before":"6f5a298f693e2d9fcba7ba24bf0ba77039c70558","after":null,"ref":"refs/heads/backport-3c97497126d08bb78555d14d48a67cb8aa3c60eb","pushedAt":"2024-06-07T12:42:59.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-automation-metabase","name":null,"path":"/github-automation-metabase","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/166700802?s=80&v=4"}},{"before":"115b8df9e2736df2b310714bb5842e33c9b6967b","after":"757ba8b5a8117b1f89aa07ab6bb0258fce9cffe7","ref":"refs/heads/release-x.50.x","pushedAt":"2024-06-07T12:42:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"github-automation-metabase","name":null,"path":"/github-automation-metabase","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/166700802?s=80&v=4"},"commit":{"message":"Change MySQL ENUM columns to have base_type=type/TextLike (#43533) (#43804)\n\nCo-authored-by: Cal Herries <39073188+calherries@users.noreply.github.com>","shortMessageHtmlLink":"Change MySQL ENUM columns to have base_type=type/TextLike (#43533) (#…"}},{"before":"d8ba141e8bf0638abcf8b06d7a951465cba40d3d","after":"7957da8312a2e0f592c3b30626bc99f8cc36930f","ref":"refs/heads/naked-json-values","pushedAt":"2024-06-07T12:36:27.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"piranha","name":"Alexander Solovyov","path":"/piranha","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6553?s=80&v=4"},"commit":{"message":"[sync] parse naked json values","shortMessageHtmlLink":"[sync] parse naked json values"}},{"before":"db8e829aee9f3a111cd3a9e54384d8b7eb173ee0","after":"9503269a45978e6e6eea2f53edd3ec32af667b12","ref":"refs/heads/backport-6d0f5e69d64ff592f08616a485408c8b4fdd5699","pushedAt":"2024-06-07T12:17:22.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"johnswanson","name":"John Swanson","path":"/johnswanson","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2152134?s=80&v=4"},"commit":{"message":"Add events to measure search performance (#43135)\n\n* new_search_query event\n\n* Filters in object, search click event\n\n* updating event schema\n\n* type and event schema adjustments\n\n* delete comments BE code\n\n* adjusting tests\n\n* PR feedback\n\n* typos and spacing","shortMessageHtmlLink":"Add events to measure search performance (#43135)"}},{"before":null,"after":"2d9902e0a13759900a749c84eef7e6f6d7138db6","ref":"refs/heads/handle-sync-failed-operation-gracefully","pushedAt":"2024-06-07T12:05:27.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"qnkhuat","name":"Ngoc Khuat","path":"/qnkhuat","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/25661381?s=80&v=4"},"commit":{"message":"If there is an error in sync processes, make sure we catch the right exception","shortMessageHtmlLink":"If there is an error in sync processes, make sure we catch the right …"}},{"before":null,"after":"f72efeddd7ecf94762c485bd7dc21d657b817a89","ref":"refs/heads/handle-sync-failed-operation-gracetully","pushedAt":"2024-06-07T11:58:56.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"qnkhuat","name":"Ngoc Khuat","path":"/qnkhuat","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/25661381?s=80&v=4"},"commit":{"message":"If there is an error in sync processes, make sure we catch the right exception","shortMessageHtmlLink":"If there is an error in sync processes, make sure we catch the right …"}},{"before":"e2516f861435cf9ec2f95c09ec3d6d1a4adba877","after":"08bee9b029190080f1de4aca6b493aee06319321","ref":"refs/heads/perf/fix-dimensions","pushedAt":"2024-06-07T11:13:31.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"rafpaf","name":"Raphael Krut-Landau","path":"/rafpaf","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/130925?s=80&v=4"},"commit":{"message":"fix type error","shortMessageHtmlLink":"fix type error"}},{"before":"34b2aceab58ddbf6d3831c1f6352c24e03f1fbf1","after":"2a1755d2d15eac1e22b559e51361b898e5dcb31e","ref":"refs/heads/41070-copy-question-link-from-dashboard","pushedAt":"2024-06-07T11:11:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kamilmielnik","name":"Kamil Mielnik","path":"/kamilmielnik","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6830683?s=80&v=4"},"commit":{"message":"Update test","shortMessageHtmlLink":"Update test"}},{"before":"c5fc3f7214e01aa3b2fa3828254caa32376f1d99","after":"34b2aceab58ddbf6d3831c1f6352c24e03f1fbf1","ref":"refs/heads/41070-copy-question-link-from-dashboard","pushedAt":"2024-06-07T11:09:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kamilmielnik","name":"Kamil Mielnik","path":"/kamilmielnik","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6830683?s=80&v=4"},"commit":{"message":"Format code","shortMessageHtmlLink":"Format code"}},{"before":"6d1b54501374bf2c33bd22bd86e7415645c87fd4","after":"c5fc3f7214e01aa3b2fa3828254caa32376f1d99","ref":"refs/heads/41070-copy-question-link-from-dashboard","pushedAt":"2024-06-07T11:08:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kamilmielnik","name":"Kamil Mielnik","path":"/kamilmielnik","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6830683?s=80&v=4"},"commit":{"message":"Update title-drill tests","shortMessageHtmlLink":"Update title-drill tests"}},{"before":null,"after":"8b7bbc7af24ff4cec5bcb2c070f20bdadc8e84ed","ref":"refs/heads/update-sdk-version-0.1.8-test2","pushedAt":"2024-06-07T11:00:30.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Update Readme version references and published npm version to 0.1.8-test2","shortMessageHtmlLink":"Update Readme version references and published npm version to 0.1.8-t…"}},{"before":"c08d13972d61a8ea177cf1c7327f0362fb6c56dc","after":"b2b9ea6a1ea5e7f4b9c833e845913dfd6fd6b08c","ref":"refs/heads/43475-command-palette-icon-tweaks","pushedAt":"2024-06-07T10:58:11.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"npfitz","name":"Nick Fitzpatrick","path":"/npfitz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1328979?s=80&v=4"},"commit":{"message":"removing yellow color from verified model icon","shortMessageHtmlLink":"removing yellow color from verified model icon"}},{"before":null,"after":"106d7a72c5367b84209fe2fefa16d7bbc8b19197","ref":"refs/heads/perf/rename-variables","pushedAt":"2024-06-07T10:56:28.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"rafpaf","name":"Raphael Krut-Landau","path":"/rafpaf","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/130925?s=80&v=4"},"commit":{"message":"[Cache] Refactor, improving clarity of variable names","shortMessageHtmlLink":"[Cache] Refactor, improving clarity of variable names"}},{"before":"734426cfd19388044d901df8d1b0935ea8644fbd","after":"81bb69c7ab6c57747ae6b98e105cc67fe109a53b","ref":"refs/heads/43746-automatically-merge-sdk-doc-pr","pushedAt":"2024-06-07T10:49:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"WiNloSt","name":"Mahatthana (Kelvin) Nomsawadi","path":"/WiNloSt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1937582?s=80&v=4"},"commit":{"message":"Fix auto merge","shortMessageHtmlLink":"Fix auto merge"}},{"before":"6cf7e3aafb4ff1d61c90bd61c0d1019f56f081a7","after":null,"ref":"refs/heads/update-sdk-version-0.1.8-test2","pushedAt":"2024-06-07T10:49:27.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"WiNloSt","name":"Mahatthana (Kelvin) Nomsawadi","path":"/WiNloSt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1937582?s=80&v=4"}},{"before":null,"after":"6cf7e3aafb4ff1d61c90bd61c0d1019f56f081a7","ref":"refs/heads/update-sdk-version-0.1.8-test2","pushedAt":"2024-06-07T10:48:13.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Update Readme version references and published npm version to 0.1.8-test2","shortMessageHtmlLink":"Update Readme version references and published npm version to 0.1.8-t…"}},{"before":"b17f0e953fe37570203e631bf1fca7863ae2bc22","after":null,"ref":"refs/heads/update-sdk-version-0.1.8-test1","pushedAt":"2024-06-07T10:47:45.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"WiNloSt","name":"Mahatthana (Kelvin) Nomsawadi","path":"/WiNloSt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1937582?s=80&v=4"}},{"before":null,"after":"6d1b54501374bf2c33bd22bd86e7415645c87fd4","ref":"refs/heads/41070-copy-question-link-from-dashboard","pushedAt":"2024-06-07T10:47:41.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"kamilmielnik","name":"Kamil Mielnik","path":"/kamilmielnik","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6830683?s=80&v=4"},"commit":{"message":"Add link to dashboard chart title","shortMessageHtmlLink":"Add link to dashboard chart title"}},{"before":null,"after":"b17f0e953fe37570203e631bf1fca7863ae2bc22","ref":"refs/heads/update-sdk-version-0.1.8-test1","pushedAt":"2024-06-07T10:47:17.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Update Readme version references and published npm version to 0.1.8-test1","shortMessageHtmlLink":"Update Readme version references and published npm version to 0.1.8-t…"}},{"before":"26bccd02abcef5c1625245e21cb50fbf344d10a7","after":"e2516f861435cf9ec2f95c09ec3d6d1a4adba877","ref":"refs/heads/perf/fix-dimensions","pushedAt":"2024-06-07T10:45:28.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"rafpaf","name":"Raphael Krut-Landau","path":"/rafpaf","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/130925?s=80&v=4"},"commit":{"message":"Fix spacing on schedule component","shortMessageHtmlLink":"Fix spacing on schedule component"}},{"before":"fcef871be9200205fb5c91826d044ffb1481c525","after":"d8ba141e8bf0638abcf8b06d7a951465cba40d3d","ref":"refs/heads/naked-json-values","pushedAt":"2024-06-07T10:43:18.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"piranha","name":"Alexander Solovyov","path":"/piranha","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/6553?s=80&v=4"},"commit":{"message":"[sync] parse naked json values","shortMessageHtmlLink":"[sync] parse naked json values"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEXz2t_AA","startCursor":null,"endCursor":null}},"title":"Activity · metabase/metabase"}