Skip to content

Commit cbf659e

Browse files
authored
Merge branch 'main' into dominik/eng-9263-utilize-engines-support-for-field-args-on-required-fields-on
2 parents c0910c3 + 14580e0 commit cbf659e

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.Warn("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)