{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":318764188,"defaultBranch":"master","name":"dapr","ownerLogin":"shubham1172","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2020-12-05T10:53:59.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/22132944?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1698648014.0","currentOid":""},"activityList":{"items":[{"before":"4d4c8b937b63fc5303a2a1dc90eb966c500350a5","after":"5050df5bf10835e9890b6b6519f5fa22e4736b28","ref":"refs/heads/master","pushedAt":"2023-12-04T15:56:30.000Z","pushType":"push","commitsCount":139,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Add extra env vars to charts (#7183)\n\n* add extra env vars to charts\r\n\r\nSigned-off-by: Filinto Duran \r\n\r\n* use map instead of array, add docs to README\r\n\r\nSigned-off-by: Filinto Duran \r\n\r\n* Fix building on 32-bit systems (#7185)\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\nSigned-off-by: Filinto Duran \r\n\r\n---------\r\n\r\nSigned-off-by: Filinto Duran \r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\nCo-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>\r\nCo-authored-by: Loong Dai ","shortMessageHtmlLink":"Add extra env vars to charts (dapr#7183)"}},{"before":null,"after":"935527cef312c3c31af91d17f5270793bbda73b8","ref":"refs/heads/shubham1172/add-metrics-workflow","pushedAt":"2023-10-30T06:40:14.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Temp\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Temp"}},{"before":"bf9e42537fefe29907fafb8fc08e55774777bc1f","after":"4d4c8b937b63fc5303a2a1dc90eb966c500350a5","ref":"refs/heads/master","pushedAt":"2023-10-25T06:29:33.000Z","pushType":"push","commitsCount":14,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Reduce cardinality in Dapr metrics and add more information to API logs (#6919)\n\n* Reduce cardinality in Dapr metrics and add more information to API logs\r\n\r\nFixes dapr#6723\r\n\r\nIncludes:\r\n\r\n1. Drastically reduce cardinality of metrics, especially those emitted by the HTTP server:\r\n - Also removes the possibility of PII being included in the metrics endpoint.\r\n1. Add more information to API logs for both HTTP and gRPC, including things that are not going to be included in metrics by default anymore:\r\n - Response status code\r\n - Response size (for HTTP only & if possible)\r\n - Latency\r\n3. When `obfuscateURLs` is enabled for API logging, in API logs we now include a more descriptive name for the method rather than the path that was matched in the router. The descriptive names map to the names of the methods in gRPC, for example `SaveState` in place of `POST /state/{storeName}/{name}`. Since gRPC API logs are always, only \"obfuscated\" (because the params are in the body and not in the \"URL\"), this makes HTTP and gRPC API logs more consistent too\r\n4. Refactors how tracing and API logging (and the API token auth middleware) get the data from the handler/router:\r\n - The new approach is a lot more declarative, and less based on heuristics (such as parsing the path from the URL again)\r\n - The new approach also reduces the number of maps that are allocated and used in each request, which generally contained duplicate information generated in multiple parts of the code\r\n5. For both HTTP and gRPC, the way metadata is added to a tracing span has changed and it's now more declarative:\r\n - When looking at how tracing spans were composed, the metadata was added in `pkg/diagnostics`, separately from the endpoints. Only a VERY SMALL number of APIs had proper tracing configured (as a matter of fact, see the number of \"TODO\"'s in this PR), in large part due to the fact that this was in a separate package. The approach also relied a lot on heuristics.\r\n - For HTTP, now the `Endpoint` struct contains a property to add a function that adds properties to a span for tracing purposes. This lives right next to the handler.\r\n - For gRPC, messages defined in the protos whose name ends in \"Request\" now must define an `AppendSpanAttribute` method (this is enforced by a unit test)\r\n6. Update API Allowlisting/Denylisting for HTTP to:\r\n - Make sure that the same constants can be used for both HTTP and gRPC, especially versions. Right now, versions are in the format \"v1.0-alpha1\" for HTTP, and \"v1alpha1\" for gRPC. This PR changes the HTTP versions to be in the format \"v1alpha1\" too (\"v1.0-alpha1\" is preserved for bacwkards-compatibility)\r\n - Improved perf of the HTTP Allowlist/Denylist, especially when using the \"new\" format (e.g. versions with \"v1alpha1\"): checking the allowlist is now a simple map lookup rather than an iteration over the entire allowlist.\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\n\r\n* Added missing workflow beta1 APIs\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\n\r\n* Added IT for metrics\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\n\r\n* Update tests/integration/framework/binary/binary.go\r\n\r\nSigned-off-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>\r\n\r\n---------\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\nSigned-off-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>\r\nCo-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>","shortMessageHtmlLink":"Reduce cardinality in Dapr metrics and add more information to API lo…"}},{"before":"28cf80867ab7f07df6cf98f586771bf421d5c151","after":"bf9e42537fefe29907fafb8fc08e55774777bc1f","ref":"refs/heads/master","pushedAt":"2023-10-18T08:37:48.000Z","pushType":"push","commitsCount":22,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Adds deprecation notice to sentry CLI flags and env var (#7050)\n\nSigned-off-by: joshvanl \r\nCo-authored-by: Loong Dai ","shortMessageHtmlLink":"Adds deprecation notice to sentry CLI flags and env var (dapr#7050)"}},{"before":"e4f89012f56022a3e0dec18725493fb0c549ed2b","after":"28cf80867ab7f07df6cf98f586771bf421d5c151","ref":"refs/heads/master","pushedAt":"2023-10-09T07:26:39.000Z","pushType":"push","commitsCount":32,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Actor healthchecks: send the placement client the channel (#6966)\n\n* Actor healthchecks: minor refactoring to send the placement client the channel\n\nThis is the first step to move from a poll-based approach of checking health (periodically loading the health check result from a variable), to a more reactive one that uses channels.\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* 💄\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Health: only send a signal on status changes\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Fixed E2E test: actorstate app was missing /healthz endpoint\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Changed per review feedback\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Fixed integration tests not complying with actors contract\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* 💄\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Fixed workflow test\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Fixed perf test too\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Fixed: integration tests were not complying with actors contract\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Added missing close call\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* 💄\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Renamed healthz to initerror\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n* Fixed tests: initerror must wait for healthz call too\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\n\n---------\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\nCo-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>","shortMessageHtmlLink":"Actor healthchecks: send the placement client the channel (dapr#6966)"}},{"before":"f0978826b7f5e9cbfdc1b19e0d8afe708634e558","after":"e4f89012f56022a3e0dec18725493fb0c549ed2b","ref":"refs/heads/master","pushedAt":"2023-09-26T16:07:29.000Z","pushType":"push","commitsCount":10,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Resiliency: add `GetAttempt` method for policy function (#6959)\n\nThis returns the attempt number\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>","shortMessageHtmlLink":"Resiliency: add GetAttempt method for policy function (dapr#6959)"}},{"before":"f5199783ab397a15293e8bb2974a5fba91f6ff05","after":"f0978826b7f5e9cbfdc1b19e0d8afe708634e558","ref":"refs/heads/master","pushedAt":"2023-09-14T08:11:11.000Z","pushType":"push","commitsCount":48,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Updated pinned contrib and kit for 1.12 (#6916)\n\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\nCo-authored-by: Artur Souza ","shortMessageHtmlLink":"Updated pinned contrib and kit for 1.12 (dapr#6916)"}},{"before":"e55589221ba06f67d43715502980bbc4bbf0978e","after":"132c51d1c41771356886d292262372640a4e2137","ref":"refs/heads/shubham1172/josh-patch","pushedAt":"2023-08-25T17:27:40.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Helm values\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Helm values"}},{"before":null,"after":"e55589221ba06f67d43715502980bbc4bbf0978e","ref":"refs/heads/shubham1172/josh-patch","pushedAt":"2023-08-25T17:17:54.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Apply patch;\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Apply patch;"}},{"before":null,"after":"b1536434354be1a522487a308b68b4c9d27cc1d1","ref":"refs/heads/shubham1172/fix-operator-context-2","pushedAt":"2023-08-24T19:16:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Core dump prep\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Core dump prep"}},{"before":"b7eca6ab2026ee40f6a1b1eb2e52189cf8c1e931","after":"a152b86ca0de10d32ae1b11a5651d7ed85207b92","ref":"refs/heads/shubham1172/fix-operator-context-1","pushedAt":"2023-08-24T15:03:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Remove single usage ctx\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Remove single usage ctx"}},{"before":null,"after":"b7eca6ab2026ee40f6a1b1eb2e52189cf8c1e931","ref":"refs/heads/shubham1172/fix-operator-context-1","pushedAt":"2023-08-24T14:51:01.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Pass separate contexts\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Pass separate contexts"}},{"before":"c1522bc66ffd7937c2f01f057744d179722a128f","after":"f5199783ab397a15293e8bb2974a5fba91f6ff05","ref":"refs/heads/master","pushedAt":"2023-08-24T09:34:04.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Hot reloading: Dynamic Channels (#6762)\n\n* Change channel callers to dynamically fetch channels to enable dynamic\r\nconfiguration\r\n\r\nSigned-off-by: joshvanl \r\n\r\n* Move outbox creation to pubsub processor package.\r\n\r\nSigned-off-by: joshvanl \r\n\r\n* Name the return string variable pair in api_directmessaging.go\r\n\r\nSigned-off-by: joshvanl \r\n\r\n* pkg/grpc/manager/dial_test.go: Adds copyright headers\r\n\r\nSigned-off-by: joshvanl \r\n\r\n---------\r\n\r\nSigned-off-by: joshvanl \r\nCo-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>","shortMessageHtmlLink":"Hot reloading: Dynamic Channels (dapr#6762)"}},{"before":null,"after":"835023e4289eacef1603a5b7ce59cd73eaca464a","ref":"refs/heads/shubham1172/logging-scratch","pushedAt":"2023-08-24T09:33:37.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"tmp\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"tmp"}},{"before":"43bb1abbaa716012cd61f00de010bff80a1abf19","after":"c1522bc66ffd7937c2f01f057744d179722a128f","ref":"refs/heads/master","pushedAt":"2023-08-18T11:26:16.000Z","pushType":"push","commitsCount":9,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Remove preview feature flag ServiceInvocationStreaming (#6809)\n\n* Remove ServiceInvocationStreaming feature flag\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\n\r\n* mod tidy\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\n\r\n* Fix\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\n\r\n---------\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>\r\nCo-authored-by: Mukundan Sundararajan <65565396+mukundansundar@users.noreply.github.com>\r\nCo-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>","shortMessageHtmlLink":"Remove preview feature flag ServiceInvocationStreaming (dapr#6809)"}},{"before":"fe941db6de3ec65e6f1b73ba060deef178a6298a","after":"43bb1abbaa716012cd61f00de010bff80a1abf19","ref":"refs/heads/master","pushedAt":"2023-08-16T12:55:21.000Z","pushType":"push","commitsCount":14,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Use correct backoff package in outbox.go (#6810)\n\nLinter _should_ have caught that 🤔\r\n\r\nSigned-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>","shortMessageHtmlLink":"Use correct backoff package in outbox.go (dapr#6810)"}},{"before":"5b9e259f63b1fece76e23f2a1b3f9d29903c2f23","after":"8b510364317605d1f51e935673cdeed4e7cb5c16","ref":"refs/heads/shubham1172/e2e-pg-pin-linux","pushedAt":"2023-08-08T04:42:56.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Merge branch 'master' into shubham1172/e2e-pg-pin-linux","shortMessageHtmlLink":"Merge branch 'master' into shubham1172/e2e-pg-pin-linux"}},{"before":"dd71fff6fc48a72d88e3b2d19276e18a0e378e57","after":"5b9e259f63b1fece76e23f2a1b3f9d29903c2f23","ref":"refs/heads/shubham1172/e2e-pg-pin-linux","pushedAt":"2023-08-07T20:25:40.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"mukundansundar","name":"Mukundan Sundararajan","path":"/mukundansundar","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/65565396?s=80&v=4"},"commit":{"message":"Merge branch 'master' into shubham1172/e2e-pg-pin-linux","shortMessageHtmlLink":"Merge branch 'master' into shubham1172/e2e-pg-pin-linux"}},{"before":"6e3bf5375ca3eb60400262c6887bc3f5e7b45d59","after":"dd71fff6fc48a72d88e3b2d19276e18a0e378e57","ref":"refs/heads/shubham1172/e2e-pg-pin-linux","pushedAt":"2023-08-07T19:11:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ItalyPaleAle","name":"Alessandro (Ale) Segala","path":"/ItalyPaleAle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/43508?s=80&v=4"},"commit":{"message":"Update tests/dapr_tests.mk\n\nSigned-off-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>","shortMessageHtmlLink":"Update tests/dapr_tests.mk"}},{"before":"7fca6126d7d17097359c63b97dad6833a9bd87b3","after":"6e3bf5375ca3eb60400262c6887bc3f5e7b45d59","ref":"refs/heads/shubham1172/e2e-pg-pin-linux","pushedAt":"2023-08-07T17:39:14.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Merge branch 'master' into shubham1172/e2e-pg-pin-linux","shortMessageHtmlLink":"Merge branch 'master' into shubham1172/e2e-pg-pin-linux"}},{"before":null,"after":"7fca6126d7d17097359c63b97dad6833a9bd87b3","ref":"refs/heads/shubham1172/e2e-pg-pin-linux","pushedAt":"2023-08-07T17:36:25.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Fix postgres overrides\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Fix postgres overrides"}},{"before":"d243d1c6a17b019e0435ebbc10abb00810beb29a","after":"fe941db6de3ec65e6f1b73ba060deef178a6298a","ref":"refs/heads/master","pushedAt":"2023-08-07T15:50:46.000Z","pushType":"push","commitsCount":29,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"version-skew-e2e: Use `make setup-test-env` to setup components (#6777)\n\nSigned-off-by: joshvanl \r\nCo-authored-by: Artur Souza ","shortMessageHtmlLink":"version-skew-e2e: Use make setup-test-env to setup components (dapr…"}},{"before":"593696c1cdeac489abed0fa3722c2097288fd688","after":"d243d1c6a17b019e0435ebbc10abb00810beb29a","ref":"refs/heads/master","pushedAt":"2023-07-25T11:01:53.000Z","pushType":"push","commitsCount":21,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Remove `continue-on-error` from Windows integration test step (#6713)\n\n* Remove `continue-on-error` from Windows integration test step\r\n\r\nSigned-off-by: joshvanl \r\n\r\n* tests/integration/suite/daprd/state/http/fuzz: wrap component name in\r\nsingle quotes\r\n\r\nSigned-off-by: joshvanl \r\n\r\n---------\r\n\r\nSigned-off-by: joshvanl \r\nCo-authored-by: Mukundan Sundararajan <65565396+mukundansundar@users.noreply.github.com>","shortMessageHtmlLink":"Remove continue-on-error from Windows integration test step (dapr#6713"}},{"before":"3605800af610df0c1c2f669561fbce80104f7886","after":"2697cfb67efac77e983ca797a1772e753acfc4fa","ref":"refs/heads/shubham1172/fix-json-logging","pushedAt":"2023-07-19T05:10:12.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Merge branch 'master' into shubham1172/fix-json-logging","shortMessageHtmlLink":"Merge branch 'master' into shubham1172/fix-json-logging"}},{"before":"21e50eee288ccd9bceb16e8223f5f9451c4fad97","after":"3605800af610df0c1c2f669561fbce80104f7886","ref":"refs/heads/shubham1172/fix-json-logging","pushedAt":"2023-07-19T05:09:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Do not use init\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Do not use init"}},{"before":"7be7b4f5de1ad8b122143ef6eac40b3b16417fa3","after":"21e50eee288ccd9bceb16e8223f5f9451c4fad97","ref":"refs/heads/shubham1172/fix-json-logging","pushedAt":"2023-07-18T19:46:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Refactor and make logging consistent\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Refactor and make logging consistent"}},{"before":null,"after":"7be7b4f5de1ad8b122143ef6eac40b3b16417fa3","ref":"refs/heads/shubham1172/fix-json-logging","pushedAt":"2023-07-18T19:29:56.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Fix comments in pkg/metrics Options\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Fix comments in pkg/metrics Options"}},{"before":"1a79c6f2de62a20290f5a399199a3fb5e31dcf2d","after":"593696c1cdeac489abed0fa3722c2097288fd688","ref":"refs/heads/master","pushedAt":"2023-07-18T18:41:23.000Z","pushType":"push","commitsCount":81,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Integration tests: Wait for healthz endpoint to return ready for processes (#6689)\n\n* Wait for healthz endpoint to return ready for processes\r\n\r\nSigned-off-by: joshvanl \r\n\r\n* Don't use assert inside `Eventually` block\r\n\r\nSigned-off-by: joshvanl \r\n\r\n---------\r\n\r\nSigned-off-by: joshvanl \r\nCo-authored-by: Artur Souza ","shortMessageHtmlLink":"Integration tests: Wait for healthz endpoint to return ready for proc…"}},{"before":"6220ab954a27b1c2e620a5060f1e056d653b3695","after":"1a79c6f2de62a20290f5a399199a3fb5e31dcf2d","ref":"refs/heads/master","pushedAt":"2023-07-06T07:31:00.000Z","pushType":"push","commitsCount":34,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Revert \"Update Dapr bot Action and respond to users that can't invoke commands (#6367)\" (#6621)\n\nThis reverts commit 8fd702bdcdb65f9d98cde1050acd61b7e000f0e7.","shortMessageHtmlLink":"Revert \"Update Dapr bot Action and respond to users that can't invoke…"}},{"before":"9694878f3bf88ae24da1b5054fdaf428c537de44","after":"a584a2bac94fea3b1b33c5fd0972d5018e72d404","ref":"refs/heads/shubham1172/update-metadata-api-runtime-version","pushedAt":"2023-06-19T06:47:45.674Z","pushType":"push","commitsCount":1,"pusher":{"login":"shubham1172","name":"Shubham Sharma","path":"/shubham1172","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/22132944?s=80&v=4"},"commit":{"message":"Revert changes to actors\n\nSigned-off-by: Shubham Sharma ","shortMessageHtmlLink":"Revert changes to actors"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAADwK0eOwA","startCursor":null,"endCursor":null}},"title":"Activity · shubham1172/dapr"}