diff --git a/.yarn/versions/624760b9.yml b/.yarn/versions/624760b9.yml new file mode 100644 index 000000000000..fdd7264e3def --- /dev/null +++ b/.yarn/versions/624760b9.yml @@ -0,0 +1,24 @@ +releases: + "@yarnpkg/cli": patch + "@yarnpkg/extensions": patch + "@yarnpkg/plugin-compat": patch + +declined: + - "@yarnpkg/plugin-constraints" + - "@yarnpkg/plugin-dlx" + - "@yarnpkg/plugin-essentials" + - "@yarnpkg/plugin-init" + - "@yarnpkg/plugin-interactive-tools" + - "@yarnpkg/plugin-nm" + - "@yarnpkg/plugin-npm-cli" + - "@yarnpkg/plugin-pack" + - "@yarnpkg/plugin-patch" + - "@yarnpkg/plugin-pnp" + - "@yarnpkg/plugin-pnpm" + - "@yarnpkg/plugin-stage" + - "@yarnpkg/plugin-typescript" + - "@yarnpkg/plugin-version" + - "@yarnpkg/plugin-workspace-tools" + - "@yarnpkg/builder" + - "@yarnpkg/core" + - "@yarnpkg/doctor" diff --git a/packages/yarnpkg-extensions/sources/index.ts b/packages/yarnpkg-extensions/sources/index.ts index 04c9460e40ca..25da3e5c2b3a 100644 --- a/packages/yarnpkg-extensions/sources/index.ts +++ b/packages/yarnpkg-extensions/sources/index.ts @@ -1000,4 +1000,16 @@ export const packageExtensions: Array<[string, PackageExtensionData]> = [ csstype: `^3.0.10`, }, }], + // https://github.com/fastify/fastify-type-provider-typebox/issues/114 + // https://github.com/fastify/fastify-type-provider-typebox/pull/165 + [`@fastify/type-provider-typebox@^5.0.0`, { + peerDependencies: { + fastify: `^5.0.0`, + }, + }], + [`@fastify/type-provider-typebox@^4.0.0`, { + peerDependencies: { + fastify: `^4.0.0`, + }, + }], ];