Skip to content

chore(deps): update dependency @opentelemetry/api to ~1.9.0 #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions demo.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ import { test } from 'node:test'
test('edge function config', async () => {
const { config } = await import('./demo/.netlify/edge-functions/angular-ssr/angular-ssr.mjs')

assert.deepEqual(config.excludedPath, [
const excludedPathsWithMaskedHashes = config.excludedPath.map((path) => path.replace(/-[A-Z\d]{8}\./, '-HASHHASH.'))

assert.deepEqual(excludedPathsWithMaskedHashes, [
'/.netlify/*',
'/favicon.ico',
'/heroes/index.html',
'/index.csr.html',
'/main-KVCR6MBP.js',
'/polyfills-FFHMD2TL.js',
'/styles-5INURTSO.css',
'/main-HASHHASH.js',
'/polyfills-HASHHASH.js',
'/styles-HASHHASH.css',
'/heroes',
])
})
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"node": ">=18.13.0"
},
"devDependencies": {
"@opentelemetry/api": "~1.8.0",
"@opentelemetry/api": "~1.9.0",
"@netlify/eslint-config-node": "^7.0.1",
"@types/node": "^18.19.0",
"eslint-plugin-unicorn": "^49.0.0",
Expand Down
13 changes: 7 additions & 6 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,24 @@
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: ['github>netlify/renovate-config:default'],
ignorePresets: [':prHourlyLimit2'],
prHourlyLimit: 0,
semanticCommits: true,
// The config we're extending ignores test dirs, but we want to bump some fixture deps
ignorePaths: ['**/node_modules/**'],
packageRules: [
// Since we've enabled Renovate (see above) for fixture sites, adjust the config for these.
// Since we've enabled Renovate (see above) for demo and fixture sites, adjust the config for these.
{
matchFileNames: ['tests/**/fixtures/**/package.json'],
matchFileNames: ['tests/**/fixtures/**/package.json', 'demo/package.json'],
// If a fixture requires a specific framework version, never bump it.
updatePinnedDependencies: false,
// Always use `chore:` (since these are test fixtures), to avoid no-op releases.
extends: [':semanticCommitTypeAll(chore)'],
},
{
description: 'Stable & unstable Angular bumps in test fixtures',
matchFileNames: ['tests/**/fixtures/**/package.json'],
// See https://docs.renovatebot.com/presets-monorepo/#monorepoangular.
matchSourceUrls: ['https://github.com/angular/angular'],
description: 'Stable & unstable Angular bumps in demo and test fixtures',
groupName: 'Angular packages',
matchFileNames: ['tests/**/fixtures/**/package.json', 'demo/package.json'],
matchPackageNames: ['@angular/**', 'zone.js', '@angular-devkit/**'],
// Override the schedule to get immediate PRs.
schedule: null,
// Apply a unique label so we can trigger additional workflows for these PRs.
Expand Down
Loading