meta: bump the vercel group across 1 directory with 8 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(9 months ago)
(9 months ago)
github_actions:pull-request
Bumps the vercel group with 8 updates in the / directory:
| Package | From | To |
|---|---|---|
| turbo | 2.5.6 |
2.5.8 |
| @opentelemetry/api-logs | 0.203.0 |
0.205.0 |
| @opentelemetry/instrumentation | 0.203.0 |
0.205.0 |
| @opentelemetry/sdk-logs | 0.203.0 |
0.205.0 |
| @vercel/otel | 1.13.0 |
2.0.0 |
| next | 15.5.2 |
15.5.4 |
| next-intl | 4.3.5 |
4.3.9 |
| @next/eslint-plugin-next | 15.5.2 |
15.5.4 |
Updates turbo from 2.5.6 to 2.5.8
Release notes
Sourced from turbo's releases.
Turborepo v2.5.8
What's Changed
create-turbo
- fix: revert #10847 by
@anthonyshewin vercel/turborepo#10882Changelog
- chore: add Cursor slash command by
@anthonyshewin vercel/turborepo#10881Full Changelog: https://github.com/vercel/turborepo/compare/v2.5.7...v2.5.8
Turborepo v2.5.8-canary.0
What's Changed
create-turbo
- fix: revert #10847 by
@anthonyshewin vercel/turborepo#10882Changelog
- chore: add Cursor slash command by
@anthonyshewin vercel/turborepo#10881Full Changelog: https://github.com/vercel/turborepo/compare/v2.5.7...v2.5.8-canary.0
Turborepo v2.5.7
What's Changed
Docs
- docs: add
TURBO_CONCURRENCYto options overview page by@anthonyshewin vercel/turborepo#10772- fix(docs): fix broken anchor links to --graph option by
@anthonyshewin vercel/turborepo#10773- docs: clarify TURBO_TEAM secret usage by
@vikhyathdevadigain vercel/turborepo#10795- docs: add Buildkite example to CI Vendors documentation by
@AndrewDiMolain vercel/turborepo#10721- docs: rework llms.txt and add .md responses by
@anthonyshewin vercel/turborepo#10811- docs: add
namefield mention to migration page by@anthonyshewin vercel/turborepo#10823- docs: update configuration reference to use correct turbo.json title by
@xcfioin vercel/turborepo#10843- docs: correct description of how
^works by@anthonyshewin vercel/turborepo#10865create-turbo
- feat(create-turbo):
--no-gitflag by@anthonyshewin vercel/turborepo#10720- chore(create-turbo): fix lint by
@chris-olszewskiin vercel/turborepo#10807- fix(security): update dependencies to resolve warning for
node-plopby@anthonyshewin vercel/turborepo#10847eslint
- docs: adjust typo on instructions for eslint-config-turbo legacy config by
@evsassein vercel/turborepo#10717
@turbo/repository
- chore: reformat code with 2024 edition by
@ognevnyin vercel/turborepo#10775Examples
- chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 6 updates by
@dependabot[bot] in vercel/turborepo#10752- chore(deps-dev): bump turbo from 2.5.5 to 2.5.6 in /examples/with-shell-commands by
@dependabot[bot] in vercel/turborepo#10781- chore(deps-dev): bump
@sveltejs/kitfrom 2.27.3 to 2.31.1 in /examples/with-svelte in the with-svelte group by@dependabot[bot] in vercel/turborepo#10780- chore(deps-dev): bump
@next/eslint-plugin-nextfrom 15.4.2 to 15.4.6 in /examples/with-tailwind by@dependabot[bot] in vercel/turborepo#10779
... (truncated)
Commits
98fe819publish 2.5.8 to registry132cf58release(turborepo): 2.5.8-canary.0 (#10883)adfdbb1fix: revert #10847 (#10882)157e277chore: add Cursor slash command (#10881)0a5070arelease(turborepo): 2.5.7 (#10878)1b512ecfix: sanitize logging prefix for GitLab groups (#10850)f5ff573ci: update deprecated turbo setting (#10857)9b85af0fix: output valid turbo.json for prune with Boundaries definition (#10866)2c6f798docs: correct description of how^works (#10865)7ea16e8fix: add WINDIR to default passthroughs (#10868)- Additional commits viewable in compare view
Updates @opentelemetry/api-logs from 0.203.0 to 0.205.0
Release notes
Sourced from @opentelemetry/api-logs's releases.
experimental/v0.205.0
0.205.0
:boom: Breaking Changes
- fix(otlp-exporter-base)!: split node and browser config types in two #5917
@pichlermarc
- Fixes a bug where Node.js modules would be incorrectly used in the instantiation of a web-targeted exporter
- Breaking changes:
- (user-facing)
createOtlpHttpExportDelegate(OtlpHttpConfiguration)has been changed to take a different, but identical typeOtlpNodeHttpConfigurationto differentiate it from the web-targeted exporters- (user-facing)
convertLegacyHttpOptions(...)now returnsOtlpNodeHttpConfiguration, the returned object's contents remain identical.- (user-facing)
agentFactoryhas been dropped fromOtlpHttpConfigurationas it is node-specific and is now part ofOtlpNodeHttpConfigurationinsteadexperimental/v0.204.0
0.204.0
:boom: Breaking Changes
- feat(api-logs)!: Marked private methods as "conventionally private". #5789
- feat(exporter-otlp-*): support custom HTTP agents #5719
@raphael-theriault-swi
OtlpHttpConfiguration.agentOptionshas been removed and functionality has been rolled intoOtlpHttpConfiguration.agentFactory
- (old)
{ agentOptions: myOptions }- (new)
{ agentFactory: httpAgentFactoryFromOptions(myOptions) }:rocket: Features
- feat(otlp-exporter-base): Add fetch transport for fetch-only environments like service workers. #5807
- when using headers, the Browser exporter now prefers
fetchoverXMLHttpRequestif present. Sending viaXMLHttpRequestwill be removed in a future release.- feat(opentelemetry-configuration): creation of basic ConfigProvider #5809
@maryliag- feat(opentelemetry-configuration): creation of basic FileConfigProvider #5863
@maryliag- feat(sdk-node): Add support for multiple metric readers via the new
metricReadersoption in NodeSDK configuration. Users can now register multiple metric readers (e.g., Console, Prometheus) directly through the NodeSDK constructor. The oldmetricReader(singular) option is now deprecated and will show a warning if used, but remains supported for backward compatibility. Comprehensive tests and documentation have been added. #5760
Migration:
Before:
const sdk = new NodeSDK({ metricReader: myMetricReader });After:
const sdk = new NodeSDK({ metricReaders: [myMetricReader] });Users should migrate to the new
metricReadersarray option for future compatibility. The old option will be removed in an upcoming experimental version.- feat(instrumentation-http): Added support for redacting specific url query string values and url credentials #5743
@rads-1996:bug: Bug Fixes
- fix(otlp-exporter-base): prioritize
esnextexport condition as it is more specific #5458
... (truncated)
Commits
2d37608chore: prepare next release (#5921)9a8c6e0fix(otlp-exporter-base)!: split node and browser config types in two (#5917)b37bfa7test: add webpack browser bundler test (#5919)4f0b628chore(deps): update dependency babel-plugin-istanbul to v7.0.1 (#5912)c8b11e4chore(deps): update actions/setup-node action to v5 (#5913)98f9d72chore: prepare next release (#5903)4636de6chore(deps): update dependency markdownlint-cli2 to v0.18.1 (#5891)ea83923Add subscript to issue templates (#5831)daa4d39chore(deps): lock file maintenance (#5904)af5c2fdchore: prepare next release (#5901)- Additional commits viewable in compare view
Updates @opentelemetry/instrumentation from 0.203.0 to 0.205.0
Release notes
Sourced from @opentelemetry/instrumentation's releases.
experimental/v0.205.0
0.205.0
:boom: Breaking Changes
- fix(otlp-exporter-base)!: split node and browser config types in two #5917
@pichlermarc
- Fixes a bug where Node.js modules would be incorrectly used in the instantiation of a web-targeted exporter
- Breaking changes:
- (user-facing)
createOtlpHttpExportDelegate(OtlpHttpConfiguration)has been changed to take a different, but identical typeOtlpNodeHttpConfigurationto differentiate it from the web-targeted exporters- (user-facing)
convertLegacyHttpOptions(...)now returnsOtlpNodeHttpConfiguration, the returned object's contents remain identical.- (user-facing)
agentFactoryhas been dropped fromOtlpHttpConfigurationas it is node-specific and is now part ofOtlpNodeHttpConfigurationinsteadexperimental/v0.204.0
0.204.0
:boom: Breaking Changes
- feat(api-logs)!: Marked private methods as "conventionally private". #5789
- feat(exporter-otlp-*): support custom HTTP agents #5719
@raphael-theriault-swi
OtlpHttpConfiguration.agentOptionshas been removed and functionality has been rolled intoOtlpHttpConfiguration.agentFactory
- (old)
{ agentOptions: myOptions }- (new)
{ agentFactory: httpAgentFactoryFromOptions(myOptions) }:rocket: Features
- feat(otlp-exporter-base): Add fetch transport for fetch-only environments like service workers. #5807
- when using headers, the Browser exporter now prefers
fetchoverXMLHttpRequestif present. Sending viaXMLHttpRequestwill be removed in a future release.- feat(opentelemetry-configuration): creation of basic ConfigProvider #5809
@maryliag- feat(opentelemetry-configuration): creation of basic FileConfigProvider #5863
@maryliag- feat(sdk-node): Add support for multiple metric readers via the new
metricReadersoption in NodeSDK configuration. Users can now register multiple metric readers (e.g., Console, Prometheus) directly through the NodeSDK constructor. The oldmetricReader(singular) option is now deprecated and will show a warning if used, but remains supported for backward compatibility. Comprehensive tests and documentation have been added. #5760
Migration:
Before:
const sdk = new NodeSDK({ metricReader: myMetricReader });After:
const sdk = new NodeSDK({ metricReaders: [myMetricReader] });Users should migrate to the new
metricReadersarray option for future compatibility. The old option will be removed in an upcoming experimental version.- feat(instrumentation-http): Added support for redacting specific url query string values and url credentials #5743
@rads-1996:bug: Bug Fixes
- fix(otlp-exporter-base): prioritize
esnextexport condition as it is more specific #5458
... (truncated)
Commits
2d37608chore: prepare next release (#5921)9a8c6e0fix(otlp-exporter-base)!: split node and browser config types in two (#5917)b37bfa7test: add webpack browser bundler test (#5919)4f0b628chore(deps): update dependency babel-plugin-istanbul to v7.0.1 (#5912)c8b11e4chore(deps): update actions/setup-node action to v5 (#5913)98f9d72chore: prepare next release (#5903)4636de6chore(deps): update dependency markdownlint-cli2 to v0.18.1 (#5891)ea83923Add subscript to issue templates (#5831)daa4d39chore(deps): lock file maintenance (#5904)af5c2fdchore: prepare next release (#5901)- Additional commits viewable in compare view
Updates @opentelemetry/sdk-logs from 0.203.0 to 0.205.0
Release notes
Sourced from @opentelemetry/sdk-logs's releases.
experimental/v0.205.0
0.205.0
:boom: Breaking Changes
- fix(otlp-exporter-base)!: split node and browser config types in two #5917
@pichlermarc
- Fixes a bug where Node.js modules would be incorrectly used in the instantiation of a web-targeted exporter
- Breaking changes:
- (user-facing)
createOtlpHttpExportDelegate(OtlpHttpConfiguration)has been changed to take a different, but identical typeOtlpNodeHttpConfigurationto differentiate it from the web-targeted exporters- (user-facing)
convertLegacyHttpOptions(...)now returnsOtlpNodeHttpConfiguration, the returned object's contents remain identical.- (user-facing)
agentFactoryhas been dropped fromOtlpHttpConfigurationas it is node-specific and is now part ofOtlpNodeHttpConfigurationinsteadexperimental/v0.204.0
0.204.0
:boom: Breaking Changes
- feat(api-logs)!: Marked private methods as "conventionally private". #5789
- feat(exporter-otlp-*): support custom HTTP agents #5719
@raphael-theriault-swi
OtlpHttpConfiguration.agentOptionshas been removed and functionality has been rolled intoOtlpHttpConfiguration.agentFactory
- (old)
{ agentOptions: myOptions }- (new)
{ agentFactory: httpAgentFactoryFromOptions(myOptions) }:rocket: Features
- feat(otlp-exporter-base): Add fetch transport for fetch-only environments like service workers. #5807
- when using headers, the Browser exporter now prefers
fetchoverXMLHttpRequestif present. Sending viaXMLHttpRequestwill be removed in a future release.- feat(opentelemetry-configuration): creation of basic ConfigProvider #5809
@maryliag- feat(opentelemetry-configuration): creation of basic FileConfigProvider #5863
@maryliag- feat(sdk-node): Add support for multiple metric readers via the new
metricReadersoption in NodeSDK configuration. Users can now register multiple metric readers (e.g., Console, Prometheus) directly through the NodeSDK constructor. The oldmetricReader(singular) option is now deprecated and will show a warning if used, but remains supported for backward compatibility. Comprehensive tests and documentation have been added. #5760
Migration:
Before:
const sdk = new NodeSDK({ metricReader: myMetricReader });After:
const sdk = new NodeSDK({ metricReaders: [myMetricReader] });Users should migrate to the new
metricReadersarray option for future compatibility. The old option will be removed in an upcoming experimental version.- feat(instrumentation-http): Added support for redacting specific url query string values and url credentials #5743
@rads-1996:bug: Bug Fixes
- fix(otlp-exporter-base): prioritize
esnextexport condition as it is more specific #5458
... (truncated)
Commits
2d37608chore: prepare next release (#5921)9a8c6e0fix(otlp-exporter-base)!: split node and browser config types in two (#5917)b37bfa7test: add webpack browser bundler test (#5919)4f0b628chore(deps): update dependency babel-plugin-istanbul to v7.0.1 (#5912)c8b11e4chore(deps): update actions/setup-node action to v5 (#5913)98f9d72chore: prepare next release (#5903)4636de6chore(deps): update dependency markdownlint-cli2 to v0.18.1 (#5891)ea83923Add subscript to issue templates (#5831)daa4d39chore(deps): lock file maintenance (#5904)af5c2fdchore: prepare next release (#5901)- Additional commits viewable in compare view
Updates @vercel/otel from 1.13.0 to 2.0.0
Release notes
Sourced from @vercel/otel's releases.
@vercel/otel@2.0.0Major Changes
#165
7887411Thanks@bengigone! - Add support for OTel JS SDK 2.XBreaking Changes
1. OpenTelemetry SDK dependencies updated
API package (minimum version bumped):
@opentelemetry/api:>=1.9.0 <3.0.0(was>=1.7.0 <2.0.0)Stable packages (updated to v2.x):
@opentelemetry/resources:>=2.0.0 <3.0.0(was>=1.19.0 <2.0.0)@opentelemetry/sdk-metrics:>=2.0.0 <3.0.0(was>=1.19.0 <2.0.0)@opentelemetry/sdk-trace-base:>=2.0.0 <3.0.0(was>=1.19.0 <2.0.0)Experimental packages (updated to v0.2XX):
@opentelemetry/api-logs:>=0.200.0 <0.300.0(was>=0.46.0 <0.200.0)@opentelemetry/instrumentation:>=0.200.0 <0.300.0(was>=0.46.0 <0.200.0)@opentelemetry/sdk-logs:>=0.200.0 <0.300.0(was>=0.46.0 <0.200.0)2. Minimum Node.js version requirement
The minimum supported Node.js has been raised to
^18.19.0 || >=20.6.0to align with OpenTelemetry JS SDK 2.x requirements. This means that support for Node.js 14 and 16 has been dropped.3. Configuration changes
Log Record Processors:
// Before (v1.x) registerOTel({ serviceName: "your-service-name", logRecordProcessor: myProcessor, // Single processor });// After (v2.x) registerOTel({ serviceName: "your-service-name", logRecordProcessors: [myProcessor], // Array of processors });
Metric Readers:
... (truncated)
Commits
Updates next from 15.5.2 to 15.5.4
Release notes
Sourced from next's releases.
v15.5.4
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- fix: ensure onRequestError is invoked when otel enabled (#83343)
- fix: devtools initial position should be from next config (#83571)
- [devtool] fix overlay styles are missing (#83721)
- Turbopack: don't match dynamic pattern for node_modules packages (#83176)
- Turbopack: don't treat metadata routes as RSC (#82911)
- [turbopack] Improve handling of symlink resolution errors in track_glob and read_glob (#83357)
- Turbopack: throw large static metadata error earlier (#82939)
- fix: error overlay not closing when backdrop clicked (#83981)
- Turbopack: flush Node.js worker IPC on error (#84077)
Misc Changes
- [CNA] use linter preference (#83194)
- CI: use KV for test timing data (#83745)
- docs: september improvements and fixes (#83997)
Credits
Huge thanks to
@yiminghe,@huozhi,@devjiwonchoi,@mischnic,@lukesandberg,@ztanner,@icyJoseph,@leerob,@fufuShih,@dwrth,@aymericzip,@obendev,@molebox,@OoMNoO,@pontasan,@styfle,@HondaYt,@ryuapp,@lpalmes, and@ijjkfor helping!v15.5.3
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- fix: validation return types of pages API routes (#83069)
- fix: relative paths in dev in validator.ts (#83073)
- fix: remove satisfies keyword from type validation to preserve old TS compatibility (#83071)
Credits
Huge thanks to
@bgubfor helping!
Commits
40f1d78v15.5.4cb30f0a[backport] docs: september improvements and fixes (#83997)b6a32bb[backport] [CNA] use linter preference (#83194) (#84087)26d61f1[backport] Turbopack: flush Node.js worker IPC on error (#84079)e11e87a[backport] fix: error overlay not closing when backdrop clicked (#83981) (#83...0a29888[backport] fix: devtools initial position should be from next config (#83571)...7a53950[backport] Turbopack: don't treat metadata routes as RSC (#83804)050bdf1[backport] Turbopack: throw large static metadata error earlier (#83816)1f6ea09[backport] Turbopack: Improve handling of symlink resolution errors (#83805)c7d1855[backport] CI: use KV for test timing data (#83860)- Additional commits viewable in compare view
Updates next-intl from 4.3.5 to 4.3.9
Release notes
Sourced from next-intl's releases.
v4.3.9
4.3.9 (2025-09-15)
Bug Fixes
- Prefix pathnames when switching with
useRouterto another locale (#2021) (c82d0af), closes #2020 – by@amannnv4.3.8
4.3.8 (2025-09-12)
Bug Fixes
v4.3.7
4.3.7 (2025-09-09)
Bug Fixes
- Avoid
usePathnameinconsistency in Next.js leading to a hydration error with custom prefixes,localePrefix: 'always'and static rendering (#2012) (bc9cb62), closes #2011 vercel/next.js#73085 #1571 – by@hugotigerv4.3.6
4.3.6 (2025-09-04)
Bug Fixes
Changelog
Sourced from next-intl's changelog.
4.3.9 (2025-09-15)
Bug Fixes
- Prefix pathnames when switching with
useRouterto another locale (#2021) (c82d0af), closes #2020 – by@amannn4.3.8 (2025-09-12)
Bug Fixes
4.3.7 (2025-09-09)
Bug Fixes
- Avoid
usePathnameinconsistency in Next.js leading to a hydration error with custom prefixes,localePrefix: 'always'and static rendering (#2012) (bc9cb62), closes #2011 vercel/next.js#73085 #1571 – by@hugotiger4.3.6 (2025-09-04)
Bug Fixes
Commits
b927eadv4.3.9c82d0affix: Prefix pathnames when switching withuseRouterto another locale (#2021)07149a1docs: Fix link0c3c779docs: Remove feedback linkd2c603ddocs: Mentionx-forwarded-hostfor alternate links42b440adocs: Fix outdated labelc9b065bv4.3.831265b4fix: Avoid double-encoding of already encoded params (#2017)bc4e86ev4.3.7bc9cb62fix: AvoidusePathnameinconsistency in Next.js leading to a hydration erro...- Additional commits viewable in compare view
Updates @next/eslint-plugin-next from 15.5.2 to 15.5.4
Release notes
Sourced from @next/eslint-plugin-next's releases.
v15.5.4
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- fix: ensure onRequestError is invoked when otel enabled (#83343)
- fix: devtools initial position should be from next config (#83571)
- [devtool] fix overlay styles are missing (#83721)
- Turbopack: don't match dynamic pattern for node_modules packages (#83176)
- Turbopack: don't treat metadata routes as RSC (#82911)
- [turbopack] Improve handling of symlink resolution errors in track_glob and read_glob (#83357)
- Turbopack: throw large static metadata error earlier (#82939)
- fix: error overlay not closing when backdrop clicked (#83981)
- Turbopack: flush Node.js worker IPC on error (#84077)
Misc Changes
- [CNA] use linter preference (#83194)
- CI: use KV for test timing data (#83745)
- docs: september improvements and fixes (#83997)
Credits
Huge thanks to
@yiminghe,@huozhi,@devjiwonchoi,@mischnic,@lukesandberg,@ztanner,@icyJoseph,@leerob,@fufuShih,@dwrth,@aymericzip,@obendev,@molebox,@OoMNoO,@pontasan,@styfle,@HondaYt,@ryuapp,@lpalmes, and@ijjkfor helping!v15.5.3
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- fix: validation return types of pages API routes (#83069)
- fix: relative paths in dev in validator.ts (#83073)
- fix: remove satisfies keyword from type validation to preserve old TS compatibility (#83071)
Credits
Huge thanks to
@bgubfor helping!
Commits
40f1d78v15.5.407d1cbcv15.5.3- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
1
3
+303
-270
Package Dependencies
@opentelemetry/instrumentation
npm
0.203.0 → 0.205.0
Minor
@opentelemetry/api-logs
npm
0.203.0 → 0.205.0
Minor
@opentelemetry/sdk-logs
npm
0.203.0 → 0.205.0
Minor
Technical Details
| ID: | 9246472 |
| UUID: | 2883278738 |
| Node ID: | PR_kwDOAj-F4s6r21eS |
| Host: | GitHub |
| Repository: | nodejs/nodejs.org |
| Merge State: | Unknown |