{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":144036833,"defaultBranch":"master","name":"arduino-cli","ownerLogin":"arduino","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-08-08T15:57:32.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/379109?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1716193315.0","currentOid":""},"activityList":{"items":[{"before":"2166699d2280fa75cd18ecae63c4c934bf18e9fc","after":"f7bee179b91d8a412c70ef04f793d653066c7b8c","ref":"refs/heads/gh-pages","pushedAt":"2024-05-22T13:38:25.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":"Deployed dc13ef6 to dev with MkDocs 1.3.0 and mike 1.1.2","shortMessageHtmlLink":"Deployed dc13ef6 to dev with MkDocs 1.3.0 and mike 1.1.2"}},{"before":"914e11b85c8bed01db0446229fec547bc33e4779","after":"dc13ef6498ae0c39d8185c5f592bb149377a2b83","ref":"refs/heads/master","pushedAt":"2024-05-22T13:36:50.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"[skip-changelog] Added more lint checks and fixed some warnings. (#2610)\n\n* Enabled more checks in golangci-lint\r\n\r\n* Removed unreachable code (impossible condition detected by linter)\r\n\r\ninternal/arduino/sketch/sketch.go:108:14: nilness: impossible condition: non-nil == nil (govet)\r\n if mainFile == nil {\r\n ^\r\n\r\n* Removed function alias for i18n.Tr\r\n\r\nThis allows a deeper lint-check of printf style functions, like:\r\n\r\n commands/instances.go:344:46: printf: github.com/arduino/arduino-cli/internal/i18n.Tr format %v reads arg #1, but call has 0 args (govet)\r\n\t\ts := status.Newf(codes.FailedPrecondition, i18n.Tr(\"Loading index file: %v\"), err)\r\n\r\n* Fixed a lot of i18n.Tr formatting errors\r\n\r\nThis commit fixes invalid calls to i18n.Tr.\r\n\r\n1. Missing positional arguments, for example:\r\n\r\n return fmt.Errorf(i18n.Tr(\"installing %[1]s tool: %[2]s\"), tool, err)\r\n\r\nin the above case the positional arguments must be part of the Tr call:\r\n\r\n- return fmt.Errorf(i18n.Tr(\"installing %[1]s tool: %[2]s\"), tool, err)\r\n+ return fmt.Errorf(i18n.Tr(\"installing %[1]s tool: %[2]s\", tool, err))\r\n\r\n2. This also makes the fmt.Errorf call useless and it could be replaced by\r\nthe less expensive errors.New:\r\n\r\n- return fmt.Errorf(i18n.Tr(\"installing %[1]s tool: %[2]s\", tool, err))\r\n+ return errors.New(i18n.Tr(\"installing %[1]s tool: %[2]s\", tool, err))\r\n\r\nbut we have cases of useless calls even when the string is a constant,\r\nfor example:\r\n\r\n- err := fmt.Errorf(i18n.Tr(\"no instance specified\"))\r\n+ err := errors.New(i18n.Tr(\"no instance specified\"))\r\n\r\nUnfortunately, this imperfection is not detected by the linter.\r\n\r\n3. The \"%w\" directive is not supported directly in i18n.Tr, so we have\r\n to wrap it around another fmt.Errorf:\r\n\r\n- return nil, fmt.Errorf(i18n.Tr(\"reading library headers: %w\"), err)\r\n+ return nil, fmt.Errorf(\"%s: %w\", i18n.Tr(\"reading library headers\"), err)\r\n\r\n* Removed useless call to i18n.Tr","shortMessageHtmlLink":"[skip-changelog] Added more lint checks and fixed some warnings. (#2610)"}},{"before":"27c72ecb0919337f7ccdb7121420b0661d53a1c9","after":"2166699d2280fa75cd18ecae63c4c934bf18e9fc","ref":"refs/heads/gh-pages","pushedAt":"2024-05-21T11:35:55.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":"Deployed 914e11b to dev with MkDocs 1.3.0 and mike 1.1.2","shortMessageHtmlLink":"Deployed 914e11b to dev with MkDocs 1.3.0 and mike 1.1.2"}},{"before":"ba19a2d38ada385799a2348831a47e63010b1cfd","after":"914e11b85c8bed01db0446229fec547bc33e4779","ref":"refs/heads/master","pushedAt":"2024-05-21T11:33:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"gRPC: allow cancellation of downloads (#2609)","shortMessageHtmlLink":"gRPC: allow cancellation of downloads (#2609)"}},{"before":"7c36f8740b40ef5441a67e6af045ff7c7ea15466","after":null,"ref":"refs/heads/i18n/translations-update","pushedAt":"2024-05-20T08:09:52.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"}},{"before":"827d5f84837056094ea565115791e551ccb9ba9e","after":"ba19a2d38ada385799a2348831a47e63010b1cfd","ref":"refs/heads/master","pushedAt":"2024-05-20T08:09:52.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"[skip-changelog] Updated translation files (#2500)\n\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>","shortMessageHtmlLink":"[skip-changelog] Updated translation files (#2500)"}},{"before":"4fe97acd4c4de01c5be994a819d54c5e4983afc8","after":"7c36f8740b40ef5441a67e6af045ff7c7ea15466","ref":"refs/heads/i18n/translations-update","pushedAt":"2024-05-20T02:13:06.000Z","pushType":"force_push","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":"Updated translation files","shortMessageHtmlLink":"Updated translation files"}},{"before":"f271170d41cc6a0dd521cb2a4d7ccccbb76ea458","after":"27c72ecb0919337f7ccdb7121420b0661d53a1c9","ref":"refs/heads/gh-pages","pushedAt":"2024-05-17T13:33:32.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":"Deployed 827d5f8 to dev with MkDocs 1.3.0 and mike 1.1.2","shortMessageHtmlLink":"Deployed 827d5f8 to dev with MkDocs 1.3.0 and mike 1.1.2"}},{"before":"965939412809ac9214435bdc644c8f6005f74df1","after":"18efa59c26dcef871de890856bdfa881f25a57fd","ref":"refs/heads/dependabot/go_modules/github.com/leonelquinteros/gotext-1.6.0","pushedAt":"2024-05-17T13:33:01.000Z","pushType":"force_push","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 github.com/leonelquinteros/gotext from 1.4.0 to 1.6.0\n\nBumps [github.com/leonelquinteros/gotext](https://github.com/leonelquinteros/gotext) from 1.4.0 to 1.6.0.\n- [Release notes](https://github.com/leonelquinteros/gotext/releases)\n- [Commits](https://github.com/leonelquinteros/gotext/compare/v1.4.0...v1.6.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/leonelquinteros/gotext\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump github.com/leonelquinteros/gotext from 1.4.0 to 1.6.0"}},{"before":"b0cc1a9c6c4ce8ad3286d507cbb7b55db5a235d5","after":"827d5f84837056094ea565115791e551ccb9ba9e","ref":"refs/heads/master","pushedAt":"2024-05-17T13:31:47.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"[skip-changelog] Preparing docs for 1.0.0 release (#2553)","shortMessageHtmlLink":"[skip-changelog] Preparing docs for 1.0.0 release (#2553)"}},{"before":"edff9eda0ac1907a7a50925a7bdc4af8f4fea7e6","after":"88dfbee474753f62285ee9d3ed994c79dc1d437a","ref":"refs/heads/dependabot/github_actions/codecov/codecov-action-4","pushedAt":"2024-05-16T16:24:56.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"Disable search in integration tests subfolders\n\nbecause the current version of the codecov uploader crash if a broken link is found:\n\nTraceback (most recent call last):\n File \"codecov_cli/main.py\", line 83, in \n File \"codecov_cli/main.py\", line 79, in run\n File \"click/core.py\", line 1157, in __call__\n File \"click/core.py\", line 1078, in main\n File \"click/core.py\", line 1688, in invoke\n File \"click/core.py\", line 1434, in invoke\n File \"click/core.py\", line 783, in invoke\n File \"click/decorators.py\", line 33, in new_func\n File \"codecov_cli/commands/upload.py\", line 257, in do_upload\n File \"codecov_cli/services/upload/__init__.py\", line 78, in do_upload_logic\n File \"codecov_cli/services/upload/upload_collector.py\", line 174, in generate_upload_data\n File \"codecov_cli/services/upload/upload_collector.py\", line 100, in _produce_file_fixes\n File \"codecov_cli/services/upload/upload_collector.py\", line [114](https://github.com/arduino/arduino-cli/actions/runs/9112950400/job/25053833785?pr=2522#step:8:115), in _get_file_fixes\nFileNotFoundError: [Errno 2] No such file or directory: 'internal/integrationtest/compile_4/testdata/ValidSketchWithNonInoBrokenSketchFileSymlink/other_file.c'","shortMessageHtmlLink":"Disable search in integration tests subfolders"}},{"before":"84eabc43fdf642949ec49293a2c49623d6735013","after":"f271170d41cc6a0dd521cb2a4d7ccccbb76ea458","ref":"refs/heads/gh-pages","pushedAt":"2024-05-16T15:49:05.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":"Deployed b0cc1a9 to dev with MkDocs 1.3.0 and mike 1.1.2","shortMessageHtmlLink":"Deployed b0cc1a9 to dev with MkDocs 1.3.0 and mike 1.1.2"}},{"before":"63a48c50f7900dae7037476e48a517c4412c5a3b","after":"b0cc1a9c6c4ce8ad3286d507cbb7b55db5a235d5","ref":"refs/heads/master","pushedAt":"2024-05-16T15:47:32.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"[BREAKING] Add protoc `oneof` clause where appropriate. (#2608)\n\n* Added oneof clause to all Platform* responses\r\n\r\n* Added oneof clause to all Debug* and Library* responses\r\n\r\n* Added oneof clause to MonitorResponse\r\n\r\n* Updated Docs\r\n\r\n* Fix typo","shortMessageHtmlLink":"[BREAKING] Add protoc oneof clause where appropriate. (#2608)"}},{"before":"53fa85f3be8d64d647529bcad5c280261f566721","after":null,"ref":"refs/heads/sign-locally","pushedAt":"2024-05-16T15:14:26.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"umbynos","name":"Umberto Baldi","path":"/umbynos","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34278123?s=80&v=4"}},{"before":"8b78c05eea86e534c69394fa50b3043070890a80","after":"63a48c50f7900dae7037476e48a517c4412c5a3b","ref":"refs/heads/master","pushedAt":"2024-05-16T15:14:25.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"umbynos","name":"Umberto Baldi","path":"/umbynos","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34278123?s=80&v=4"},"commit":{"message":"use eToken for signing (#2599)\n\n* use eToken for signing\r\n\r\n* update workflow, we have a certificate and no longer a container for win\r\n\r\n* remove double quotes, they cause errors with new version of openssl: `Could not read certificate from `","shortMessageHtmlLink":"use eToken for signing (#2599)"}},{"before":"3850ffde47fc6a38ee57408a288bf85224e46c90","after":"edff9eda0ac1907a7a50925a7bdc4af8f4fea7e6","ref":"refs/heads/dependabot/github_actions/codecov/codecov-action-4","pushedAt":"2024-05-16T14:21:08.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"Disable auto search of coverage files\n\nbecause:\n\n1. it's already provided\n2. the current version of the uploader crash if a broken link is found:\n\nTraceback (most recent call last):\n File \"codecov_cli/main.py\", line 83, in \n File \"codecov_cli/main.py\", line 79, in run\n File \"click/core.py\", line 1157, in __call__\n File \"click/core.py\", line 1078, in main\n File \"click/core.py\", line 1688, in invoke\n File \"click/core.py\", line 1434, in invoke\n File \"click/core.py\", line 783, in invoke\n File \"click/decorators.py\", line 33, in new_func\n File \"codecov_cli/commands/upload.py\", line 257, in do_upload\n File \"codecov_cli/services/upload/__init__.py\", line 78, in do_upload_logic\n File \"codecov_cli/services/upload/upload_collector.py\", line 174, in generate_upload_data\n File \"codecov_cli/services/upload/upload_collector.py\", line 100, in _produce_file_fixes\n File \"codecov_cli/services/upload/upload_collector.py\", line [114](https://github.com/arduino/arduino-cli/actions/runs/9112950400/job/25053833785?pr=2522#step:8:115), in _get_file_fixes\nFileNotFoundError: [Errno 2] No such file or directory: 'internal/integrationtest/compile_4/testdata/ValidSketchWithNonInoBrokenSketchFileSymlink/other_file.c'","shortMessageHtmlLink":"Disable auto search of coverage files"}},{"before":"9863ecd7f4412eb1e317eca47b264e9dfcfd4b9b","after":"3850ffde47fc6a38ee57408a288bf85224e46c90","ref":"refs/heads/dependabot/github_actions/codecov/codecov-action-4","pushedAt":"2024-05-16T13:12:16.000Z","pushType":"force_push","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 codecov/codecov-action from 3 to 4\n\nBumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4.\n- [Release notes](https://github.com/codecov/codecov-action/releases)\n- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/codecov/codecov-action/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: codecov/codecov-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump codecov/codecov-action from 3 to 4"}},{"before":"484f7d63ee94efcfaa9e906cfe49dfc88112475e","after":"53fa85f3be8d64d647529bcad5c280261f566721","ref":"refs/heads/sign-locally","pushedAt":"2024-05-16T13:03:02.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"umbynos","name":"Umberto Baldi","path":"/umbynos","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34278123?s=80&v=4"},"commit":{"message":"remove double quotes, they cause errors with new version of openssl: `Could not read certificate from `","shortMessageHtmlLink":"remove double quotes, they cause errors with new version of openssl: …"}},{"before":"cb805d048c5cb038d5d2f06511ab06caae4ae021","after":"84eabc43fdf642949ec49293a2c49623d6735013","ref":"refs/heads/gh-pages","pushedAt":"2024-05-15T16:17:33.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":"Deployed 8b78c05 to dev with MkDocs 1.3.0 and mike 1.1.2","shortMessageHtmlLink":"Deployed 8b78c05 to dev with MkDocs 1.3.0 and mike 1.1.2"}},{"before":"2374a53b6d177ea921c2be44eb776c64e2661bbb","after":null,"ref":"refs/heads/dependabot/go_modules/google.golang.org/grpc-1.64.0","pushedAt":"2024-05-15T16:14:51.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":"c5c6a5f966498dcacd6a384082005d584136117e","after":null,"ref":"refs/heads/dependabot/go_modules/github.com/fatih/color-1.17.0","pushedAt":"2024-05-15T16:14:38.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":"d7381d1baa7d974e0ae0cc0dd633da3d67884fa7","after":null,"ref":"refs/heads/dependabot/go_modules/github.com/gofrs/uuid/v5-5.2.0","pushedAt":"2024-05-15T16:14:36.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":"23d2fe9d6b1ac0b8c05f247b3f3abc837cbcc945","after":null,"ref":"refs/heads/dependabot/go_modules/google.golang.org/protobuf-1.34.1","pushedAt":"2024-05-15T16:14:36.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":"db93172b721e068dad2e4ed82b43555cc803ce46","after":"8b78c05eea86e534c69394fa50b3043070890a80","ref":"refs/heads/master","pushedAt":"2024-05-15T16:13:50.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"[skip-changelog] Batch updates from dependabot (#2606)\n\n* Bump google.golang.org/grpc from 1.62.1 to 1.64.0\r\n\r\nBumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.62.1 to 1.64.0.\r\n- [Release notes](https://github.com/grpc/grpc-go/releases)\r\n- [Commits](https://github.com/grpc/grpc-go/compare/v1.62.1...v1.64.0)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: google.golang.org/grpc\r\n dependency-type: direct:production\r\n update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\n\r\n* Bump github.com/fatih/color from 1.16.0 to 1.17.0\r\n\r\nBumps [github.com/fatih/color](https://github.com/fatih/color) from 1.16.0 to 1.17.0.\r\n- [Release notes](https://github.com/fatih/color/releases)\r\n- [Commits](https://github.com/fatih/color/compare/v1.16.0...v1.17.0)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: github.com/fatih/color\r\n dependency-type: direct:production\r\n update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\n\r\n* Bump github.com/gofrs/uuid/v5 from 5.0.0 to 5.2.0\r\n\r\nBumps [github.com/gofrs/uuid/v5](https://github.com/gofrs/uuid) from 5.0.0 to 5.2.0.\r\n- [Release notes](https://github.com/gofrs/uuid/releases)\r\n- [Commits](https://github.com/gofrs/uuid/compare/v5.0.0...v5.2.0)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: github.com/gofrs/uuid/v5\r\n dependency-type: direct:production\r\n update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\n\r\n* Bump google.golang.org/protobuf from 1.33.0 to 1.34.1\r\n\r\nBumps google.golang.org/protobuf from 1.33.0 to 1.34.1.\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: google.golang.org/protobuf\r\n dependency-type: direct:production\r\n update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\n\r\n* Updated license cache\r\n\r\n* Removed deprecated functions usage\r\n\r\n* Do a connect-retry loop during deamon integration test\r\n\r\n* Updated grpc tooling version used in build and CI\r\n\r\n---------\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"[skip-changelog] Batch updates from dependabot (#2606)"}},{"before":"205b6347c32b692b73e85ad5d86ac8b61e4a3d01","after":"cb805d048c5cb038d5d2f06511ab06caae4ae021","ref":"refs/heads/gh-pages","pushedAt":"2024-05-15T15:09:39.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":"Deployed db93172 to dev with MkDocs 1.3.0 and mike 1.1.2","shortMessageHtmlLink":"Deployed db93172 to dev with MkDocs 1.3.0 and mike 1.1.2"}},{"before":"4b4032bde1e7c7c9988025ec91d0a3c668671719","after":"23d2fe9d6b1ac0b8c05f247b3f3abc837cbcc945","ref":"refs/heads/dependabot/go_modules/google.golang.org/protobuf-1.34.1","pushedAt":"2024-05-15T15:09:05.000Z","pushType":"force_push","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 google.golang.org/protobuf from 1.33.0 to 1.34.1\n\nBumps google.golang.org/protobuf from 1.33.0 to 1.34.1.\n\n---\nupdated-dependencies:\n- dependency-name: google.golang.org/protobuf\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump google.golang.org/protobuf from 1.33.0 to 1.34.1"}},{"before":"2c018c1fb6454d3710203ffc13dfb61bed0478ea","after":"2374a53b6d177ea921c2be44eb776c64e2661bbb","ref":"refs/heads/dependabot/go_modules/google.golang.org/grpc-1.64.0","pushedAt":"2024-05-15T15:09:04.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"[skip changelog] Bump google.golang.org/grpc from 1.62.1 to 1.64.0\n\nBumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.62.1 to 1.64.0.\n- [Release notes](https://github.com/grpc/grpc-go/releases)\n- [Commits](https://github.com/grpc/grpc-go/compare/v1.62.1...v1.64.0)\n\n---\nupdated-dependencies:\n- dependency-name: google.golang.org/grpc\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"[skip changelog] Bump google.golang.org/grpc from 1.62.1 to 1.64.0"}},{"before":"2739ab7ae2a45c96e92fa28f2bcb35e49d5b4eef","after":null,"ref":"refs/heads/dependabot/go_modules/golang.org/x/text-0.15.0","pushedAt":"2024-05-15T15:08:04.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"}},{"before":"4b31d79dd10c475e7795ab33a181d251cf8b905c","after":"db93172b721e068dad2e4ed82b43555cc803ce46","ref":"refs/heads/master","pushedAt":"2024-05-15T15:08:03.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"},"commit":{"message":"[skip-changelog] Bump golang.org/x/text from 0.14.0 to 0.15.0 (#2592)\n\n* Bump golang.org/x/text from 0.14.0 to 0.15.0\r\n\r\nBumps [golang.org/x/text](https://github.com/golang/text) from 0.14.0 to 0.15.0.\r\n- [Release notes](https://github.com/golang/text/releases)\r\n- [Commits](https://github.com/golang/text/compare/v0.14.0...v0.15.0)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: golang.org/x/text\r\n dependency-type: direct:production\r\n update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\n\r\n* Updated license cache\r\n\r\n---------\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\r\nCo-authored-by: Cristian Maglie ","shortMessageHtmlLink":"[skip-changelog] Bump golang.org/x/text from 0.14.0 to 0.15.0 (#2592)"}},{"before":"ff6a262a084a77558294226e22ac661c2f61de86","after":null,"ref":"refs/heads/dependabot/github_actions/golangci/golangci-lint-action-6","pushedAt":"2024-05-15T14:59:46.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"cmaglie","name":"Cristian Maglie","path":"/cmaglie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/423515?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEUPw6oQA","startCursor":null,"endCursor":null}},"title":"Activity · arduino/arduino-cli"}