{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":350005438,"defaultBranch":"main","name":"cerbos","ownerLogin":"cerbos","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2021-03-21T13:23:10.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/80861386?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1715844425.0","currentOid":""},"activityList":{"items":[{"before":"90bae03c78545c120a82edc969a69d43b8abb933","after":"b6f9a615d1161b308e75533230ac508ad9704cc0","ref":"refs/heads/main","pushedAt":"2024-05-23T17:38:16.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"enhancement: Ensure git protocol matches the URL (#2163)\n\nFixes #2162\r\n\r\nSigned-off-by: Charith Ellawala \r\n\r\n---------\r\n\r\nSigned-off-by: Charith Ellawala \r\nSigned-off-by: Charith Ellawala \r\nCo-authored-by: Andrew Haines ","shortMessageHtmlLink":"enhancement: Ensure git protocol matches the URL (#2163)"}},{"before":"2efb5e51f48bee99405baf5b551d856f5fe07fe8","after":"90bae03c78545c120a82edc969a69d43b8abb933","ref":"refs/heads/main","pushedAt":"2024-05-23T13:11:20.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"enhancement: Revise API limits (#2161)\n\nUpdate or remove some of the API restrictions. They were originally\r\nadded to prevent users from accidentally overloading the server. Some\r\nlimits are probably too much on the cautious side.\r\n\r\nSigned-off-by: Charith Ellawala \r\n\r\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"enhancement: Revise API limits (#2161)"}},{"before":"7fdc055b5ebeb3725af5a47fcb8d5d124d68ea23","after":"2efb5e51f48bee99405baf5b551d856f5fe07fe8","ref":"refs/heads/main","pushedAt":"2024-05-20T09:24:12.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"oguzhand95","name":"Oğuzhan Durgun","path":"/oguzhand95","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3899719?s=80&v=4"},"commit":{"message":"feat: List local and imported variables in the policy with InspectPolicies (#2141)\n\nInspectPolicies on `disk` store\r\n---\r\n```json\r\n{\r\n \"results\": {\r\n \"derived_roles.common_roles\": {\r\n \"variables\": [\r\n {\r\n \"name\": \"derivedRoleVariable\",\r\n \"value\": \"request.resource.attr.isDerivedRoleVar\",\r\n \"kind\": \"KIND_LOCAL\",\r\n \"source\": \"derived_roles.common_roles\"\r\n }\r\n ]\r\n },\r\n \"export_variables.common_variables\": {\r\n \"variables\": [\r\n {\r\n \"name\": \"commonMarkedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_EXPORTED\",\r\n \"source\": \"export_variables.common_variables\"\r\n }\r\n ]\r\n },\r\n \"principal.john.vdefault\": {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"variables\": [\r\n {\r\n \"name\": \"commonMarkedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_IMPORTED\",\r\n \"source\": \"export_variables.common_variables\"\r\n },\r\n {\r\n \"name\": \"markedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_LOCAL\",\r\n \"source\": \"principal.john.vdefault\"\r\n }\r\n ]\r\n },\r\n \"resource.leave_request.vdefault\": {\r\n \"actions\": [\r\n \"*\",\r\n \"create\",\r\n \"duplicate\",\r\n \"view\"\r\n ],\r\n \"variables\": [\r\n {\r\n \"name\": \"commonMarkedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_IMPORTED\",\r\n \"source\": \"export_variables.common_variables\"\r\n },\r\n {\r\n \"name\": \"markedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_LOCAL\",\r\n \"source\": \"resource.leave_request.vdefault\"\r\n }\r\n ]\r\n }\r\n }\r\n}\r\n```\r\n\r\n`cerbosctl inspect policies` on `disk` store\r\n---\r\n```bash\r\nPOLICY ID ACTIONS VARIABLES \r\nderived_roles.common_roles derivedRoleVariable \r\nexport_variables.common_variables commonMarkedResource \r\nprincipal.john.vdefault * commonMarkedResource,markedResource \r\nresource.leave_request.vdefault *,create,duplicate,view commonMarkedResource,markedResource \r\n```\r\n\r\nInspectPolicies on `hub` store\r\n---\r\n```json\r\n{\r\n \"results\": {\r\n \"principal.john.vdefault\": {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"variables\": [\r\n {\r\n \"name\": \"commonMarkedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_UNKNOWN\"\r\n },\r\n {\r\n \"name\": \"markedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_UNKNOWN\"\r\n }\r\n ]\r\n },\r\n \"resource.leave_request.vdefault\": {\r\n \"actions\": [\r\n \"*\",\r\n \"create\",\r\n \"duplicate\",\r\n \"view\"\r\n ],\r\n \"variables\": [\r\n {\r\n \"name\": \"commonMarkedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_UNKNOWN\"\r\n },\r\n {\r\n \"name\": \"markedResource\",\r\n \"value\": \"request.resource.attr.markedResource\",\r\n \"kind\": \"KIND_UNKNOWN\"\r\n }\r\n ]\r\n }\r\n }\r\n}\r\n```\r\n\r\n`cerbosctl inspect policies` on `hub` store\r\n---\r\n```bash\r\nPOLICY ID ACTIONS VARIABLES \r\nprincipal.john.vdefault * commonMarkedResource,markedResource \r\nresource.leave_request.vdefault *,create,duplicate,view commonMarkedResource,markedResource\r\n```\r\n\r\n---------\r\n\r\nSigned-off-by: Oğuzhan Durgun ","shortMessageHtmlLink":"feat: List local and imported variables in the policy with InspectPol…"}},{"before":"1a256644968126ddb132ab9c009cd83bbe99e19c","after":"7fdc055b5ebeb3725af5a47fcb8d5d124d68ea23","ref":"refs/heads/main","pushedAt":"2024-05-17T09:59:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"haines","name":"Andrew Haines","path":"/haines","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/785641?s=80&v=4"},"commit":{"message":"chore: Remove workaround for fixed gRPC-Gateway bug in `X-Forwarded-For` handling (#2157)\n\nhttps://github.com/grpc-ecosystem/grpc-gateway/issues/4320 is now fixed,\r\nso we no longer need to rewrite the `X-Forwarded-For` header.\r\n\r\nSigned-off-by: Andrew Haines ","shortMessageHtmlLink":"chore: Remove workaround for fixed gRPC-Gateway bug in `X-Forwarded-F…"}},{"before":"c7e7860c30098eee5ab7960db7b8b05e39fd6472","after":"1a256644968126ddb132ab9c009cd83bbe99e19c","ref":"refs/heads/main","pushedAt":"2024-05-16T17:07:48.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore: Update error message for invalid expression (#2156)\n\nMakes the error message consistent with others by moving the compile\r\nerrors to the description.\r\n\r\nSigned-off-by: Charith Ellawala \r\n\r\n---------\r\n\r\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"chore: Update error message for invalid expression (#2156)"}},{"before":"18a2d8ed748d307e10962a5042b377c38d98e7d6","after":null,"ref":"refs/heads/renovate/go-github.com/goreleaser/goreleaser-vulnerability","pushedAt":"2024-05-16T07:27:05.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"11260d75b43e9bbc072f085e556866ac353e7b9f","after":null,"ref":"refs/heads/dependabot/go_modules/tools/github.com/goreleaser/goreleaser-1.26.1","pushedAt":"2024-05-16T07:26:21.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"oguzhand95","name":"Oğuzhan Durgun","path":"/oguzhand95","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3899719?s=80&v=4"}},{"before":"f69dfc0e210a80167cddd89693ff212869367f54","after":"c7e7860c30098eee5ab7960db7b8b05e39fd6472","ref":"refs/heads/main","pushedAt":"2024-05-16T07:26:19.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"oguzhand95","name":"Oğuzhan Durgun","path":"/oguzhand95","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3899719?s=80&v=4"},"commit":{"message":"chore(deps): Bump github.com/goreleaser/goreleaser from 1.26.0 to 1.26.1 in /tools (#2154)\n\nBumps\r\n[github.com/goreleaser/goreleaser](https://github.com/goreleaser/goreleaser)\r\nfrom 1.26.0 to 1.26.1.\r\n
\r\nRelease notes\r\n

Sourced from github.com/goreleaser/goreleaser's\r\nreleases.

\r\n
\r\n

v1.26.1

\r\n

Changelog

\r\n

Security updates

\r\n
    \r\n
  • 19b94f676f35f8a2d1928db6960cb7b35913d783: sec: GHSA-f6mm-5fc7-3g3c\r\n(@​caarlos0)
  • \r\n
\r\n

Bug fixes

\r\n
    \r\n
  • 9cf3bbbc5c6e2af28e77de2ad939f014ce9904f2: fix(build): do not print\r\n'go: downloading' bits of go build output (#4869)\r\n(@​caarlos0)
  • \r\n
  • e466507637bceaf3d44b08135417dac587307122: fix(cmd): --draft should\r\nonly override if set (@​caarlos0)
  • \r\n
  • c5204dfb64449519bda03083ad4d282c06c3ff49: fix: close HTTP resp body\r\nto prevent resource leak (#4857)\r\n(@​alexandear)
  • \r\n
  • 7e0155c557509ed0e894028a9862a87ed1ecd12d: fix: disable logs on some\r\ncommands (#4865)\r\n(@​caarlos0)
  • \r\n
  • 6505654c86ed3be799e9633e5c3c3457b814e8df: fix: fix nolintlint issues\r\n(#4854)\r\n(@​alexandear)
  • \r\n
  • 00a376cc6472d766f60881d7e8a19f452c28eda2: refactor: remove unneeded\r\nin Go 1.22 loop var copy (#4856)\r\n(@​alexandear)
  • \r\n
\r\n

Documentation updates

\r\n
    \r\n
  • ba7e915cd8a2f4d61a56ab87485aae62007e11e2: docs: announce v1.26 (#4851)\r\n(@​caarlos0)
  • \r\n
  • 2f56643a633c227ad84e58fb969325480c2986fa: docs: update action docs\r\n(@​caarlos0)
  • \r\n
  • c148106c56d83f4ecca214088bde990637a2a6e9: docs: update old Go\r\nwebsite links (#4855)\r\n(@​alexandear)
  • \r\n
\r\n

Build process updates

\r\n
    \r\n
  • c09c86cb3962ed992546f098ecc4197188644a93: build: disable\r\nappendAssign gocritic check (@​caarlos0)
  • \r\n
\r\n

Full Changelog: https://github.com/goreleaser/goreleaser/compare/v1.26.0...v1.26.1

\r\n

Helping out

\r\n

This release is only possible thanks to all the\r\nsupport of some awesome people!

\r\n

Want to be one of them?\r\nYou can sponsor, get a Pro License or contribute with code.

\r\n

Where to go next?

\r\n
    \r\n
  • Find examples and commented usage of all options in our website.
  • \r\n
  • Reach out on Discord and\r\nTwitter!
  • \r\n
\r\n

\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 19b94f6\r\nsec: GHSA-f6mm-5fc7-3g3c
  • \r\n
  • 22f734e\r\nMerge pull request from GHSA-f6mm-5fc7-3g3c
  • \r\n
  • d557483\r\nchore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 (#4868)
  • \r\n
  • e2b2a57\r\nchore(deps): bump golang from 2a88224 to\r\nc24516e (#4866)
  • \r\n
  • 7e0155c\r\nfix: disable logs on some commands (#4865)
  • \r\n
  • 9cf3bbb\r\nfix(build): do not print 'go: downloading' bits of go build output (#4869)
  • \r\n
  • e466507\r\nfix(cmd): --draft should only override if set
  • \r\n
  • d4e83b0\r\nchore: fmt
  • \r\n
  • c09c86c\r\nbuild: disable appendAssign gocritic check
  • \r\n
  • 1793acd\r\nchore: fix exe typo in .gitignore (#4859)
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/goreleaser/goreleaser&package-manager=go_modules&previous-version=1.26.0&new-version=1.26.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\nYou can disable automated security fix PRs for this repo from the\r\n[Security Alerts page](https://github.com/cerbos/cerbos/network/alerts).\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":"chore(deps): Bump github.com/goreleaser/goreleaser from 1.26.0 to 1.2…"}},{"before":null,"after":"18a2d8ed748d307e10962a5042b377c38d98e7d6","ref":"refs/heads/renovate/go-github.com/goreleaser/goreleaser-vulnerability","pushedAt":"2024-05-15T17:20:46.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"chore(deps): update module github.com/goreleaser/goreleaser to v1.26.1 [security]\n\nSigned-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): update module github.com/goreleaser/goreleaser to v1.26.…"}},{"before":null,"after":"11260d75b43e9bbc072f085e556866ac353e7b9f","ref":"refs/heads/dependabot/go_modules/tools/github.com/goreleaser/goreleaser-1.26.1","pushedAt":"2024-05-15T17:18:45.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":"chore(deps): Bump github.com/goreleaser/goreleaser in /tools\n\nBumps [github.com/goreleaser/goreleaser](https://github.com/goreleaser/goreleaser) from 1.26.0 to 1.26.1.\n- [Release notes](https://github.com/goreleaser/goreleaser/releases)\n- [Changelog](https://github.com/goreleaser/goreleaser/blob/main/.goreleaser.yaml)\n- [Commits](https://github.com/goreleaser/goreleaser/compare/v1.26.0...v1.26.1)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/goreleaser/goreleaser\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): Bump github.com/goreleaser/goreleaser in /tools"}},{"before":"c8edda5e7d5bc2e5d895d44fc7cbb790d1f7b599","after":"f69dfc0e210a80167cddd89693ff212869367f54","ref":"refs/heads/main","pushedAt":"2024-05-14T12:29:47.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"fix: Detect incorrectly indented YAML (#2153)\n\nThe bug was patched in the parser (cerbos/go-yaml#3). This PR adds a\ntest for it.\n\nFixes #2146\n\nSigned-off-by: Charith Ellawala \n\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"fix: Detect incorrectly indented YAML (#2153)"}},{"before":"9a6450eee76ee6505210a9fcedfce78bddadb476","after":"c8edda5e7d5bc2e5d895d44fc7cbb790d1f7b599","ref":"refs/heads/main","pushedAt":"2024-05-14T09:38:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"haines","name":"Andrew Haines","path":"/haines","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/785641?s=80&v=4"},"commit":{"message":"fix: Work around gRPC-Gateway bug in `X-Forwarded-For` handling (#2152)\n\nThis PR primarily aims to work around an issue with `X-Forwarded-For`\r\nhandling in the gRPC-Gateway\r\n(https://github.com/grpc-ecosystem/grpc-gateway/issues/4320).\r\n\r\nGiven a remote IP of 4.4.4.4 sending incoming headers of \r\n\r\n```\r\nX-Forwarded-For: 1.1.1.1, 2.2.2.2\r\nX-Forwarded-For: 3.3.3.3\r\n```\r\n\r\nthe resulting headers forwarded by the gRPC-gateway are\r\n\r\n```\r\nX-Forwarded-For: 1.1.1.1, 2.2.2.2\r\nX-Forwarded-For: 3.3.3.3\r\nX-Forwarded-For: 1.1.1.1, 2.2.2.2, 4.4.4.4\r\n```\r\n\r\nThe workaround I have added means that the resulting headers are\r\n\r\n```\r\nX-Forwarded-For: 1.1.1.1, 2.2.2.2\r\nX-Forwarded-For: 3.3.3.3\r\nX-Forwarded-For: 4.4.4.4\r\n```\r\n\r\nWe now join the values with `\", \"` rather than `\"|\"` to preserve the\r\n[de-facto standard\r\nsyntax](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For#syntax).\r\n\r\nThis PR also prevents spoofing the remote address in the audit logs by\r\nsetting the `x-cerbos-http-remote-addr` header; currently we take that\r\nheader into account even for requests not originating from the\r\ngRPC-Gateway where it should be set. Even in the case of requests from\r\nthe gRPC-Gateway, our header is appended to the request headers, so we\r\nneed to make sure to use the last value for the header, not the first.\r\n\r\nSigned-off-by: Andrew Haines ","shortMessageHtmlLink":"fix: Work around gRPC-Gateway bug in X-Forwarded-For handling (#2152)"}},{"before":"cc94282b285ca9ee6fa25e0f764ea36f3d138716","after":"9a6450eee76ee6505210a9fcedfce78bddadb476","ref":"refs/heads/main","pushedAt":"2024-05-13T14:14:47.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"enhancement: Context for YAML syntax errors (#2151)\n\nThe upstream YAML parser doesn't expose syntax errors in a way that we\r\ncould easily obtain information about the context. I've updated our fork\r\nto make this easier and enable us to report syntax errors in the same\r\nway as other errors.\r\n\r\nSigned-off-by: Charith Ellawala \r\n\r\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"enhancement: Context for YAML syntax errors (#2151)"}},{"before":"315437b8c7ac5c7c5a432f74434a1bdee314f36d","after":null,"ref":"refs/heads/renovate/node-deps","pushedAt":"2024-05-13T11:33:47.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"27df29e24ce3d5ee7ada0ab0710454f14c308f7d","after":"cc94282b285ca9ee6fa25e0f764ea36f3d138716","ref":"refs/heads/main","pushedAt":"2024-05-13T11:33:12.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(deps): Update node.js deps (#2148)\n\n[![Mend\r\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\r\n\r\nThis PR contains the following updates:\r\n\r\n| Package | Type | Update | Change | Age | Adoption | Passing |\r\nConfidence |\r\n|---|---|---|---|---|---|---|---|\r\n| [node](https://nodejs.org)\r\n([source](https://togithub.com/nodejs/node)) | | minor | `20.12.2` ->\r\n`20.13.1` |\r\n[![age](https://developer.mend.io/api/mc/badges/age/node-version/node/v20.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/node-version/node/v20.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/node-version/node/v20.12.2/v20.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/node-version/node/v20.12.2/v20.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n| [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) |\r\npackageManager | patch | [`9.1.0` ->\r\n`9.1.1`](https://renovatebot.com/diffs/npm/pnpm/9.1.0/9.1.1) |\r\n[![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/9.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/9.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/9.1.0/9.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/9.1.0/9.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n| [verdaccio](https://verdaccio.org)\r\n([source](https://togithub.com/verdaccio/verdaccio)) | dependencies |\r\nminor | [`5.30.3` ->\r\n`5.31.0`](https://renovatebot.com/diffs/npm/verdaccio/5.30.3/5.31.0) |\r\n[![age](https://developer.mend.io/api/mc/badges/age/npm/verdaccio/5.31.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/verdaccio/5.31.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/verdaccio/5.30.3/5.31.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/verdaccio/5.30.3/5.31.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n| [yarn](https://togithub.com/yarnpkg/berry)\r\n([source](https://togithub.com/yarnpkg/berry/tree/HEAD/packages/yarnpkg-cli))\r\n| packageManager | patch | [`4.2.1` ->\r\n`4.2.2`](https://renovatebot.com/diffs/npm/yarn/4.2.1/4.2.2) |\r\n[![age](https://developer.mend.io/api/mc/badges/age/npm/yarn/4.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/yarn/4.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/yarn/4.2.1/4.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/yarn/4.2.1/4.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\r\n|\r\n\r\n---\r\n\r\n### Release Notes\r\n\r\n
\r\nnodejs/node (node)\r\n\r\n###\r\n[`v20.13.1`](https://togithub.com/nodejs/node/releases/tag/v20.13.1):\r\n2024-05-09, Version 20.13.1 'Iron' (LTS),\r\n@​marco-ippolito\r\n\r\n[Compare\r\nSource](https://togithub.com/nodejs/node/compare/v20.13.0...v20.13.1)\r\n\r\n#### 2024-05-09, Version 20.13.1 'Iron' (LTS),\r\n[@​marco-ippolito](https://togithub.com/marco-ippolito)\r\n\r\n##### Revert \"tools: install npm PowerShell scripts on Windows\"\r\n\r\nDue to a regression in the npm installation on Windows, this commit\r\nreverts the change that installed npm PowerShell scripts on Windows.\r\n\r\n##### Commits\r\n\r\n- \\[[`b7d80802cc`](https://togithub.com/nodejs/node/commit/b7d80802cc)]\r\n- ***Revert*** \"**tools**: install npm PowerShell scripts on Windows\"\r\n(marco-ippolito)\r\n[#​52897](https://togithub.com/nodejs/node/pull/52897)\r\n\r\n###\r\n[`v20.13.0`](https://togithub.com/nodejs/node/compare/v20.12.2...v20.13.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/nodejs/node/compare/v20.12.2...v20.13.0)\r\n\r\n
\r\n\r\n
\r\npnpm/pnpm (pnpm)\r\n\r\n### [`v9.1.1`](https://togithub.com/pnpm/pnpm/compare/v9.1.0...v9.1.1)\r\n\r\n[Compare Source](https://togithub.com/pnpm/pnpm/compare/v9.1.0...v9.1.1)\r\n\r\n
\r\n\r\n
\r\nverdaccio/verdaccio (verdaccio)\r\n\r\n###\r\n[`v5.31.0`](https://togithub.com/verdaccio/verdaccio/releases/tag/v5.31.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/verdaccio/verdaccio/compare/v5.30.3...v5.31.0)\r\n\r\n(🗞️ hey renovate users, read this)\r\n\r\nℹ️ Important changes added to the `.verdaccio-db.json` and token\r\nsignature for users that run on Node.js 22 or higher (in the future 🙃 )\r\nplease read\r\nhttps://verdaccio.org/docs/configuration/#.verdaccio-db\r\n\r\nTLDR:\r\n\r\n- Enforced for users that runs verdaccio **via npmjs**, for all Docker\r\nimage isuers, verdaccio uses Node.js LTS 21 and the secret migration is\r\n**voluntary** until next major release.\r\n- For **Node.js 21** or lower a new *deprecation* will appear `\r\n[VERWAR007] VerdaccioDeprecation: the secret length is too lon... ` to\r\nremove it please read the link above\r\n- For **Node.js 22** if you have already a storage with\r\n`.verdaccio-db.json` and the token inside does not complies with the\r\nlength (read link above) **the application startup will fail with fatal\r\nerror (`Error: Invalid storage secret key length, must be 32 characters\r\nlong but is....`)**\r\n\r\nIn both cases by updating the *secret* all previously tokens will get\r\ninvalid, in your benefit a new legacy signature will be applied and is\r\nmore secure than the old one (generating tokens with salt).\r\n\r\nFor existing installations that have no issues by invalidating tokens is\r\nrecommended to add to the `config.yaml` the following setup, this will\r\nautomatically generate a new the secret once is started, could be\r\nremoved aftewards, if all went succesfull the `[VERWAR007]` deprecation\r\nwill not be displayed anymore.\r\n\r\n```yaml\r\nsecurity:\r\n api:\r\n migrateToSecureLegacySignature: true\r\n```\r\n\r\nAny new installation should not worry about this, new token signature\r\nand secret (32 characters) is applied by default.\r\n\r\n##### Features\r\n\r\n- add property forceMigrateToSecureLegacySignature\r\n([#​4625](https://togithub.com/verdaccio/verdaccio/issues/4625))\r\n([2941522](https://togithub.com/verdaccio/verdaccio/commit/2941522099fabb4d58280672191a2d95193f825c))\r\n[https://github.com/verdaccio/verdaccio/issues/4601](https://togithub.com/verdaccio/verdaccio/issues/4601)\r\n\r\n##### Bug Fixes\r\n\r\n- **deps:** update dependency express to v4.19.2\r\n([#​4596](https://togithub.com/verdaccio/verdaccio/issues/4596))\r\n([4123dbc](https://togithub.com/verdaccio/verdaccio/commit/4123dbc8bd9a77bccc81d1947042e141793c79d1))\r\n\r\n
\r\n\r\n
\r\nyarnpkg/berry (yarn)\r\n\r\n###\r\n[`v4.2.2`](https://togithub.com/yarnpkg/berry/compare/bf24f592eb0a7e8ac207387b0d60ea2ac7d66ebf...effc932614d5351bbfeed8e0e6aa4b2c6c52821d)\r\n\r\n[Compare\r\nSource](https://togithub.com/yarnpkg/berry/compare/bf24f592eb0a7e8ac207387b0d60ea2ac7d66ebf...effc932614d5351bbfeed8e0e6aa4b2c6c52821d)\r\n\r\n
\r\n\r\n---\r\n\r\n### Configuration\r\n\r\n📅 **Schedule**: Branch creation - \"before 4am on Monday\" (UTC),\r\nAutomerge - At any time (no schedule defined).\r\n\r\n🚦 **Automerge**: Disabled by config. Please merge this manually once you\r\nare satisfied.\r\n\r\n♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the\r\nrebase/retry checkbox.\r\n\r\n👻 **Immortal**: This PR will be recreated if closed unmerged. Get\r\n[config help](https://togithub.com/renovatebot/renovate/discussions) if\r\nthat's undesired.\r\n\r\n---\r\n\r\n- [ ] If you want to rebase/retry this PR, check\r\nthis box\r\n\r\n---\r\n\r\nThis PR has been generated by [Mend\r\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\r\nrepository job log\r\n[here](https://developer.mend.io/github/cerbos/cerbos).\r\n\r\n\r\n\r\nSigned-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>\r\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): Update node.js deps (#2148)"}},{"before":"003fcb8a57a63ab6518372bf6f8ff8ecd99cc179","after":"315437b8c7ac5c7c5a432f74434a1bdee314f36d","ref":"refs/heads/renovate/node-deps","pushedAt":"2024-05-13T11:18:48.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(deps): update node.js deps\n\nSigned-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): update node.js deps"}},{"before":"7cd8ffd4157da8f4cd97eebe309b761bd9dccc9b","after":"27df29e24ce3d5ee7ada0ab0710454f14c308f7d","ref":"refs/heads/main","pushedAt":"2024-05-13T10:46:22.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(ci): Increase timeout for npm build stage (#2150)\n\nSigned-off-by: Charith Ellawala \r\n\r\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"chore(ci): Increase timeout for npm build stage (#2150)"}},{"before":"e2ed8dec96c658203eded8df1f69cee52ca62b0d","after":"003fcb8a57a63ab6518372bf6f8ff8ecd99cc179","ref":"refs/heads/renovate/node-deps","pushedAt":"2024-05-13T08:15:08.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(deps): update node.js deps\n\nSigned-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): update node.js deps"}},{"before":"b6d97ddb5fb4a7b51f460ada1b2e7f031b44904e","after":"7cd8ffd4157da8f4cd97eebe309b761bd9dccc9b","ref":"refs/heads/main","pushedAt":"2024-05-13T08:14:14.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(ci): Clear disk space for npm build (#2149)\n\nAlso includes a tweak to Renovate to ignore the go-yaml replacement and\r\nupdate import paths on major module version updates.\r\n\r\nSigned-off-by: Charith Ellawala \r\n\r\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"chore(ci): Clear disk space for npm build (#2149)"}},{"before":"056d15e7d6138ad2f8202f9b9ef513b84c256887","after":null,"ref":"refs/heads/renovate/go-deps","pushedAt":"2024-05-13T07:43:00.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"}},{"before":"5ec97160d4dbb4d54543cb889367ece886809cfb","after":"b6d97ddb5fb4a7b51f460ada1b2e7f031b44904e","ref":"refs/heads/main","pushedAt":"2024-05-13T07:42:56.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(deps): Update go deps (#2147)\n\n[![Mend\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\n\nThis PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence | Type |\nUpdate |\n|---|---|---|---|---|---|---|---|\n| buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go |\n`v1.34.0-20240401165935-b983156c5e99.1` ->\n`v1.34.1-20240508200655-46a4cf4ba109.1` |\n[![age](https://developer.mend.io/api/mc/badges/age/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.34.1-20240508200655-46a4cf4ba109.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.34.1-20240508200655-46a4cf4ba109.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.34.0-20240401165935-b983156c5e99.1/v1.34.1-20240508200655-46a4cf4ba109.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/buf.build%2fgen%2fgo%2fbufbuild%2fprotovalidate%2fprotocolbuffers%2fgo/v1.34.0-20240401165935-b983156c5e99.1/v1.34.1-20240508200655-46a4cf4ba109.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n| require | patch |\n| [github.com/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) |\n`v1.52.3` -> `v1.53.0` |\n[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go/v1.53.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go/v1.53.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go/v1.52.3/v1.53.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go/v1.52.3/v1.53.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n| require | minor |\n|\n[github.com/cerbos/cerbos/api/genpb](https://togithub.com/cerbos/cerbos)\n| `v0.35.1` -> `v0.36.0` |\n[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fcerbos%2fapi%2fgenpb/v0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fcerbos%2fapi%2fgenpb/v0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fcerbos%2fapi%2fgenpb/v0.35.1/v0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fcerbos%2fapi%2fgenpb/v0.35.1/v0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n| require | minor |\n| [github.com/cerbos/go-yaml](https://togithub.com/cerbos/go-yaml) |\n`ab3470c` -> `4653a1b` | | | | | replace | digest |\n|\n[github.com/fergusstrange/embedded-postgres](https://togithub.com/fergusstrange/embedded-postgres)\n| `v1.26.0` -> `v1.27.0` |\n[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ffergusstrange%2fembedded-postgres/v1.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ffergusstrange%2fembedded-postgres/v1.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ffergusstrange%2fembedded-postgres/v1.26.0/v1.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ffergusstrange%2fembedded-postgres/v1.26.0/v1.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n| require | minor |\n|\n[github.com/goreleaser/goreleaser](https://togithub.com/goreleaser/goreleaser)\n| `v1.25.1` -> `v1.26.0` |\n[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoreleaser%2fgoreleaser/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoreleaser%2fgoreleaser/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoreleaser%2fgoreleaser/v1.25.1/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoreleaser%2fgoreleaser/v1.25.1/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n| require | minor |\n|\n[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)\n| `v1.19.0` -> `v1.19.1` |\n[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.0/v1.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.0/v1.19.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n| require | patch |\n| [go](https://go.dev/) ([source](https://togithub.com/golang/go)) |\n`1.22.2` -> `1.22.3` |\n[![age](https://developer.mend.io/api/mc/badges/age/golang-version/go/1.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/golang-version/go/1.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/golang-version/go/1.22.2/1.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/golang-version/go/1.22.2/1.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n| toolchain | patch |\n|\n[google.golang.org/genproto/googleapis/api](https://togithub.com/googleapis/go-genproto)\n| `v0.0.0-20240506185236-b8a5c65736ae` ->\n`v0.0.0-20240509183442-62759503f434` |\n[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240509183442-62759503f434?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240509183442-62759503f434?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240506185236-b8a5c65736ae/v0.0.0-20240509183442-62759503f434?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240506185236-b8a5c65736ae/v0.0.0-20240509183442-62759503f434?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n| require | patch |\n\n---\n\n### Release Notes\n\n
\naws/aws-sdk-go (github.com/aws/aws-sdk-go)\n\n###\n[`v1.53.0`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1530-2024-05-10)\n\n[Compare\nSource](https://togithub.com/aws/aws-sdk-go/compare/v1.52.6...v1.53.0)\n\n\\===\n\n##### Service Client Updates\n\n- `service/discovery`: Updates service API\n - add v2 smoke tests and smithy smokeTests trait for SDK testing\n- `service/greengrassv2`: Updates service API and documentation\n- `service/sagemaker`: Updates service API\n- Introduced support for G6 instance types on Sagemaker Notebook\nInstances and on SageMaker Studio for JupyterLab and CodeEditor\napplications.\n- `service/sso-oidc`: Updates service API, documentation, and examples\n\n##### SDK Features\n\n- `service/honeycode`: Remove Honeycode\n- This change removes the Honeycode service, which has been deprecated.\n\n###\n[`v1.52.6`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1526-2024-05-09)\n\n[Compare\nSource](https://togithub.com/aws/aws-sdk-go/compare/v1.52.5...v1.52.6)\n\n\\===\n\n##### Service Client Updates\n\n- `service/bedrock-agent-runtime`: Updates service API and documentation\n- `service/pinpoint`: Updates service API and documentation\n- This release adds support for specifying email message headers for\nEmail Templates, Campaigns, Journeys and Send Messages.\n- `service/route53resolver`: Updates service documentation\n- `service/ssm-sap`: Updates service API, documentation, and paginators\n- `service/verifiedpermissions`: Updates service API and documentation\n\n###\n[`v1.52.5`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1525-2024-05-08)\n\n[Compare\nSource](https://togithub.com/aws/aws-sdk-go/compare/v1.52.4...v1.52.5)\n\n\\===\n\n##### Service Client Updates\n\n- `service/cognito-idp`: Updates service API\n- `service/ec2`: Updates service API and documentation\n- Adding Precision Hardware Clock (PHC) to public API\nDescribeInstanceTypes\n- `service/ecr`: Updates service API and documentation\n- This release adds pull through cache rules support for GitLab\ncontainer registry in Amazon ECR.\n- `service/fms`: Updates service documentation\n- `service/polly`: Updates service API and documentation\n- Add new engine - generative - that builds the most expressive\nconversational voices.\n- `service/sqs`: Updates service API and documentation\n- This release adds MessageSystemAttributeNames to ReceiveMessageRequest\nto replace AttributeNames.\n\n###\n[`v1.52.4`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1524-2024-05-07)\n\n[Compare\nSource](https://togithub.com/aws/aws-sdk-go/compare/v1.52.3...v1.52.4)\n\n\\===\n\n##### Service Client Updates\n\n- `service/b2bi`: Updates service documentation\n- `service/budgets`: Updates service API and documentation\n - This release adds tag support for budgets and budget actions.\n- `service/resiliencehub`: Updates service API, documentation, and\npaginators\n- `service/route53profiles`: Updates service API and documentation\n\n
\n\n
\ncerbos/cerbos (github.com/cerbos/cerbos/api/genpb)\n\n### [`v0.36.0`](https://togithub.com/cerbos/cerbos/releases/tag/v0.36.0)\n\n[Compare\nSource](https://togithub.com/cerbos/cerbos/compare/v0.35.1...v0.36.0)\n\n## Cerbos 0.36.0\n\nView the full release notes at\nhttps://docs.cerbos.dev/cerbos/latest/releases/v0.36.0.html\n\n##### Changelog\n\n##### Features\n\n- [`e98d5f1`](https://togithub.com/cerbos/cerbos/commit/e98d5f1f) feat:\nAdd cerbosctl hub epdp list-candidates command\n([#​2078](https://togithub.com/cerbos/cerbos/issues/2078))\n- [`7ba383d`](https://togithub.com/cerbos/cerbos/commit/7ba383d1) feat:\nAdd cerbosctl inspect policies command\n([#​2101](https://togithub.com/cerbos/cerbos/issues/2101))\n\n##### Enhancements\n\n- [`cdf2589`](https://togithub.com/cerbos/cerbos/commit/cdf2589b)\nenhancement: Add audit log filtering to Hub backend\n([#​2073](https://togithub.com/cerbos/cerbos/issues/2073))\n- [`b11597e`](https://togithub.com/cerbos/cerbos/commit/b11597e7)\nenhancement: Apply perf patch to YAML parser\n([#​2132](https://togithub.com/cerbos/cerbos/issues/2132))\n- [`2e335d5`](https://togithub.com/cerbos/cerbos/commit/2e335d5e)\nenhancement: Write audit logs asynchronously\n([#​2104](https://togithub.com/cerbos/cerbos/issues/2104))\n\n##### Bug fixes\n\n- [`4929745`](https://togithub.com/cerbos/cerbos/commit/49297450) fix:\nEagerly establish gRPC connection to avoid initial delay\n([#​2105](https://togithub.com/cerbos/cerbos/issues/2105))\n- [`ea039c4`](https://togithub.com/cerbos/cerbos/commit/ea039c48) fix:\nHandle folded strings and indented newlines in YAML correctly\n([#​2128](https://togithub.com/cerbos/cerbos/issues/2128))\n- [`8aac976`](https://togithub.com/cerbos/cerbos/commit/8aac9761) fix:\nIgnore context cancellation when writing audit log entries\n([#​2113](https://togithub.com/cerbos/cerbos/issues/2113))\n- [`a88733f`](https://togithub.com/cerbos/cerbos/commit/a88733fc) fix:\nInclude implicit `EFFECT_DENY` in test failure details\n([#​2117](https://togithub.com/cerbos/cerbos/issues/2117))\n- [`68fcdfa`](https://togithub.com/cerbos/cerbos/commit/68fcdfaa) fix:\nKafka TLS using system CA\n([#​2120](https://togithub.com/cerbos/cerbos/issues/2120))\n- [`61addb0`](https://togithub.com/cerbos/cerbos/commit/61addb07) fix:\nMark tests with missing expectations as errored\n([#​2116](https://togithub.com/cerbos/cerbos/issues/2116))\n- [`0c755f2`](https://togithub.com/cerbos/cerbos/commit/0c755f29) fix:\nStop blocking Kafka audit publishing when an outage occurs\n([#​2122](https://togithub.com/cerbos/cerbos/issues/2122))\n\n##### Documentation\n\n- [`b022d25`](https://togithub.com/cerbos/cerbos/commit/b022d258) docs:\nAdd documentation for Dagger Cerbos module\n([#​2106](https://togithub.com/cerbos/cerbos/issues/2106))\n- [`31897e0`](https://togithub.com/cerbos/cerbos/commit/31897e05) docs:\nDocument Hub features\n([#​2133](https://togithub.com/cerbos/cerbos/issues/2133))\n- [`1a04715`](https://togithub.com/cerbos/cerbos/commit/1a047154) docs:\nDocument how to verify cosign signatures\n([#​2094](https://togithub.com/cerbos/cerbos/issues/2094))\n\n##### Chores\n\n- [`36d3681`](https://togithub.com/cerbos/cerbos/commit/36d36817)\nchore(ci): Check results of npm package tests\n([#​2098](https://togithub.com/cerbos/cerbos/issues/2098))\n- [`82f774d`](https://togithub.com/cerbos/cerbos/commit/82f774d3)\nchore(ci): Fix E2E tests combining the host address with extra colon\n([#​2114](https://togithub.com/cerbos/cerbos/issues/2114))\n- [`55b6826`](https://togithub.com/cerbos/cerbos/commit/55b6826a)\nchore(ci): Remove unmaintained Netlify action\n([#​2093](https://togithub.com/cerbos/cerbos/issues/2093))\n- [`c95f50f`](https://togithub.com/cerbos/cerbos/commit/c95f50fa)\nchore(ci): Update storage type for Jaeger chart\n([#​2096](https://togithub.com/cerbos/cerbos/issues/2096))\n- [`2001128`](https://togithub.com/cerbos/cerbos/commit/2001128f)\nchore(deps): Bump github.com/docker/docker from 26.0.0+incompatible to\n26.0.2+incompatible in /tools\n([#​2108](https://togithub.com/cerbos/cerbos/issues/2108))\n- [`f74f372`](https://togithub.com/cerbos/cerbos/commit/f74f372d)\nchore(deps): Bump github.com/sigstore/cosign/v2 from 2.2.1 to 2.2.4 in\n/tools ([#​2097](https://togithub.com/cerbos/cerbos/issues/2097))\n- [`e2b73f0`](https://togithub.com/cerbos/cerbos/commit/e2b73f01)\nchore(deps): Bump golang.org/x/net from 0.21.0 to 0.23.0 in /api/genpb\n([#​2110](https://togithub.com/cerbos/cerbos/issues/2110))\n- [`5ac1c32`](https://togithub.com/cerbos/cerbos/commit/5ac1c326)\nchore(deps): Update github actions deps\n([#​2125](https://togithub.com/cerbos/cerbos/issues/2125))\n- [`e7d828a`](https://togithub.com/cerbos/cerbos/commit/e7d828a1)\nchore(deps): Update go deps\n([#​2099](https://togithub.com/cerbos/cerbos/issues/2099))\n- [`5f96e64`](https://togithub.com/cerbos/cerbos/commit/5f96e640)\nchore(deps): Update go deps\n([#​2111](https://togithub.com/cerbos/cerbos/issues/2111))\n- [`a40093a`](https://togithub.com/cerbos/cerbos/commit/a40093ae)\nchore(deps): Update go deps\n([#​2124](https://togithub.com/cerbos/cerbos/issues/2124))\n- [`38c0f24`](https://togithub.com/cerbos/cerbos/commit/38c0f244)\nchore(deps): Update go deps\n([#​2135](https://togithub.com/cerbos/cerbos/issues/2135))\n- [`236ab29`](https://togithub.com/cerbos/cerbos/commit/236ab29d)\nchore(deps): Update go deps\n([#​2139](https://togithub.com/cerbos/cerbos/issues/2139))\n- [`56a29ba`](https://togithub.com/cerbos/cerbos/commit/56a29ba9)\nchore(deps): Update go deps to v2 (major)\n([#​2138](https://togithub.com/cerbos/cerbos/issues/2138))\n- [`394cfa0`](https://togithub.com/cerbos/cerbos/commit/394cfa0e)\nchore(deps): Update golangci/golangci-lint-action action to v5\n([#​2127](https://togithub.com/cerbos/cerbos/issues/2127))\n- [`70db704`](https://togithub.com/cerbos/cerbos/commit/70db7048)\nchore(deps): Update golangci/golangci-lint-action action to v5.3.0\n([#​2136](https://togithub.com/cerbos/cerbos/issues/2136))\n- [`c862740`](https://togithub.com/cerbos/cerbos/commit/c8627401)\nchore(deps): Update node.js deps\n([#​2100](https://togithub.com/cerbos/cerbos/issues/2100))\n- [`cd4894a`](https://togithub.com/cerbos/cerbos/commit/cd4894a9)\nchore(deps): Update node.js deps\n([#​2126](https://togithub.com/cerbos/cerbos/issues/2126))\n- [`4e40af6`](https://togithub.com/cerbos/cerbos/commit/4e40af69)\nchore(deps): Update node.js deps\n([#​2137](https://togithub.com/cerbos/cerbos/issues/2137))\n- [`603d0ef`](https://togithub.com/cerbos/cerbos/commit/603d0ef0)\nchore(deps): Update pnpm to v9.0.5\n([#​2112](https://togithub.com/cerbos/cerbos/issues/2112))\n- [`8f7af37`](https://togithub.com/cerbos/cerbos/commit/8f7af37e)\nchore(deps): Update to go1.22.3\n([#​2143](https://togithub.com/cerbos/cerbos/issues/2143))\n- [`a5d835b`](https://togithub.com/cerbos/cerbos/commit/a5d835b5)\nchore(deps): Use latest Cerbos SDK\n([#​2140](https://togithub.com/cerbos/cerbos/issues/2140))\n- [`d797ebb`](https://togithub.com/cerbos/cerbos/commit/d797ebb3)\nchore(docs): Update cloud-platforms.adoc\n([#​2109](https://togithub.com/cerbos/cerbos/issues/2109))\n- [`531e896`](https://togithub.com/cerbos/cerbos/commit/531e8963)\nchore(release): Add 0.35.1 release notes\n([#​2090](https://togithub.com/cerbos/cerbos/issues/2090))\n- [`80e10c1`](https://togithub.com/cerbos/cerbos/commit/80e10c10)\nchore(release): Add 0.36.0 release notes\n([#​2144](https://togithub.com/cerbos/cerbos/issues/2144))\n- [`c91df82`](https://togithub.com/cerbos/cerbos/commit/c91df826)\nchore(release): Prepare release 0.36.0\n- [`b3109b3`](https://togithub.com/cerbos/cerbos/commit/b3109b3e)\nchore(test): Test npm packages against pnpm v9\n([#​2102](https://togithub.com/cerbos/cerbos/issues/2102))\n- [`b9fe96e`](https://togithub.com/cerbos/cerbos/commit/b9fe96eb)\nchore(version): Bump version to 0.36.0\n- [`cb3c68d`](https://togithub.com/cerbos/cerbos/commit/cb3c68db) chore:\nHandle panics during parsing\n([#​2129](https://togithub.com/cerbos/cerbos/issues/2129))\n- [`ef65065`](https://togithub.com/cerbos/cerbos/commit/ef650651) chore:\nRemove deprecated audit log fields from filter\n([#​2121](https://togithub.com/cerbos/cerbos/issues/2121))\n- [`0140870`](https://togithub.com/cerbos/cerbos/commit/0140870d) chore:\nRemove usage of deprecated MySQL native authentication plugin\n([#​2131](https://togithub.com/cerbos/cerbos/issues/2131))\n- [`eb6029c`](https://togithub.com/cerbos/cerbos/commit/eb6029c4) chore:\nRename bundle driver to hub\n([#​2130](https://togithub.com/cerbos/cerbos/issues/2130))\n- [`5dbef14`](https://togithub.com/cerbos/cerbos/commit/5dbef14b) chore:\nUse new hub configuration for env var override\n([#​2142](https://togithub.com/cerbos/cerbos/issues/2142))\n\n
\n\n
\nfergusstrange/embedded-postgres\n(github.com/fergusstrange/embedded-postgres)\n\n###\n[`v1.27.0`](https://togithub.com/fergusstrange/embedded-postgres/releases/tag/v1.27.0)\n\n[Compare\nSource](https://togithub.com/fergusstrange/embedded-postgres/compare/v1.26.0...v1.27.0)\n\n#### What's Changed\n\n- make encoding configurable in initdb by\n[@​zzzFelix](https://togithub.com/zzzFelix) in\n[https://github.com/fergusstrange/embedded-postgres/pull/133](https://togithub.com/fergusstrange/embedded-postgres/pull/133)\n- Update build & test workflows by\n[@​der-eismann](https://togithub.com/der-eismann) in\n[https://github.com/fergusstrange/embedded-postgres/pull/136](https://togithub.com/fergusstrange/embedded-postgres/pull/136)\n\n#### New Contributors\n\n- [@​der-eismann](https://togithub.com/der-eismann) made their\nfirst contribution in\n[https://github.com/fergusstrange/embedded-postgres/pull/136](https://togithub.com/fergusstrange/embedded-postgres/pull/136)\n\n**Full Changelog**:\nhttps://github.com/fergusstrange/embedded-postgres/compare/v1.26.0...v1.27.0\n\n
\n\n
\ngoreleaser/goreleaser\n(github.com/goreleaser/goreleaser)\n\n###\n[`v1.26.0`](https://togithub.com/goreleaser/goreleaser/releases/tag/v1.26.0)\n\n[Compare\nSource](https://togithub.com/goreleaser/goreleaser/compare/v1.25.1...v1.26.0)\n\n#### Changelog\n\n##### New Features\n\n-\n[`de72cab`](https://togithub.com/goreleaser/goreleaser/commit/de72cab5d9dabf785fcd7808c5d228960d762bfe):\nfeat(announce): add BlueSky support\n([#​4779](https://togithub.com/goreleaser/goreleaser/issues/4779))\n([@​jghiloni](https://togithub.com/jghiloni))\n-\n[`e538341`](https://togithub.com/goreleaser/goreleaser/commit/e538341179a23790669e6eeab0c644658e547c66):\nfeat(archive): support tar.zst\n([#​4825](https://togithub.com/goreleaser/goreleaser/issues/4825))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`39bf666`](https://togithub.com/goreleaser/goreleaser/commit/39bf6668bc086d1c110e9321f7303da3de7e22b7):\nfeat(changelog): custom commit format\n([#​4802](https://togithub.com/goreleaser/goreleaser/issues/4802))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`5d98c69`](https://togithub.com/goreleaser/goreleaser/commit/5d98c69f0f3c81c48661649e091969f6b098b1a7):\nfeat(checksum): supports BLAKE2 and SHA-3\n([#​4850](https://togithub.com/goreleaser/goreleaser/issues/4850))\n([@​sorairolake](https://togithub.com/sorairolake))\n-\n[`c1615ea`](https://togithub.com/goreleaser/goreleaser/commit/c1615ea521532b4e3f5633a137c17f94fff22e56):\nfeat(cmd): release --draft\n([#​4771](https://togithub.com/goreleaser/goreleaser/issues/4771))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`c8488dc`](https://togithub.com/goreleaser/goreleaser/commit/c8488dc825debca26ade35aefca234b142a515c9):\nfeat(gitea): implement `Changelog` function\n([#​4794](https://togithub.com/goreleaser/goreleaser/issues/4794))\n([@​appleboy](https://togithub.com/appleboy))\n-\n[`2c93bd7`](https://togithub.com/goreleaser/goreleaser/commit/2c93bd7c7f993068dffcaf3eb65a56fcf0f3b7b7):\nfeat(gitlab): Allow PRs to be created\n([#​4793](https://togithub.com/goreleaser/goreleaser/issues/4793))\n([@​baurmatt](https://togithub.com/baurmatt))\n-\n[`5d37c9a`](https://togithub.com/goreleaser/goreleaser/commit/5d37c9a5a0a395bb463da3ce55a5ce9383160d2e):\nfeat: always log build output\n([#​4787](https://togithub.com/goreleaser/goreleaser/issues/4787))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`60a1ccc`](https://togithub.com/goreleaser/goreleaser/commit/60a1cccf5748992e876043e7dca3813842b13ea4):\nfeat: isEnvSet tmpl function\n([#​4775](https://togithub.com/goreleaser/goreleaser/issues/4775))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`b05a62f`](https://togithub.com/goreleaser/goreleaser/commit/b05a62fddcbfeb5a581c94a92281b29bc6dae1fe):\nfeat: migrate to new homebrew constuctions (on_arm, on_intel)\n([#​4822](https://togithub.com/goreleaser/goreleaser/issues/4822))\n([@​kvendingoldo](https://togithub.com/kvendingoldo))\n-\n[`3cd2e07`](https://togithub.com/goreleaser/goreleaser/commit/3cd2e07c6835cc17f9cd266e6f9817389786841c):\nfeat: notarize macos binaries\n([#​4774](https://togithub.com/goreleaser/goreleaser/issues/4774))\n([@​caarlos0](https://togithub.com/caarlos0))\n\n##### Security updates\n\n-\n[`c052ccc`](https://togithub.com/goreleaser/goreleaser/commit/c052ccc6914e3d6eecba1e8466712065f92ff3e3):\nsec(deps): update runc for CVE-2024-3154\n([@​caarlos0](https://togithub.com/caarlos0))\n\n##### Bug fixes\n\n-\n[`172d6d4`](https://togithub.com/goreleaser/goreleaser/commit/172d6d4b990cc7cfc44ef13975ea6fb9158274d3):\nRevert \"fix: temp disable snapcraft\"\n([#​4830](https://togithub.com/goreleaser/goreleaser/issues/4830))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`b45c3b1`](https://togithub.com/goreleaser/goreleaser/commit/b45c3b1720d9f61d47569d1cc7dd8f06f2187e1c):\nfix(bluesky): change default env, fix user agent, update tests\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`bee8665`](https://togithub.com/goreleaser/goreleaser/commit/bee8665d9e6d44277c382e14792584ad5c44f083):\nfix(brew): cpu conditionals\n([#​4814](https://togithub.com/goreleaser/goreleaser/issues/4814))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`14ab459`](https://togithub.com/goreleaser/goreleaser/commit/14ab45930090e4da037591901a12471de9f08db7):\nfix(brew): linux brew with extra end\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`b1723af`](https://togithub.com/goreleaser/goreleaser/commit/b1723afff21998e8f2a99cc61ed06f12586529fa):\nfix(gitea): changelog output\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`fd40f5d`](https://togithub.com/goreleaser/goreleaser/commit/fd40f5d772c94c08942e8eb04ba01cbdb0477a36):\nfix(gitlab): Use start_branch for file creation if branch doesn't exist\nalready\n([#​4792](https://togithub.com/goreleaser/goreleaser/issues/4792))\n([@​baurmatt](https://togithub.com/baurmatt))\n-\n[`bf31227`](https://togithub.com/goreleaser/goreleaser/commit/bf31227b4eb975f87b995719d3b152f4d9b2f993):\nfix(nfpm): termux platform\n([#​4812](https://togithub.com/goreleaser/goreleaser/issues/4812))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`2f87663`](https://togithub.com/goreleaser/goreleaser/commit/2f876631b38958e0bcc3fe574cd42b271d0ad0b0):\nfix(nix): update valid licenses\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`56e0f79`](https://togithub.com/goreleaser/goreleaser/commit/56e0f794738871515750a383b2d01e75a6e2619c):\nfix(telegram): mdv2escape ProjectName by default\n([#​4784](https://togithub.com/goreleaser/goreleaser/issues/4784))\n([@​EpicStep](https://togithub.com/EpicStep))\n-\n[`ca52f85`](https://togithub.com/goreleaser/goreleaser/commit/ca52f855fc340c276672fce3ab0d613eedec3c1c):\nfix: bad json tag name\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`7552d0b`](https://togithub.com/goreleaser/goreleaser/commit/7552d0b4e022789ce9b3bd229261762e305765f9):\nfix: lint issues ([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`7982a33`](https://togithub.com/goreleaser/goreleaser/commit/7982a33a06f2b08403e696826b493b14057f0589):\nfix: telegram default message\n([#​4821](https://togithub.com/goreleaser/goreleaser/issues/4821))\n([@​EpicStep](https://togithub.com/EpicStep))\n-\n[`fbddb70`](https://togithub.com/goreleaser/goreleaser/commit/fbddb7081d4693491057e648ac5e819920708718):\nfix: temp disable snapcraft\n([#​4826](https://togithub.com/goreleaser/goreleaser/issues/4826))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`0a38d90`](https://togithub.com/goreleaser/goreleaser/commit/0a38d90f66b9a5b6bddb39c3edda09ff2893b9fa):\nfix: typo in User-Agent header value\n([#​4765](https://togithub.com/goreleaser/goreleaser/issues/4765))\n([@​alexandear](https://togithub.com/alexandear))\n-\n[`780a3a4`](https://togithub.com/goreleaser/goreleaser/commit/780a3a40d9bfeacda1196aa2d54690ea2cbff4ef):\nfix: update SBOM generation to add .json as file type\n([#​4781](https://togithub.com/goreleaser/goreleaser/issues/4781))\n([@​cpanato](https://togithub.com/cpanato))\n-\n[`bf79c2c`](https://togithub.com/goreleaser/goreleaser/commit/bf79c2cf91ddf51bb380b5614fa09062001481f1):\nfix: use correct path variable for logging in check command\n([#​4756](https://togithub.com/goreleaser/goreleaser/issues/4756))\n([@​hhromic](https://togithub.com/hhromic))\n-\n[`1ed1a62`](https://togithub.com/goreleaser/goreleaser/commit/1ed1a62b90e3765864aa930bebe2bc1cb4863e57):\nfix: winget paths on windows\n([#​4786](https://togithub.com/goreleaser/goreleaser/issues/4786))\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`6735555`](https://togithub.com/goreleaser/goreleaser/commit/673555519af164f03c3945a217df8dda289a1874):\nrefactor: improve switch\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`ddb60f4`](https://togithub.com/goreleaser/goreleaser/commit/ddb60f417e86cbd6d85e1d2c977e603c6be9104a):\nrefactor: improve switch\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`d5fc94a`](https://togithub.com/goreleaser/goreleaser/commit/d5fc94a81d77cca97c126eae0eccc6a53cff739e):\nrefactor: optimize strings replacers\n([#​4788](https://togithub.com/goreleaser/goreleaser/issues/4788))\n([@​EpicStep](https://togithub.com/EpicStep))\n\n##### Dependency updates\n\n-\n[`8391ce5`](https://togithub.com/goreleaser/goreleaser/commit/8391ce56e12470753aef2dc7ccd09f9e96133667):\nfix(deps): update go-set to fix armv7 build\n([@​caarlos0](https://togithub.com/caarlos0))\n\n##### Documentation updates\n\n-\n[`9b3f514`](https://togithub.com/goreleaser/goreleaser/commit/9b3f514449c3315cd65da0f7c01d964092cd3e5e):\ndocs: description for chocolateys.package_source_url\n([#​4763](https://togithub.com/goreleaser/goreleaser/issues/4763))\n([@​alexandear](https://togithub.com/alexandear))\n-\n[`f6615b1`](https://togithub.com/goreleaser/goreleaser/commit/f6615b138b5738beaabf381407aa1de29b0f7362):\ndocs: fix typos\n([#​4764](https://togithub.com/goreleaser/goreleaser/issues/4764))\n([@​alexandear](https://togithub.com/alexandear))\n-\n[`e21a99a`](https://togithub.com/goreleaser/goreleaser/commit/e21a99a54b3611b0964f03d083797c583c28ede9):\ndocs: improve -p help message\n([#​4798](https://togithub.com/goreleaser/goreleaser/issues/4798))\n([@​jftuga](https://togithub.com/jftuga))\n-\n[`7b78e19`](https://togithub.com/goreleaser/goreleaser/commit/7b78e195e2eb7e0824eeff3119b82f90c0a2a5a3):\ndocs: notes on prefixed tags and monorepos\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`0481e63`](https://togithub.com/goreleaser/goreleaser/commit/0481e63fb3d9d6d1e1d8cbee16789d644b652ab1):\ndocs: remove mentions to --skip-something flags\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`919f220`](https://togithub.com/goreleaser/goreleaser/commit/919f220e7149e33cdaa523cffc60988f05541a46):\ndocs: update ([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`4015fa3`](https://togithub.com/goreleaser/goreleaser/commit/4015fa32bcf606c0d1e5538e545ef55c04879169):\ndocs: update ([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`12d236d`](https://togithub.com/goreleaser/goreleaser/commit/12d236ded2ec2ab8365fcb6a50c81382fe238b4f):\ndocs: update ([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`2cffcc5`](https://togithub.com/goreleaser/goreleaser/commit/2cffcc58c5a7453003dc74fe3c7a96f04764e1fa):\ndocs: update ([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`b7b4883`](https://togithub.com/goreleaser/goreleaser/commit/b7b48834201a6c6c4c42467cf405e9ca6611a55c):\ndocs: update ([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`f4c149e`](https://togithub.com/goreleaser/goreleaser/commit/f4c149e10bc0722d85f00eea35ca273ec0c69795):\ndocs: update USERS.md\n([#​4839](https://togithub.com/goreleaser/goreleaser/issues/4839))\n([@​xcloudscript](https://togithub.com/xcloudscript))\n-\n[`faadd02`](https://togithub.com/goreleaser/goreleaser/commit/faadd02cc19f3633d392f6d145c78c2028a92a42):\ndocs: update bluesky docs\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`60f12de`](https://togithub.com/goreleaser/goreleaser/commit/60f12deae0f6aca8fee22ab6838d14f6ee9c766b):\ndocs: update changelog\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`7468cf8`](https://togithub.com/goreleaser/goreleaser/commit/7468cf85569521cc679aa7ea17192fdfbaa62046):\ndocs: update dirty.md deprecated syntax\n([#​4766](https://togithub.com/goreleaser/goreleaser/issues/4766))\n([@​johnmaguire](https://togithub.com/johnmaguire))\n-\n[`652fd30`](https://togithub.com/goreleaser/goreleaser/commit/652fd30c691b998e2ad8a9668fad805b138aa769):\ndocs: update repository.md\n([@​caarlos0](https://togithub.com/caarlos0))\n\n##### Build process updates\n\n-\n[`1ec2e16`](https://togithub.com/goreleaser/goreleaser/commit/1ec2e1628889bd2b466d2760c536d73b0c9a2aaf):\nbuild: fix nightly job\n([@​caarlos0](https://togithub.com/caarlos0))\n-\n[`52dc2cb`](https://togithub.com/goreleaser/goreleaser/commit/52dc2cb4e4575e3909ae64383bcc83d5e3d0e379):\nbuild: use latest snapcraft\n([#​4849](https://togithub.com/goreleaser/goreleaser/issues/4849))\n([@​caarlos0](https://togithub.com/caarlos0))\n\n##### Other work\n\n-\n[`3c0c714`](https://togithub.com/goreleaser/goreleaser/commit/3c0c7148fd53bd3ac6253b8a3997c718e007d941):\nblob: permit skipping the configuration of the Content-Disposition\nheader\n([#​4832](https://togithub.com/goreleaser/goreleaser/issues/4832))\n([@​mvisonneau](https://togithub.com/mvisonneau))\n\n**Full Changelog**:\nhttps://github.com/goreleaser/goreleaser/compare/v1.25.1...v1.26.0\n\n#### Helping out\n\nThis release is only possible thanks to **all** the support of some\n**awesome people**!\n\nWant to be one of them?\nYou can [sponsor](https://goreleaser.com/sponsors/), get a [Pro\nLicense](https://goreleaser.com/pro) or [contribute with\ncode](https://goreleaser.com/contributing).\n\n#### Where to go next?\n\n- Find examples and commented usage of all options in our\n[website](https://goreleaser.com/intro/).\n- Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and\n[Twitter](https://twitter.com/goreleaser)!\n\n\n\n
\n\n
\nprometheus/client_golang\n(github.com/prometheus/client_golang)\n\n###\n[`v1.19.1`](https://togithub.com/prometheus/client_golang/releases/tag/v1.19.1)\n\n[Compare\nSource](https://togithub.com/prometheus/client_golang/compare/v1.19.0...v1.19.1)\n\n#### What's Changed\n\n- Security patches for `golang.org/x/sys` and\n`google.golang.org/protobuf`\n\n#### New Contributors\n\n- [@​lukasauk](https://togithub.com/lukasauk) made their first\ncontribution in\n[https://github.com/prometheus/client_golang/pull/1494](https://togithub.com/prometheus/client_golang/pull/1494)\n\n**Full Changelog**:\nhttps://github.com/prometheus/client_golang/compare/v1.19.0...v1.19.1\n\n
\n\n
\ngolang/go (go)\n\n###\n[`v1.22.3`](https://togithub.com/golang/go/compare/go1.22.2...go1.22.3)\n\n
\n\n---\n\n### Configuration\n\n📅 **Schedule**: Branch creation - \"before 4am on Monday\" (UTC),\nAutomerge - At any time (no schedule defined).\n\n🚦 **Automerge**: Disabled by config. Please merge this manually once you\nare satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the\nrebase/retry checkbox.\n\n👻 **Immortal**: This PR will be recreated if closed unmerged. Get\n[config help](https://togithub.com/renovatebot/renovate/discussions) if\nthat's undesired.\n\n---\n\n- [ ] If you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has been generated by [Mend\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\nrepository job log\n[here](https://developer.mend.io/github/cerbos/cerbos).\n\n\n\n---------\n\nSigned-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>\nSigned-off-by: Charith Ellawala \nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>\nCo-authored-by: Charith Ellawala ","shortMessageHtmlLink":"chore(deps): Update go deps (#2147)"}},{"before":"4dd5a074757aeb4d796afc4e903b371406223811","after":"056d15e7d6138ad2f8202f9b9ef513b84c256887","ref":"refs/heads/renovate/go-deps","pushedAt":"2024-05-13T07:28:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"Fix replace directive\n\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"Fix replace directive"}},{"before":null,"after":"e2ed8dec96c658203eded8df1f69cee52ca62b0d","ref":"refs/heads/renovate/node-deps","pushedAt":"2024-05-13T01:43:56.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"chore(deps): update node.js deps\n\nSigned-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): update node.js deps"}},{"before":null,"after":"4dd5a074757aeb4d796afc4e903b371406223811","ref":"refs/heads/renovate/go-deps","pushedAt":"2024-05-13T01:43:18.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"chore(deps): update go deps\n\nSigned-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(deps): update go deps"}},{"before":"c1c4049cb4aa61859f4ce59ac9046267b3c4725d","after":"5ec97160d4dbb4d54543cb889367ece886809cfb","ref":"refs/heads/main","pushedAt":"2024-05-09T08:18:53.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(ci): Clear disk space for release workflow (#2145)\n\nThe worker is running out of disk space during the release.\r\n\r\nSigned-off-by: Charith Ellawala \r\n\r\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"chore(ci): Clear disk space for release workflow (#2145)"}},{"before":"80e10c1086f3e0053439477e0ef6f7f66dede302","after":"c1c4049cb4aa61859f4ce59ac9046267b3c4725d","ref":"refs/heads/main","pushedAt":"2024-05-09T07:33:56.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(version): Bump version to 0.37.0\n\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"chore(version): Bump version to 0.37.0"}},{"before":null,"after":"c91df8264a569daafc7431493ce19b9905b43383","ref":"refs/heads/v0.36","pushedAt":"2024-05-09T07:33:56.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(release): Prepare release 0.36.0\n\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"chore(release): Prepare release 0.36.0"}},{"before":"8f7af37e886424943309e383c7ade957ce87aedb","after":"80e10c1086f3e0053439477e0ef6f7f66dede302","ref":"refs/heads/main","pushedAt":"2024-05-09T07:30:02.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(release): Add 0.36.0 release notes (#2144)\n\nSigned-off-by: Charith Ellawala \r\n\r\n---------\r\n\r\nSigned-off-by: Charith Ellawala \r\nSigned-off-by: Charith Ellawala \r\nCo-authored-by: Andrew Haines ","shortMessageHtmlLink":"chore(release): Add 0.36.0 release notes (#2144)"}},{"before":"a5d835b514a272891f0d0630f60b0ebc2af8d74f","after":"8f7af37e886424943309e383c7ade957ce87aedb","ref":"refs/heads/main","pushedAt":"2024-05-08T08:36:01.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"oguzhand95","name":"Oğuzhan Durgun","path":"/oguzhand95","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3899719?s=80&v=4"},"commit":{"message":"chore(deps): Update to go1.22.3 (#2143)\n\n[Vulnerability Check\r\nlogs](https://github.com/cerbos/cerbos/actions/runs/8998335648/job/24718249495)\r\n[GO-2024-2824](https://pkg.go.dev/vuln/GO-2024-2824)\r\n\r\nSigned-off-by: Oğuzhan Durgun ","shortMessageHtmlLink":"chore(deps): Update to go1.22.3 (#2143)"}},{"before":"5dbef14b5b136fa4caa3b8cdfd6f5209e52d12bb","after":"a5d835b514a272891f0d0630f60b0ebc2af8d74f","ref":"refs/heads/main","pushedAt":"2024-05-08T08:35:18.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"charithe","name":"Charith Ellawala","path":"/charithe","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1127094?s=80&v=4"},"commit":{"message":"chore(deps): Use latest Cerbos SDK (#2140)\n\nAlso replaces `gomnd` linter with `mnd`\r\n\r\nSigned-off-by: Charith Ellawala \r\n\r\nSigned-off-by: Charith Ellawala ","shortMessageHtmlLink":"chore(deps): Use latest Cerbos SDK (#2140)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEUkwKGgA","startCursor":null,"endCursor":null}},"title":"Activity · cerbos/cerbos"}