{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":34514050,"defaultBranch":"master","name":"cookbook-windev","ownerLogin":"Zuehlke","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2015-04-24T11:04:47.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/10219568?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1683640843.0","currentOid":""},"activityList":{"items":[{"before":"4e050715d323a194c6b04c9253c43692e32673a3","after":"428bbfc1e70074d50ea23640e06a7f3f299ba66d","ref":"refs/heads/master","pushedAt":"2023-05-09T16:42:04.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"damphyr","name":"Vassilis Rizopoulos","path":"/damphyr","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/96603?s=80&v=4"},"commit":{"message":"travis is looong gone","shortMessageHtmlLink":"travis is looong gone"}},{"before":"930cfe3f01cbfdc393baaca60f78ae9c8d313480","after":null,"ref":"refs/tags/v1.0.1","pushedAt":"2023-05-09T14:00:31.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"damphyr","name":"Vassilis Rizopoulos","path":"/damphyr","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/96603?s=80&v=4"}},{"before":"4a5ea79943b556739d771d9a10f8c854467598e7","after":"4e050715d323a194c6b04c9253c43692e32673a3","ref":"refs/heads/master","pushedAt":"2023-05-09T14:00:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"damphyr","name":"Vassilis Rizopoulos","path":"/damphyr","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/96603?s=80&v=4"},"commit":{"message":"update gem dependencies","shortMessageHtmlLink":"update gem dependencies"}},{"before":"502f290ea550ddf6fad26b5d107458b37729f9b2","after":null,"ref":"refs/tags/v1.0.1","pushedAt":"2023-05-09T13:55:44.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"damphyr","name":"Vassilis Rizopoulos","path":"/damphyr","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/96603?s=80&v=4"}},{"before":"7815ad1db952b2aeac16a7af252c534377f33a84","after":null,"ref":"refs/heads/dependabot/bundler/nokogiri-1.14.3","pushedAt":"2023-05-09T13:52:33.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":"6b866e28151806d2b7a3d9cbb7e5a0f2db5fce5a","after":"4a5ea79943b556739d771d9a10f8c854467598e7","ref":"refs/heads/master","pushedAt":"2023-05-09T13:52:25.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"damphyr","name":"Vassilis Rizopoulos","path":"/damphyr","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/96603?s=80&v=4"},"commit":{"message":"Bump nokogiri from 1.10.8 to 1.14.3 (#48)\n\nBumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.10.8 to 1.14.3.\r\n- [Release notes](https://github.com/sparklemotion/nokogiri/releases)\r\n- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)\r\n- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.10.8...v1.14.3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: nokogiri\r\n dependency-type: indirect\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 nokogiri from 1.10.8 to 1.14.3 (#48)"}},{"before":"36cda816920815925ba14e80c23a82e778e6908d","after":"6b866e28151806d2b7a3d9cbb7e5a0f2db5fce5a","ref":"refs/heads/master","pushedAt":"2023-05-09T13:51:11.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"damphyr","name":"Vassilis Rizopoulos","path":"/damphyr","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/96603?s=80&v=4"},"commit":{"message":"bump the version to 1.0.1","shortMessageHtmlLink":"bump the version to 1.0.1"}},{"before":"f35a88ef00c1677e65d2706302d3f36fdf5bd430","after":"36cda816920815925ba14e80c23a82e778e6908d","ref":"refs/heads/master","pushedAt":"2023-05-09T12:43:30.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Bueddl","name":"Sebastian Büttner","path":"/Bueddl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7746212?s=80&v=4"},"commit":{"message":"Fix using options in choco packages (#50)\n\nThis change is related to PR #49 and exists for the same reason.\r\nSince chef passes the parameters to choco as an array the options can no longer be a plain string. This becomes apparent when using options together with params or when using more than one option since the entire string of options is then passed as one option to choco.\r\n\r\nFor example when specifying options \"--x86 --ia test\" and params the exec args become:\r\n\r\n[\"C:\\ProgramData\\chocolatey/bin/choco.exe\", \"install\", \"-y\", \"--x86 --ia test--parameters /Password:postgres\", \"postgresql12\"]\r\n\r\ninstead of:\r\n\r\n[\"C:\\ProgramData\\chocolatey/bin/choco.exe\", \"install\", \"-y\", \"--x86\", \"--ia\", \"test\", \"--parameters /Password:postgres\", \"postgresql12\"]\r\n\r\nNote that here are actually 2 issues that are caused by this:\r\n\r\nmissing space between the last option and the params\r\nall options are passed as a single option\r\nI suggest switching to an array for the options which works fine and fixes both issues. However existing cookbooks that use options would have to be changed to use arrays instead of strings for specifying options.","shortMessageHtmlLink":"Fix using options in choco packages (#50)"}},{"before":null,"after":"d40c593ca4e5cc1d150fcf50a81e05d3cc6aecb8","ref":"refs/heads/choco-fix-options-handling","pushedAt":"2023-05-09T12:07:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"Bueddl","name":"Sebastian Büttner","path":"/Bueddl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7746212?s=80&v=4"},"commit":{"message":"Add backwardscompatibility","shortMessageHtmlLink":"Add backwardscompatibility"}},{"before":"9c3b8360494f4adf15b7ee75da3901d0846d02d4","after":"f35a88ef00c1677e65d2706302d3f36fdf5bd430","ref":"refs/heads/master","pushedAt":"2023-04-27T10:09:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"damphyr","name":"Vassilis Rizopoulos","path":"/damphyr","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/96603?s=80&v=4"},"commit":{"message":"Fix handling of params for choco packages (#49)","shortMessageHtmlLink":"Fix handling of params for choco packages (#49)"}},{"before":"823b90e01c2666c8ac8e868461691253d56a150a","after":null,"ref":"refs/heads/dependabot/bundler/nokogiri-1.13.9","pushedAt":"2023-04-12T00:30:56.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":null,"after":"7815ad1db952b2aeac16a7af252c534377f33a84","ref":"refs/heads/dependabot/bundler/nokogiri-1.14.3","pushedAt":"2023-04-12T00:30:52.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 nokogiri from 1.10.8 to 1.14.3\n\nBumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.10.8 to 1.14.3.\n- [Release notes](https://github.com/sparklemotion/nokogiri/releases)\n- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.10.8...v1.14.3)\n\n---\nupdated-dependencies:\n- dependency-name: nokogiri\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump nokogiri from 1.10.8 to 1.14.3"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAADKToBVwA","startCursor":null,"endCursor":null}},"title":"Activity · Zuehlke/cookbook-windev"}