{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":1845216,"defaultBranch":"master","name":"arbre","ownerLogin":"activeadmin","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2011-06-04T00:36:25.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/814570?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1726418561.0","currentOid":""},"activityList":{"items":[{"before":"984269d7d8e269a301207fd3d1ef4db047e34cd5","after":"2918fac4f9191a2eedf5871cd95dee1ee980d8b1","ref":"refs/heads/master","pushedAt":"2024-09-23T14:36:00.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Update version and changelog (#623)","shortMessageHtmlLink":"Update version and changelog (#623)"}},{"before":"31c1487678b6beb4ee09df4f966a016fe01a87c2","after":"984269d7d8e269a301207fd3d1ef4db047e34cd5","ref":"refs/heads/master","pushedAt":"2024-09-19T12:07:35.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Prefer `require_relative` for internal requires (#622)\n\n`require_relative` is preferred over `require` for files within the same\r\nproject because it uses paths relative to the current file, making code\r\nmore portable and less dependent on the load path.\r\n\r\nThis change updates internal requires to use `require_relative` for\r\nconsistency, performance, and improved portability.\r\n\r\nRef:\r\n- ruby/psych#522\r\n- ruby/logger#20\r\n- ruby/rdoc#658\r\n- panorama-ed/memo_wise#349\r\n- rubocop/rubocop#8748","shortMessageHtmlLink":"Prefer require_relative for internal requires (#622)"}},{"before":"2a75591fc5646b8eaffbcf875a8c06b476022f04","after":"31c1487678b6beb4ee09df4f966a016fe01a87c2","ref":"refs/heads/master","pushedAt":"2024-09-15T16:40:50.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Update version and changelog (#620)\n\nRemove outdated reference to PimpMyChangelog","shortMessageHtmlLink":"Update version and changelog (#620)"}},{"before":"2d5a43866d6588df121f64f20f5b3af56f65ae27","after":"2a75591fc5646b8eaffbcf875a8c06b476022f04","ref":"refs/heads/master","pushedAt":"2024-09-15T15:50:42.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Update dependencies (#618)","shortMessageHtmlLink":"Update dependencies (#618)"}},{"before":"64aaf01bddf2a48607d6086cbe01970e2553fd8b","after":"2d5a43866d6588df121f64f20f5b3af56f65ae27","ref":"refs/heads/master","pushedAt":"2024-09-08T16:35:28.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Optimize string concatenation using `<<` operator (#617)\n\nThis change enhances the efficiency of HTML string construction, by\r\nreplacing `+=` operator with `<<`.\r\n\r\nThe shovel operator (`<<`) modifies strings in-place, reducing memory\r\nallocation and improving overall performance compared to the `+=`\r\noperator.\r\n\r\n### Test Case\r\n\r\nRuby 3.3.5 x64 on M1 Pro\r\n\r\n```rb\r\nArbre::Context.new { div { |d| d.ul { li } } }.to_s\r\n```\r\n\r\n#### Before\r\n\r\n```\r\n--- Memory Profiler ---\r\n\r\nTotal allocated: 4624 bytes (80 objects)\r\nTotal retained: 0 bytes (0 objects)\r\n\r\nallocated memory by gem\r\n-----------------------------------\r\n 4624 arbre/lib\r\n\r\nallocated memory by file\r\n-----------------------------------\r\n 2560 arbre/html/tag.rb\r\n 1120 arbre/element/builder_methods.rb\r\n 400 arbre/element_collection.rb\r\n 280 arbre/element.rb\r\n 264 arbre/context.rb\r\n\r\n--- Benchmark: IPS ---\r\n\r\n test 50.546k (± 1.4%) i/s - 254.550k in 5.037005s\r\n\r\n--- Benchmark: Memory ---\r\n\r\n test 6.208k memsize ( 0.000 retained)\r\n 99.000 objects ( 0.000 retained)\r\n 29.000 strings ( 0.000 retained)\r\n```\r\n\r\n#### After\r\n\r\n```\r\n--- Memory Profiler ---\r\n\r\nTotal allocated: 3840 bytes (64 objects)\r\nTotal retained: 0 bytes (0 objects)\r\n\r\nallocated memory by gem\r\n-----------------------------------\r\n 3840 arbre/lib\r\n\r\nallocated memory by file\r\n-----------------------------------\r\n 1776 arbre/html/tag.rb\r\n 1120 arbre/element/builder_methods.rb\r\n 400 arbre/element_collection.rb\r\n 280 arbre/element.rb\r\n 264 arbre/context.rb\r\n\r\n--- Benchmark: IPS ---\r\n\r\n test 52.205k (± 1.6%) i/s - 265.659k in 5.090028s\r\n\r\n--- Benchmark: Memory ---\r\n\r\n test 5.424k memsize ( 0.000 retained)\r\n 83.000 objects ( 0.000 retained)\r\n 19.000 strings ( 0.000 retained)\r\n```","shortMessageHtmlLink":"Optimize string concatenation using << operator (#617)"}},{"before":"36a7de325b1104e7ae80455e002d573815eea818","after":"64aaf01bddf2a48607d6086cbe01970e2553fd8b","ref":"refs/heads/master","pushedAt":"2024-09-08T16:16:06.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Fix RuboCop Packaging configuration (#616)\n\nParity with activeadmin and inherited_resources","shortMessageHtmlLink":"Fix RuboCop Packaging configuration (#616)"}},{"before":"2594450f054d65a36333fdd2d9354a2f0c4d4af8","after":"36a7de325b1104e7ae80455e002d573815eea818","ref":"refs/heads/master","pushedAt":"2024-09-08T07:22:42.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Update dependencies (#615)","shortMessageHtmlLink":"Update dependencies (#615)"}},{"before":"b6dac5d1beaf0a6bf108e9330b217351b21df319","after":"2594450f054d65a36333fdd2d9354a2f0c4d4af8","ref":"refs/heads/master","pushedAt":"2024-08-26T19:34:49.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Remove redundant encoding (#614)\n\nThis magic comment is not needed anymore because the default encoding of\r\nsource code files assumed by Ruby 2 is utf-8, and the minimum required\r\nRuby version is 2.7\r\n\r\nAutofixed with:\r\n```\r\nrubocop -a\r\n```","shortMessageHtmlLink":"Remove redundant encoding (#614)"}},{"before":"e79fe455ebde39dac057c98de723a210757f4257","after":null,"ref":"refs/heads/dependabot/bundler/gemfiles/rails_70/rexml-3.3.6","pushedAt":"2024-08-22T23:05:29.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"98781311fdb5e70dd9b953c2b955b78512bdc1a3","after":null,"ref":"refs/heads/dependabot/bundler/gemfiles/rails_61/rexml-3.3.6","pushedAt":"2024-08-22T23:05:28.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"5b71a92604adb7560f78eecded21e2264d15ccad","after":null,"ref":"refs/heads/dependabot/bundler/gemfiles/rails_71/rexml-3.3.6","pushedAt":"2024-08-22T23:05:27.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"5cb9187b011fb0c5ac483e15affb11e60d05b141","after":"b6dac5d1beaf0a6bf108e9330b217351b21df319","ref":"refs/heads/master","pushedAt":"2024-08-22T23:04:50.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"javierjulio","name":"Javier Julio","path":"/javierjulio","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/198547?s=80&v=4"},"commit":{"message":"Update outdated dependencies\n\nThe primary reason for this is to address rexml again, another security update. This also bumps Rails since 7.2.1 and 7.1.4 were released.","shortMessageHtmlLink":"Update outdated dependencies"}},{"before":null,"after":"98781311fdb5e70dd9b953c2b955b78512bdc1a3","ref":"refs/heads/dependabot/bundler/gemfiles/rails_61/rexml-3.3.6","pushedAt":"2024-08-22T21:01:14.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump rexml from 3.3.5 to 3.3.6 in /gemfiles/rails_61\n\nBumps [rexml](https://github.com/ruby/rexml) from 3.3.5 to 3.3.6.\n- [Release notes](https://github.com/ruby/rexml/releases)\n- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)\n- [Commits](https://github.com/ruby/rexml/compare/v3.3.5...v3.3.6)\n\n---\nupdated-dependencies:\n- dependency-name: rexml\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump rexml from 3.3.5 to 3.3.6 in /gemfiles/rails_61"}},{"before":null,"after":"5b71a92604adb7560f78eecded21e2264d15ccad","ref":"refs/heads/dependabot/bundler/gemfiles/rails_71/rexml-3.3.6","pushedAt":"2024-08-22T21:01:09.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump rexml from 3.3.5 to 3.3.6 in /gemfiles/rails_71\n\nBumps [rexml](https://github.com/ruby/rexml) from 3.3.5 to 3.3.6.\n- [Release notes](https://github.com/ruby/rexml/releases)\n- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)\n- [Commits](https://github.com/ruby/rexml/compare/v3.3.5...v3.3.6)\n\n---\nupdated-dependencies:\n- dependency-name: rexml\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump rexml from 3.3.5 to 3.3.6 in /gemfiles/rails_71"}},{"before":null,"after":"e79fe455ebde39dac057c98de723a210757f4257","ref":"refs/heads/dependabot/bundler/gemfiles/rails_70/rexml-3.3.6","pushedAt":"2024-08-22T21:00:34.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump rexml from 3.3.5 to 3.3.6 in /gemfiles/rails_70\n\nBumps [rexml](https://github.com/ruby/rexml) from 3.3.5 to 3.3.6.\n- [Release notes](https://github.com/ruby/rexml/releases)\n- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)\n- [Commits](https://github.com/ruby/rexml/compare/v3.3.5...v3.3.6)\n\n---\nupdated-dependencies:\n- dependency-name: rexml\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump rexml from 3.3.5 to 3.3.6 in /gemfiles/rails_70"}},{"before":"20cb450ffdbddfb8efe60cae4dd46a6dc1aeb742","after":null,"ref":"refs/heads/dependabot/github_actions/github_actions-c16d8025b7","pushedAt":"2024-08-21T16:31:02.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"}},{"before":"cac8c11e32b357d0ba2a2703c867ea5fd56c0020","after":"5cb9187b011fb0c5ac483e15affb11e60d05b141","ref":"refs/heads/master","pushedAt":"2024-08-21T16:31:00.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Bump tj-actions/changed-files from 44 to 45 in the github_actions group (#610)\n\nBumps the github_actions group with 1 update: [tj-actions/changed-files](https://github.com/tj-actions/changed-files).\r\n\r\n\r\nUpdates `tj-actions/changed-files` from 44 to 45\r\n- [Release notes](https://github.com/tj-actions/changed-files/releases)\r\n- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md)\r\n- [Commits](https://github.com/tj-actions/changed-files/compare/v44...v45)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: tj-actions/changed-files\r\n dependency-type: direct:production\r\n update-type: version-update:semver-major\r\n dependency-group: github_actions\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump tj-actions/changed-files from 44 to 45 in the github_actions gro…"}},{"before":"c210119e4e547a2f2fe7bbf04e01b2a3a811d124","after":"20cb450ffdbddfb8efe60cae4dd46a6dc1aeb742","ref":"refs/heads/dependabot/github_actions/github_actions-c16d8025b7","pushedAt":"2024-08-21T16:25:33.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Bump tj-actions/changed-files from 44 to 45 in the github_actions group\n\nBumps the github_actions group with 1 update: [tj-actions/changed-files](https://github.com/tj-actions/changed-files).\n\n\nUpdates `tj-actions/changed-files` from 44 to 45\n- [Release notes](https://github.com/tj-actions/changed-files/releases)\n- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md)\n- [Commits](https://github.com/tj-actions/changed-files/compare/v44...v45)\n\n---\nupdated-dependencies:\n- dependency-name: tj-actions/changed-files\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: github_actions\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump tj-actions/changed-files from 44 to 45 in the github_actions group"}},{"before":"ce67f002a3a96dfe585c2c069cab5ea462719b73","after":"cac8c11e32b357d0ba2a2703c867ea5fd56c0020","ref":"refs/heads/master","pushedAt":"2024-08-21T16:25:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Update dependencies (#609)","shortMessageHtmlLink":"Update dependencies (#609)"}},{"before":null,"after":"c210119e4e547a2f2fe7bbf04e01b2a3a811d124","ref":"refs/heads/dependabot/github_actions/github_actions-c16d8025b7","pushedAt":"2024-08-21T15:38:13.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump tj-actions/changed-files from 44 to 45 in the github_actions group\n\nBumps the github_actions group with 1 update: [tj-actions/changed-files](https://github.com/tj-actions/changed-files).\n\n\nUpdates `tj-actions/changed-files` from 44 to 45\n- [Release notes](https://github.com/tj-actions/changed-files/releases)\n- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md)\n- [Commits](https://github.com/tj-actions/changed-files/compare/v44...v45)\n\n---\nupdated-dependencies:\n- dependency-name: tj-actions/changed-files\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: github_actions\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump tj-actions/changed-files from 44 to 45 in the github_actions group"}},{"before":"22ea773e19530666d651fd5fead9689af035a46d","after":"ce67f002a3a96dfe585c2c069cab5ea462719b73","ref":"refs/heads/master","pushedAt":"2024-08-10T14:13:51.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Test against Rails 7.2 (#599)","shortMessageHtmlLink":"Test against Rails 7.2 (#599)"}},{"before":"36139559fc12cf5e1074ba95cd4567656f9107a7","after":null,"ref":"refs/heads/dependabot/bundler/gemfiles/rails_61/rexml-3.3.3","pushedAt":"2024-08-02T02:24:54.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"edbc4bfca2dd1fabd130a4185ce7363f4663f0bf","after":null,"ref":"refs/heads/dependabot/bundler/gemfiles/rails_70/rexml-3.3.3","pushedAt":"2024-08-02T02:24:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"6c1b205ac57c31b6ac65ad1c0276958dbae80877","after":"22ea773e19530666d651fd5fead9689af035a46d","ref":"refs/heads/master","pushedAt":"2024-08-02T02:24:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"javierjulio","name":"Javier Julio","path":"/javierjulio","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/198547?s=80&v=4"},"commit":{"message":"Update outdated dependencies\n\nTwo rexml releases that contain security fixes.","shortMessageHtmlLink":"Update outdated dependencies"}},{"before":null,"after":"edbc4bfca2dd1fabd130a4185ce7363f4663f0bf","ref":"refs/heads/dependabot/bundler/gemfiles/rails_70/rexml-3.3.3","pushedAt":"2024-08-02T02:13:16.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump rexml from 3.3.2 to 3.3.3 in /gemfiles/rails_70\n\nBumps [rexml](https://github.com/ruby/rexml) from 3.3.2 to 3.3.3.\n- [Release notes](https://github.com/ruby/rexml/releases)\n- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)\n- [Commits](https://github.com/ruby/rexml/compare/v3.3.2...v3.3.3)\n\n---\nupdated-dependencies:\n- dependency-name: rexml\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump rexml from 3.3.2 to 3.3.3 in /gemfiles/rails_70"}},{"before":null,"after":"36139559fc12cf5e1074ba95cd4567656f9107a7","ref":"refs/heads/dependabot/bundler/gemfiles/rails_61/rexml-3.3.3","pushedAt":"2024-08-02T02:11:48.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump rexml from 3.3.2 to 3.3.3 in /gemfiles/rails_61\n\nBumps [rexml](https://github.com/ruby/rexml) from 3.3.2 to 3.3.3.\n- [Release notes](https://github.com/ruby/rexml/releases)\n- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)\n- [Commits](https://github.com/ruby/rexml/compare/v3.3.2...v3.3.3)\n\n---\nupdated-dependencies:\n- dependency-name: rexml\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump rexml from 3.3.2 to 3.3.3 in /gemfiles/rails_61"}},{"before":"a046533fd1153637f98f4f345afc9c58b2840012","after":"6c1b205ac57c31b6ac65ad1c0276958dbae80877","ref":"refs/heads/master","pushedAt":"2024-07-28T14:01:45.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tagliala","name":"Geremia Taglialatela","path":"/tagliala","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/556268?s=80&v=4"},"commit":{"message":"Use https where possible and fix redirects (#605)\n\nIssues identified with the help of `awesome_bot` gem","shortMessageHtmlLink":"Use https where possible and fix redirects (#605)"}},{"before":"e2def09ce2d6a77b0ed559c4607efda4993fde59","after":null,"ref":"refs/heads/dependabot/bundler/gemfiles/rails_61/rails_61-298c8b080f","pushedAt":"2024-07-23T14:27:07.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"javierjulio","name":"Javier Julio","path":"/javierjulio","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/198547?s=80&v=4"}},{"before":"bef92de342e004efb562161fe7ce43c035c78144","after":null,"ref":"refs/heads/dependabot/bundler/gemfiles/rails_70/rexml-3.3.2","pushedAt":"2024-07-23T14:20:15.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"18561ae48b1a796e993ea23317b87b08662993f3","after":null,"ref":"refs/heads/dependabot/bundler/gemfiles/rails_61/rexml-3.3.2","pushedAt":"2024-07-23T14:20:13.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yM1QxNDozNjowMC4wMDAwMDBazwAAAAS-Fod2","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yM1QxNDozNjowMC4wMDAwMDBazwAAAAS-Fod2","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNy0yM1QxNDoyMDoxMy4wMDAwMDBazwAAAASG8sdK"}},"title":"Activity · activeadmin/arbre"}