Skip to content

Commit 34519b0

Browse files
authored
Merge branch 'main' into ale/eng-8365-enable-email-level-breakdown-for-custom-events-in-posthog
2 parents c80b85c + 329e5cc commit 34519b0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@
9292
"mdast-util-to-hast": ">=13.2.1",
9393
"js-yaml": ">=4.1.1",
9494
"fast-xml-parser": ">=5.3.6",
95-
"@aws-sdk/client-sesv2": "^3.996.0"
95+
"@aws-sdk/client-sesv2": "^3.996.0",
96+
"handlebars": "4.7.9"
9697
},
9798
"patchedDependencies": {
9899
"graphql@16.9.0": "patches/graphql@16.9.0.patch"

pnpm-lock.yaml

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

router/internal/requestlogger/requestlogger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ func (al *accessLogger) getRequestFields(r *http.Request, logger *zap.Logger) []
233233
if err != nil {
234234
// We ignore logging the err since it could leak partial sensitive data
235235
// such as %pa from "%password"
236-
logger.Error("Failed to parse query parameters")
236+
logger.Debug("Failed to parse query parameters")
237237
// Since we wanted to ignore some values but we cant parse it
238238
// we default to a safer skip all
239239
query = ""

0 commit comments

Comments
 (0)