diff --git a/owlbot.py b/owlbot.py index d2964dcf21..beb0f39d2d 100644 --- a/owlbot.py +++ b/owlbot.py @@ -173,5 +173,3 @@ def fix_hermetic(targets: str = ".", hide_output: bool = False) -> None: f = typeless_samples_hermetic(targets=d) # Remove extra characters trim(files=f) - # Fix formatting - fix_hermetic(targets=d) diff --git a/renovate.json b/renovate.json index 7fbbdae402..e9fc249792 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,7 @@ { "extends": [ - "config:base" + "config:base", + "config:semverAllMonthly" ], "baseBranches": ["main"], "packageRules": [ @@ -20,12 +21,9 @@ "node": "< 15.0.0" } }, - "prConcurrentLimit": 0, "dependencyDashboardAutoclose": true, "schedule": "after 11am every 3 weeks on Monday", - "timezone": "America/Los_Angeles", "stabilityDays": 15, - "rangeStrategy": "pin", "pinVersions": false, - "rebaseStalePrs": false + "rebaseStalePrs": true } diff --git a/run/logging-manual/app.js b/run/logging-manual/app.js index 991dbaed34..a169e2d264 100644 --- a/run/logging-manual/app.js +++ b/run/logging-manual/app.js @@ -1,6 +1,16 @@ -// Copyright 2020 Google LLC. All rights reserved. -// Use of this source code is governed by the Apache 2.0 -// license that can be found in the LICENSE file. +// Copyright 2023 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. const express = require('express'); const app = express(); @@ -23,9 +33,8 @@ app.get('/', (req, res) => { const traceHeader = req.header('X-Cloud-Trace-Context'); if (traceHeader && project) { const [trace] = traceHeader.split('/'); - globalLogFields[ - 'logging.googleapis.com/trace' - ] = `projects/${project}/traces/${trace}`; + globalLogFields['logging.googleapis.com/trace'] = + `projects/${project}/traces/${trace}`; } }