Skip to content
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

Add --log-order option #3916

Merged
merged 44 commits into from Jun 15, 2023
Merged

Conversation

rafaeltab
Copy link
Contributor

@rafaeltab rafaeltab commented Feb 22, 2023

This PR implements the behavior requested in #219.

Two options are allowed, stream, which changes nothing about the current behavior, and grouped which waits for a task to finish execution before sending the output, this means the logs for each task will be in order instead of interleaved.

This does not impact messages sent by turbo itself, meaning if 5 tasks are started simultaneously, the first 5 messages will be displayed containing cache status, and hashes, and then the 5 tasks' output will be displayed, in chronological order. This was a conscious made because it gives feedback to the user earlier when executing long tasks, it may seem like turbo is unresponsive with long-running tasks if these messages are also sent later.

TODO

  • Add tests
  • Test with tasks that have a lot of output
  • Profile to identify memory consumption impact (Result: Doesn't seem to have much impact from my superficial tests)
Example output

example of --log-order stream:
Command pnpm turbo-prebuilt build --log-order stream --force

• Packages in scope: @turbo/codemod, @turbo/pack-test-harness, @vercel/experimental-nft, @vercel/experimental-nft-next-plugin, @vercel/turbo-tracing-test-app, @vercel/turbopack-next, @vercel/turbopack-node, @vercel/turbopack-runtime, @vercel/webpack-nft, benchmark, cargo-sweep-action, cli, create-turbo, docs, eslint-config-turbo, eslint-plugin-turbo, next-dev-tests, tsconfig, turbo-ignore, turbo-test-utils, turbo-types, turbo-utils
• Running build in 22 packages
• Remote caching disabled
docs:schema: cache bypass, force executing 26aa8e2af2bbfc91
cli:build: cache bypass, force executing 28db6d0b94dff47a
docs:rss: cache bypass, force executing c6b8c6c233658bab
create-turbo:build: cache bypass, force executing 77249a37d122dcdb
@turbo/codemod:build: cache bypass, force executing abe94621df25a6ba
turbo-utils:build: cache bypass, force executing 7b96fa638076be15
@vercel/turbo-tracing-test-app:build: cache bypass, force executing 4139173b9f508286
@turbo/codemod:build: 
@turbo/codemod:build: > @turbo/codemod@1.8.1 build /workspaces/turborepo/packages/turbo-codemod
@turbo/codemod:build: > tsup
@turbo/codemod:build: 
docs:schema:  WARN  Unsupported engine: wanted: {"node":"16.x"} (current: {"node":"v18.13.0","pnpm":"7.18.2"})
cli:build: 
cli:build: > cli@0.0.0 build /workspaces/turborepo/cli
cli:build: > make
cli:build: 
docs:schema: 
docs:schema: > docs@1.0.0 schema /workspaces/turborepo/docs
docs:schema: > turbo-gen ./public/schema.json
docs:schema: 
turbo-utils:build: 
turbo-utils:build: > turbo-utils@0.0.0 build /workspaces/turborepo/packages/turbo-utils
turbo-utils:build: > tsup
turbo-utils:build: 
create-turbo:build: 
create-turbo:build: > create-turbo@1.8.1 build /workspaces/turborepo/packages/create-turbo
create-turbo:build: > tsup
create-turbo:build: 
@vercel/turbo-tracing-test-app:build: 
@vercel/turbo-tracing-test-app:build: > @vercel/turbo-tracing-test-app@ build /workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose
@vercel/turbo-tracing-test-app:build: > cross-env MONGODB_URI=localhost:27017 next build
@vercel/turbo-tracing-test-app:build: 
docs:rss:  WARN  Unsupported engine: wanted: {"node":"16.x"} (current: {"node":"v18.13.0","pnpm":"7.18.2"})
docs:rss: 
docs:rss: > docs@1.0.0 rss /workspaces/turborepo/docs
docs:rss: > node scripts/generate-rss.js
docs:rss: 
cli:build: cd ../crates/turborepo-ffi && CARGO_TARGET_DIR=./target cargo build --release
@turbo/codemod:build: CLI Building entry: src/cli.ts, src/transforms/add-package-manager.ts, src/transforms/create-turbo-config.ts, src/transforms/migrate-env-var-dependencies.ts, src/transforms/set-default-outputs.ts
@turbo/codemod:build: CLI Using tsconfig: tsconfig.json
@turbo/codemod:build: CLI tsup v5.12.9
@turbo/codemod:build: CLI Using tsup config: /workspaces/turborepo/packages/turbo-codemod/tsup.config.ts
@turbo/codemod:build: CLI Target: node12
@turbo/codemod:build: CLI Cleaning output folder
@turbo/codemod:build: CJS Build start
turbo-utils:build: CLI Building entry: src/index.ts
turbo-utils:build: CLI Using tsconfig: tsconfig.json
turbo-utils:build: CLI tsup v5.12.9
turbo-utils:build: CLI Using tsup config: /workspaces/turborepo/packages/turbo-utils/tsup.config.ts
turbo-utils:build: CLI Target: node12
create-turbo:build: CLI Building entry: src/index.ts
create-turbo:build: CLI Using tsconfig: tsconfig.json
create-turbo:build: CLI tsup v5.12.9
create-turbo:build: CLI Using tsup config: /workspaces/turborepo/packages/create-turbo/tsup.config.ts
create-turbo:build: CLI Target: node12
turbo-utils:build: CLI Cleaning output folder
create-turbo:build: CLI Cleaning output folder
create-turbo:build: CJS Build start
turbo-utils:build: CJS Build start
@turbo/codemod:build: CJS ⚡️ Build success in 44ms
@turbo/codemod:build: CJS dist/cli.js                                     15.50 KB
@turbo/codemod:build: CJS dist/transforms/add-package-manager.js          5.58 KB
@turbo/codemod:build: CJS dist/transforms/set-default-outputs.js          5.06 KB
@turbo/codemod:build: CJS dist/transforms/migrate-env-var-dependencies.js 6.11 KB
@turbo/codemod:build: CJS dist/transforms/create-turbo-config.js          4.87 KB
create-turbo:build: CJS ⚡️ Build success in 33ms
create-turbo:build: CJS dist/index.js 14.13 KB
turbo-utils:build: CJS ⚡️ Build success in 94ms
turbo-utils:build: CJS dist/index.js 462.43 KB
cli:build:     Finished release [optimized] target(s) in 0.31s
cli:build: cp -r ../crates/turborepo-ffi/bindings.h \
cli:build:       ../crates/turborepo-ffi/target/release/libturborepo_ffi.a \
cli:build:       ./internal/ffi
cli:build: CGO_ENABLED=1 go build "-ldflags=-s -w" -trimpath -tags go -o go-turbo ./cmd/turbo
turbo-utils:build: DTS Build start
@vercel/turbo-tracing-test-app:build: info  - Skipping linting
@vercel/turbo-tracing-test-app:build: info  - Checking validity of types...
@vercel/turbo-tracing-test-app:build: info  - Creating an optimized production build...
docs:build: cache bypass, force executing 1de3e1c4073b4cf9
docs:build:  WARN  Unsupported engine: wanted: {"node":"16.x"} (current: {"node":"v18.13.0","pnpm":"7.18.2"})
docs:build: 
docs:build: > docs@1.0.0 build /workspaces/turborepo/docs
docs:build: > next build 
docs:build: 
cli:build: cargo build --manifest-path ../crates/turborepo/Cargo.toml
turbo-utils:build: DTS ⚡️ Build success in 1359ms
turbo-utils:build: DTS dist/index.d.ts 524.00 B
eslint-plugin-turbo:build: cache bypass, force executing c6b0afd6a4b23790
turbo-ignore:build: cache bypass, force executing 1dfe43f66db27b04
cli:build:    Compiling turbo v0.1.0 (/workspaces/turborepo/crates/turborepo)
@vercel/turbo-tracing-test-app:build: 
@vercel/turbo-tracing-test-app:build: Could not resolve the @vercel/experimental-nft-linux-x64 directory, turbo tracing may fail.
@vercel/turbo-tracing-test-app:build: Error: spawn node-file-trace ENOENT
@vercel/turbo-tracing-test-app:build:     at ChildProcess._handle.onexit (node:internal/child_process:283:19)
@vercel/turbo-tracing-test-app:build:     at onErrorNT (node:internal/child_process:476:16)
@vercel/turbo-tracing-test-app:build:     at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
@vercel/turbo-tracing-test-app:build:   errno: -2,
@vercel/turbo-tracing-test-app:build:   code: 'ENOENT',
@vercel/turbo-tracing-test-app:build:   syscall: 'spawn node-file-trace',
@vercel/turbo-tracing-test-app:build:   path: 'node-file-trace',
@vercel/turbo-tracing-test-app:build:   spawnargs: [
@vercel/turbo-tracing-test-app:build:     'annotate',
@vercel/turbo-tracing-test-app:build:     '--context-directory',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose',
@vercel/turbo-tracing-test-app:build:     '--exact',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/_app.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/_error.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/[id]/edit.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/api/pets/[id].js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/api/pets.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/new.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/[id].js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/index.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/_document.js'
@vercel/turbo-tracing-test-app:build:   ]
@vercel/turbo-tracing-test-app:build: }
docs:build: info  - Linting and checking validity of types...
eslint-plugin-turbo:build: 
eslint-plugin-turbo:build: > eslint-plugin-turbo@0.0.8 build /workspaces/turborepo/packages/eslint-plugin-turbo
eslint-plugin-turbo:build: > tsup
eslint-plugin-turbo:build: 
turbo-ignore:build: 
turbo-ignore:build: > turbo-ignore@1.8.1 build /workspaces/turborepo/packages/turbo-ignore
turbo-ignore:build: > tsup
turbo-ignore:build: 
turbo-ignore:build: CLI Building entry: src/index.ts
turbo-ignore:build: CLI Using tsconfig: tsconfig.json
turbo-ignore:build: CLI tsup v5.12.9
turbo-ignore:build: CLI Using tsup config: /workspaces/turborepo/packages/turbo-ignore/tsup.config.ts
turbo-ignore:build: CLI Target: node12
turbo-ignore:build: CLI Cleaning output folder
turbo-ignore:build: CJS Build start
eslint-plugin-turbo:build: CLI Building entry: lib/index.ts
eslint-plugin-turbo:build: CLI Using tsconfig: tsconfig.json
eslint-plugin-turbo:build: CLI tsup v6.2.3
eslint-plugin-turbo:build: CLI Using tsup config: /workspaces/turborepo/packages/eslint-plugin-turbo/tsup.config.ts
eslint-plugin-turbo:build: CLI Target: node14
eslint-plugin-turbo:build: CLI Cleaning output folder
eslint-plugin-turbo:build: CJS Build start
turbo-ignore:build: CJS ⚡️ Build success in 103ms
turbo-ignore:build: CJS dist/index.js 216.93 KB
eslint-plugin-turbo:build: CJS dist/index.js 508.77 KB
eslint-plugin-turbo:build: CJS ⚡️ Build success in 81ms
docs:build: info  - Creating an optimized production build...
docs:build: warn  - You are using an experimental edge runtime, the API might change.
cli:build:     Finished dev [unoptimized + debuginfo] target(s) in 6.81s
docs:build: info  - Compiled successfully
docs:build: info  - Collecting page data...
docs:build: info  - Generating static pages (0/84)
docs:build: info  - Generating static pages (21/84)
docs:build: info  - Generating static pages (42/84)
docs:build: info  - Generating static pages (63/84)
docs:build: info  - Generating static pages (84/84)
docs:build: info  - Finalizing page optimization...
docs:build: 
docs:build: Route (pages)                                                          Size     First Load JS
docs:build: ┌ ○ / (329 ms)                                                         13 kB           303 kB
docs:build: ├   └ css/4fe940dfc2dc2e72.css                                         1.62 kB
docs:build: ├   /_app                                                              0 B             110 kB
docs:build: ├ λ /404                                                               762 B           111 kB
docs:build: ├ ℇ /api/binaries/version                                              0 B             110 kB
docs:build: ├ ℇ /api/og                                                            0 B             110 kB
docs:build: ├ λ /api/signup                                                        0 B             110 kB
docs:build: ├ λ /api/user/[id]                                                     0 B             110 kB
docs:build: ├ ○ /blog                                                              9.01 kB         299 kB
docs:build: ├ ○ /blog/joining-vercel                                               7.13 kB         297 kB
docs:build: ├ ○ /blog/saml-sso-now-available                                       7.16 kB         297 kB
docs:build: ├ ○ /blog/turbo-0-4-0                                                  12.1 kB         302 kB
docs:build: ├ ○ /blog/turbo-1-1-0                                                  10.5 kB         301 kB
docs:build: ├ ○ /blog/turbo-1-2-0                                                  11.1 kB         301 kB
docs:build: ├ ○ /blog/turbo-1-3-0                                                  11.7 kB         302 kB
docs:build: ├ ○ /blog/turbo-1-4-0                                                  10.9 kB         301 kB
docs:build: ├ ○ /blog/turbo-1-5-0                                                  11.1 kB         301 kB
docs:build: ├ ○ /blog/turbo-1-6-0                                                  12.3 kB         303 kB
docs:build: ├ ○ /blog/turbo-1-7-0                                                  11 kB           301 kB
docs:build: ├ ○ /blog/turbopack-benchmarks                                         18.2 kB         313 kB
docs:build: ├ ○ /blog/you-might-not-need-typescript-project-references             10.9 kB         301 kB
docs:build: ├ ○ /confirm                                                           5.64 kB         296 kB
docs:build: ├ ○ /pack                                                              13 kB           308 kB
docs:build: ├ ○ /pack/docs                                                         8.91 kB         303 kB
docs:build: ├ ○ /pack/docs/advanced/profiling                                      7.42 kB         298 kB
docs:build: ├ ○ /pack/docs/benchmarks (321 ms)                                     12.3 kB         307 kB
docs:build: ├ ○ /pack/docs/comparisons/BenchmarksCallout                           1.52 kB         114 kB
docs:build: ├ ○ /pack/docs/comparisons/vite                                        8.5 kB          304 kB
docs:build: ├ ○ /pack/docs/comparisons/webpack                                     8.64 kB         304 kB
docs:build: ├ ○ /pack/docs/core-concepts                                           8.19 kB         299 kB
docs:build: ├ ○ /pack/docs/features                                                10.3 kB         305 kB
docs:build: ├ ○ /pack/docs/features/css                                            8.48 kB         299 kB
docs:build: ├ ○ /pack/docs/features/dev-server                                     5.99 kB         296 kB
docs:build: ├ ○ /pack/docs/features/environment-variables                          6.18 kB         297 kB
docs:build: ├ ○ /pack/docs/features/frameworks                                     6.88 kB         297 kB
docs:build: ├ ○ /pack/docs/features/imports                                        6.55 kB         297 kB
docs:build: ├ ○ /pack/docs/features/javascript                                     7.58 kB         298 kB
docs:build: ├ ○ /pack/docs/features/static-assets                                  6.72 kB         297 kB
docs:build: ├ ○ /pack/docs/features/typescript                                     6.64 kB         297 kB
docs:build: ├ ○ /pack/docs/migrating-from-webpack                                  6.04 kB         296 kB
docs:build: ├ ○ /pack/docs/roadmap                                                 6.7 kB          297 kB
docs:build: ├ ○ /pack/docs/why-turbopack                                           7.84 kB         298 kB
docs:build: ├ ○ /privacy                                                           19.5 kB         310 kB
docs:build: ├ ○ /repo                                                              13.1 kB         303 kB
docs:build: ├ ○ /repo/docs                                                         11.7 kB         306 kB
docs:build: ├ ○ /repo/docs/acknowledgements                                        6.63 kB         297 kB
docs:build: ├ ○ /repo/docs/ci                                                      5.55 kB         296 kB
docs:build: ├ ○ /repo/docs/ci/circleci                                             8.8 kB          299 kB
docs:build: ├ ○ /repo/docs/ci/github-actions                                       9.53 kB         300 kB
docs:build: ├ ○ /repo/docs/ci/gitlabci                                             8.71 kB         299 kB
docs:build: ├ ○ /repo/docs/ci/travisci                                             8.36 kB         299 kB
docs:build: ├ ○ /repo/docs/core-concepts/caching                                   16.2 kB         307 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos                                 6.64 kB         297 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos/configuring-workspaces          10.8 kB         301 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos/filtering                       10.8 kB         301 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos/running-tasks                   14 kB           304 kB
docs:build: ├ ○ /repo/docs/core-concepts/remote-caching                            9.76 kB         300 kB
docs:build: ├ ○ /repo/docs/core-concepts/scopes                                    7.86 kB         298 kB
docs:build: ├ ○ /repo/docs/faq                                                     8.36 kB         299 kB
docs:build: ├ ○ /repo/docs/getting-started/add-to-project                          7.64 kB         298 kB
docs:build: ├ ○ /repo/docs/getting-started/create-new (376 ms)                     15.6 kB         306 kB
docs:build: ├ ○ /repo/docs/getting-started/existing-monorepo                       11.6 kB         302 kB
docs:build: ├ ○ /repo/docs/handbook                                                10.8 kB         305 kB
docs:build: ├ ○ /repo/docs/handbook/building-your-app                              7.85 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/deploying-with-docker                          10.3 kB         301 kB
docs:build: ├ ○ /repo/docs/handbook/dev                                            10.4 kB         301 kB
docs:build: ├ ○ /repo/docs/handbook/environment-variables                          6.27 kB         297 kB
docs:build: ├ ○ /repo/docs/handbook/linting                                        6.54 kB         297 kB
docs:build: ├ ○ /repo/docs/handbook/linting/eslint                                 8.09 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/linting/typescript                             8.35 kB         299 kB
docs:build: ├ ○ /repo/docs/handbook/migrating-to-a-monorepo                        7.74 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/package-installation                           8.1 kB          298 kB
docs:build: ├ ○ /repo/docs/handbook/publishing-packages                            6.93 kB         297 kB
docs:build: ├ ○ /repo/docs/handbook/publishing-packages/bundling                   9.24 kB         300 kB
docs:build: ├ ○ /repo/docs/handbook/publishing-packages/versioning-and-publishing  7.9 kB          298 kB
docs:build: ├ ○ /repo/docs/handbook/sharing-code                                   8.54 kB         299 kB
docs:build: ├ ○ /repo/docs/handbook/sharing-code/internal-packages                 11.4 kB         302 kB
docs:build: ├ ○ /repo/docs/handbook/testing                                        8.23 kB         299 kB
docs:build: ├ ○ /repo/docs/handbook/tools/prisma                                   11 kB           301 kB
docs:build: ├ ○ /repo/docs/handbook/tools/storybook                                10.2 kB         301 kB
docs:build: ├ ○ /repo/docs/handbook/troubleshooting                                6.4 kB          297 kB
docs:build: ├ ○ /repo/docs/handbook/what-is-a-monorepo                             7.53 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/workspaces                                     9.49 kB         300 kB
docs:build: ├ ○ /repo/docs/installing                                              7.99 kB         298 kB
docs:build: ├ ○ /repo/docs/reference/codemods                                      9.48 kB         300 kB
docs:build: ├ ○ /repo/docs/reference/command-line-reference                        17.6 kB         308 kB
docs:build: ├ ○ /repo/docs/reference/configuration                                 12.4 kB         303 kB
docs:build: ├ ○ /repo/docs/troubleshooting                                         6.79 kB         297 kB
docs:build: ├ ○ /repo/docs/upgrading-to-v1                                         7.78 kB         298 kB
docs:build: ├ ○ /showcase                                                          7.74 kB         298 kB
docs:build: └ ○ /terms                                                             13.7 kB         304 kB
docs:build: + First Load JS shared by all                                          118 kB
docs:build:   ├ chunks/framework-4f701f8739df575c.js                               45.7 kB
docs:build:   ├ chunks/main-d1c0b5283254828a.js                                    36.2 kB
docs:build:   ├ chunks/pages/_app-5663c2bdc35133ad.js                              26.8 kB
docs:build:   ├ chunks/webpack-bbaf38ad0ef722f1.js                                 1.24 kB
docs:build:   └ css/6f99d22332d8e331.css                                           8.23 kB
docs:build: 
docs:build: ℇ  (Streaming)  server-side renders with streaming (uses React 18 SSR streaming or Server Components)
docs:build: λ  (Server)     server-side renders at runtime (uses getInitialProps or getServerSideProps)
docs:build: ○  (Static)     automatically rendered as static HTML (uses no initial props)
docs:build: 

 Tasks:    10 successful, 10 total
Cached:    0 cached, 10 total
  Time:    19.268s

example of --log-order grouped:
Command pnpm turbo-prebuilt build --log-order grouped --force

• Packages in scope: , @turbo/codemod, @turbo/pack-test-harness, @turbo/workspaces, @vercel/experimental-nft, @vercel/experimental-nft-next-plugin, @vercel/turbo-tracing-test-app, @vercel/turbopack-next, @vercel/turbopack-node, @vercel/turbopack-runtime, @vercel/webpack-nft, benchmark, cargo-sweep-action, cli, create-turbo, docs, eslint-config-turbo, eslint-plugin-turbo, next-dev-tests, tsconfig, turbo-ignore, turbo-test-utils, turbo-types, turbo-utils, turbopack-bump-action
• Running build in 25 packages
• Remote caching disabled
docs:rss: cache bypass, force executing 6992e88675a2f53d
docs:rss:  WARN  Unsupported engine: wanted: {"node":"16.x"} (current: {"node":"v18.14.2","pnpm":"7.18.2"})
docs:rss: 
docs:rss: > docs@1.0.0 rss /workspaces/turborepo/docs
docs:rss: > node scripts/generate-rss.js
docs:rss: 
create-turbo:build: cache bypass, force executing 5a0616875e9bbd84
create-turbo:build: 
create-turbo:build: > create-turbo@1.8.4-canary.2 build /workspaces/turborepo/packages/create-turbo
create-turbo:build: > tsup
create-turbo:build: 
create-turbo:build: CLI Building entry: src/index.ts
create-turbo:build: CLI Using tsconfig: tsconfig.json
create-turbo:build: CLI tsup v5.12.9
create-turbo:build: CLI Using tsup config: /workspaces/turborepo/packages/create-turbo/tsup.config.ts
create-turbo:build: CLI Target: node12
create-turbo:build: CLI Cleaning output folder
create-turbo:build: CJS Build start
create-turbo:build: CJS ⚡️ Build success in 30ms
create-turbo:build: CJS dist/index.js 14.13 KB
docs:schema: cache bypass, force executing 101b7bd7191e5e15
docs:schema:  WARN  Unsupported engine: wanted: {"node":"16.x"} (current: {"node":"v18.14.2","pnpm":"7.18.2"})
docs:schema: 
docs:schema: > docs@1.0.0 schema /workspaces/turborepo/docs
docs:schema: > turbo-gen ./public/schema.json
docs:schema: 
turbo-utils:build: cache bypass, force executing bb7db471c8540c76
turbo-utils:build: 
turbo-utils:build: > turbo-utils@0.0.0 build /workspaces/turborepo/packages/turbo-utils
turbo-utils:build: > tsup
turbo-utils:build: 
turbo-utils:build: CLI Building entry: src/getTurboConfigs.ts, src/getTurboRoot.ts, src/index.ts, src/managers.ts, src/searchUp.ts
turbo-utils:build: CLI Using tsconfig: tsconfig.json
turbo-utils:build: CLI tsup v5.12.9
turbo-utils:build: CLI Using tsup config: /workspaces/turborepo/packages/turbo-utils/tsup.config.ts
turbo-utils:build: CLI Target: node12
turbo-utils:build: CLI Cleaning output folder
turbo-utils:build: ESM Build start
turbo-utils:build: CJS Build start
turbo-utils:build: ESM ⚡️ Build success in 145ms
turbo-utils:build: CJS ⚡️ Build success in 145ms
turbo-utils:build: ESM dist/getTurboConfigs.mjs 145.00 B
turbo-utils:build: ESM dist/getTurboRoot.mjs    121.00 B
turbo-utils:build: ESM dist/index.mjs           304.00 B
turbo-utils:build: ESM dist/chunk-XV2VEVY5.mjs  115.36 KB
turbo-utils:build: ESM dist/chunk-E2BG5DFL.mjs  74.87 KB
turbo-utils:build: ESM dist/managers.mjs        107.00 B
turbo-utils:build: ESM dist/chunk-RHGHL3A2.mjs  26.06 KB
turbo-utils:build: ESM dist/chunk-KR3PLA7Q.mjs  354.00 B
turbo-utils:build: ESM dist/chunk-7V4YI5ZR.mjs  898.00 B
turbo-utils:build: ESM dist/searchUp.mjs        87.00 B
turbo-utils:build: CJS dist/getTurboConfigs.js 258.00 B
turbo-utils:build: CJS dist/index.js           563.00 B
turbo-utils:build: CJS dist/chunk-SBV5SFXW.js  120.84 KB
turbo-utils:build: CJS dist/chunk-A4TZEQDN.js  79.50 KB
turbo-utils:build: CJS dist/managers.js        216.00 B
turbo-utils:build: CJS dist/chunk-LHVOOGFW.js  28.96 KB
turbo-utils:build: CJS dist/chunk-5WD5DA6C.js  742.00 B
turbo-utils:build: CJS dist/getTurboRoot.js    227.00 B
turbo-utils:build: CJS dist/searchUp.js        196.00 B
turbo-utils:build: CJS dist/chunk-AFE5FDX6.js  994.00 B
turbo-utils:build: DTS Build start
turbo-utils:build: DTS ⚡️ Build success in 1787ms
turbo-utils:build: DTS dist/getTurboConfigs.d.ts 357.00 B
turbo-utils:build: DTS dist/getTurboRoot.d.ts    156.00 B
turbo-utils:build: DTS dist/index.d.ts           289.00 B
turbo-utils:build: DTS dist/searchUp.d.ts        198.00 B
turbo-utils:build: DTS dist/managers.d.ts        333.00 B
@vercel/turbo-tracing-test-app:build: cache bypass, force executing 51e584a9f0d471e2
@vercel/turbo-tracing-test-app:build: 
@vercel/turbo-tracing-test-app:build: > @vercel/turbo-tracing-test-app@ build /workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose
@vercel/turbo-tracing-test-app:build: > cross-env MONGODB_URI=localhost:27017 next build
@vercel/turbo-tracing-test-app:build: 
@vercel/turbo-tracing-test-app:build: info  - Skipping linting
@vercel/turbo-tracing-test-app:build: info  - Checking validity of types...
@vercel/turbo-tracing-test-app:build: info  - Creating an optimized production build...
@vercel/turbo-tracing-test-app:build: 
@vercel/turbo-tracing-test-app:build: Could not resolve the @vercel/experimental-nft-linux-x64 directory, turbo tracing may fail.
@vercel/turbo-tracing-test-app:build: Error: spawn node-file-trace ENOENT
@vercel/turbo-tracing-test-app:build:     at ChildProcess._handle.onexit (node:internal/child_process:283:19)
@vercel/turbo-tracing-test-app:build:     at onErrorNT (node:internal/child_process:476:16)
@vercel/turbo-tracing-test-app:build:     at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
@vercel/turbo-tracing-test-app:build:   errno: -2,
@vercel/turbo-tracing-test-app:build:   code: 'ENOENT',
@vercel/turbo-tracing-test-app:build:   syscall: 'spawn node-file-trace',
@vercel/turbo-tracing-test-app:build:   path: 'node-file-trace',
@vercel/turbo-tracing-test-app:build:   spawnargs: [
@vercel/turbo-tracing-test-app:build:     'annotate',
@vercel/turbo-tracing-test-app:build:     '--context-directory',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose',
@vercel/turbo-tracing-test-app:build:     '--exact',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/_app.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/_error.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/[id]/edit.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/api/pets/[id].js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/api/pets.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/new.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/[id].js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/index.js',
@vercel/turbo-tracing-test-app:build:     '/workspaces/turborepo/packages/turbo-tracing-next-plugin/test/with-mongodb-mongoose/.next/server/pages/_document.js'
@vercel/turbo-tracing-test-app:build:   ]
@vercel/turbo-tracing-test-app:build: }
@turbo/codemod:build: cache bypass, force executing ad744f2696a1849e
@turbo/codemod:build: 
@turbo/codemod:build: > @turbo/codemod@1.8.4-canary.2 build /workspaces/turborepo/packages/turbo-codemod
@turbo/codemod:build: > tsup
@turbo/codemod:build: 
@turbo/codemod:build: CLI Building entry: src/cli.ts, src/transforms/add-package-manager.ts, src/transforms/create-turbo-config.ts, src/transforms/migrate-env-var-dependencies.ts, src/transforms/set-default-outputs.ts
@turbo/codemod:build: CLI Using tsconfig: tsconfig.json
@turbo/codemod:build: CLI tsup v5.12.9
@turbo/codemod:build: CLI Using tsup config: /workspaces/turborepo/packages/turbo-codemod/tsup.config.ts
@turbo/codemod:build: CLI Target: node12
@turbo/codemod:build: CLI Cleaning output folder
@turbo/codemod:build: CJS Build start
@turbo/codemod:build: CJS ⚡️ Build success in 94ms
@turbo/codemod:build: CJS dist/transforms/create-turbo-config.js          4.87 KB
@turbo/codemod:build: CJS dist/cli.js                                     15.53 KB
@turbo/codemod:build: CJS dist/transforms/add-package-manager.js          5.59 KB
@turbo/codemod:build: CJS dist/transforms/migrate-env-var-dependencies.js 220.40 KB
@turbo/codemod:build: CJS dist/transforms/set-default-outputs.js          219.33 KB
turbo-ignore:build: cache bypass, force executing 43855166fcef3ff7
turbo-ignore:build: 
turbo-ignore:build: > turbo-ignore@1.8.4-canary.2 build /workspaces/turborepo/packages/turbo-ignore
turbo-ignore:build: > tsup
turbo-ignore:build: 
turbo-ignore:build: CLI Building entry: src/index.ts
turbo-ignore:build: CLI Using tsconfig: tsconfig.json
turbo-ignore:build: CLI tsup v5.12.9
turbo-ignore:build: CLI Using tsup config: /workspaces/turborepo/packages/turbo-ignore/tsup.config.ts
turbo-ignore:build: CLI Target: node12
turbo-ignore:build: CLI Cleaning output folder
turbo-ignore:build: CJS Build start
turbo-ignore:build: CJS ⚡️ Build success in 83ms
turbo-ignore:build: CJS dist/index.js 220.24 KB
eslint-plugin-turbo:build: cache bypass, force executing 889247e372d649a7
eslint-plugin-turbo:build: 
eslint-plugin-turbo:build: > eslint-plugin-turbo@0.0.9 build /workspaces/turborepo/packages/eslint-plugin-turbo
eslint-plugin-turbo:build: > tsup
eslint-plugin-turbo:build: 
eslint-plugin-turbo:build: CLI Building entry: lib/index.ts
eslint-plugin-turbo:build: CLI Using tsconfig: tsconfig.json
eslint-plugin-turbo:build: CLI tsup v6.2.3
eslint-plugin-turbo:build: CLI Using tsup config: /workspaces/turborepo/packages/eslint-plugin-turbo/tsup.config.ts
eslint-plugin-turbo:build: CLI Target: node14
eslint-plugin-turbo:build: CLI Cleaning output folder
eslint-plugin-turbo:build: CJS Build start
eslint-plugin-turbo:build: CJS dist/index.js 217.52 KB
eslint-plugin-turbo:build: CJS ⚡️ Build success in 77ms
turbopack-bump-action:build: cache bypass, force executing 55688d62d2f92528
turbopack-bump-action:build: 
turbopack-bump-action:build: > turbopack-bump-action@1.0.0 build /workspaces/turborepo/.github/actions/turbopack-bump
turbopack-bump-action:build: > ncc build src/index.ts -o dist --source-map --minify
turbopack-bump-action:build: 
turbopack-bump-action:build: ncc: Version 0.36.0
turbopack-bump-action:build: ncc: Compiling file index.js into CJS
turbopack-bump-action:build: ncc: Using typescript@4.9.4 (local user-provided)
turbopack-bump-action:build:   40kB  dist/sourcemap-register.js
turbopack-bump-action:build:  449kB  dist/index.js
turbopack-bump-action:build:  528kB  dist/index.js.map
turbopack-bump-action:build:  528kB  dist/index.js.map
turbopack-bump-action:build: 1017kB  [5023ms] - ncc 0.36.0
@turbo/workspaces:build: cache bypass, force executing 86fcdfffe65164e6
@turbo/workspaces:build: 
@turbo/workspaces:build: > @turbo/workspaces@0.0.0 build /workspaces/turborepo/packages/turbo-workspaces
@turbo/workspaces:build: > tsup
@turbo/workspaces:build: 
@turbo/workspaces:build: CLI Building entry: src/index.ts, src/cli.ts
@turbo/workspaces:build: CLI Using tsconfig: tsconfig.json
@turbo/workspaces:build: CLI tsup v5.12.9
@turbo/workspaces:build: CLI Using tsup config: /workspaces/turborepo/packages/turbo-workspaces/tsup.config.ts
@turbo/workspaces:build: CLI Target: node12
@turbo/workspaces:build: CLI Cleaning output folder
@turbo/workspaces:build: CJS Build start
@turbo/workspaces:build: CJS ⚡️ Build success in 52ms
@turbo/workspaces:build: CJS dist/index.js 25.55 KB
@turbo/workspaces:build: CJS dist/cli.js   32.41 KB
@turbo/workspaces:build: DTS Build start
@turbo/workspaces:build: DTS ⚡️ Build success in 2280ms
@turbo/workspaces:build: DTS dist/index.d.ts 2.77 KB
@turbo/workspaces:build: DTS dist/cli.d.ts   20.00 B
cli:build: cache bypass, force executing fec938b594815466
cli:build: 
cli:build: > cli@0.0.0 build /workspaces/turborepo/cli
cli:build: > make
cli:build: 
cli:build: cd ../crates/turborepo-ffi && cargo build --release --target-dir ./target
cli:build: cp ../crates/turborepo-ffi/bindings.h ./internal/ffi/bindings.h
cli:build: cp ../crates/turborepo-ffi/target/release/libturborepo_ffi.a ./internal/ffi/libturborepo_ffi_linux_amd64.a
cli:build: CGO_ENABLED=1 go build "-ldflags=-s -w" -trimpath -tags go -o go-turbo ./cmd/turbo
cli:build: cargo build --manifest-path ../crates/turborepo/Cargo.toml
cli:build:     Finished release [optimized] target(s) in 0.39s
cli:build:    Compiling turbo v0.1.0 (/workspaces/turborepo/crates/turborepo)
cli:build:     Finished dev [unoptimized + debuginfo] target(s) in 7.73s
docs:build: cache bypass, force executing e214d8681526ccee
docs:build:  WARN  Unsupported engine: wanted: {"node":"16.x"} (current: {"node":"v18.14.2","pnpm":"7.18.2"})
docs:build: 
docs:build: > docs@1.0.0 build /workspaces/turborepo/docs
docs:build: > next build 
docs:build: 
docs:build: info  - Linting and checking validity of types...
docs:build: info  - Creating an optimized production build...
docs:build: info  - Compiled successfully
docs:build: info  - Collecting page data...
docs:build: info  - Generating static pages (0/88)
docs:build: info  - Generating static pages (22/88)
docs:build: info  - Generating static pages (44/88)
docs:build: info  - Generating static pages (66/88)
docs:build: No meta.json found for with-nextjs, excluding from docs
docs:build: No meta.json found for with-npm, excluding from docs
docs:build: No meta.json found for with-rollup, excluding from docs
docs:build: No meta.json found for with-vite, excluding from docs
docs:build: No meta.json found for with-yarn, excluding from docs
docs:build: No meta.json found for with-nextjs, excluding from docs
docs:build: No meta.json found for with-npm, excluding from docs
docs:build: No meta.json found for with-rollup, excluding from docs
docs:build: No meta.json found for with-vite, excluding from docs
docs:build: No meta.json found for with-yarn, excluding from docs
docs:build: info  - Generating static pages (88/88)
docs:build: info  - Finalizing page optimization...
docs:build: 
docs:build: Route (pages)                                                           Size     First Load JS
docs:build: ┌ ○ / (321 ms)                                                          13.2 kB         304 kB
docs:build: ├   └ css/377126b9545f3238.css                                          1.61 kB
docs:build: ├   /_app                                                               0 B             110 kB
docs:build: ├ λ /404                                                                762 B           111 kB
docs:build: ├ ℇ /api/binaries/version                                               0 B             110 kB
docs:build: ├ ℇ /api/og                                                             0 B             110 kB
docs:build: ├ λ /api/signup                                                         0 B             110 kB
docs:build: ├ λ /api/user/[id]                                                      0 B             110 kB
docs:build: ├ ○ /blog                                                               9.2 kB          300 kB
docs:build: ├ ○ /blog/joining-vercel                                                7.33 kB         298 kB
docs:build: ├ ○ /blog/saml-sso-now-available                                        7.35 kB         298 kB
docs:build: ├ ○ /blog/turbo-0-4-0                                                   12.3 kB         303 kB
docs:build: ├ ○ /blog/turbo-1-1-0                                                   10.7 kB         301 kB
docs:build: ├ ○ /blog/turbo-1-2-0                                                   11.3 kB         302 kB
docs:build: ├ ○ /blog/turbo-1-3-0                                                   11.9 kB         302 kB
docs:build: ├ ○ /blog/turbo-1-4-0                                                   11.1 kB         302 kB
docs:build: ├ ○ /blog/turbo-1-5-0                                                   11.3 kB         302 kB
docs:build: ├ ○ /blog/turbo-1-6-0                                                   12.5 kB         303 kB
docs:build: ├ ○ /blog/turbo-1-7-0                                                   11.2 kB         302 kB
docs:build: ├ ○ /blog/turbo-1-8-0 (397 ms)                                          9.85 kB         300 kB
docs:build: ├ ○ /blog/turbopack-benchmarks (344 ms)                                 18.4 kB         313 kB
docs:build: ├ ○ /blog/you-might-not-need-typescript-project-references              11.1 kB         301 kB
docs:build: ├ ○ /confirm                                                            5.84 kB         296 kB
docs:build: ├ ○ /pack                                                               13.2 kB         308 kB
docs:build: ├ ○ /pack/docs                                                          9.04 kB         303 kB
docs:build: ├ ○ /pack/docs/advanced/profiling                                       7.66 kB         298 kB
docs:build: ├ ○ /pack/docs/benchmarks (323 ms)                                      12.4 kB         308 kB
docs:build: ├ ○ /pack/docs/comparisons/BenchmarksCallout                            1.52 kB         114 kB
docs:build: ├ ○ /pack/docs/comparisons/vite                                         8.7 kB          304 kB
docs:build: ├ ○ /pack/docs/comparisons/webpack                                      8.83 kB         304 kB
docs:build: ├ ○ /pack/docs/core-concepts                                            8.41 kB         299 kB
docs:build: ├ ○ /pack/docs/features (370 ms)                                        10.5 kB         305 kB
docs:build: ├ ○ /pack/docs/features/css                                             8.68 kB         299 kB
docs:build: ├ ○ /pack/docs/features/customizing-turbopack (397 ms)                  9.34 kB         300 kB
docs:build: ├ ○ /pack/docs/features/dev-server (333 ms)                             6.19 kB         297 kB
docs:build: ├ ○ /pack/docs/features/environment-variables (445 ms)                  6.38 kB         297 kB
docs:build: ├ ○ /pack/docs/features/frameworks                                      7.08 kB         297 kB
docs:build: ├ ○ /pack/docs/features/imports                                         6.76 kB         297 kB
docs:build: ├ ○ /pack/docs/features/javascript                                      7.78 kB         298 kB
docs:build: ├ ○ /pack/docs/features/static-assets                                   6.92 kB         297 kB
docs:build: ├ ○ /pack/docs/features/typescript                                      6.84 kB         297 kB
docs:build: ├ ○ /pack/docs/migrating-from-webpack                                   7.58 kB         298 kB
docs:build: ├ ○ /pack/docs/roadmap                                                  6.9 kB          297 kB
docs:build: ├ ○ /pack/docs/why-turbopack                                            8.03 kB         298 kB
docs:build: ├ ○ /privacy                                                            19.7 kB         310 kB
docs:build: ├ ○ /repo                                                               13.3 kB         304 kB
docs:build: ├ ● /repo/docs (ISR: 86400 Seconds)                                     11.8 kB         306 kB
docs:build: ├ ○ /repo/docs/acknowledgements                                         6.83 kB         297 kB
docs:build: ├ ○ /repo/docs/ci                                                       5.75 kB         296 kB
docs:build: ├ ○ /repo/docs/ci/circleci (311 ms)                                     9 kB            299 kB
docs:build: ├ ○ /repo/docs/ci/github-actions (305 ms)                               9.74 kB         300 kB
docs:build: ├ ○ /repo/docs/ci/gitlabci                                              8.91 kB         299 kB
docs:build: ├ ○ /repo/docs/ci/travisci                                              8.57 kB         299 kB
docs:build: ├ ○ /repo/docs/core-concepts/caching (384 ms)                           16.4 kB         307 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos                                  6.83 kB         297 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos/configuring-workspaces (536 ms)  11 kB           301 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos/filtering                        11 kB           301 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos/running-tasks                    14.2 kB         305 kB
docs:build: ├ ○ /repo/docs/core-concepts/monorepos/skipping-tasks                   8.61 kB         299 kB
docs:build: ├ ○ /repo/docs/core-concepts/remote-caching                             9.95 kB         300 kB
docs:build: ├ ○ /repo/docs/core-concepts/scopes                                     8.06 kB         298 kB
docs:build: ├ ○ /repo/docs/faq (343 ms)                                             8.58 kB         299 kB
docs:build: ├ ○ /repo/docs/getting-started/add-to-project                           7.84 kB         298 kB
docs:build: ├ ○ /repo/docs/getting-started/create-new (375 ms)                      16.1 kB         306 kB
docs:build: ├ ○ /repo/docs/getting-started/existing-monorepo                        11.8 kB         302 kB
docs:build: ├ ● /repo/docs/getting-started/from-example (ISR: 86400 Seconds)        9.42 kB         304 kB
docs:build: ├ ○ /repo/docs/handbook                                                 11 kB           305 kB
docs:build: ├ ○ /repo/docs/handbook/building-your-app                               8.05 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/deploying-with-docker                           10.5 kB         301 kB
docs:build: ├ ○ /repo/docs/handbook/dev                                             10.6 kB         301 kB
docs:build: ├ ○ /repo/docs/handbook/environment-variables                           6.46 kB         297 kB
docs:build: ├ ○ /repo/docs/handbook/linting                                         6.76 kB         297 kB
docs:build: ├ ○ /repo/docs/handbook/linting/eslint                                  8.29 kB         299 kB
docs:build: ├ ○ /repo/docs/handbook/linting/typescript                              8.55 kB         299 kB
docs:build: ├ ○ /repo/docs/handbook/migrating-to-a-monorepo                         7.95 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/package-installation                            8.3 kB          299 kB
docs:build: ├ ○ /repo/docs/handbook/publishing-packages                             7.13 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/publishing-packages/bundling                    9.44 kB         300 kB
docs:build: ├ ○ /repo/docs/handbook/publishing-packages/versioning-and-publishing   8.11 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/sharing-code                                    8.73 kB         299 kB
docs:build: ├ ○ /repo/docs/handbook/sharing-code/internal-packages                  11.6 kB         302 kB
docs:build: ├ ○ /repo/docs/handbook/testing                                         8.43 kB         299 kB
docs:build: ├ ○ /repo/docs/handbook/tools/prisma                                    11.2 kB         302 kB
docs:build: ├ ○ /repo/docs/handbook/tools/storybook                                 10.4 kB         301 kB
docs:build: ├ ○ /repo/docs/handbook/troubleshooting                                 6.6 kB          297 kB
docs:build: ├ ○ /repo/docs/handbook/what-is-a-monorepo                              7.73 kB         298 kB
docs:build: ├ ○ /repo/docs/handbook/workspaces                                      9.69 kB         300 kB
docs:build: ├ ○ /repo/docs/installing                                               8.2 kB          299 kB
docs:build: ├ ○ /repo/docs/reference/codemods                                       9.68 kB         300 kB
docs:build: ├ ○ /repo/docs/reference/command-line-reference                         18 kB           308 kB
docs:build: ├ ○ /repo/docs/reference/configuration                                  12.6 kB         303 kB
docs:build: ├ ○ /repo/docs/troubleshooting                                          7.01 kB         297 kB
docs:build: ├ ○ /repo/docs/upgrading-to-v1                                          7.99 kB         298 kB
docs:build: ├ ○ /showcase                                                           7.98 kB         298 kB
docs:build: └ ○ /terms                                                              13.9 kB         304 kB
docs:build: + First Load JS shared by all                                           118 kB
docs:build:   ├ chunks/framework-4f701f8739df575c.js                                45.7 kB
docs:build:   ├ chunks/main-d1c0b5283254828a.js                                     36.2 kB
docs:build:   ├ chunks/pages/_app-5663c2bdc35133ad.js                               26.8 kB
docs:build:   ├ chunks/webpack-bbaf38ad0ef722f1.js                                  1.24 kB
docs:build:   └ css/0140c62a22199f8f.css                                            8.23 kB
docs:build: 
docs:build: ℇ  (Streaming)  server-side renders with streaming (uses React 18 SSR streaming or Server Components)
docs:build: λ  (Server)     server-side renders at runtime (uses getInitialProps or getServerSideProps)
docs:build: ○  (Static)     automatically rendered as static HTML (uses no initial props)
docs:build: ●  (SSG)        automatically generated as static HTML + JSON (uses getStaticProps)
docs:build:    (ISR)        incremental static regeneration (uses revalidate in getStaticProps)
docs:build: 
docs:build: warn  - You are using an experimental edge runtime, the API might change.

 Tasks:    12 successful, 12 total
Cached:    0 cached, 12 total
  Time:    21.042s

@vercel
Copy link

vercel bot commented Feb 22, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
examples-basic-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
examples-cra-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
examples-designsystem-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
examples-gatsby-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
examples-kitchensink-blog ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
examples-native-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
examples-svelte-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
examples-tailwind-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
examples-vite-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 15, 2023 6:20pm
1 Ignored Deployment
Name Status Preview Comments Updated (UTC)
examples-nonmonorepo ⬜️ Ignored (Inspect) Jun 15, 2023 6:20pm

@vercel
Copy link

vercel bot commented Feb 22, 2023

@rafaeltab is attempting to deploy a commit to the Vercel Team on Vercel.

A member of the Team first needs to authorize it.

@rafaeltab
Copy link
Contributor Author

rafaeltab commented Jun 9, 2023

I tried running the benchmark, but I was experiencing some trouble. When I finally got it to run in my branch I got the following output:

[
  {
    "name": "Clean Build",
    "value": 701180,
    "unit": "ms",
    "range": "0"
  },
  {
    "name": "Cached Build - No Change",
    "value": 1368.6,
    "unit": "ms",
    "range": "212"
  },
  {
    "name": "Cached Build - Code Change",
    "value": 1352.4,
    "unit": "ms",
    "range": "252"
  },
  {
    "name": "Cached Build - Dependency Change",
    "value": 9267.6,
    "unit": "ms",
    "range": "39084"
  }
]

On main, however, I kept getting unexpected cache hits, even when I deleted node modules, and deleted the entire large monorepo directory. For that reason, I am unable to benchmark main right now. I might give it a shot again tomorrow.

$ . ${TESTDIR}/../_helpers/setup_monorepo.sh $(pwd) ordered

# Build in stream order. All the .*'s are unpredictable lines, however the amount of lines is predictable.
$ ${TURBO} run build --log-order stream --force
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why use --force here? It's not relevant to the test, can we remove?

$ . ${TESTDIR}/../../../helpers/setup.sh
$ . ${TESTDIR}/../_helpers/setup_monorepo.sh $(pwd) ordered

# Build in stream order. All the .*'s are unpredictable lines, however the amount of lines is predictable.
Copy link
Contributor

@mehulkar mehulkar Jun 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that makes sense. can you add some comments about how the last 3 lines are the same in streamed tests, and wouldn't be the same for grouped logging?

Copy link
Contributor

@gsoltis gsoltis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for sticking with this, it looks great!

@rafaeltab
Copy link
Contributor Author

Woohoo it got merged! Thanks for your support during development @mehulkar @gsoltis

renovate bot added a commit to Asjas/platform that referenced this pull request Jun 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.10.3` ->
`1.10.4`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.4) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4):
Turborepo v1.10.4

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.4 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5250
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5237
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[vercel/turbo#3090
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5263
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5262
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5224
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5251
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[vercel/turbo#5269
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5271
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5274
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5275
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5277
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5278
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5273
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5283
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5284
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[vercel/turbo#5285
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5203
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5255
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5286
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5287
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5300
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5303
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5305
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5309
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[vercel/turbo#3916
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5313
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5312
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5310
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5316
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5317
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5319
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5297
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5320
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5322
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5323
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5329
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5248
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5342
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5340
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5344
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5346

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[vercel/turbo#5252
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[vercel/turbo#4883
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[vercel/turbo#3090
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[vercel/turbo#5269

**Full Changelog**:
vercel/turbo@v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Asjas/platform).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to timelessco/js-bottomsheet that referenced this pull request Jun 21, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.10.3` -> `^1.10.4`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4): Turborepo v1.10.4

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5250
-   feat(turborepo): Port Manual hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5237
-   Docs: prior to run testcases, add guides to install dependencies for testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in [vercel/turbo#3090
-   fix(gen): fix ts config interference by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5263
-   release(turborepo): 1.10.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5262
-   feat(examples): update basic name on docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5224
-   feat(turborepo): port git-based hashing with inputs by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5251
-   Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in [vercel/turbo#5269
-   feat(ci): conditionally set jest verbosity by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5271
-   fix(turborepo): Tighten build globs by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5274
-   fix(turborepo): Fix path match for parent dir in subtree match case by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5275
-   chore(turborepo): Move SCM to use vendored wax crate by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5277
-   release(turborepo): 1.10.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5278
-   fix(turborepo): avoid globbing directories due to ancestor truncation by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5273
-   release(turborepo): 1.10.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5283
-   fix(spaces): read logs correctly when invoked from subdirectory by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5284
-   Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5285
-   feat(turborepo): Run outline pt 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5203
-   feat(lockfiles): add rust implementation for yarn1 by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5255
-   release(turborepo): 1.10.4-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5286
-   feat(turborepo): Report more details when go-turbo exits by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5287
-   docs(examples): update examples and docs to use node 18 by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5300
-   update dependencies to sync with next.js by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5303
-   feat(cache): Add ability to disable remote cache from turbo.json by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5305
-   feat(turborepo): Hash with libgit2 by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5309
-   Add --log-order option by [@&#8203;rafaeltab](https://togithub.com/rafaeltab) in [vercel/turbo#3916
-   release(turborepo): 1.10.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5313
-   feat(turborepo): A few cleanup nits around log grouping by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5312
-   feat(run outline): Hide package graph internals by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5310
-   feat(logging): enable setting log order with an environment variable by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5316
-   feat(cli): Add ability to pass --remote-only=false from CLI by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5317
-   fix(turborepo): Re-enable some tests on windows by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5319
-   refactor(turborepo): cli::run and args processing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5297
-   feat(logging): add "auto" options for log prefixing and ordering by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5320
-   Fix ESLint script command. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5322
-   feat(turborepo): Add context to glob errors by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5323
-   fix(turbo): print help message when turbo called with flags/env vars but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5329
-   refactor(turborepo): Move paths to UTF-8 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5248
-   Add Vercel to CI providers. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5342
-   fix(turborepo): Hashing symlinks is erroring by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5340
-   release(turborepo): 1.10.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5344
-   fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5346

#### New Contributors

-   [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel) made their first contribution in [vercel/turbo#5252
-   [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first contribution in [vercel/turbo#4883
-   [@&#8203;92hackers](https://togithub.com/92hackers) made their first contribution in [vercel/turbo#3090
-   [@&#8203;ph55](https://togithub.com/ph55) made their first contribution in [vercel/turbo#5269

**Full Changelog**: vercel/turbo@v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 12am and before 5am every weekday,every weekend" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/timelessco/js-bottomsheet).
renovate bot added a commit to fwouts/previewjs that referenced this pull request Jun 22, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.10.3` ->
`^1.10.4`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.4) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4):
Turborepo v1.10.4

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.4 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5250
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5237
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[vercel/turbo#3090
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5263
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5262
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5224
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5251
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[vercel/turbo#5269
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5271
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5274
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5275
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5277
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5278
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5273
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5283
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5284
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[vercel/turbo#5285
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5203
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5255
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5286
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5287
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5300
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5303
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5305
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5309
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[vercel/turbo#3916
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5313
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5312
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5310
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5316
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5317
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5319
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5297
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5320
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5322
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5323
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5329
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5248
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5342
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5340
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5344
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5346

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[vercel/turbo#5252
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[vercel/turbo#4883
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[vercel/turbo#3090
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[vercel/turbo#5269

**Full Changelog**:
vercel/turbo@v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/fwouts/previewjs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to weareinreach/InReach that referenced this pull request Jun 22, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-cognito-identity-provider](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.354.0` -> `3.357.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.354.0/3.357.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.357.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.357.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.357.0/compatibility-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.357.0/confidence-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.354.0` -> `3.357.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.354.0/3.357.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.357.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.357.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.357.0/compatibility-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.357.0/confidence-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/signature-v4](https://togithub.com/aws/aws-sdk-js-v3/tree/main/packages/signature-v4) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.354.0` -> `3.357.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fsignature-v4/3.354.0/3.357.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.357.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.357.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.357.0/compatibility-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.357.0/confidence-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@crowdin/crowdin-api-client](https://togithub.com/crowdin/crowdin-api-client-js) | [`1.23.1` -> `1.23.2`](https://renovatebot.com/diffs/npm/@crowdin%2fcrowdin-api-client/1.23.1/1.23.2) | [![age](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.2/compatibility-slim/1.23.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@crowdin%2fcrowdin-api-client/1.23.2/confidence-slim/1.23.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@iconify/react](https://iconify.design/) ([source](https://togithub.com/iconify/iconify)) | [`4.1.0` -> `4.1.1`](https://renovatebot.com/diffs/npm/@iconify%2freact/4.1.0/4.1.1) | [![age](https://badges.renovateapi.com/packages/npm/@iconify%2freact/4.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@iconify%2freact/4.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@iconify%2freact/4.1.1/compatibility-slim/4.1.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@iconify%2freact/4.1.1/confidence-slim/4.1.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@iconify/utils](https://iconify.design/docs/libraries/utils/) ([source](https://togithub.com/iconify/iconify)) | [`2.1.6` -> `2.1.7`](https://renovatebot.com/diffs/npm/@iconify%2futils/2.1.6/2.1.7) | [![age](https://badges.renovateapi.com/packages/npm/@iconify%2futils/2.1.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@iconify%2futils/2.1.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@iconify%2futils/2.1.7/compatibility-slim/2.1.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@iconify%2futils/2.1.7/confidence-slim/2.1.6)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-a11y](https://togithub.com/storybookjs/storybook/tree/next/code/addons/a11y) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-actions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/actions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-actions/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-docs](https://togithub.com/storybookjs/storybook/tree/next/code/addons/docs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-docs/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-essentials](https://togithub.com/storybookjs/storybook/tree/next/code/addons/essentials) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-interactions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/interactions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-links](https://togithub.com/storybookjs/storybook/tree/next/code/addons/links) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-viewport](https://togithub.com/storybookjs/storybook/tree/next/code/addons/viewport) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/components](https://togithub.com/storybookjs/storybook/tree/next/code/ui/components) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fcomponents/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/core-events](https://togithub.com/storybookjs/storybook/tree/next/code/lib/core-events) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fcore-events/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/manager-api](https://togithub.com/storybookjs/storybook/tree/next/code/lib/manager-api) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fmanager-api/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/nextjs](https://togithub.com/storybookjs/storybook/tree/next/code/frameworks/nextjs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/preview-api](https://togithub.com/storybookjs/storybook/tree/next/code/lib/preview-api) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2fpreview-api/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/react](https://togithub.com/storybookjs/storybook/tree/next/code/renderers/react) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/theming](https://togithub.com/storybookjs/storybook/tree/next/code/lib/theming) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2ftheming/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/types](https://togithub.com/storybookjs/storybook/tree/next/code/lib/types) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/@storybook%2ftypes/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [@textea/json-viewer](https://togithub.com/TexteaInc/json-viewer) | [`3.0.0` -> `3.1.1`](https://renovatebot.com/diffs/npm/@textea%2fjson-viewer/3.0.0/3.1.1) | [![age](https://badges.renovateapi.com/packages/npm/@textea%2fjson-viewer/3.1.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@textea%2fjson-viewer/3.1.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@textea%2fjson-viewer/3.1.1/compatibility-slim/3.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@textea%2fjson-viewer/3.1.1/confidence-slim/3.0.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.31.0` -> `10.32.0`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.31.0/10.32.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/compatibility-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.32.0/confidence-slim/10.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@vercel/kv](https://vercel.com) ([source](https://togithub.com/vercel/storage)) | [`0.2.1` -> `0.2.2`](https://renovatebot.com/diffs/npm/@vercel%2fkv/0.2.1/0.2.2) | [![age](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.2/compatibility-slim/0.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.2/confidence-slim/0.2.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@vercel/postgres-kysely](https://vercel.com) ([source](https://togithub.com/vercel/storage)) | [`0.3.1` -> `0.4.0`](https://renovatebot.com/diffs/npm/@vercel%2fpostgres-kysely/0.3.1/0.4.0) | [![age](https://badges.renovateapi.com/packages/npm/@vercel%2fpostgres-kysely/0.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@vercel%2fpostgres-kysely/0.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@vercel%2fpostgres-kysely/0.4.0/compatibility-slim/0.3.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@vercel%2fpostgres-kysely/0.4.0/confidence-slim/0.3.1)](https://docs.renovatebot.com/merge-confidence/) |
| [chromatic](https://www.chromatic.com) ([source](https://togithub.com/chromaui/chromatic-cli)) | [`6.19.8` -> `6.19.9`](https://renovatebot.com/diffs/npm/chromatic/6.19.8/6.19.9) | [![age](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/compatibility-slim/6.19.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/chromatic/6.19.9/confidence-slim/6.19.8)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.3` -> `1.10.4`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.3/1.10.4) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.4/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.4/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) |
| [i18next](https://www.i18next.com) ([source](https://togithub.com/i18next/i18next)) | [`23.2.1` -> `23.2.3`](https://renovatebot.com/diffs/npm/i18next/23.2.1/23.2.3) | [![age](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/compatibility-slim/23.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/i18next/23.2.3/confidence-slim/23.2.1)](https://docs.renovatebot.com/merge-confidence/) |
| [next-router-mock](https://togithub.com/scottrippey/next-router-mock) | [`0.9.6` -> `0.9.7`](https://renovatebot.com/diffs/npm/next-router-mock/0.9.6/0.9.7) | [![age](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.7/compatibility-slim/0.9.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.7/confidence-slim/0.9.6)](https://docs.renovatebot.com/merge-confidence/) |
| [next-seo](https://togithub.com/garmeeh/next-seo) | [`6.0.0` -> `6.1.0`](https://renovatebot.com/diffs/npm/next-seo/6.0.0/6.1.0) | [![age](https://badges.renovateapi.com/packages/npm/next-seo/6.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/next-seo/6.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/next-seo/6.1.0/compatibility-slim/6.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/next-seo/6.1.0/confidence-slim/6.0.0)](https://docs.renovatebot.com/merge-confidence/) |
| [react-i18next](https://togithub.com/i18next/react-i18next) | [`13.0.0` -> `13.0.1`](https://renovatebot.com/diffs/npm/react-i18next/13.0.0/13.0.1) | [![age](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/compatibility-slim/13.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/react-i18next/13.0.1/confidence-slim/13.0.0)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook](https://togithub.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.22` -> `7.0.23`](https://renovatebot.com/diffs/npm/storybook/7.0.22/7.0.23) | [![age](https://badges.renovateapi.com/packages/npm/storybook/7.0.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/storybook/7.0.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/storybook/7.0.23/compatibility-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/storybook/7.0.23/confidence-slim/7.0.22)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook-addon-pseudo-states](https://togithub.com/chromaui/storybook-addon-pseudo-states) | [`2.0.1` -> `2.1.0`](https://renovatebot.com/diffs/npm/storybook-addon-pseudo-states/2.0.1/2.1.0) | [![age](https://badges.renovateapi.com/packages/npm/storybook-addon-pseudo-states/2.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/storybook-addon-pseudo-states/2.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/storybook-addon-pseudo-states/2.1.0/compatibility-slim/2.0.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/storybook-addon-pseudo-states/2.1.0/confidence-slim/2.0.1)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.3` -> `1.10.4`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.4/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) |
| [webpack](https://togithub.com/webpack/webpack) | [`5.87.0` -> `5.88.0`](https://renovatebot.com/diffs/npm/webpack/5.87.0/5.88.0) | [![age](https://badges.renovateapi.com/packages/npm/webpack/5.88.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/webpack/5.88.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/webpack/5.88.0/compatibility-slim/5.87.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/webpack/5.88.0/confidence-slim/5.87.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-cognito-identity-provider)</summary>

### [`v3.357.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#&#8203;33570-httpsgithubcomawsaws-sdk-js-v3comparev33560v33570-2023-06-21)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.354.0...v3.357.0)

##### Features

-   **clients:** automatic blob type conversions ([#&#8203;4836](https://togithub.com/aws/aws-sdk-js-v3/issues/4836)) ([60ec921](https://togithub.com/aws/aws-sdk-js-v3/commit/60ec921c879ae8363f32ebbe9e1ecd6062df1081))

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-s3)</summary>

### [`v3.357.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#&#8203;33570-httpsgithubcomawsaws-sdk-js-v3comparev33560v33570-2023-06-21)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.354.0...v3.357.0)

##### Features

-   **clients:** automatic blob type conversions ([#&#8203;4836](https://togithub.com/aws/aws-sdk-js-v3/issues/4836)) ([60ec921](https://togithub.com/aws/aws-sdk-js-v3/commit/60ec921c879ae8363f32ebbe9e1ecd6062df1081))

</details>

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/signature-v4)</summary>

### [`v3.357.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/signature-v4/CHANGELOG.md#&#8203;33570-httpsgithubcomawsaws-sdk-js-v3comparev33560v33570-2023-06-21)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.354.0...v3.357.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/signature-v4](https://togithub.com/aws-sdk/signature-v4)

</details>

<details>
<summary>crowdin/crowdin-api-client-js</summary>

### [`v1.23.2`](https://togithub.com/crowdin/crowdin-api-client-js/releases/tag/1.23.2)

[Compare Source](https://togithub.com/crowdin/crowdin-api-client-js/compare/1.23.1...1.23.2)

##### What's Changed

-   docs: Examples by [@&#8203;yevheniyJ](https://togithub.com/yevheniyJ) in [https://github.com/crowdin/crowdin-api-client-js/pull/274](https://togithub.com/crowdin/crowdin-api-client-js/pull/274)
-   ci: configure npm provenance for package publishing by [@&#8203;andrii-bodnar](https://togithub.com/andrii-bodnar) in [https://github.com/crowdin/crowdin-api-client-js/pull/275](https://togithub.com/crowdin/crowdin-api-client-js/pull/275)
-   build(deps-dev): bump typedoc from 0.24.7 to 0.24.8 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/crowdin/crowdin-api-client-js/pull/272](https://togithub.com/crowdin/crowdin-api-client-js/pull/272)

**Full Changelog**: https://github.com/crowdin/crowdin-api-client-js/compare/1.23.1...1.23.2

</details>

<details>
<summary>storybookjs/storybook</summary>

### [`v7.0.23`](https://togithub.com/storybookjs/storybook/releases/tag/v7.0.23)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.0.22...v7.0.23)

#### 7.0.23

-   Core: Fix compat by disabling name mangling in `esbuild` require - [#&#8203;22486](https://togithub.com/storybookjs/storybook/pull/22486), thanks [@&#8203;youngboy](https://togithub.com/youngboy)!
-   Core: Prebundle node-logger and make it CJS only - [#&#8203;23109](https://togithub.com/storybookjs/storybook/pull/23109), thanks [@&#8203;ndelangen](https://togithub.com/ndelangen)!
-   NextJS: Fix fonts not loading with 3+ words in name - [#&#8203;23121](https://togithub.com/storybookjs/storybook/pull/23121), thanks [@&#8203;ygkn](https://togithub.com/ygkn)!
-   Telemetry: Count onboarding stories - [#&#8203;23092](https://togithub.com/storybookjs/storybook/pull/23092), thanks [@&#8203;shilman](https://togithub.com/shilman)!

</details>

<details>
<summary>TexteaInc/json-viewer</summary>

### [`v3.1.1`](https://togithub.com/TexteaInc/json-viewer/blob/HEAD/CHANGELOG.md#&#8203;311-httpsgithubcomTexteaIncjson-viewercomparejson-viewer-v310json-viewer-v311-2023-06-20)

[Compare Source](https://togithub.com/TexteaInc/json-viewer/compare/ec5f7f21bc9b57f19d19ae7cbb4ca6c262ce1415...ab7a3e86b6620f1831f1781d1eff0678af450287)

##### Bug Fixes

-   trigger release ([35760ac](https://togithub.com/TexteaInc/json-viewer/commit/35760ac866b2eb665b27e9f0bd9bf27b65a96698))

### [`v3.1.0`](https://togithub.com/TexteaInc/json-viewer/blob/HEAD/CHANGELOG.md#&#8203;310-httpsgithubcomTexteaIncjson-viewercomparejson-viewer-v300json-viewer-v310-2023-06-20)

[Compare Source](https://togithub.com/TexteaInc/json-viewer/compare/624e32e286ef83757813e6ab6ee939406ee6f045...ec5f7f21bc9b57f19d19ae7cbb4ca6c262ce1415)

##### Features

-   support default inspect state with `defaultInspectControl` ([7982300](https://togithub.com/TexteaInc/json-viewer/commit/7982300b18e4202fc71f7c7226ca377edff80334))

</details>

<details>
<summary>trpc/trpc</summary>

### [`v10.32.0`](https://togithub.com/trpc/trpc/releases/tag/v10.32.0)

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.31.0...v10.32.0)

##### What's Changed

-   fix(`react-query`): fix select as transform by [@&#8203;Sheraff](https://togithub.com/Sheraff) & [@&#8203;juliusmarminge](https://togithub.com/juliusmarminge) in [https://github.com/trpc/trpc/pull/4543](https://togithub.com/trpc/trpc/pull/4543)
-   feat(`react-query`): allow for external apps in `createServerSideHelpers` by [@&#8203;KATT](https://togithub.com/KATT) & [@&#8203;EmericW](https://togithub.com/EmericW) in [https://github.com/trpc/trpc/pull/4547](https://togithub.com/trpc/trpc/pull/4547)
-   chore(`client`): change `OperationContext` from `type` to `interface` by [@&#8203;nicolassanmar](https://togithub.com/nicolassanmar) in [https://github.com/trpc/trpc/pull/4523](https://togithub.com/trpc/trpc/pull/4523)

##### New Contributors

-   [@&#8203;mkosir](https://togithub.com/mkosir) made their first contribution in [https://github.com/trpc/trpc/pull/4533](https://togithub.com/trpc/trpc/pull/4533)

**Full Changelog**: https://github.com/trpc/trpc/compare/v10.31.0...v10.32.0

</details>

<details>
<summary>vercel/storage (@&#8203;vercel/kv)</summary>

### [`v0.2.2`](https://togithub.com/vercel/storage/blob/HEAD/packages/kv/CHANGELOG.md#&#8203;022)

[Compare Source](https://togithub.com/vercel/storage/compare/@vercel/kv@0.2.1...@vercel/kv@0.2.2)

##### Patch Changes

-   [`f545e1c`](https://togithub.com/vercel/storage/commit/f545e1c): Upgrade [@&#8203;upstash/redis](https://togithub.com/upstash/redis) to the latest version
    Stop minifying and add sourcemaps for better debugging

</details>

<details>
<summary>vercel/storage (@&#8203;vercel/postgres-kysely)</summary>

### [`v0.4.0`](https://togithub.com/vercel/storage/blob/HEAD/packages/postgres-kysely/CHANGELOG.md#&#8203;040)

[Compare Source](https://togithub.com/vercel/storage/compare/@vercel/postgres-kysely@0.3.2...@vercel/postgres-kysely@0.4.0)

##### Minor Changes

-   Upgrade [@&#8203;neon/serverless](https://togithub.com/neon/serverless) to the latest version
    Automatically uses [@&#8203;neon](https://togithub.com/neon) http layer with Pool.query/sql\`\`
    Stop minifying and add sourcemaps for better debugging

##### Patch Changes

-   Updated dependencies \[[`f545e1c`](https://togithub.com/vercel/storage/commit/f545e1c)]
    -   [@&#8203;vercel/postgres](https://togithub.com/vercel/postgres)[@&#8203;0](https://togithub.com/0).4.0

### [`v0.3.2`](https://togithub.com/vercel/storage/blob/HEAD/packages/postgres-kysely/CHANGELOG.md#&#8203;032)

[Compare Source](https://togithub.com/vercel/storage/compare/@vercel/postgres-kysely@0.3.1...@vercel/postgres-kysely@0.3.2)

##### Patch Changes

-   Updated dependencies \[[`52ce540`](https://togithub.com/vercel/storage/commit/52ce540)]
    -   [@&#8203;vercel/postgres](https://togithub.com/vercel/postgres)[@&#8203;0](https://togithub.com/0).3.2

</details>

<details>
<summary>chromaui/chromatic-cli</summary>

### [`v6.19.9`](https://togithub.com/chromaui/chromatic-cli/compare/v6.19.8...v6.19.9)

[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v6.19.8...v6.19.9)

</details>

<details>
<summary>vercel/turbo</summary>

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4): Turborepo v1.10.4

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5250](https://togithub.com/vercel/turbo/pull/5250)
-   feat(turborepo): Port Manual hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5237](https://togithub.com/vercel/turbo/pull/5237)
-   Docs: prior to run testcases, add guides to install dependencies for testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in [https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
-   fix(gen): fix ts config interference by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5263](https://togithub.com/vercel/turbo/pull/5263)
-   release(turborepo): 1.10.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5262](https://togithub.com/vercel/turbo/pull/5262)
-   feat(examples): update basic name on docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5224](https://togithub.com/vercel/turbo/pull/5224)
-   feat(turborepo): port git-based hashing with inputs by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5251](https://togithub.com/vercel/turbo/pull/5251)
-   Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in [https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)
-   feat(ci): conditionally set jest verbosity by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5271](https://togithub.com/vercel/turbo/pull/5271)
-   fix(turborepo): Tighten build globs by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5274](https://togithub.com/vercel/turbo/pull/5274)
-   fix(turborepo): Fix path match for parent dir in subtree match case by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5275](https://togithub.com/vercel/turbo/pull/5275)
-   chore(turborepo): Move SCM to use vendored wax crate by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5277](https://togithub.com/vercel/turbo/pull/5277)
-   release(turborepo): 1.10.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5278](https://togithub.com/vercel/turbo/pull/5278)
-   fix(turborepo): avoid globbing directories due to ancestor truncation by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5273](https://togithub.com/vercel/turbo/pull/5273)
-   release(turborepo): 1.10.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5283](https://togithub.com/vercel/turbo/pull/5283)
-   fix(spaces): read logs correctly when invoked from subdirectory by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5284](https://togithub.com/vercel/turbo/pull/5284)
-   Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5285](https://togithub.com/vercel/turbo/pull/5285)
-   feat(turborepo): Run outline pt 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5203](https://togithub.com/vercel/turbo/pull/5203)
-   feat(lockfiles): add rust implementation for yarn1 by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/5255](https://togithub.com/vercel/turbo/pull/5255)
-   release(turborepo): 1.10.4-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5286](https://togithub.com/vercel/turbo/pull/5286)
-   feat(turborepo): Report more details when go-turbo exits by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5287](https://togithub.com/vercel/turbo/pull/5287)
-   docs(examples): update examples and docs to use node 18 by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5300](https://togithub.com/vercel/turbo/pull/5300)
-   update dependencies to sync with next.js by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/5303](https://togithub.com/vercel/turbo/pull/5303)
-   feat(cache): Add ability to disable remote cache from turbo.json by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5305](https://togithub.com/vercel/turbo/pull/5305)
-   feat(turborepo): Hash with libgit2 by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5309](https://togithub.com/vercel/turbo/pull/5309)
-   Add --log-order option by [@&#8203;rafaeltab](https://togithub.com/rafaeltab) in [https://github.com/vercel/turbo/pull/3916](https://togithub.com/vercel/turbo/pull/3916)
-   release(turborepo): 1.10.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5313](https://togithub.com/vercel/turbo/pull/5313)
-   feat(turborepo): A few cleanup nits around log grouping by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5312](https://togithub.com/vercel/turbo/pull/5312)
-   feat(run outline): Hide package graph internals by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/5310](https://togithub.com/vercel/turbo/pull/5310)
-   feat(logging): enable setting log order with an environment variable by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5316](https://togithub.com/vercel/turbo/pull/5316)
-   feat(cli): Add ability to pass --remote-only=false from CLI by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5317](https://togithub.com/vercel/turbo/pull/5317)
-   fix(turborepo): Re-enable some tests on windows by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5319](https://togithub.com/vercel/turbo/pull/5319)
-   refactor(turborepo): cli::run and args processing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5297](https://togithub.com/vercel/turbo/pull/5297)
-   feat(logging): add "auto" options for log prefixing and ordering by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5320](https://togithub.com/vercel/turbo/pull/5320)
-   Fix ESLint script command. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5322](https://togithub.com/vercel/turbo/pull/5322)
-   feat(turborepo): Add context to glob errors by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5323](https://togithub.com/vercel/turbo/pull/5323)
-   fix(turbo): print help message when turbo called with flags/env vars but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5329](https://togithub.com/vercel/turbo/pull/5329)
-   refactor(turborepo): Move paths to UTF-8 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5248](https://togithub.com/vercel/turbo/pull/5248)
-   Add Vercel to CI providers. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5342](https://togithub.com/vercel/turbo/pull/5342)
-   fix(turborepo): Hashing symlinks is erroring by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5340](https://togithub.com/vercel/turbo/pull/5340)
-   release(turborepo): 1.10.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/5344](https://togithub.com/vercel/turbo/pull/5344)
-   fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/5346](https://togithub.com/vercel/turbo/pull/5346)

#### New Contributors

-   [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel) made their first contribution in [https://github.com/vercel/turbo/pull/5252](https://togithub.com/vercel/turbo/pull/5252)
-   [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first contribution in [https://github.com/vercel/turbo/pull/4883](https://togithub.com/vercel/turbo/pull/4883)
-   [@&#8203;92hackers](https://togithub.com/92hackers) made their first contribution in [https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
-   [@&#8203;ph55](https://togithub.com/ph55) made their first contribution in [https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.10.3...v1.10.4

</details>

<details>
<summary>i18next/i18next</summary>

### [`v23.2.3`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#&#8203;2323)

[Compare Source](https://togithub.com/i18next/i18next/compare/v23.2.2...v23.2.3)

-   types: Optimize logic for fallback ns [19198481](https://togithub.com/i18next/i18next/pull/1984)

### [`v23.2.2`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#&#8203;2322)

[Compare Source](https://togithub.com/i18next/i18next/compare/v23.2.1...v23.2.2)

-   types: try to fix fallbackNS type handling also for older TS version [1981](https://togithub.com/i18next/i18next/issues/1981)

</details>

<details>
<summary>scottrippey/next-router-mock</summary>

### [`v0.9.7`](https://togithub.com/scottrippey/next-router-mock/compare/v0.9.6...v0.9.7)

[Compare Source](https://togithub.com/scottrippey/next-router-mock/compare/v0.9.6...v0.9.7)

</details>

<details>
<summary>garmeeh/next-seo</summary>

### [`v6.1.0`](https://togithub.com/garmeeh/next-seo/releases/tag/v6.1.0)

[Compare Source](https://togithub.com/garmeeh/next-seo/compare/v6.0.0...v6.1.0)

-   fix readme typo ([#&#8203;1124](https://togithub.com/garmeeh/next-seo/issues/1124))  [`59c18c4`](https://togithub.com/garmeeh/next-seo/commit/59c18c4)
-   fix: [#&#8203;1118](https://togithub.com/garmeeh/next-seo/issues/1118) - added worstRating under AggregateRating type ([#&#8203;1224](https://togithub.com/garmeeh/next-seo/issues/1224))  [`c086508`](https://togithub.com/garmeeh/next-seo/commit/c086508)
-   Fix useAppDir prop value instructions when using app dir ([#&#8203;1244](https://togithub.com/garmeeh/next-seo/issues/1244))  [`ee41400`](https://togithub.com/garmeeh/next-seo/commit/ee41400)
-   Make sub fields for Place on JobPostingJsonLd optional ([#&#8203;1251](https://togithub.com/garmeeh/next-seo/issues/1251))  [`1b22541`](https://togithub.com/garmeeh/next-seo/commit/1b22541)
-   Update README.md  [`4c69f9b`](https://togithub.com/garmeeh/next-seo/commit/4c69f9b)
-   Add banner for Next.js Weekly newsletter ([#&#8203;1195](https://togithub.com/garmeeh/next-seo/issues/1195))  [`c93b9d7`](https://togithub.com/garmeeh/next-seo/commit/c93b9d7)

</details>

<details>
<summary>i18next/react-i18next</summary>

### [`v13.0.1`](https://togithub.com/i18next/react-i18next/blob/HEAD/CHANGELOG.md#&#8203;1301)

[Compare Source](https://togithub.com/i18next/react-i18next/compare/v13.0.0...v13.0.1)

-   types: Fix performance issue in Trans component [1646](https://togithub.com/i18next/react-i18next/pull/1646)

</details>

<details>
<summary>chromaui/storybook-addon-pseudo-states</summary>

### [`v2.1.0`](https://togithub.com/chromaui/storybook-addon-pseudo-states/blob/HEAD/CHANGELOG.md#v210-Thu-Jun-22-2023)

[Compare Source](https://togithub.com/chromaui/storybook-addon-pseudo-states/compare/v2.0.2...v2.1.0)

##### 🚀 Enhancement

-   Add support for custom root element [#&#8203;65](https://togithub.com/chromaui/storybook-addon-pseudo-states/pull/65) ([@&#8203;sag1v](https://togithub.com/sag1v) [@&#8203;ghengeveld](https://togithub.com/ghengeveld))

##### Authors: 2

-   Gert Hengeveld ([@&#8203;ghengeveld](https://togithub.com/ghengeveld))
-   Sagiv ben giat ([@&#8203;sag1v](https://togithub.com/sag1v))

***

### [`v2.0.2`](https://togithub.com/chromaui/storybook-addon-pseudo-states/blob/HEAD/CHANGELOG.md#v202-Thu-Jun-22-2023)

[Compare Source](https://togithub.com/chromaui/storybook-addon-pseudo-states/compare/v2.0.1...v2.0.2)

##### 🐛 Bug Fix

-   Fix pseudo state selector menu for Storybook 7 [#&#8203;78](https://togithub.com/chromaui/storybook-addon-pseudo-states/pull/78) ([@&#8203;yasnbouz](https://togithub.com/yasnbouz) [@&#8203;ghengeveld](https://togithub.com/ghengeveld))

##### Authors: 2

-   Gert Hengeveld ([@&#8203;ghengeveld](https://togithub.com/ghengeveld))
-   Yassine El Bouziady ([@&#8203;yasnbouz](https://togithub.com/yasnbouz))

***

</details>

<details>
<summary>webpack/webpack</summary>

### [`v5.88.0`](https://togithub.com/webpack/webpack/releases/tag/v5.88.0)

[Compare Source](https://togithub.com/webpack/webpack/compare/v5.87.0...v5.88.0)

#### New Features

-   \[CSS] - Use `css/auto` as the default css mode by [@&#8203;burhanuday](https://togithub.com/burhanuday) in [https://github.com/webpack/webpack/pull/17399](https://togithub.com/webpack/webpack/pull/17399)

#### Bug Fixes

-   Fix bugs related to require.context and layer by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [https://github.com/webpack/webpack/pull/17388](https://togithub.com/webpack/webpack/pull/17388)
-   Fix bug in runtime for CSS loading by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [https://github.com/webpack/webpack/pull/17400](https://togithub.com/webpack/webpack/pull/17400)
-   Correct indirect call for tagged template expressions using correct this context by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [https://github.com/webpack/webpack/pull/17397](https://togithub.com/webpack/webpack/pull/17397)
-   Update environment support for KaiOS browser by [@&#8203;steverep](https://togithub.com/steverep) in [https://github.com/webpack/webpack/pull/17395](https://togithub.com/webpack/webpack/pull/17395)
-   Fix async module runtime code for running top-level-await by [@&#8203;ahabhgk](https://togithub.com/ahabhgk) in [https://github.com/webpack/webpack/pull/17393](https://togithub.com/webpack/webpack/pull/17393)

#### Developer Experience

-   Add example for stats minimal output by [@&#8203;ersachin3112](https://togithub.com/ersachin3112) in [https://github.com/webpack/webpack/pull/17406](https://togithub.com/webpack/webpack/pull/17406)
-   Significantly improve type coverage for Dependency, Runtime, Template classes by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [https://github.com/webpack/webpack/pull/17394](https://togithub.com/webpack/webpack/pull/17394)

#### Dependencies & Maintenance

-   Bump browserslist from 4.21.8 to 4.21.9 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/webpack/webpack/pull/17389](https://togithub.com/webpack/webpack/pull/17389)
-   Bump acorn from 8.8.2 to 8.9.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/webpack/webpack/pull/17402](https://togithub.com/webpack/webpack/pull/17402)
-   Bump eslint from 8.42.0 to 8.43.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/webpack/webpack/pull/17401](https://togithub.com/webpack/webpack/pull/17401)
-   Bump eslint-plugin-jest from 27.2.1 to 27.2.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/webpack/webpack/pull/17407](https://togithub.com/webpack/webpack/pull/17407)

#### New Contributors

-   [@&#8203;steverep](https://togithub.com/steverep) made their first contribution in [https://github.com/webpack/webpack/pull/17395](https://togithub.com/webpack/webpack/pull/17395)

**Full Changelog**: https://github.com/webpack/webpack/compare/v5.87.0...v5.88.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach).



PR-URL: https://github.com/weareinreach/InReach/pull/619
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh pushed a commit to levaintech/sticky that referenced this pull request Jun 25, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.10.3` ->
`1.10.6`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.6) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

### [`v1.10.6`](https://togithub.com/vercel/turbo/releases/tag/v1.10.6):
Turborepo v1.10.6

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.5...v1.10.6)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.6 -->

#### What's Changed

##### Changelog

- feat(turborepo): Scripts to build a debug version on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5007
- release(turborepo): 1.10.5 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5364
- fix: prevent looking up workspace task if name is not in there by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5370
- fix(turborepo): Restructure spaces client and test error handling by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5367

**Full Changelog**:
vercel/turbo@v1.10.5...v1.10.6

### [`v1.10.5`](https://togithub.com/vercel/turbo/releases/tag/v1.10.5):
Turborepo v1.10.5

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.4...v1.10.5)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.5 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5349
- feat(turborepo) Add timeout to api client json methods by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5350
- feat(turborepo): Debugging output for e2e tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5351
- feat(turbo): add main pointing to bin by
[@&#8203;wesleytodd](https://togithub.com/wesleytodd) in
[vercel/turbo#5333
- fix: Removed path slash conversion on unix by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5356
- fix(turborepo): Fix single package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5362

#### New Contributors

- [@&#8203;wesleytodd](https://togithub.com/wesleytodd) made their first
contribution in
[vercel/turbo#5333

**Full Changelog**:
vercel/turbo@v1.10.4...v1.10.5

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4):
Turborepo v1.10.4

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.4 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5250
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5237
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[vercel/turbo#3090
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5263
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5262
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5224
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5251
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[vercel/turbo#5269
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5271
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5274
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5275
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5277
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5278
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5273
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5283
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5284
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[vercel/turbo#5285
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5203
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5255
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5286
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5287
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5300
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5303
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5305
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5309
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[vercel/turbo#3916
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5313
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5312
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5310
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5316
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5317
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5319
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5297
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5320
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5322
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5323
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5329
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5248
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5342
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5340
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5344
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5346

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[vercel/turbo#5252
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[vercel/turbo#4883
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[vercel/turbo#3090
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[vercel/turbo#5269

**Full Changelog**:
vercel/turbo@v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/levaintech/sticky).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to timelessco/next-ts-app that referenced this pull request Jun 25, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@next/bundle-analyzer](https://togithub.com/vercel/next.js) | [`13.4.6` -> `13.4.7`](https://renovatebot.com/diffs/npm/@next%2fbundle-analyzer/13.4.6/13.4.7) | [![age](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.7/compatibility-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.7/confidence-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/env](https://togithub.com/vercel/next.js) | [`13.4.6` -> `13.4.7`](https://renovatebot.com/diffs/npm/@next%2fenv/13.4.6/13.4.7) | [![age](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.7/compatibility-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.7/confidence-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/eslint-plugin-next](https://togithub.com/vercel/next.js) | [`13.4.6` -> `13.4.7`](https://renovatebot.com/diffs/npm/@next%2feslint-plugin-next/13.4.6/13.4.7) | [![age](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.7/compatibility-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.7/confidence-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/) |
| [@octokit/core](https://togithub.com/octokit/core.js) | [`4.2.1` -> `4.2.4`](https://renovatebot.com/diffs/npm/@octokit%2fcore/4.2.1/4.2.4) | [![age](https://badges.renovateapi.com/packages/npm/@octokit%2fcore/4.2.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@octokit%2fcore/4.2.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@octokit%2fcore/4.2.4/compatibility-slim/4.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@octokit%2fcore/4.2.4/confidence-slim/4.2.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.12` -> `18.2.13`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.12/18.2.13) | [![age](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.13/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.13/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.13/compatibility-slim/18.2.12)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.13/confidence-slim/18.2.12)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.5` -> `18.2.6`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.5/18.2.6) | [![age](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/18.2.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/18.2.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/18.2.6/compatibility-slim/18.2.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/18.2.6/confidence-slim/18.2.5)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/typescript-eslint) | [`5.59.11` -> `5.60.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fexperimental-utils/5.59.11/5.60.0) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.60.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.60.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.60.0/compatibility-slim/5.59.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.60.0/confidence-slim/5.59.11)](https://docs.renovatebot.com/merge-confidence/) |
| [dotenv](https://togithub.com/motdotla/dotenv) | [`16.1.4` -> `16.3.1`](https://renovatebot.com/diffs/npm/dotenv/16.1.4/16.3.1) | [![age](https://badges.renovateapi.com/packages/npm/dotenv/16.3.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/dotenv/16.3.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/dotenv/16.3.1/compatibility-slim/16.1.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/dotenv/16.3.1/confidence-slim/16.1.4)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint](https://eslint.org) ([source](https://togithub.com/eslint/eslint)) | [`8.42.0` -> `8.43.0`](https://renovatebot.com/diffs/npm/eslint/8.42.0/8.43.0) | [![age](https://badges.renovateapi.com/packages/npm/eslint/8.43.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint/8.43.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint/8.43.0/compatibility-slim/8.42.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint/8.43.0/confidence-slim/8.42.0)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.13.0` -> `2.14.1`](https://renovatebot.com/diffs/npm/knip/2.13.0/2.14.1) | [![age](https://badges.renovateapi.com/packages/npm/knip/2.14.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/knip/2.14.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/knip/2.14.1/compatibility-slim/2.13.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/knip/2.14.1/confidence-slim/2.13.0)](https://docs.renovatebot.com/merge-confidence/) |
| [markdownlint-cli](https://togithub.com/igorshubovych/markdownlint-cli) | [`0.34.0` -> `0.35.0`](https://renovatebot.com/diffs/npm/markdownlint-cli/0.34.0/0.35.0) | [![age](https://badges.renovateapi.com/packages/npm/markdownlint-cli/0.35.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/markdownlint-cli/0.35.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/markdownlint-cli/0.35.0/compatibility-slim/0.34.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/markdownlint-cli/0.35.0/confidence-slim/0.34.0)](https://docs.renovatebot.com/merge-confidence/) |
| [stylelint](https://stylelint.io) ([source](https://togithub.com/stylelint/stylelint)) | [`15.7.0` -> `15.8.0`](https://renovatebot.com/diffs/npm/stylelint/15.7.0/15.8.0) | [![age](https://badges.renovateapi.com/packages/npm/stylelint/15.8.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/stylelint/15.8.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/stylelint/15.8.0/compatibility-slim/15.7.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/stylelint/15.8.0/confidence-slim/15.7.0)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.3` -> `1.10.5`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.5) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.5/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.5/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/next.js (@&#8203;next/bundle-analyzer)</summary>

### [`v13.4.7`](https://togithub.com/vercel/next.js/releases/tag/v13.4.7)

[Compare Source](https://togithub.com/vercel/next.js/compare/v13.4.6...v13.4.7)

##### Core Changes

-   Route Module Updates Redux: [#&#8203;51373](https://togithub.com/vercel/next.js/issues/51373)
-   Lock down server IPC address: [#&#8203;51378](https://togithub.com/vercel/next.js/issues/51378)
-   Revert "Route Module Updates Redux": [#&#8203;51409](https://togithub.com/vercel/next.js/issues/51409)
-   Fix bundling of Server Actions: [#&#8203;51367](https://togithub.com/vercel/next.js/issues/51367)
-   Fix pnpm lock: [#&#8203;51503](https://togithub.com/vercel/next.js/issues/51503)
-   router: add layout and other file supports to parallel routes: [#&#8203;51413](https://togithub.com/vercel/next.js/issues/51413)
-   Next Build Turbo POC: [#&#8203;49942](https://togithub.com/vercel/next.js/issues/49942)
-   add edge rendering for app dir for Turbopack: [#&#8203;50830](https://togithub.com/vercel/next.js/issues/50830)
-   Fix shared action module in two layers: [#&#8203;51510](https://togithub.com/vercel/next.js/issues/51510)
-   Revert "Next Build Turbo POC ([#&#8203;49942](https://togithub.com/vercel/next.js/issues/49942))": [#&#8203;51538](https://togithub.com/vercel/next.js/issues/51538)
-   Fix font styles on react dev overlay: [#&#8203;51518](https://togithub.com/vercel/next.js/issues/51518)
-   fix typo in x-next-revalidate-tag-token header: [#&#8203;51432](https://togithub.com/vercel/next.js/issues/51432)
-   Add docs links to RSC errors: [#&#8203;51557](https://togithub.com/vercel/next.js/issues/51557)
-   Moved new line to warnOnce call: [#&#8203;51552](https://togithub.com/vercel/next.js/issues/51552)
-   Update id env prefix: [#&#8203;51588](https://togithub.com/vercel/next.js/issues/51588)
-   router: support layout/special files as direct children of parallel routes: [#&#8203;51604](https://togithub.com/vercel/next.js/issues/51604)
-   use env var to switch next.js to turbopack mode: [#&#8203;51353](https://togithub.com/vercel/next.js/issues/51353)
-   Revert "add edge rendering for app dir for Turbopack": [#&#8203;51617](https://togithub.com/vercel/next.js/issues/51617)
-   Ensure upgrade request has request meta: [#&#8203;51590](https://togithub.com/vercel/next.js/issues/51590)
-   Revert "Fix standalone not found": [#&#8203;51506](https://togithub.com/vercel/next.js/issues/51506)

##### Documentation Changes

-   docs: Add streaming AI example.: [#&#8203;51382](https://togithub.com/vercel/next.js/issues/51382)
-   docs: remove copy mentioning appDir as an experimental feature: [#&#8203;51403](https://togithub.com/vercel/next.js/issues/51403)
-   examples: update `with-supabase` example to App Router: [#&#8203;51335](https://togithub.com/vercel/next.js/issues/51335)
-   Fix typo in image alt: [#&#8203;51487](https://togithub.com/vercel/next.js/issues/51487)
-   docs: add better examples to `next/image` docs.: [#&#8203;51457](https://togithub.com/vercel/next.js/issues/51457)
-   Go directly to caching section: [#&#8203;51501](https://togithub.com/vercel/next.js/issues/51501)
-   fix(typo): add missing word: [#&#8203;51490](https://togithub.com/vercel/next.js/issues/51490)
-   fix(typo): add missing comma: [#&#8203;51489](https://togithub.com/vercel/next.js/issues/51489)
-   Remove duplicate bullet point in app router migration docs: [#&#8203;51440](https://togithub.com/vercel/next.js/issues/51440)
-   fix: missing come: [#&#8203;51437](https://togithub.com/vercel/next.js/issues/51437)
-   Linted MDX: [#&#8203;51530](https://togithub.com/vercel/next.js/issues/51530)
-   docs: Fix typo: [#&#8203;51517](https://togithub.com/vercel/next.js/issues/51517)
-   Migrate validate links script from next-site and setup GitHub action: [#&#8203;51365](https://togithub.com/vercel/next.js/issues/51365)
-   Remove extra word in env key error: [#&#8203;51512](https://togithub.com/vercel/next.js/issues/51512)
-   Remove duplicate word in 11-draft-mode.mdx: [#&#8203;51580](https://togithub.com/vercel/next.js/issues/51580)
-   Broken link at 01-static-and-dynamic-rendering.mdx: [#&#8203;51582](https://togithub.com/vercel/next.js/issues/51582)
-   refactor tests for readability: [#&#8203;51051](https://togithub.com/vercel/next.js/issues/51051)

##### Example Changes

-   Upgrade with-redux example to app router: [#&#8203;49994](https://togithub.com/vercel/next.js/issues/49994)

##### Misc Changes

-   ci(workflow): upload test trace for deploy e2e: [#&#8203;51389](https://togithub.com/vercel/next.js/issues/51389)
-   Fix pnpm `ERR_INVALID_THIS` on Node 20: [#&#8203;51406](https://togithub.com/vercel/next.js/issues/51406)
-   Update flakey build output test: [#&#8203;51411](https://togithub.com/vercel/next.js/issues/51411)
-   Fix native build: [#&#8203;51522](https://togithub.com/vercel/next.js/issues/51522)
-   Revert "Fix pnpm `ERR_INVALID_THIS` on Node 20": [#&#8203;51539](https://togithub.com/vercel/next.js/issues/51539)
-   Update .vercel.approvers: [#&#8203;51417](https://togithub.com/vercel/next.js/issues/51417)
-   Update broken link validator: [#&#8203;51586](https://togithub.com/vercel/next.js/issues/51586)
-   Temporarily disable flaky test: [#&#8203;51616](https://togithub.com/vercel/next.js/issues/51616)
-   Update flakey build output test: [#&#8203;51625](https://togithub.com/vercel/next.js/issues/51625)

##### Credits

Huge thanks to [@&#8203;wyattjoh](https://togithub.com/wyattjoh), [@&#8203;ijjk](https://togithub.com/ijjk), [@&#8203;dvakatsiienko](https://togithub.com/dvakatsiienko), [@&#8203;leerob](https://togithub.com/leerob), [@&#8203;kwonoj](https://togithub.com/kwonoj), [@&#8203;nickmccurdy](https://togithub.com/nickmccurdy), [@&#8203;brunoeduardodev](https://togithub.com/brunoeduardodev), [@&#8203;dijonmusters](https://togithub.com/dijonmusters), [@&#8203;shuding](https://togithub.com/shuding), [@&#8203;tyler-lutz](https://togithub.com/tyler-lutz), [@&#8203;huozhi](https://togithub.com/huozhi), [@&#8203;feedthejim](https://togithub.com/feedthejim), [@&#8203;alexkirsz](https://togithub.com/alexkirsz), [@&#8203;sonam-serchan](https://togithub.com/sonam-serchan), [@&#8203;vicsantizo](https://togithub.com/vicsantizo), [@&#8203;leodr](https://togithub.com/leodr), [@&#8203;wiscaksono](https://togithub.com/wiscaksono), [@&#8203;sokra](https://togithub.com/sokra), [@&#8203;delbaoliveira](https://togithub.com/delbaoliveira), [@&#8203;ztanner](https://togithub.com/ztanner), [@&#8203;hustLer2k](https://togithub.com/hustLer2k), [@&#8203;joshuabaker](https://togithub.com/joshuabaker), and [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) for helping!

</details>

<details>
<summary>octokit/core.js (@&#8203;octokit/core)</summary>

### [`v4.2.4`](https://togithub.com/octokit/core.js/releases/tag/v4.2.4)

[Compare Source](https://togithub.com/octokit/core.js/compare/v4.2.3...v4.2.4)

##### Bug Fixes

-   **deps:** revert breaking dependency changes ([#&#8203;577](https://togithub.com/octokit/core.js/issues/577)) ([b445021](https://togithub.com/octokit/core.js/commit/b445021e87c1849a4343d9dbe2edb3cbd30438a7)), closes [#&#8203;573](https://togithub.com/octokit/core.js/issues/573) [#&#8203;572](https://togithub.com/octokit/core.js/issues/572)

### [`v4.2.3`](https://togithub.com/octokit/core.js/releases/tag/v4.2.3)

[Compare Source](https://togithub.com/octokit/core.js/compare/v4.2.2...v4.2.3)

##### Bug Fixes

-   **deps:** update dependency [@&#8203;octokit/types](https://togithub.com/octokit/types) to v10 ([#&#8203;573](https://togithub.com/octokit/core.js/issues/573)) ([2fb7b47](https://togithub.com/octokit/core.js/commit/2fb7b475186c43d301978e617d9f4e3df7601b3e))

### [`v4.2.2`](https://togithub.com/octokit/core.js/releases/tag/v4.2.2)

[Compare Source](https://togithub.com/octokit/core.js/compare/v4.2.1...v4.2.2)

##### Bug Fixes

-   **deps:** update dependency [@&#8203;octokit/request-error](https://togithub.com/octokit/request-error) to v4 ([#&#8203;572](https://togithub.com/octokit/core.js/issues/572)) ([ca248c5](https://togithub.com/octokit/core.js/commit/ca248c5aab5e24b54f329975f5984cc7708d1336))

</details>

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/experimental-utils)</summary>

### [`v5.60.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/experimental-utils/CHANGELOG.md#&#8203;5600-httpsgithubcomtypescript-eslinttypescript-eslintcomparev55911v5600-2023-06-19)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.11...v5.60.0)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.11](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.10...v5.59.11) (2023-06-12)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.10](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.9...v5.59.10) (2023-06-12)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.9](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.8...v5.59.9) (2023-06-05)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.8](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.7...v5.59.8) (2023-05-29)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.7](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.6...v5.59.7) (2023-05-22)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.6](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.5...v5.59.6) (2023-05-15)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.5](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.4...v5.59.5) (2023-05-08)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.4](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.3...v5.59.4) (2023-05-08)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.3](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.2...v5.59.3) (2023-05-08)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.2](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.1...v5.59.2) (2023-05-01)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

#### [5.59.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.0...v5.59.1) (2023-04-24)

**Note:** Version bump only for package [@&#8203;typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/experimental-utils)

</details>

<details>
<summary>motdotla/dotenv (dotenv)</summary>

### [`v16.3.1`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1631-httpsgithubcommotdotladotenvcomparev1630v1631-2023-06-17)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.3.0...v16.3.1)

##### Added

-   Add missing type definitions for `processEnv` and `DOTENV_KEY` options. [#&#8203;756](https://togithub.com/motdotla/dotenv/pull/756)

### [`v16.3.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1630-httpsgithubcommotdotladotenvcomparev1620v1630-2023-06-16)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.2.0...v16.3.0)

##### Added

-   Optionally pass `DOTENV_KEY` to options rather than relying on `process.env.DOTENV_KEY`. Defaults to `process.env.DOTENV_KEY` [#&#8203;754](https://togithub.com/motdotla/dotenv/pull/754)

### [`v16.2.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1620-httpsgithubcommotdotladotenvcomparev1614v1620-2023-06-15)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.1.4...v16.2.0)

##### Added

-   Optionally write to your own target object rather than `process.env`. Defaults to `process.env`. [#&#8203;753](https://togithub.com/motdotla/dotenv/pull/753)
-   Add import type URL to types file [#&#8203;751](https://togithub.com/motdotla/dotenv/pull/751)

</details>

<details>
<summary>eslint/eslint (eslint)</summary>

### [`v8.43.0`](https://togithub.com/eslint/eslint/releases/tag/v8.43.0)

[Compare Source](https://togithub.com/eslint/eslint/compare/v8.42.0...v8.43.0)

#### Features

-   [`14581ff`](https://togithub.com/eslint/eslint/commit/14581ff15aaee5a55c46bbf4983818ddc8dd7cb1) feat: directive prologue detection and autofix condition in `quotes` ([#&#8203;17284](https://togithub.com/eslint/eslint/issues/17284)) (Francesco Trotta)
-   [`e50fac3`](https://togithub.com/eslint/eslint/commit/e50fac3f8f998f729e3080e256066db3a7827c67) feat: add declaration loc to message in block-scoped-var ([#&#8203;17252](https://togithub.com/eslint/eslint/issues/17252)) (Milos Djermanovic)
-   [`1b7faf0`](https://togithub.com/eslint/eslint/commit/1b7faf0702b1af86b6a0ddafc37cf45d60f5d4d8) feat: add `skipJSXText` option to `no-irregular-whitespace` rule ([#&#8203;17182](https://togithub.com/eslint/eslint/issues/17182)) (Azat S)

#### Bug Fixes

-   [`5338b56`](https://togithub.com/eslint/eslint/commit/5338b56fda7f47d16bdb23514f1e95b24de7b92f) fix: normalize `cwd` passed to `ESLint`/`FlatESLint` constructor ([#&#8203;17277](https://togithub.com/eslint/eslint/issues/17277)) (Milos Djermanovic)
-   [`54383e6`](https://togithub.com/eslint/eslint/commit/54383e69b092ef537d59a1f7799a85b1412f4e59) fix: Remove `no-extra-parens` autofix for potential directives ([#&#8203;17022](https://togithub.com/eslint/eslint/issues/17022)) (Francesco Trotta)

#### Documentation

-   [`8b855ea`](https://togithub.com/eslint/eslint/commit/8b855ea058992d5446d1d6dc6394ee683c3200a0) docs: resubmit pr17061 doc changes ([#&#8203;17292](https://togithub.com/eslint/eslint/issues/17292)) (唯然)
-   [`372722e`](https://togithub.com/eslint/eslint/commit/372722eac32ca9e3f31cf0d0bc10317c6f153369) docs: resubmit pr17012 doc changes ([#&#8203;17293](https://togithub.com/eslint/eslint/issues/17293)) (唯然)
-   [`67e7af3`](https://togithub.com/eslint/eslint/commit/67e7af3fdbdb4648b747dfd669be4decfe24086a) docs: resubmit custom-rules doc changes ([#&#8203;17294](https://togithub.com/eslint/eslint/issues/17294)) (唯然)
-   [`9e3d77c`](https://togithub.com/eslint/eslint/commit/9e3d77cba65d0e38e07996e57961fb04f30d9303) docs: Resubmit Fix formatting in Custom Rules docs ([#&#8203;17281](https://togithub.com/eslint/eslint/issues/17281)) (Milos Djermanovic)
-   [`503647a`](https://togithub.com/eslint/eslint/commit/503647a0b94ca8c776d7e7e8c54c8b1d32904467) docs: Resubmit markVariableAsUsed docs ([#&#8203;17280](https://togithub.com/eslint/eslint/issues/17280)) (Nicholas C. Zakas)
-   [`e0cf0d8`](https://togithub.com/eslint/eslint/commit/e0cf0d86d985ed2b2f901dd9aab5ccd2fff062ad) docs: Custom rule & plugin tutorial ([#&#8203;17024](https://togithub.com/eslint/eslint/issues/17024)) (Ben Perlmutter)
-   [`8e51ea9`](https://togithub.com/eslint/eslint/commit/8e51ea943c2fcd05bd8917cfa89e36b91209c7cd) docs: resubmit `no-new` rule documentation ([#&#8203;17264](https://togithub.com/eslint/eslint/issues/17264)) (Nitin Kumar)
-   [`1b217f8`](https://togithub.com/eslint/eslint/commit/1b217f8de15961fd3c80389621080132f517a0fb) docs: resubmit `Custom Processors` documentation ([#&#8203;17265](https://togithub.com/eslint/eslint/issues/17265)) (Nitin Kumar)
-   [`428fc76`](https://togithub.com/eslint/eslint/commit/428fc76806dea1ac82484d628261a5385f928e6a) docs: resubmit `Create Plugins` documentation ([#&#8203;17268](https://togithub.com/eslint/eslint/issues/17268)) (Nitin Kumar)
-   [`bdca88c`](https://togithub.com/eslint/eslint/commit/bdca88cf4f8b7888cb72197bfe9c1d90b490a0dd) docs: resubmit `Configuration Files` documentation ([#&#8203;17267](https://togithub.com/eslint/eslint/issues/17267)) (Nitin Kumar)
-   [`f5c01f2`](https://togithub.com/eslint/eslint/commit/f5c01f281ad288b1a0ebddbf579230ae11587c6c) docs: resubmit `Manage Issues` documentation ([#&#8203;17266](https://togithub.com/eslint/eslint/issues/17266)) (Nitin Kumar)
-   [`b199295`](https://togithub.com/eslint/eslint/commit/b1992954591a3f4d8417013f52739b5fef4e0cd7) docs: Resubmit custom rules update docs ([#&#8203;17273](https://togithub.com/eslint/eslint/issues/17273)) (Ben Perlmutter)
-   [`0e9980c`](https://togithub.com/eslint/eslint/commit/0e9980c3a8a1e554fdb377305c0ebe9e94a354c9) docs: add new `omitLastInOneLineClassBody` option to the `semi` rule ([#&#8203;17263](https://togithub.com/eslint/eslint/issues/17263)) (Nitin Kumar)
-   [`cb2560f`](https://togithub.com/eslint/eslint/commit/cb2560f7a393e74b761faa9adad938fb1deb947d) docs: Resubmit getScope/getDeclaredVariables docs ([#&#8203;17262](https://togithub.com/eslint/eslint/issues/17262)) (Nicholas C. Zakas)
-   [`85d2b30`](https://togithub.com/eslint/eslint/commit/85d2b30bc318c1355e52ebb21c56cca32f0ab198) docs: explain how to include predefined globals ([#&#8203;17261](https://togithub.com/eslint/eslint/issues/17261)) (Marcus Wyatt)
-   [`de4d3c1`](https://togithub.com/eslint/eslint/commit/de4d3c14c30a88795b9075d59827d3fe63a42c5e) docs: update flat config default ignore patterns ([#&#8203;17258](https://togithub.com/eslint/eslint/issues/17258)) (Milos Djermanovic)
-   [`3912f3a`](https://togithub.com/eslint/eslint/commit/3912f3a225c12bfb5ce9b7ba26c2b5301e6275bd) docs: Improve `ignores` documentation ([#&#8203;17239](https://togithub.com/eslint/eslint/issues/17239)) (Francesco Trotta)
-   [`35e11d3`](https://togithub.com/eslint/eslint/commit/35e11d3248e00b711fd652836edc900f22af0ebd) docs: fix typos and missing info ([#&#8203;17257](https://togithub.com/eslint/eslint/issues/17257)) (Ed Lucas)
-   [`0bc257c`](https://togithub.com/eslint/eslint/commit/0bc257c290b12fcda85cb61b40d55fc2be0f938c) docs: Clarify `no-div-regex` rule docs ([#&#8203;17051](https://togithub.com/eslint/eslint/issues/17051)) ([#&#8203;17255](https://togithub.com/eslint/eslint/issues/17255)) (Francesco Trotta)
-   [`788d836`](https://togithub.com/eslint/eslint/commit/788d83629a3790a7db6f52dcf0b4bddf51c6d063) docs: add references to MIT License ([#&#8203;17248](https://togithub.com/eslint/eslint/issues/17248)) (Milos Djermanovic)
-   [`58aab6b`](https://togithub.com/eslint/eslint/commit/58aab6b6c09996875418aefeeb0fd76c50caef7a) docs: Update README (GitHub Actions Bot)
-   [`3ef5814`](https://togithub.com/eslint/eslint/commit/3ef58140550cf8ff34af35fc4d9a1f9a124fe0e6) docs: Revert all changes after the license change ([#&#8203;17227](https://togithub.com/eslint/eslint/issues/17227)) (Milos Djermanovic)
-   [`03fc4aa`](https://togithub.com/eslint/eslint/commit/03fc4aa847bd0445e7b3ea81bcc9523b1847facc) docs: Update README (GitHub Actions Bot)

#### Chores

-   [`78350f6`](https://togithub.com/eslint/eslint/commit/78350f63045c82b7990bb7bfe5080c5ad5e1c3f5) chore: upgrade [@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).43.0 ([#&#8203;17295](https://togithub.com/eslint/eslint/issues/17295)) (Milos Djermanovic)
-   [`62bf759`](https://togithub.com/eslint/eslint/commit/62bf759124811b013ad7906c2536deb8b39c31a8) chore: package.json update for [@&#8203;eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins)
-   [`e0a2448`](https://togithub.com/eslint/eslint/commit/e0a2448e0c0ef354e69998858846630a3fce8ebe) chore: docs package.license ISC => MIT ([#&#8203;17254](https://togithub.com/eslint/eslint/issues/17254)) (唯然)
-   [`6a0196c`](https://togithub.com/eslint/eslint/commit/6a0196c51310630a0ff96a1e8d7f257c2c7adda9) chore: use eslint-plugin-eslint-plugin flat configs ([#&#8203;17204](https://togithub.com/eslint/eslint/issues/17204)) (Milos Djermanovic)

</details>

<details>
<summary>webpro/knip (knip)</summary>

### [`v2.14.1`](https://togithub.com/webpro/knip/releases/tag/2.14.1)

[Compare Source](https://togithub.com/webpro/knip/compare/2.14.0...2.14.1)

-   Add support to sentry plugin for nextjs middleware ([#&#8203;143](https://togithub.com/webpro/knip/issues/143)) ([`deea4bc`](https://togithub.com/webpro/knip/commit/deea4bc))

### [`v2.14.0`](https://togithub.com/webpro/knip/releases/tag/2.14.0)

[Compare Source](https://togithub.com/webpro/knip/compare/2.13.0...2.14.0)

-   Report unused members of re-exports (fixes [#&#8203;140](https://togithub.com/webpro/knip/issues/140)) ([`f911062`](https://togithub.com/webpro/knip/commit/f911062))
-   Sync package names in fixtures ([`f2d787e`](https://togithub.com/webpro/knip/commit/f2d787e))
-   Finalize --include-entry-exports, include scripts (closes [#&#8203;142](https://togithub.com/webpro/knip/issues/142)) ([`1e3d3b6`](https://togithub.com/webpro/knip/commit/1e3d3b6))
-   Fix TS issues in webpack plugin ([`bd26f9c`](https://togithub.com/webpro/knip/commit/bd26f9c))

</details>

<details>
<summary>igorshubovych/markdownlint-cli (markdownlint-cli)</summary>

### [`v0.35.0`](https://togithub.com/igorshubovych/markdownlint-cli/releases/tag/v0.35.0): 0.35.0

[Compare Source](https://togithub.com/igorshubovych/markdownlint-cli/compare/v0.34.0...v0.35.0)

-   Update `markdownlint` dependency to `0.29.0`
    -   Update `micromark` parser dependencies for better performance
    -   Use `micromark` in MD049/MD050
    -   Improve MD034/MD037/MD044/MD049/MD050
-   Update all dependencies via `Dependabot`

</details>

<details>
<summary>stylelint/stylelint (stylelint)</summary>

### [`v15.8.0`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#&#8203;1580)

[Compare Source](https://togithub.com/stylelint/stylelint/compare/15.7.0...15.8.0)

-   Added: `media-feature-name-value-no-unknown` ([#&#8203;6906](https://togithub.com/stylelint/stylelint/pull/6906)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Added: support for `.mjs` configuration files ([#&#8203;6910](https://togithub.com/stylelint/stylelint/pull/6910)) ([@&#8203;ybiquitous](https://togithub.com/ybiquitous)).
-   Fixed: `--print-config` description in CLI help ([#&#8203;6914](https://togithub.com/stylelint/stylelint/pull/6914)) ([@&#8203;ybiquitous](https://togithub.com/ybiquitous)).
-   Fixed: `allowEmptyInput` option in configuration files ([#&#8203;6929](https://togithub.com/stylelint/stylelint/pull/6929)) ([@&#8203;ybiquitous](https://togithub.com/ybiquitous)).
-   Fixed: `custom-property-no-missing-var-function` performance ([#&#8203;6922](https://togithub.com/stylelint/stylelint/pull/6922)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `function-calc-no-unspaced-operator` performance ([#&#8203;6923](https://togithub.com/stylelint/stylelint/pull/6923)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `function-linear-gradient-no-nonstandard-direction` performance ([#&#8203;6924](https://togithub.com/stylelint/stylelint/pull/6924)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `function-no-unknown` false positives for SCSS functions with namespace ([#&#8203;6921](https://togithub.com/stylelint/stylelint/pull/6921)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `max-nesting-depth` error for at-rules in Sass syntax ([#&#8203;6909](https://togithub.com/stylelint/stylelint/pull/6909)) ([@&#8203;ybiquitous](https://togithub.com/ybiquitous)).
-   Fixed: `selector-anb-no-unmatchable` performance ([#&#8203;6925](https://togithub.com/stylelint/stylelint/pull/6925)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: remove `v8-compile-cache` dependency ([#&#8203;6907](https://togithub.com/stylelint/stylelint/pull/6907)) ([@&#8203;ybiquitous](https://togithub.com/ybiquitous)).

</details>

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.10.5`](https://togithub.com/vercel/turbo/releases/tag/v1.10.5): Turborepo v1.10.5

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.4...v1.10.5)



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5349
-   feat(turborepo) Add timeout to api client json methods by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5350
-   feat(turborepo): Debugging output for e2e tests by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5351
-   feat(turbo): add main pointing to bin by [@&#8203;wesleytodd](https://togithub.com/wesleytodd) in [vercel/turbo#5333
-   fix: Removed path slash conversion on unix by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5356
-   fix(turborepo): Fix single package inference by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5362

#### New Contributors

-   [@&#8203;wesleytodd](https://togithub.com/wesleytodd) made their first contribution in [vercel/turbo#5333

**Full Changelog**: vercel/turbo@v1.10.4...v1.10.5

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4): Turborepo v1.10.4

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5250
-   feat(turborepo): Port Manual hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5237
-   Docs: prior to run testcases, add guides to install dependencies for testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in [vercel/turbo#3090
-   fix(gen): fix ts config interference by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5263
-   release(turborepo): 1.10.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5262
-   feat(examples): update basic name on docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5224
-   feat(turborepo): port git-based hashing with inputs by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5251
-   Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in [vercel/turbo#5269
-   feat(ci): conditionally set jest verbosity by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5271
-   fix(turborepo): Tighten build globs by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5274
-   fix(turborepo): Fix path match for parent dir in subtree match case by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5275
-   chore(turborepo): Move SCM to use vendored wax crate by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5277
-   release(turborepo): 1.10.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5278
-   fix(turborepo): avoid globbing directories due to ancestor truncation by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5273
-   release(turborepo): 1.10.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5283
-   fix(spaces): read logs correctly when invoked from subdirectory by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5284
-   Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5285
-   feat(turborepo): Run outline pt 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5203
-   feat(lockfiles): add rust implementation for yarn1 by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5255
-   release(turborepo): 1.10.4-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5286
-   feat(turborepo): Report more details when go-turbo exits by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5287
-   docs(examples): update examples and docs to use node 18 by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5300
-   update dependencies to sync with next.js by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5303
-   feat(cache): Add ability to disable remote cache from turbo.json by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5305
-   feat(turborepo): Hash with libgit2 by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5309
-   Add --log-order option by [@&#8203;rafaeltab](https://togithub.com/rafaeltab) in [vercel/turbo#3916
-   release(turborepo): 1.10.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5313
-   feat(turborepo): A few cleanup nits around log grouping by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5312
-   feat(run outline): Hide package graph internals by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5310
-   feat(logging): enable setting log order with an environment variable by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5316
-   feat(cli): Add ability to pass --remote-only=false from CLI by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5317
-   fix(turborepo): Re-enable some tests on windows by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5319
-   refactor(turborepo): cli::run and args processing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5297
-   feat(logging): add "auto" options for log prefixing and ordering by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5320
-   Fix ESLint script command. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5322
-   feat(turborepo): Add context to glob errors by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5323
-   fix(turbo): print help message when turbo called with flags/env vars but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5329
-   refactor(turborepo): Move paths to UTF-8 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5248
-   Add Vercel to CI providers. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5342
-   fix(turborepo): Hashing symlinks is erroring by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5340
-   release(turborepo): 1.10.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5344
-   fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5346

#### New Contributors

-   [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel) made their first contribution in [vercel/turbo#5252
-   [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first contribution in [vercel/turbo#4883
-   [@&#8203;92hackers](https://togithub.com/92hackers) made their first contribution in [vercel/turbo#3090
-   [@&#8203;ph55](https://togithub.com/ph55) made their first contribution in [vercel/turbo#5269

**Full Changelog**: vercel/turbo@v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/timelessco/next-ts-app).
github-merge-queue bot pushed a commit to levaintech/keychain that referenced this pull request Jun 26, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.10.3` ->
`1.10.6`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.6) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

### [`v1.10.6`](https://togithub.com/vercel/turbo/releases/tag/v1.10.6):
Turborepo v1.10.6

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.5...v1.10.6)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.6 -->

#### What's Changed

##### Changelog

- feat(turborepo): Scripts to build a debug version on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5007
- release(turborepo): 1.10.5 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5364
- fix: prevent looking up workspace task if name is not in there by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5370
- fix(turborepo): Restructure spaces client and test error handling by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5367

**Full Changelog**:
vercel/turbo@v1.10.5...v1.10.6

### [`v1.10.5`](https://togithub.com/vercel/turbo/releases/tag/v1.10.5):
Turborepo v1.10.5

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.4...v1.10.5)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.5 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5349
- feat(turborepo) Add timeout to api client json methods by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5350
- feat(turborepo): Debugging output for e2e tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5351
- feat(turbo): add main pointing to bin by
[@&#8203;wesleytodd](https://togithub.com/wesleytodd) in
[vercel/turbo#5333
- fix: Removed path slash conversion on unix by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5356
- fix(turborepo): Fix single package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5362

#### New Contributors

- [@&#8203;wesleytodd](https://togithub.com/wesleytodd) made their first
contribution in
[vercel/turbo#5333

**Full Changelog**:
vercel/turbo@v1.10.4...v1.10.5

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4):
Turborepo v1.10.4

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.4 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5250
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5237
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[vercel/turbo#3090
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5263
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5262
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5224
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5251
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[vercel/turbo#5269
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5271
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5274
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5275
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5277
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5278
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5273
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5283
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5284
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[vercel/turbo#5285
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5203
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5255
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5286
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5287
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5300
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5303
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5305
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5309
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[vercel/turbo#3916
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5313
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5312
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5310
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5316
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5317
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5319
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5297
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5320
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5322
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5323
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5329
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5248
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5342
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5340
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5344
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5346

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[vercel/turbo#5252
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[vercel/turbo#4883
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[vercel/turbo#3090
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[vercel/turbo#5269

**Full Changelog**:
vercel/turbo@v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/levaintech/keychain).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
github-merge-queue bot pushed a commit to fuxingloh/contented that referenced this pull request Jun 30, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.10.3` ->
`^1.10.6`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.6) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.10.6`](https://togithub.com/vercel/turbo/releases/tag/v1.10.6):
Turborepo v1.10.6

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.5...v1.10.6)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.6 -->

#### What's Changed

##### Changelog

- feat(turborepo): Scripts to build a debug version on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5007
- release(turborepo): 1.10.5 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5364
- fix: prevent looking up workspace task if name is not in there by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5370
- fix(turborepo): Restructure spaces client and test error handling by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5367

**Full Changelog**:
vercel/turbo@v1.10.5...v1.10.6

### [`v1.10.5`](https://togithub.com/vercel/turbo/releases/tag/v1.10.5):
Turborepo v1.10.5

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.4...v1.10.5)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.5 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5349
- feat(turborepo) Add timeout to api client json methods by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5350
- feat(turborepo): Debugging output for e2e tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5351
- feat(turbo): add main pointing to bin by
[@&#8203;wesleytodd](https://togithub.com/wesleytodd) in
[vercel/turbo#5333
- fix: Removed path slash conversion on unix by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5356
- fix(turborepo): Fix single package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5362

#### New Contributors

- [@&#8203;wesleytodd](https://togithub.com/wesleytodd) made their first
contribution in
[vercel/turbo#5333

**Full Changelog**:
vercel/turbo@v1.10.4...v1.10.5

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4):
Turborepo v1.10.4

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.4 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5250
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5237
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[vercel/turbo#3090
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5263
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5262
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5224
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5251
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[vercel/turbo#5269
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5271
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5274
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5275
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5277
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5278
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5273
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5283
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5284
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[vercel/turbo#5285
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5203
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5255
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5286
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5287
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5300
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5303
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5305
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5309
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[vercel/turbo#3916
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5313
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5312
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5310
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5316
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5317
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5319
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5297
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5320
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5322
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5323
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5329
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5248
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5342
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5340
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5344
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5346

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[vercel/turbo#5252
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[vercel/turbo#4883
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[vercel/turbo#3090
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[vercel/turbo#5269

**Full Changelog**:
vercel/turbo@v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/levaintech/contented).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjE0MS4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
anthonyshew pushed a commit that referenced this pull request Jul 17, 2023
### Description

Adds documentation for `--log-order` #3916 including a callout of our
special behavior on Github Actions.

### Testing Instructions

Eyes

---------

Co-authored-by: Chris Olszewski <Chris Olszewski>
Chia1104 added a commit to Chia1104/chia1104.dev that referenced this pull request Jul 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint-config-turbo](https://togithub.com/vercel/turbo) | [`1.10.3`
->
`1.10.9`](https://renovatebot.com/diffs/npm/eslint-config-turbo/1.10.3/1.10.9)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-turbo/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-turbo/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-turbo/1.10.3/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-turbo/1.10.3/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.10.8` ->
`1.10.9`](https://renovatebot.com/diffs/npm/turbo/1.10.8/1.10.9) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.8/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.8/1.10.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (eslint-config-turbo)</summary>

### [`v1.10.9`](https://togithub.com/vercel/turbo/releases/tag/v1.10.9):
Turborepo v1.10.9

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.8...v1.10.9)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.9 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.8 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5546
- Update storybook.mdx by
[@&#8203;AmitGurbani](https://togithub.com/AmitGurbani) in
[vercel/turbo#5537
- docs: document log order by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5463
- feat(turborepo): Add task ids to failure reports by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5535
- fix(turborepo): Allow users to select a Vercel team when linking a
repository to a Space by
[@&#8203;mknichel](https://togithub.com/mknichel) in
[vercel/turbo#5533
- Remove binary optimization step. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5543

#### New Contributors

- [@&#8203;AmitGurbani](https://togithub.com/AmitGurbani) made their
first contribution in
[vercel/turbo#5537
- [@&#8203;mknichel](https://togithub.com/mknichel) made their first
contribution in
[vercel/turbo#5533

**Full Changelog**:
vercel/turbo@v1.10.8...v1.10.9

### [`v1.10.8`](https://togithub.com/vercel/turbo/releases/tag/v1.10.8):
Turborepo v1.10.8

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.7...v1.10.8)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.8 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.7 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5434
- chore(turborepo-docs): typo in code generation by
[@&#8203;devdumpling](https://togithub.com/devdumpling) in
[vercel/turbo#5445
- docs: update create-new.mdx by
[@&#8203;tyler-lutz](https://togithub.com/tyler-lutz) in
[vercel/turbo#5464
- fix(turborepo): properly tag errors when running in GH Actions by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5435
- feat(turborepo): Calculate package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5406
- feat(lockfile) hide berry lockfile lifetime by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5436
- feat(turborepo): More verbose status error by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5489
- chore: suggest git upgrade by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5472
- release(turborepo): 1.10.8-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5490
- Use Workspace Configurations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5492
- fix(turborepo): use serde_jsonc recommended pattern. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5491
- chore: Fix clippy errors and remove old feature directives by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5497
- feat(turborepo): Port HTTP Cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5065
- fix(turborepo): Copy bytes from stdout and stderr before saving them
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5508
- chore: Added clippy deny all to crates by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5514
- Fix link. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew)
in
[vercel/turbo#5518
- Better spot for link. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5520
- Implement hashing fallback by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5505
- release(turborepo): 1.10.8-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5523
- chore: use fs-err in turborepo fs related libs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5517
- fix(turborepo): Rebuild turbo if Go code has changed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5530
- fix(turborepo): Export and match on our copy of BasicUI by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5532
- release(turborepo): 1.10.8-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5534
- feat(turborepo): FS Cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5473

#### New Contributors

- [@&#8203;devdumpling](https://togithub.com/devdumpling) made their
first contribution in
[vercel/turbo#5445
- [@&#8203;tyler-lutz](https://togithub.com/tyler-lutz) made their first
contribution in
[vercel/turbo#5464

**Full Changelog**:
vercel/turbo@v1.10.7...v1.10.8

### [`v1.10.7`](https://togithub.com/vercel/turbo/releases/tag/v1.10.7):
Turborepo v1.10.7

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.6...v1.10.7)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.7 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.6 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5373
- chore: replace `default_features` with `default-features` by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[vercel/turbo#5382
- Fix misleading GitLab CI documentation by
[@&#8203;will3942](https://togithub.com/will3942) in
[vercel/turbo#4635
- Update docs with example of nested workspaces by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[vercel/turbo#4178
- Plainer explanation for synthetic tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5388
- feat: port package graph by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5345
- fix(turborepo): Drop implicit path conversions by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5375
- refactor(turborepo): Enumerate the things we hash by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5401
- feat(turborepo): Use Github log prefixes when running on Github
Actions by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5385
- fix(turborepo): Handle globbing into directories that don't exist by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5404
- release(turborepo): 1.10.7-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5413
- feature(turborepo): Turbo Info Command by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5354
- feat(turborepo): refactor scm and thread into scope calculation by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5405
- perf(lockfiles): Eagerly parse berry resolutions by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5417
- Remove experimental badge. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5422
- Remove experimental warning. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5421
- ci: remove replacement usage from goreleaser by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5424
- fix(turborepo): Send spaces logs for all tasks, even ones that aren't
cached by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5425
- release(turborepo): 1.10.7-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5428
- fix(turborepo) Set package inference and single_package even without a
repo state by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5432
- fix(glob): add glob pattern codemods into globwalk by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5431

#### New Contributors

- [@&#8203;will3942](https://togithub.com/will3942) made their first
contribution in
[vercel/turbo#4635

**Full Changelog**:
vercel/turbo@v1.10.6...v1.10.7

### [`v1.10.6`](https://togithub.com/vercel/turbo/releases/tag/v1.10.6):
Turborepo v1.10.6

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.5...v1.10.6)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.6 -->

#### What's Changed

##### Changelog

- feat(turborepo): Scripts to build a debug version on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5007
- release(turborepo): 1.10.5 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5364
- fix: prevent looking up workspace task if name is not in there by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5370
- fix(turborepo): Restructure spaces client and test error handling by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5367

**Full Changelog**:
vercel/turbo@v1.10.5...v1.10.6

### [`v1.10.5`](https://togithub.com/vercel/turbo/releases/tag/v1.10.5):
Turborepo v1.10.5

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.4...v1.10.5)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.5 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5349
- feat(turborepo) Add timeout to api client json methods by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5350
- feat(turborepo): Debugging output for e2e tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5351
- feat(turbo): add main pointing to bin by
[@&#8203;wesleytodd](https://togithub.com/wesleytodd) in
[vercel/turbo#5333
- fix: Removed path slash conversion on unix by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5356
- fix(turborepo): Fix single package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5362

#### New Contributors

- [@&#8203;wesleytodd](https://togithub.com/wesleytodd) made their first
contribution in
[vercel/turbo#5333

**Full Changelog**:
vercel/turbo@v1.10.4...v1.10.5

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4):
Turborepo v1.10.4

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.4 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5250
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5237
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[vercel/turbo#3090
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5263
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5262
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5224
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5251
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[vercel/turbo#5269
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5271
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5274
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5275
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5277
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5278
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5273
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5283
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5284
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[vercel/turbo#5285
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5203
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5255
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5286
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5287
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5300
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5303
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5305
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5309
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[vercel/turbo#3916
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5313
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5312
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5310
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5316
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5317
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5319
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5297
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5320
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5322
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5323
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5329
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5248
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5342
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5340
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5344
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5346

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[vercel/turbo#5252
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[vercel/turbo#4883
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[vercel/turbo#3090
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[vercel/turbo#5269

**Full Changelog**:
vercel/turbo@v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Chia1104/chia1104.dev).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
NicholasLYang pushed a commit that referenced this pull request Jul 21, 2023
commit 6c178d2
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Thu Jul 20 18:06:03 2023 +0200

    Extract shared HMR utils to their own modules/crates (#5576)

    ### Description

    These will also be used in Next.js by the Nexturbo dev API.

    ### Testing Instructions

    N/A

commit e5f43a5
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Wed Jul 19 18:03:12 2023 -0700

    fix: pnpm alias workspace deps (#5569)

    ### Description

    Fixes #5441

    Adds support for [referencing workspaces through
    aliases](https://pnpm.io/workspaces#referencing-workspace-packages-through-aliases)
    by properly resolving them to the correct workspace. Before we would
    mark a package as being an external dependency (or if the alias was a
    valid workspace depend on the incorrect one).

    This PR now recognizes when `workspace:` dependency references a
    different package than the name that's used in the `package.json`.

    Note for reviewers:
    This probably isn't the cleanest solution in either Rust or Go, but
    while we need to maintain two codepaths this keeps the code roughly
    equivalent.

    ### Testing Instructions

    Added unit tests on the Go side.

    Tested manually with a repository where `web` specified it's dependency
    on `@scope/ui` as `"ui": "workspace:@scope/ui@*" and verified that:
    - `turbo run build`: `@scope/ui` finished building before building
    `web`, this hits the Go impl
    - `turbo prune --scope=web`: `@scope/ui` was included in the pruned
    repository, this hits the Rust impl

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 396bf45
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Wed Jul 19 13:31:35 2023 -0700

    feat: port prune to rust (#5531)

    ### Description

    Port prune from Go to Rust and remove the old Go implementation. To
    achieve this the following was done:
     - Parsing the lockfile during package graph construction
     - Porting utility functions
    - Some minor changes in `turborepo_paths`, these were primarily moving
    methods from their owned to borrowed counterparts
    - Expanding `package.json` parsing to grab some of the information
    pruning requires
    - Porting of the prune command itself. I added some additional structure
    compared to the Go version, but not enough that comparing it to the Go
    version should be difficult

    Notes for reviewers:
    I apologize that this PR ended up touching as much as it did. Reviewing
    the PR by commit should at least make all of the changes and their
    impacts obvious. Commits before `2d4154c` are already on main and can be
    skipped.

    ### Testing Instructions

    Existing unit tests and integration tests for file copying and package
    graph traversal. Actual lockfile behavior is mostly covered by unit
    tests that were ported when the lockfile were ported.

    Also did various manual testing with pruning monorepos.

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 007b574
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Wed Jul 19 22:17:39 2023 +0200

    Remove unnecessary ValueDebugFormat item, hide Vc field (#5567)

    ### Description

    This removes unnecessary items from the IDE's autosuggestion.

    I'd also like to get rid of all the `*_inline` suggestions, but RA will
    ignore `#[doc(hidden)]` when inside the same crate. I don't think
    there's a way to indicate "never, ever suggest this item". We could move
    some of these to be private to some generated module, but that module
    would probably still show up as a top level suggestion.

    ### Testing Instructions

    Automated tests.

commit d13b812
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jul 19 11:32:07 2023 -0700

    release(turborepo): 1.10.9 (#5565)

    Co-authored-by: Turbobot <turbobot@vercel.com>
    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 229a2a4
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Wed Jul 19 16:08:16 2023 +0200

    make with_layer return Vc<Self> (#5563)

    ### Description

    Using the new ability to return `Vc<Self>`

    Co-authored-by: Alex Kirszenberg <alexkirsz@users.noreply.github.com>

commit c78593b
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Tue Jul 18 20:11:16 2023 -0700

    feat(turborepo): Add proxy support to create-turbo and turbo-gen (#5554)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit 5ab8ac0
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Tue Jul 18 15:06:38 2023 -0700

    fix(lockfile): Fix directory resolution variant (#5551)

    ### Description

    Fixes #5529

    During the Rust migration I must've messed up the directory field name.
    Double checked against
    [`@pnpm/lockfile-types`](https://github.com/pnpm/pnpm/blob/main/lockfile/lockfile-types/src/index.ts#L86)
    to make sure all of the fields are correct now.

    `PackageResolution` should be an enum, but the fact that tarballs are an
    untagged variant makes that tricky to communicate to `serde`. A struct
    does enough for us.

    ### Testing Instructions

    Added new unit test to make sure we don't lose any fields for the
    various variants of the `resolution` field

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit ca7e3e4
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Jul 18 14:51:34 2023 -0700

    release(turborepo): 1.10.9-canary.0 (#5559)

    Co-authored-by: Turbobot <turbobot@vercel.com>

commit fc5e2b0
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Tue Jul 18 13:16:16 2023 -0700

    chore: no longer convert in relative unix path constructor (#5552)

    ### Description

    To quote @gsoltis:
    > In general:
    > - constructors should validate, to the extent they can (not much for
    `unix` paths, but can verify relative)
    > - conversions should be explicit. You need to know where you're
    starting from. If this were an AnchoredSystemPath on windows, the `\` ->
    `/` makes sense. If it's a literal from e.g. a tar file, then it
    doesn't.

    Reviewers Notes:
    - Opening up this PR in VSCode and using `Find All References` on the
    constructor is useful for double checking that I didn't miss a
    conversion.
    - Clippy error appeared on local when I made these changes. Fixed it
    just in case that would block CI
    - Moved `to_unix` to `AnchoredSystemPath` instead of
    `AnchoredSystemPathBuf` now that we have deref coercion which will
    automatically convert `&AnchroedSystemPathBuf` to `&AnchoredSystemPath`
    and moving the method allows it to be called from either type.

    ### Testing Instructions

    Looked through all uses of `RelativeUnixPathBuf::new` to see if there
    were places that depended on the conversion. The only use that was
    obvious was the usage in `cache_archive/create.rs`. `dotEnv` was the
    only other place where we possibly were converting a system path to a
    relative unix. We don't specify that `dotEnv` entries should be unix
    relative, so we might've been accidentally supporting system paths, but

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 3eb3a5f
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Tue Jul 18 21:21:51 2023 +0200

    Ensure output assets reference only output assets (#5557)

    ### Description

    Ensure output assets reference only output assets

    next.js PR: vercel/next.js#52832

commit 22f0bf4
Author: Nathan Hammond <nathan.hammond@vercel.com>
Date:   Wed Jul 19 02:59:12 2023 +0800

    Remove binary optimization step. (#5543)

    Co-authored-by: Nathan Hammond <Nathan Hammond>

commit 5955625
Author: mknichel <7355009+mknichel@users.noreply.github.com>
Date:   Tue Jul 18 10:09:28 2023 -0700

    fix(turborepo): Allow users to select a Vercel team when linking a repository to a Space (#5533)

commit 814f0a2
Author: Leah <github.leah@hrmny.sh>
Date:   Tue Jul 18 17:31:33 2023 +0200

    feat(turbopack-ecmascript): implement acyclic SCC graph for ESM imports (#5506)

commit 46bb9b7
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Tue Jul 18 13:41:01 2023 +0200

    move references() to specific traits (#5555)

    ### Description

    preparation for making different typed references

    next.js PR: vercel/next.js#52822

commit 56edd9e
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Mon Jul 17 21:37:26 2023 -0700

    feat(turborepo): Add task ids to failure reports (#5535)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit ea934d1
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Mon Jul 17 13:52:59 2023 -0700

    chore(turborepo): Turborepo owns the examples-tests directory (#5540)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit 5279282
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Mon Jul 17 19:55:22 2023 +0200

    Add missing feature to syn (#5547)

    ### Description

    Cargo check currently fails with:

    ```
    error[E0277]: `syn::Type` doesn't implement `Debug`
     --> crates/turbo-tasks-macros-shared/src/primitive_input.rs:8:5
      |
    6 | #[derive(Debug)]
      |          ----- in this derive macro expansion
    7 | pub struct PrimitiveInput {
    8 |     pub ty: Type,
      |     ^^^^^^^^^^^^ `syn::Type` cannot be formatted using `{:?}` because it doesn't implement `Debug`
      |
      = help: the trait `Debug` is not implemented for `syn::Type`
      = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info)

    For more information about this error, try `rustc --explain E0277`.
    error: could not compile `turbo-tasks-macros-shared` (lib) due to previous error
    ```

    This is because because turbo-tasks-macros-shared (which is missing a
    syn feature to enable the debug trait) is part of the workspace default
    members, while turbo-tasks-macros (which has the feature) isn’t.

    ### Testing Instructions

    `cargo check`

commit 78f6cc8
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Mon Jul 17 10:40:13 2023 -0700

    docs: document log order (#5463)

    ### Description

    Adds documentation for `--log-order` #3916 including a callout of our
    special behavior on Github Actions.

    ### Testing Instructions

    Eyes

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 0771b80
Author: Amit Gurbani <amit1994.gurbani@gmail.com>
Date:   Mon Jul 17 23:09:44 2023 +0530

    Update storybook.mdx (#5537)

    ### Description

    Storybook now can be built with node 18, hence removing this from
    documentation.

    Co-authored-by: Anthony Shew <anthony.shew@vercel.com>

commit 91ca2ae
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jul 17 10:11:06 2023 -0700

    release(turborepo): 1.10.8 (#5546)

    Co-authored-by: Turbobot <turbobot@vercel.com>

commit d24075f
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Mon Jul 17 08:12:38 2023 -0700

    fix(turborepo): Set corepack dir for examples (#5539)

    ### Description

    - set a corepack install directory per example to avoid concurrency
    issues
     - set the `PATH` for the test to include the corepack directory

    ### Testing Instructions

    Examples tests

    ---------

    Co-authored-by: Greg Soltis <Greg Soltis>

commit 46d0945
Author: Nicholas Yang <nicholas.yang@vercel.com>
Date:   Mon Jul 17 11:07:45 2023 -0400

    feat(turborepo): FS Cache (#5473)

    ### Description

    Implements the FS cache on top of CacheItem. ~~This is stacked on top of
    #5065~~

    ### Testing Instructions

    Uses the same round-trip tests of HTTP cache.

    ---------

    Co-authored-by: --global <Nicholas Yang>
    Co-authored-by: Chris Olszewski <chris.olszewski@vercel.com>

commit 135c08f
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Mon Jul 17 16:44:56 2023 +0200

    add direct cycle detection (#5544)

    ### Description

    very simple detection of dumb mistakes

commit 02f55d9
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Mon Jul 17 16:33:34 2023 +0200

    move Asset::ident to more specific traits (#5528)

    ### Description

    * `ident()` is no longer on Asset, but on `Module`, `Source`,
    `OutputAsset` or `Chunk`
    * On the way, more AssetVc types needed to be switched to more specific
    traits

    next.js PR: vercel/next.js#52683

commit b069545
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Mon Jul 17 13:41:18 2023 +0200

    AdjacencyMap::reverse_topological (+ fixes) (#5527)

    ### Description

    This adds `AdjacencyMap::reverse_topological`, which is similar to
    `AdjacencyMap::into_reverse_topological` but doesn't consume the graph.

    This also:
    * Makes `AdjacencyMap` storable in `turbo_tasks::value`s;
    * Fixes ValueDebugFormat and TraceRawVcs derive macros so they support
    generic argument and bounds properly.

    ### Testing Instructions

    N/A

commit 8433a32
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Sun Jul 16 14:07:49 2023 +0200

    Vc<T> and Turbo Engine type system improvements (#4587)

    This PR changes our Turbo Engine code generation from generating
    additional `TypeVc` types to allowing the `Vc<Type>` notation. It also
    brings other improvements to the Turbo Engine type system, like more
    type-safe downcasting and upcasting, better support for primitives, the
    possibility to accept `&self` in `#[value_impl]` implementations
    everywhere, and a bunch of other changes.

    link WEB-379

commit fdc358a
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri Jul 14 20:31:07 2023 -0700

    release(turborepo): 1.10.8-canary.2 (#5534)

    Co-authored-by: Turbobot <turbobot@vercel.com>

commit 26fee25
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Fri Jul 14 11:13:59 2023 -0700

    fix(turborepo): Export and match on our copy of BasicUI (#5532)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit b0ea0a8
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Fri Jul 14 10:39:52 2023 -0700

    fix(turborepo): Rebuild turbo if Go code has changed (#5530)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit b6bb8fe
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Fri Jul 14 06:47:13 2023 -0700

    chore: use fs-err in turborepo fs related libs (#5517)

    ### Description
    Swaps our usage of various `fs` methods to use `fs-err` instead. To
    quote the `fs-err` docs:

    > Using [std::fs](https://doc.rust-lang.org/stable/std/fs/), if this
    code fails:
    >
    > `let file = File::open("does not exist.txt")?;`
    >
    > The error message that Rust gives you isn't very useful:
    >
    > `The system cannot find the file specified. (os error 2)`
    >
    > ...but if we use `fs-err` instead, our error contains more actionable
    information:
    >
    > ```failed to open file `does not exist.txt`
    > caused by: The system cannot find the file specified. (os error 2)```

    ### Testing Instructions
    Existing unit tests pass

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit f3a36e7
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jul 13 15:27:21 2023 -0700

    release(turborepo): 1.10.8-canary.1 (#5523)

    Co-authored-by: Turbobot <turbobot@vercel.com>

commit cabca3c
Author: Nicholas Yang <nicholas.yang@vercel.com>
Date:   Thu Jul 13 16:12:46 2023 -0400

    chore: Extend examples timeout (#5504)

    ### Description

    We get a lot of timeout failures on examples tests. Since this almost
    always requires re-running the test, which adds another 30 minutes of
    compute time, it's probably better to extend the timeout to 40 minutes.

    ### Testing Instructions

    <!--
      Give a quick description of steps to test your changes.
    -->

    Co-authored-by: nicholaslyang <Nicholas Yang>

commit 7c18c80
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Thu Jul 13 12:58:14 2023 -0700

    Implement hashing fallback (#5505)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit 67e71c7
Author: Anthony Shew <anthony.shew@vercel.com>
Date:   Thu Jul 13 11:35:08 2023 -0700

    Better spot for link. (#5520)

commit a14180e
Author: Anthony Shew <anthony.shew@vercel.com>
Date:   Thu Jul 13 11:24:26 2023 -0700

    Fix link. (#5518)

commit b7aaa7b
Author: Nicholas Yang <nicholas.yang@vercel.com>
Date:   Thu Jul 13 13:18:44 2023 -0400

    chore: Added clippy deny all to crates (#5514)

    Co-authored-by: nicholaslyang <Nicholas Yang>

commit e3c68fa
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Thu Jul 13 16:34:27 2023 +0200

    Add any_content_changed_of_output_assets (#5513)

    ### Description

    Required for vercel/next.js#52259

    ### Testing Instructions

    N/A

    Co-authored-by: Tobias Koppers <sokra@users.noreply.github.com>

commit 4022f2b
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Thu Jul 13 14:54:55 2023 +0200

    OutputAsset trait (#5507)

    ### Description

    adding a trait to all assets in the output graph

    next.js PR: vercel/next.js#52606
benelan pushed a commit to Esri/calcite-design-system that referenced this pull request Aug 29, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.10.1` ->
`1.10.13`](https://renovatebot.com/diffs/npm/turbo/1.10.1/1.10.13) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.1/1.10.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.1/1.10.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

###
[`v1.10.13`](https://togithub.com/vercel/turbo/releases/tag/v1.10.13):
Turborepo v1.10.13

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.12...v1.10.13)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.13 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.12 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5611](https://togithub.com/vercel/turbo/pull/5611)
- Change READMEs of created turborepos (reflect appDir) by
[@&#8203;DerTimonius](https://togithub.com/DerTimonius) in
[https://github.com/vercel/turbo/pull/5583](https://togithub.com/vercel/turbo/pull/5583)
- chore: upgrade pnpm to version that support node 20 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5609](https://togithub.com/vercel/turbo/pull/5609)
- export namespace object instead commonjs interop object by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5619](https://togithub.com/vercel/turbo/pull/5619)
- fix esm export in build runtime by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5621](https://togithub.com/vercel/turbo/pull/5621)
- Revert "export namespace object instead commonjs interop object" by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5620](https://togithub.com/vercel/turbo/pull/5620)
- Allow fallback to be used outside VERCEL by
[@&#8203;cipriancaba](https://togithub.com/cipriancaba) in
[https://github.com/vercel/turbo/pull/5614](https://togithub.com/vercel/turbo/pull/5614)
- fix(turborepo): Parse turbo json with comments by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5623](https://togithub.com/vercel/turbo/pull/5623)
- remove require.cache clear from chunk loading by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5626](https://togithub.com/vercel/turbo/pull/5626)
- Snapshot tests: canonicalize with dunce by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5582](https://togithub.com/vercel/turbo/pull/5582)
- Turbopack: Sort env vars for compatibility by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5633](https://togithub.com/vercel/turbo/pull/5633)
- fix tracing span names by [@&#8203;sokra](https://togithub.com/sokra)
in
[https://github.com/vercel/turbo/pull/5624](https://togithub.com/vercel/turbo/pull/5624)
- WEB-1278: Turbopack build: Implement minification with swc minify by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5597](https://togithub.com/vercel/turbo/pull/5597)
- Update `swc_core` to `v0.79.33` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/5632](https://togithub.com/vercel/turbo/pull/5632)
- feat: wasm text format and import support by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/5636](https://togithub.com/vercel/turbo/pull/5636)
- feature(turborepo): Port Async Cache and Cache Multiplexer by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5634](https://togithub.com/vercel/turbo/pull/5634)
- update swc_core and sync deps by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5666](https://togithub.com/vercel/turbo/pull/5666)
- \[2/n] no-context lint: migrate some crates by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5640](https://togithub.com/vercel/turbo/pull/5640)
- \[3/n] no-context: migrate `turbopack-core` by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5661](https://togithub.com/vercel/turbo/pull/5661)
- chore(docs): improve docs for loose & strict env modes by
[@&#8203;styfle](https://togithub.com/styfle) in
[https://github.com/vercel/turbo/pull/5671](https://togithub.com/vercel/turbo/pull/5671)
- Make Go play nicely with omitempty. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5673](https://togithub.com/vercel/turbo/pull/5673)
- add untracked trait reads by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5675](https://togithub.com/vercel/turbo/pull/5675)
- IssueFilePathExt -> IssueDescriptionExt by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5676](https://togithub.com/vercel/turbo/pull/5676)
- \[4/n] no-context: migrate `turbopack-ecmascript` by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5662](https://togithub.com/vercel/turbo/pull/5662)
- \[5/n] no-context: migrate remaining crates by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5663](https://togithub.com/vercel/turbo/pull/5663)
- Hide some turbo_tasks internals by
[@&#8203;alexkirsz](https://togithub.com/alexkirsz) in
[https://github.com/vercel/turbo/pull/5584](https://togithub.com/vercel/turbo/pull/5584)
- remove error in update by [@&#8203;sokra](https://togithub.com/sokra)
in
[https://github.com/vercel/turbo/pull/5686](https://togithub.com/vercel/turbo/pull/5686)
- chore(gen): reduce published bundle size by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5685](https://togithub.com/vercel/turbo/pull/5685)
- feat(codemod): upgrade refactor by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5279](https://togithub.com/vercel/turbo/pull/5279)
- release(turborepo): 1.10.13-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5690](https://togithub.com/vercel/turbo/pull/5690)
- Cleanup minify by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5696](https://togithub.com/vercel/turbo/pull/5696)
- feat: port task graph construction by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5652](https://togithub.com/vercel/turbo/pull/5652)
- fix(turborepo): Rationalize the install and execution process. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5695](https://togithub.com/vercel/turbo/pull/5695)
- docs(ci-github-actions): fix indent by
[@&#8203;mparramont](https://togithub.com/mparramont) in
[https://github.com/vercel/turbo/pull/5700](https://togithub.com/vercel/turbo/pull/5700)
- feat: support `?module` imports for WebAssembly by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/5660](https://togithub.com/vercel/turbo/pull/5660)
- feature(turborepo): `turborepo-ui` crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5684](https://togithub.com/vercel/turbo/pull/5684)
- fix dynamic embedding after the `Vc<T>` update by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/5708](https://togithub.com/vercel/turbo/pull/5708)
- Update `swc_core` to `v0.79.55` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/5699](https://togithub.com/vercel/turbo/pull/5699)
- AST-based modification of turbo.json by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5509](https://togithub.com/vercel/turbo/pull/5509)
- chore(docs): use correct npm flag in installation docs by
[@&#8203;itzjacki](https://togithub.com/itzjacki) in
[https://github.com/vercel/turbo/pull/5711](https://togithub.com/vercel/turbo/pull/5711)
- Update environment variable docs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5706](https://togithub.com/vercel/turbo/pull/5706)
- chore(turborepo): Refactor globwatcher setup by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5704](https://togithub.com/vercel/turbo/pull/5704)
- chore(turbo): disable deployments for gh pages by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5713](https://togithub.com/vercel/turbo/pull/5713)
- Update `context` property in JS to match serialized Rust type by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5715](https://togithub.com/vercel/turbo/pull/5715)
- feat: expose path to invalid package.json in error by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5629](https://togithub.com/vercel/turbo/pull/5629)
- fix(turbo): remove trailing comma by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5724](https://togithub.com/vercel/turbo/pull/5724)
- fix(turbo-gen): better placeholders by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5725](https://togithub.com/vercel/turbo/pull/5725)
- chore(labeler): add created-by label by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5726](https://togithub.com/vercel/turbo/pull/5726)
- Add a FileSystemPathOption::none for cached cell reuse by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5717](https://togithub.com/vercel/turbo/pull/5717)
- Use shallow references in `any_content_changed_of_module` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5718](https://togithub.com/vercel/turbo/pull/5718)
- fix(turbo-workspaces): support alternate workspace format by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5712](https://togithub.com/vercel/turbo/pull/5712)
- chore(labeler): change team to owned-by by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5729](https://togithub.com/vercel/turbo/pull/5729)
- fix(Turborepo): Drop argument separator for yarn by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5709](https://togithub.com/vercel/turbo/pull/5709)
- Bump lockfile to account for turborepo-ci by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5733](https://togithub.com/vercel/turbo/pull/5733)
- fix(release): correct version script by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5735](https://togithub.com/vercel/turbo/pull/5735)
- feat: port task graph validation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5703](https://togithub.com/vercel/turbo/pull/5703)
- feat: add async graph walker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5697](https://togithub.com/vercel/turbo/pull/5697)
- Misc comments in turbo_tasks by
[@&#8203;alexkirsz](https://togithub.com/alexkirsz) in
[https://github.com/vercel/turbo/pull/5723](https://togithub.com/vercel/turbo/pull/5723)
- chore(labels): consolidate issue labels by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5731](https://togithub.com/vercel/turbo/pull/5731)
- release(turborepo): 1.10.13-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5736](https://togithub.com/vercel/turbo/pull/5736)
- Transformation code necessary to support Server Actions by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5705](https://togithub.com/vercel/turbo/pull/5705)
- fix(lockfile): use correct ffi method for global changes by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5742](https://togithub.com/vercel/turbo/pull/5742)
- feature(turbo): Port Run Cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5707](https://togithub.com/vercel/turbo/pull/5707)
- fix: Remove package_task.rs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5747](https://togithub.com/vercel/turbo/pull/5747)
- fix: give name to package so that it works with rust codepath by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5727](https://togithub.com/vercel/turbo/pull/5727)
- feat: port run graph flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5728](https://togithub.com/vercel/turbo/pull/5728)
- chore: dedupe our lockfile names by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5749](https://togithub.com/vercel/turbo/pull/5749)
- release(turborepo): 1.10.13-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5741](https://togithub.com/vercel/turbo/pull/5741)
- chore: remove use of rc for task definitions by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5750](https://togithub.com/vercel/turbo/pull/5750)
- chore: remove pass through env from experimental fields by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5753](https://togithub.com/vercel/turbo/pull/5753)
- feat(turborepo): Framework inference by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5746](https://togithub.com/vercel/turbo/pull/5746)
- feature(turborepo): Spaces gets its own API client. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5674](https://togithub.com/vercel/turbo/pull/5674)
- fix(example): basic example react version in ui package by
[@&#8203;anmol242](https://togithub.com/anmol242) in
[https://github.com/vercel/turbo/pull/5757](https://togithub.com/vercel/turbo/pull/5757)
- Update to-cache-or-not-to-cache.mdx by
[@&#8203;uiolee](https://togithub.com/uiolee) in
[https://github.com/vercel/turbo/pull/5760](https://togithub.com/vercel/turbo/pull/5760)
- chore(types): consolidate packagejson type by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5754](https://togithub.com/vercel/turbo/pull/5754)
- fix(docs): fix docs 404 by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5767](https://togithub.com/vercel/turbo/pull/5767)
- fix(turborepo): Adopt std::cell::OnceCell by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5763](https://togithub.com/vercel/turbo/pull/5763)
- fix(turborepo): Force all URLs to be normalized during login. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5774](https://togithub.com/vercel/turbo/pull/5774)
- feat(examples): fix basic lint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5775](https://togithub.com/vercel/turbo/pull/5775)
- fix: make color selector threadsafe by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5771](https://togithub.com/vercel/turbo/pull/5771)
- fix: copy root json to full directory by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5769](https://togithub.com/vercel/turbo/pull/5769)
- fix(examples): rename basic eslint config by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5778](https://togithub.com/vercel/turbo/pull/5778)
- fix: take reference of run cache opts by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5779](https://togithub.com/vercel/turbo/pull/5779)
- feat(examples): update tailwind lint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5777](https://togithub.com/vercel/turbo/pull/5777)
- fix(turborepo): Remove automatic linking. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5776](https://togithub.com/vercel/turbo/pull/5776)
- docs: clairify successful tasks are cached by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5782](https://togithub.com/vercel/turbo/pull/5782)
- Port filter and scope to rust by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5628](https://togithub.com/vercel/turbo/pull/5628)

#### New Contributors

- [@&#8203;DerTimonius](https://togithub.com/DerTimonius) made their
first contribution in
[https://github.com/vercel/turbo/pull/5583](https://togithub.com/vercel/turbo/pull/5583)
- [@&#8203;cipriancaba](https://togithub.com/cipriancaba) made their
first contribution in
[https://github.com/vercel/turbo/pull/5614](https://togithub.com/vercel/turbo/pull/5614)
- [@&#8203;mparramont](https://togithub.com/mparramont) made their first
contribution in
[https://github.com/vercel/turbo/pull/5700](https://togithub.com/vercel/turbo/pull/5700)
- [@&#8203;itzjacki](https://togithub.com/itzjacki) made their first
contribution in
[https://github.com/vercel/turbo/pull/5711](https://togithub.com/vercel/turbo/pull/5711)
- [@&#8203;anmol242](https://togithub.com/anmol242) made their first
contribution in
[https://github.com/vercel/turbo/pull/5757](https://togithub.com/vercel/turbo/pull/5757)
- [@&#8203;uiolee](https://togithub.com/uiolee) made their first
contribution in
[https://github.com/vercel/turbo/pull/5760](https://togithub.com/vercel/turbo/pull/5760)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.12...v1.10.13

###
[`v1.10.12`](https://togithub.com/vercel/turbo/releases/tag/v1.10.12):
Turborepo v1.10.12

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.12 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.11 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5600](https://togithub.com/vercel/turbo/pull/5600)
- fix(prune): copy pnpm workspace file to top level out directory by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5605](https://togithub.com/vercel/turbo/pull/5605)
- fix: use correct enum values for task output mode by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5607](https://togithub.com/vercel/turbo/pull/5607)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.11...v1.10.12

###
[`v1.10.11`](https://togithub.com/vercel/turbo/releases/tag/v1.10.11):
Turborepo v1.10.11

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.11 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5593](https://togithub.com/vercel/turbo/pull/5593)
- fix: re-enable go-daemon by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5596](https://togithub.com/vercel/turbo/pull/5596)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.10...v1.10.11

###
[`v1.10.10`](https://togithub.com/vercel/turbo/releases/tag/v1.10.10):
Turborepo v1.10.10

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.10 -->

#### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5552](https://togithub.com/vercel/turbo/pull/5552)
- release(turborepo): 1.10.9-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5559](https://togithub.com/vercel/turbo/pull/5559)
- fix(lockfile): Fix directory resolution variant by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5551](https://togithub.com/vercel/turbo/pull/5551)
- feat(turborepo): Add proxy support to create-turbo and turbo-gen by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5554](https://togithub.com/vercel/turbo/pull/5554)
- release(turborepo): 1.10.9 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5565](https://togithub.com/vercel/turbo/pull/5565)
- feat: port prune to rust by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5531](https://togithub.com/vercel/turbo/pull/5531)
- fix: pnpm alias workspace deps by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5569](https://togithub.com/vercel/turbo/pull/5569)
- release(turborepo): 1.10.10-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5577](https://togithub.com/vercel/turbo/pull/5577)
- fix: Forward verbosity flags to local turbo by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5578](https://togithub.com/vercel/turbo/pull/5578)
- feat: port package graph validation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5566](https://togithub.com/vercel/turbo/pull/5566)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.9...v1.10.10

### [`v1.10.9`](https://togithub.com/vercel/turbo/releases/tag/v1.10.9):
Turborepo v1.10.9

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.8...v1.10.9)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.9 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.8 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5546](https://togithub.com/vercel/turbo/pull/5546)
- Update storybook.mdx by
[@&#8203;AmitGurbani](https://togithub.com/AmitGurbani) in
[https://github.com/vercel/turbo/pull/5537](https://togithub.com/vercel/turbo/pull/5537)
- docs: document log order by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5463](https://togithub.com/vercel/turbo/pull/5463)
- feat(turborepo): Add task ids to failure reports by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5535](https://togithub.com/vercel/turbo/pull/5535)
- fix(turborepo): Allow users to select a Vercel team when linking a
repository to a Space by
[@&#8203;mknichel](https://togithub.com/mknichel) in
[https://github.com/vercel/turbo/pull/5533](https://togithub.com/vercel/turbo/pull/5533)
- Remove binary optimization step. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5543](https://togithub.com/vercel/turbo/pull/5543)

#### New Contributors

- [@&#8203;AmitGurbani](https://togithub.com/AmitGurbani) made their
first contribution in
[https://github.com/vercel/turbo/pull/5537](https://togithub.com/vercel/turbo/pull/5537)
- [@&#8203;mknichel](https://togithub.com/mknichel) made their first
contribution in
[https://github.com/vercel/turbo/pull/5533](https://togithub.com/vercel/turbo/pull/5533)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.8...v1.10.9

### [`v1.10.8`](https://togithub.com/vercel/turbo/releases/tag/v1.10.8):
Turborepo v1.10.8

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.7...v1.10.8)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.8 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.7 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5434](https://togithub.com/vercel/turbo/pull/5434)
- chore(turborepo-docs): typo in code generation by
[@&#8203;devdumpling](https://togithub.com/devdumpling) in
[https://github.com/vercel/turbo/pull/5445](https://togithub.com/vercel/turbo/pull/5445)
- docs: update create-new.mdx by
[@&#8203;tyler-lutz](https://togithub.com/tyler-lutz) in
[https://github.com/vercel/turbo/pull/5464](https://togithub.com/vercel/turbo/pull/5464)
- fix(turborepo): properly tag errors when running in GH Actions by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5435](https://togithub.com/vercel/turbo/pull/5435)
- feat(turborepo): Calculate package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5406](https://togithub.com/vercel/turbo/pull/5406)
- feat(lockfile) hide berry lockfile lifetime by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5436](https://togithub.com/vercel/turbo/pull/5436)
- feat(turborepo): More verbose status error by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5489](https://togithub.com/vercel/turbo/pull/5489)
- chore: suggest git upgrade by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5472](https://togithub.com/vercel/turbo/pull/5472)
- release(turborepo): 1.10.8-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5490](https://togithub.com/vercel/turbo/pull/5490)
- Use Workspace Configurations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5492](https://togithub.com/vercel/turbo/pull/5492)
- fix(turborepo): use serde_jsonc recommended pattern. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5491](https://togithub.com/vercel/turbo/pull/5491)
- chore: Fix clippy errors and remove old feature directives by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5497](https://togithub.com/vercel/turbo/pull/5497)
- feat(turborepo): Port HTTP Cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5065](https://togithub.com/vercel/turbo/pull/5065)
- fix(turborepo): Copy bytes from stdout and stderr before saving them
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5508](https://togithub.com/vercel/turbo/pull/5508)
- chore: Added clippy deny all to crates by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5514](https://togithub.com/vercel/turbo/pull/5514)
- Fix link. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew)
in
[https://github.com/vercel/turbo/pull/5518](https://togithub.com/vercel/turbo/pull/5518)
- Better spot for link. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5520](https://togithub.com/vercel/turbo/pull/5520)
- Implement hashing fallback by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5505](https://togithub.com/vercel/turbo/pull/5505)
- release(turborepo): 1.10.8-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5523](https://togithub.com/vercel/turbo/pull/5523)
- chore: use fs-err in turborepo fs related libs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5517](https://togithub.com/vercel/turbo/pull/5517)
- fix(turborepo): Rebuild turbo if Go code has changed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5530](https://togithub.com/vercel/turbo/pull/5530)
- fix(turborepo): Export and match on our copy of BasicUI by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5532](https://togithub.com/vercel/turbo/pull/5532)
- release(turborepo): 1.10.8-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5534](https://togithub.com/vercel/turbo/pull/5534)
- feat(turborepo): FS Cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5473](https://togithub.com/vercel/turbo/pull/5473)

#### New Contributors

- [@&#8203;devdumpling](https://togithub.com/devdumpling) made their
first contribution in
[https://github.com/vercel/turbo/pull/5445](https://togithub.com/vercel/turbo/pull/5445)
- [@&#8203;tyler-lutz](https://togithub.com/tyler-lutz) made their first
contribution in
[https://github.com/vercel/turbo/pull/5464](https://togithub.com/vercel/turbo/pull/5464)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.7...v1.10.8

### [`v1.10.7`](https://togithub.com/vercel/turbo/releases/tag/v1.10.7):
Turborepo v1.10.7

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.6...v1.10.7)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.7 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.6 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5373](https://togithub.com/vercel/turbo/pull/5373)
- chore: replace `default_features` with `default-features` by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[https://github.com/vercel/turbo/pull/5382](https://togithub.com/vercel/turbo/pull/5382)
- Fix misleading GitLab CI documentation by
[@&#8203;will3942](https://togithub.com/will3942) in
[https://github.com/vercel/turbo/pull/4635](https://togithub.com/vercel/turbo/pull/4635)
- Update docs with example of nested workspaces by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[https://github.com/vercel/turbo/pull/4178](https://togithub.com/vercel/turbo/pull/4178)
- Plainer explanation for synthetic tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5388](https://togithub.com/vercel/turbo/pull/5388)
- feat: port package graph by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5345](https://togithub.com/vercel/turbo/pull/5345)
- fix(turborepo): Drop implicit path conversions by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5375](https://togithub.com/vercel/turbo/pull/5375)
- refactor(turborepo): Enumerate the things we hash by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5401](https://togithub.com/vercel/turbo/pull/5401)
- feat(turborepo): Use Github log prefixes when running on Github
Actions by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5385](https://togithub.com/vercel/turbo/pull/5385)
- fix(turborepo): Handle globbing into directories that don't exist by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5404](https://togithub.com/vercel/turbo/pull/5404)
- release(turborepo): 1.10.7-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5413](https://togithub.com/vercel/turbo/pull/5413)
- feature(turborepo): Turbo Info Command by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5354](https://togithub.com/vercel/turbo/pull/5354)
- feat(turborepo): refactor scm and thread into scope calculation by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5405](https://togithub.com/vercel/turbo/pull/5405)
- perf(lockfiles): Eagerly parse berry resolutions by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5417](https://togithub.com/vercel/turbo/pull/5417)
- Remove experimental badge. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5422](https://togithub.com/vercel/turbo/pull/5422)
- Remove experimental warning. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5421](https://togithub.com/vercel/turbo/pull/5421)
- ci: remove replacement usage from goreleaser by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5424](https://togithub.com/vercel/turbo/pull/5424)
- fix(turborepo): Send spaces logs for all tasks, even ones that aren't
cached by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5425](https://togithub.com/vercel/turbo/pull/5425)
- release(turborepo): 1.10.7-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5428](https://togithub.com/vercel/turbo/pull/5428)
- fix(turborepo) Set package inference and single_package even without a
repo state by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5432](https://togithub.com/vercel/turbo/pull/5432)
- fix(glob): add glob pattern codemods into globwalk by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5431](https://togithub.com/vercel/turbo/pull/5431)

#### New Contributors

- [@&#8203;will3942](https://togithub.com/will3942) made their first
contribution in
[https://github.com/vercel/turbo/pull/4635](https://togithub.com/vercel/turbo/pull/4635)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.6...v1.10.7

### [`v1.10.6`](https://togithub.com/vercel/turbo/releases/tag/v1.10.6):
Turborepo v1.10.6

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.5...v1.10.6)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.6 -->

#### What's Changed

##### Changelog

- feat(turborepo): Scripts to build a debug version on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5007](https://togithub.com/vercel/turbo/pull/5007)
- release(turborepo): 1.10.5 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5364](https://togithub.com/vercel/turbo/pull/5364)
- fix: prevent looking up workspace task if name is not in there by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5370](https://togithub.com/vercel/turbo/pull/5370)
- fix(turborepo): Restructure spaces client and test error handling by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5367](https://togithub.com/vercel/turbo/pull/5367)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.5...v1.10.6

### [`v1.10.5`](https://togithub.com/vercel/turbo/releases/tag/v1.10.5):
Turborepo v1.10.5

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.4...v1.10.5)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.5 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5349](https://togithub.com/vercel/turbo/pull/5349)
- feat(turborepo) Add timeout to api client json methods by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5350](https://togithub.com/vercel/turbo/pull/5350)
- feat(turborepo): Debugging output for e2e tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5351](https://togithub.com/vercel/turbo/pull/5351)
- feat(turbo): add main pointing to bin by
[@&#8203;wesleytodd](https://togithub.com/wesleytodd) in
[https://github.com/vercel/turbo/pull/5333](https://togithub.com/vercel/turbo/pull/5333)
- fix: Removed path slash conversion on unix by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5356](https://togithub.com/vercel/turbo/pull/5356)
- fix(turborepo): Fix single package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5362](https://togithub.com/vercel/turbo/pull/5362)

#### New Contributors

- [@&#8203;wesleytodd](https://togithub.com/wesleytodd) made their first
contribution in
[https://github.com/vercel/turbo/pull/5333](https://togithub.com/vercel/turbo/pull/5333)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.4...v1.10.5

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4):
Turborepo v1.10.4

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.4 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5250](https://togithub.com/vercel/turbo/pull/5250)
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5237](https://togithub.com/vercel/turbo/pull/5237)
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5263](https://togithub.com/vercel/turbo/pull/5263)
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5262](https://togithub.com/vercel/turbo/pull/5262)
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5224](https://togithub.com/vercel/turbo/pull/5224)
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5251](https://togithub.com/vercel/turbo/pull/5251)
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5271](https://togithub.com/vercel/turbo/pull/5271)
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5274](https://togithub.com/vercel/turbo/pull/5274)
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5275](https://togithub.com/vercel/turbo/pull/5275)
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5277](https://togithub.com/vercel/turbo/pull/5277)
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5278](https://togithub.com/vercel/turbo/pull/5278)
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5273](https://togithub.com/vercel/turbo/pull/5273)
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5283](https://togithub.com/vercel/turbo/pull/5283)
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5284](https://togithub.com/vercel/turbo/pull/5284)
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[https://github.com/vercel/turbo/pull/5285](https://togithub.com/vercel/turbo/pull/5285)
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5203](https://togithub.com/vercel/turbo/pull/5203)
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5255](https://togithub.com/vercel/turbo/pull/5255)
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5286](https://togithub.com/vercel/turbo/pull/5286)
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5287](https://togithub.com/vercel/turbo/pull/5287)
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5300](https://togithub.com/vercel/turbo/pull/5300)
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5303](https://togithub.com/vercel/turbo/pull/5303)
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5305](https://togithub.com/vercel/turbo/pull/5305)
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5309](https://togithub.com/vercel/turbo/pull/5309)
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[https://github.com/vercel/turbo/pull/3916](https://togithub.com/vercel/turbo/pull/3916)
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5313](https://togithub.com/vercel/turbo/pull/5313)
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5312](https://togithub.com/vercel/turbo/pull/5312)
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5310](https://togithub.com/vercel/turbo/pull/5310)
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5316](https://togithub.com/vercel/turbo/pull/5316)
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5317](https://togithub.com/vercel/turbo/pull/5317)
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5319](https://togithub.com/vercel/turbo/pull/5319)
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5297](https://togithub.com/vercel/turbo/pull/5297)
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5320](https://togithub.com/vercel/turbo/pull/5320)
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5322](https://togithub.com/vercel/turbo/pull/5322)
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5323](https://togithub.com/vercel/turbo/pull/5323)
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5329](https://togithub.com/vercel/turbo/pull/5329)
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5248](https://togithub.com/vercel/turbo/pull/5248)
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5342](https://togithub.com/vercel/turbo/pull/5342)
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5340](https://togithub.com/vercel/turbo/pull/5340)
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5344](https://togithub.com/vercel/turbo/pull/5344)
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5346](https://togithub.com/vercel/turbo/pull/5346)

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[https://github.com/vercel/turbo/pull/5252](https://togithub.com/vercel/turbo/pull/5252)
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[https://github.com/vercel/turbo/pull/4883](https://togithub.com/vercel/turbo/pull/4883)
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.3...v1.10.4

### [`v1.10.3`](https://togithub.com/vercel/turbo/releases/tag/v1.10.3):
Turborepo v1.10.3

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.2...v1.10.3)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.3 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5229](https://togithub.com/vercel/turbo/pull/5229)
- fix(ffi): fix Rust dangling pointer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5230](https://togithub.com/vercel/turbo/pull/5230)
- feat(turborepo): implement package.json discovery by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5225](https://togithub.com/vercel/turbo/pull/5225)
- feat(run summary): Add whether turbo detected monorepo or not by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5241](https://togithub.com/vercel/turbo/pull/5241)
- ci(examples): Skip npm install when setting up git for examples tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5240](https://togithub.com/vercel/turbo/pull/5240)
- docs: document that multiple --filters are unions by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5247](https://togithub.com/vercel/turbo/pull/5247)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.2...v1.10.3

### [`v1.10.2`](https://togithub.com/vercel/turbo/releases/tag/v1.10.2):
Turborepo v1.10.2

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.1...v1.10.2)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.2 -->

#### What's Changed

##### Changelog

- fix(turborepo): rust implementation of file hashing via git index by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/4967](https://togithub.com/vercel/turbo/pull/4967)
- feat: rust pnpm lockfile implementation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/4906](https://togithub.com/vercel/turbo/pull/4906)
- Fix broken link for `--verbosity`. by
[@&#8203;leerob](https://togithub.com/leerob) in
[https://github.com/vercel/turbo/pull/5118](https://togithub.com/vercel/turbo/pull/5118)
- Noting multiple global turbo installations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5119](https://togithub.com/vercel/turbo/pull/5119)
- List dev command more consistently. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5120](https://togithub.com/vercel/turbo/pull/5120)
- fix: update storybook dev command by
[@&#8203;ekafyi](https://togithub.com/ekafyi) in
[https://github.com/vercel/turbo/pull/5105](https://togithub.com/vercel/turbo/pull/5105)
- feat(turborepo): Move some shim paths over to AbsoluteSystemPath by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5108](https://togithub.com/vercel/turbo/pull/5108)
- feat(docs): update copy arg by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5090](https://togithub.com/vercel/turbo/pull/5090)
- feat(docs): link examples with generators by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5126](https://togithub.com/vercel/turbo/pull/5126)
- sync dependencies with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5131](https://togithub.com/vercel/turbo/pull/5131)
- Include timeSaved metric when skipping cache check by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/4952](https://togithub.com/vercel/turbo/pull/4952)
- Update storybook.mdx by
[@&#8203;lofsigma](https://togithub.com/lofsigma) in
[https://github.com/vercel/turbo/pull/5134](https://togithub.com/vercel/turbo/pull/5134)
- refactor(turborepo): API Client Cleanup by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5084](https://togithub.com/vercel/turbo/pull/5084)
- feat(turborepo): Set feature to use Go daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5147](https://togithub.com/vercel/turbo/pull/5147)
- fix(turborepo): Handle unimplemented and failed_precondition in daemon
clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5151](https://togithub.com/vercel/turbo/pull/5151)
- feat(types): publish turbo types by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5130](https://togithub.com/vercel/turbo/pull/5130)
- feat(daemon): clean by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5152](https://togithub.com/vercel/turbo/pull/5152)
- chore(turborepo): Port piece of kill_live_server test for version
mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5153](https://togithub.com/vercel/turbo/pull/5153)
- feat(turborepo): Wait for a pid file, then a sock file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5158](https://togithub.com/vercel/turbo/pull/5158)
- feat(create-turbo): use latest turbo by default by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5155](https://togithub.com/vercel/turbo/pull/5155)
- Update existing-monorepo.mdx by
[@&#8203;tomheaton](https://togithub.com/tomheaton) in
[https://github.com/vercel/turbo/pull/5149](https://togithub.com/vercel/turbo/pull/5149)
- Merge timesaved and cache status data structures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5135](https://togithub.com/vercel/turbo/pull/5135)
- chore: specify rust crates as inputs to building turborepo by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/4664](https://togithub.com/vercel/turbo/pull/4664)
- Organize tests a bit by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5116](https://togithub.com/vercel/turbo/pull/5116)
- docs: add `--out-dir` reference for prune command by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5173](https://togithub.com/vercel/turbo/pull/5173)
- fix(turborepo): Restructure reading from stderr, fix parsing of
ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5181](https://togithub.com/vercel/turbo/pull/5181)
- chore(cli): add note about changing run summary by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5186](https://togithub.com/vercel/turbo/pull/5186)
- feat(turborepo): Remove as_absolute_path() in favor of Deref by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5194](https://togithub.com/vercel/turbo/pull/5194)
- Update log message when cache restoration is skipped by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5127](https://togithub.com/vercel/turbo/pull/5127)
- docs: Move deprecated options for run command to bottom by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5180](https://togithub.com/vercel/turbo/pull/5180)
- Parallel ignores concurrency and dependencies, we don't need to
validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5191](https://togithub.com/vercel/turbo/pull/5191)
- feat(lockfiles): add support pnpm lockfile version 6.1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5195](https://togithub.com/vercel/turbo/pull/5195)
- feat(turborepo): Remove anyhow from package manager detection by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5196](https://togithub.com/vercel/turbo/pull/5196)
- Add codemod for glob syntax issues. by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5184](https://togithub.com/vercel/turbo/pull/5184)
- fix(gen): swap to which for windows by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5208](https://togithub.com/vercel/turbo/pull/5208)
- Add timeSaved value into dry run output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5171](https://togithub.com/vercel/turbo/pull/5171)
- fix(turborepo): Repo config case normalization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5209](https://togithub.com/vercel/turbo/pull/5209)
- release(turborepo): 1.10.2-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5212](https://togithub.com/vercel/turbo/pull/5212)
- Update references to docs in code comments and help output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5179](https://togithub.com/vercel/turbo/pull/5179)
- fix(turbo): remove npx version check for gen by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5216](https://togithub.com/vercel/turbo/pull/5216)
- release(turborepo): 1.10.2-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5222](https://togithub.com/vercel/turbo/pull/5222)

#### New Contributors

- [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made
their first contribution in
[https://github.com/vercel/turbo/pull/4902](https://togithub.com/vercel/turbo/pull/4902)
- [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first
contribution in
[https://github.com/vercel/turbo/pull/5105](https://togithub.com/vercel/turbo/pull/5105)
- [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first
contribution in
[https://github.com/vercel/turbo/pull/5134](https://togithub.com/vercel/turbo/pull/5134)
- [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first
contribution in
[https://github.com/vercel/turbo/pull/5149](https://togithub.com/vercel/turbo/pull/5149)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.1...v1.10.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on tuesday and thursday"
in timezone America/Los_Angeles, Automerge - At any time (no schedule
defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Esri/calcite-design-system).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40My4yIiwidXBkYXRlZEluVmVyIjoiMzYuNjguMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
tomhoule pushed a commit to grafbase/grafbase that referenced this pull request Oct 16, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
|
[@aws-sdk/client-kms](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-kms)
([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.354.0` ->
`3.359.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-kms/3.354.0/3.359.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-kms/3.359.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-kms/3.359.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-kms/3.359.0/compatibility-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-kms/3.359.0/confidence-slim/3.354.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [@clerk/nextjs](https://clerk.com/)
([source](https://togithub.com/clerkinc/javascript)) | [`4.21.8` ->
`4.21.10`](https://renovatebot.com/diffs/npm/@clerk%2fnextjs/4.21.8/4.21.10)
|
[![age](https://badges.renovateapi.com/packages/npm/@clerk%2fnextjs/4.21.10/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@clerk%2fnextjs/4.21.10/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@clerk%2fnextjs/4.21.10/compatibility-slim/4.21.8)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@clerk%2fnextjs/4.21.10/confidence-slim/4.21.8)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@next/bundle-analyzer](https://togithub.com/vercel/next.js) |
[`13.4.6` ->
`13.4.7`](https://renovatebot.com/diffs/npm/@next%2fbundle-analyzer/13.4.6/13.4.7)
|
[![age](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.7/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.7/compatibility-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.7/confidence-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [@paralleldrive/cuid2](https://togithub.com/ericelliott/cuid2) |
[`2.2.0` ->
`2.2.1`](https://renovatebot.com/diffs/npm/@paralleldrive%2fcuid2/2.2.0/2.2.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@paralleldrive%2fcuid2/2.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@paralleldrive%2fcuid2/2.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@paralleldrive%2fcuid2/2.2.1/compatibility-slim/2.2.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@paralleldrive%2fcuid2/2.2.1/confidence-slim/2.2.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [@tanstack/react-table](https://togithub.com/tanstack/table) |
[`8.9.2` ->
`8.9.3`](https://renovatebot.com/diffs/npm/@tanstack%2freact-table/8.9.2/8.9.3)
|
[![age](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-table/8.9.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-table/8.9.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-table/8.9.3/compatibility-slim/8.9.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@tanstack%2freact-table/8.9.3/confidence-slim/8.9.2)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`18.2.13` ->
`18.2.14`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.13/18.2.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.14/compatibility-slim/18.2.13)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.14/confidence-slim/18.2.13)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`18.0.11` ->
`18.2.6`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.0.11/18.2.6)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/18.2.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/18.2.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/18.2.6/compatibility-slim/18.0.11)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/18.2.6/confidence-slim/18.0.11)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| @&#8203;vercel/og | [`0.5.7` ->
`0.5.8`](https://renovatebot.com/diffs/npm/@vercel%2fog/0.5.7/0.5.8) |
[![age](https://badges.renovateapi.com/packages/npm/@vercel%2fog/0.5.8/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@vercel%2fog/0.5.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@vercel%2fog/0.5.8/compatibility-slim/0.5.7)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@vercel%2fog/0.5.8/confidence-slim/0.5.7)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
|
[@vitejs/plugin-react](https://togithub.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#readme)
([source](https://togithub.com/vitejs/vite-plugin-react)) | [`4.0.0` ->
`4.0.1`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-react/4.0.0/4.0.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/4.0.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/4.0.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/4.0.1/compatibility-slim/4.0.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/4.0.1/confidence-slim/4.0.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[eslint-config-next](https://nextjs.org/docs/app/building-your-application/configuring/eslint#eslint-config)
([source](https://togithub.com/vercel/next.js)) | [`13.4.6` ->
`13.4.7`](https://renovatebot.com/diffs/npm/eslint-config-next/13.4.6/13.4.7)
|
[![age](https://badges.renovateapi.com/packages/npm/eslint-config-next/13.4.7/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/eslint-config-next/13.4.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/eslint-config-next/13.4.7/compatibility-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/eslint-config-next/13.4.7/confidence-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [graphql](https://togithub.com/graphql/graphql-js) | [`16.6.0` ->
`16.7.1`](https://renovatebot.com/diffs/npm/graphql/16.6.0/16.7.1) |
[![age](https://badges.renovateapi.com/packages/npm/graphql/16.7.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/graphql/16.7.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/graphql/16.7.1/compatibility-slim/16.6.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/graphql/16.7.1/confidence-slim/16.6.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [graphql](https://togithub.com/graphql/graphql-js) | [`16.6.0` ->
`16.7.1`](https://renovatebot.com/diffs/npm/graphql/16.6.0/16.7.1) |
[![age](https://badges.renovateapi.com/packages/npm/graphql/16.7.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/graphql/16.7.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/graphql/16.7.1/compatibility-slim/16.6.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/graphql/16.7.1/confidence-slim/16.6.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [jsdom](https://togithub.com/jsdom/jsdom) | [`22.0.0` ->
`22.1.0`](https://renovatebot.com/diffs/npm/jsdom/22.0.0/22.1.0) |
[![age](https://badges.renovateapi.com/packages/npm/jsdom/22.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/jsdom/22.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/jsdom/22.1.0/compatibility-slim/22.0.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/jsdom/22.1.0/confidence-slim/22.0.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [monaco-graphql](https://togithub.com/graphql/graphiql) | [`1.2.3` ->
`1.2.4`](https://renovatebot.com/diffs/npm/monaco-graphql/1.2.3/1.2.4) |
[![age](https://badges.renovateapi.com/packages/npm/monaco-graphql/1.2.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/monaco-graphql/1.2.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/monaco-graphql/1.2.4/compatibility-slim/1.2.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/monaco-graphql/1.2.4/confidence-slim/1.2.3)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [monaco-graphql](https://togithub.com/graphql/graphiql) | [`1.2.3` ->
`1.2.4`](https://renovatebot.com/diffs/npm/monaco-graphql/1.2.3/1.2.4) |
[![age](https://badges.renovateapi.com/packages/npm/monaco-graphql/1.2.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/monaco-graphql/1.2.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/monaco-graphql/1.2.4/compatibility-slim/1.2.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/monaco-graphql/1.2.4/confidence-slim/1.2.3)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [next](https://nextjs.org)
([source](https://togithub.com/vercel/next.js)) | [`13.4.6` ->
`13.4.7`](https://renovatebot.com/diffs/npm/next/13.4.6/13.4.7) |
[![age](https://badges.renovateapi.com/packages/npm/next/13.4.7/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/next/13.4.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/next/13.4.7/compatibility-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/next/13.4.7/confidence-slim/13.4.6)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [node](https://togithub.com/nodejs/node) | [`18.16.0` ->
`18.16.1`](https://renovatebot.com/diffs/npm/node/18.16.0/v18.16.1) |
[![age](https://badges.renovateapi.com/packages/github-tags/node/v18.16.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/github-tags/node/v18.16.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/github-tags/node/v18.16.1/compatibility-slim/18.16.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/github-tags/node/v18.16.1/confidence-slim/18.16.0)](https://docs.renovatebot.com/merge-confidence/)
| volta | patch |
| [recharts](https://togithub.com/recharts/recharts) | [`2.7.1` ->
`2.7.2`](https://renovatebot.com/diffs/npm/recharts/2.7.1/2.7.2) |
[![age](https://badges.renovateapi.com/packages/npm/recharts/2.7.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/recharts/2.7.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/recharts/2.7.2/compatibility-slim/2.7.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/recharts/2.7.2/confidence-slim/2.7.1)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [rehype-prism-plus](https://togithub.com/timlrx/rehype-prism-plus) |
[`1.5.1` ->
`1.6.1`](https://renovatebot.com/diffs/npm/rehype-prism-plus/1.5.1/1.6.1)
|
[![age](https://badges.renovateapi.com/packages/npm/rehype-prism-plus/1.6.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/rehype-prism-plus/1.6.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/rehype-prism-plus/1.6.1/compatibility-slim/1.5.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/rehype-prism-plus/1.6.1/confidence-slim/1.5.1)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[rudder-sdk-js](https://togithub.com/rudderlabs/rudder-sdk-js/blob/master/README.md)
([source](https://togithub.com/rudderlabs/rudder-sdk-js)) | [`2.35.0` ->
`2.35.1`](https://renovatebot.com/diffs/npm/rudder-sdk-js/2.35.0/2.35.1)
|
[![age](https://badges.renovateapi.com/packages/npm/rudder-sdk-js/2.35.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/rudder-sdk-js/2.35.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/rudder-sdk-js/2.35.1/compatibility-slim/2.35.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/rudder-sdk-js/2.35.1/confidence-slim/2.35.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [stripe](https://togithub.com/stripe/stripe-node) | [`12.9.0` ->
`12.10.0`](https://renovatebot.com/diffs/npm/stripe/12.9.0/12.10.0) |
[![age](https://badges.renovateapi.com/packages/npm/stripe/12.10.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/stripe/12.10.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/stripe/12.10.0/compatibility-slim/12.9.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/stripe/12.10.0/confidence-slim/12.9.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.10.3` ->
`1.10.6`](https://renovatebot.com/diffs/npm/turbo/1.10.3/1.10.6) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/compatibility-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.6/confidence-slim/1.10.3)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-kms)</summary>

###
[`v3.359.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-kms/CHANGELOG.md#&#8203;33590-httpsgithubcomawsaws-sdk-js-v3comparev33580v33590-2023-06-23)

[Compare
Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.358.0...v3.359.0)

**Note:** Version bump only for package
[@&#8203;aws-sdk/client-kms](https://togithub.com/aws-sdk/client-kms)

###
[`v3.358.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-kms/CHANGELOG.md#&#8203;33580-httpsgithubcomawsaws-sdk-js-v3comparev33570v33580-2023-06-22)

[Compare
Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.357.0...v3.358.0)

**Note:** Version bump only for package
[@&#8203;aws-sdk/client-kms](https://togithub.com/aws-sdk/client-kms)

###
[`v3.357.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-kms/CHANGELOG.md#&#8203;33570-httpsgithubcomawsaws-sdk-js-v3comparev33560v33570-2023-06-21)

[Compare
Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.354.0...v3.357.0)

##### Features

- **clients:** automatic blob type conversions
([#&#8203;4836](https://togithub.com/aws/aws-sdk-js-v3/issues/4836))
([60ec921](https://togithub.com/aws/aws-sdk-js-v3/commit/60ec921c879ae8363f32ebbe9e1ecd6062df1081))

</details>

<details>
<summary>clerkinc/javascript (@&#8203;clerk/nextjs)</summary>

###
[`v4.21.10`](https://togithub.com/clerkinc/javascript/releases/tag/%40clerk/nextjs%404.21.10)

[Compare
Source](https://togithub.com/clerkinc/javascript/compare/@clerk/nextjs@4.21.9...@clerk/nextjs@4.21.10)

##### Patch Changes

- Support hosting NextJs apps on non-Vercel platforms by constructing
req.url using host-related headers instead of using on `req.url`
directly. In order to enable this feature, set the `CLERK_TRUST_HOST`
env variable to `true`
([#&#8203;1394](https://togithub.com/clerkinc/javascript/pull/1394)) by
[@&#8203;dimkl](https://togithub.com/dimkl)

###
[`v4.21.9`](https://togithub.com/clerkinc/javascript/releases/tag/%40clerk/nextjs%404.21.9)

[Compare
Source](https://togithub.com/clerkinc/javascript/compare/@clerk/nextjs@4.21.8...@clerk/nextjs@4.21.9)

##### Patch Changes

- Add isApiRoute to AfterAuthHandler\['auth'] type
([#&#8203;1397](https://togithub.com/clerkinc/javascript/pull/1397)) by
[@&#8203;dimkl](https://togithub.com/dimkl)

</details>

<details>
<summary>vercel/next.js (@&#8203;next/bundle-analyzer)</summary>

###
[`v13.4.7`](https://togithub.com/vercel/next.js/releases/tag/v13.4.7)

[Compare
Source](https://togithub.com/vercel/next.js/compare/v13.4.6...v13.4.7)

##### Core Changes

- Route Module Updates Redux:
[#&#8203;51373](https://togithub.com/vercel/next.js/issues/51373)
- Lock down server IPC address:
[#&#8203;51378](https://togithub.com/vercel/next.js/issues/51378)
- Revert "Route Module Updates Redux":
[#&#8203;51409](https://togithub.com/vercel/next.js/issues/51409)
- Fix bundling of Server Actions:
[#&#8203;51367](https://togithub.com/vercel/next.js/issues/51367)
- Fix pnpm lock:
[#&#8203;51503](https://togithub.com/vercel/next.js/issues/51503)
- router: add layout and other file supports to parallel routes:
[#&#8203;51413](https://togithub.com/vercel/next.js/issues/51413)
- Next Build Turbo POC:
[#&#8203;49942](https://togithub.com/vercel/next.js/issues/49942)
- add edge rendering for app dir for Turbopack:
[#&#8203;50830](https://togithub.com/vercel/next.js/issues/50830)
- Fix shared action module in two layers:
[#&#8203;51510](https://togithub.com/vercel/next.js/issues/51510)
- Revert "Next Build Turbo POC
([#&#8203;49942](https://togithub.com/vercel/next.js/issues/49942))":
[#&#8203;51538](https://togithub.com/vercel/next.js/issues/51538)
- Fix font styles on react dev overlay:
[#&#8203;51518](https://togithub.com/vercel/next.js/issues/51518)
- fix typo in x-next-revalidate-tag-token header:
[#&#8203;51432](https://togithub.com/vercel/next.js/issues/51432)
- Add docs links to RSC errors:
[#&#8203;51557](https://togithub.com/vercel/next.js/issues/51557)
- Moved new line to warnOnce call:
[#&#8203;51552](https://togithub.com/vercel/next.js/issues/51552)
- Update id env prefix:
[#&#8203;51588](https://togithub.com/vercel/next.js/issues/51588)
- router: support layout/special files as direct children of parallel
routes:
[#&#8203;51604](https://togithub.com/vercel/next.js/issues/51604)
- use env var to switch next.js to turbopack mode:
[#&#8203;51353](https://togithub.com/vercel/next.js/issues/51353)
- Revert "add edge rendering for app dir for Turbopack":
[#&#8203;51617](https://togithub.com/vercel/next.js/issues/51617)
- Ensure upgrade request has request meta:
[#&#8203;51590](https://togithub.com/vercel/next.js/issues/51590)
- Revert "Fix standalone not found":
[#&#8203;51506](https://togithub.com/vercel/next.js/issues/51506)

##### Documentation Changes

- docs: Add streaming AI example.:
[#&#8203;51382](https://togithub.com/vercel/next.js/issues/51382)
- docs: remove copy mentioning appDir as an experimental feature:
[#&#8203;51403](https://togithub.com/vercel/next.js/issues/51403)
- examples: update `with-supabase` example to App Router:
[#&#8203;51335](https://togithub.com/vercel/next.js/issues/51335)
- Fix typo in image alt:
[#&#8203;51487](https://togithub.com/vercel/next.js/issues/51487)
- docs: add better examples to `next/image` docs.:
[#&#8203;51457](https://togithub.com/vercel/next.js/issues/51457)
- Go directly to caching section:
[#&#8203;51501](https://togithub.com/vercel/next.js/issues/51501)
- fix(typo): add missing word:
[#&#8203;51490](https://togithub.com/vercel/next.js/issues/51490)
- fix(typo): add missing comma:
[#&#8203;51489](https://togithub.com/vercel/next.js/issues/51489)
- Remove duplicate bullet point in app router migration docs:
[#&#8203;51440](https://togithub.com/vercel/next.js/issues/51440)
- fix: missing come:
[#&#8203;51437](https://togithub.com/vercel/next.js/issues/51437)
- Linted MDX:
[#&#8203;51530](https://togithub.com/vercel/next.js/issues/51530)
- docs: Fix typo:
[#&#8203;51517](https://togithub.com/vercel/next.js/issues/51517)
- Migrate validate links script from next-site and setup GitHub action:
[#&#8203;51365](https://togithub.com/vercel/next.js/issues/51365)
- Remove extra word in env key error:
[#&#8203;51512](https://togithub.com/vercel/next.js/issues/51512)
- Remove duplicate word in 11-draft-mode.mdx:
[#&#8203;51580](https://togithub.com/vercel/next.js/issues/51580)
- Broken link at 01-static-and-dynamic-rendering.mdx:
[#&#8203;51582](https://togithub.com/vercel/next.js/issues/51582)
- refactor tests for readability:
[#&#8203;51051](https://togithub.com/vercel/next.js/issues/51051)

##### Example Changes

- Upgrade with-redux example to app router:
[#&#8203;49994](https://togithub.com/vercel/next.js/issues/49994)

##### Misc Changes

- ci(workflow): upload test trace for deploy e2e:
[#&#8203;51389](https://togithub.com/vercel/next.js/issues/51389)
- Fix pnpm `ERR_INVALID_THIS` on Node 20:
[#&#8203;51406](https://togithub.com/vercel/next.js/issues/51406)
- Update flakey build output test:
[#&#8203;51411](https://togithub.com/vercel/next.js/issues/51411)
- Fix native build:
[#&#8203;51522](https://togithub.com/vercel/next.js/issues/51522)
- Revert "Fix pnpm `ERR_INVALID_THIS` on Node 20":
[#&#8203;51539](https://togithub.com/vercel/next.js/issues/51539)
- Update .vercel.approvers:
[#&#8203;51417](https://togithub.com/vercel/next.js/issues/51417)
- Update broken link validator:
[#&#8203;51586](https://togithub.com/vercel/next.js/issues/51586)
- Temporarily disable flaky test:
[#&#8203;51616](https://togithub.com/vercel/next.js/issues/51616)
- Update flakey build output test:
[#&#8203;51625](https://togithub.com/vercel/next.js/issues/51625)

##### Credits

Huge thanks to [@&#8203;wyattjoh](https://togithub.com/wyattjoh),
[@&#8203;ijjk](https://togithub.com/ijjk),
[@&#8203;dvakatsiienko](https://togithub.com/dvakatsiienko),
[@&#8203;leerob](https://togithub.com/leerob),
[@&#8203;kwonoj](https://togithub.com/kwonoj),
[@&#8203;nickmccurdy](https://togithub.com/nickmccurdy),
[@&#8203;brunoeduardodev](https://togithub.com/brunoeduardodev),
[@&#8203;dijonmusters](https://togithub.com/dijonmusters),
[@&#8203;shuding](https://togithub.com/shuding),
[@&#8203;tyler-lutz](https://togithub.com/tyler-lutz),
[@&#8203;huozhi](https://togithub.com/huozhi),
[@&#8203;feedthejim](https://togithub.com/feedthejim),
[@&#8203;alexkirsz](https://togithub.com/alexkirsz),
[@&#8203;sonam-serchan](https://togithub.com/sonam-serchan),
[@&#8203;vicsantizo](https://togithub.com/vicsantizo),
[@&#8203;leodr](https://togithub.com/leodr),
[@&#8203;wiscaksono](https://togithub.com/wiscaksono),
[@&#8203;sokra](https://togithub.com/sokra),
[@&#8203;delbaoliveira](https://togithub.com/delbaoliveira),
[@&#8203;ztanner](https://togithub.com/ztanner),
[@&#8203;hustLer2k](https://togithub.com/hustLer2k),
[@&#8203;joshuabaker](https://togithub.com/joshuabaker), and
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) for
helping!

</details>

<details>
<summary>ericelliott/cuid2 (@&#8203;paralleldrive/cuid2)</summary>

###
[`v2.2.1`](https://togithub.com/ericelliott/cuid2/compare/v2.2.0...v2.2.1)

[Compare
Source](https://togithub.com/ericelliott/cuid2/compare/v2.2.0...v2.2.1)

</details>

<details>
<summary>tanstack/table (@&#8203;tanstack/react-table)</summary>

### [`v8.9.3`](https://togithub.com/TanStack/table/releases/tag/v8.9.3)

[Compare
Source](https://togithub.com/tanstack/table/compare/v8.9.2...v8.9.3)

Version 8.9.3 - 6/23/2023, 8:17 PM

#### Changes

##### Fix

- actually handle undefined sorting out of the box
([`17a0373`](https://togithub.com/tanstack/table/commit/17a03735)) by
Tanner Linsley

##### Other

- Update ag-grid.md
([`38563b7`](https://togithub.com/tanstack/table/commit/38563b71)) by
Tanner Linsley
- Update ag-grid.md
([`a539d5a`](https://togithub.com/tanstack/table/commit/a539d5ac)) by
Tanner Linsley

#### Packages

-
[@&#8203;tanstack/table-core](https://togithub.com/tanstack/table-core)[@&#8203;8](https://togithub.com/8).9.3
-
[@&#8203;tanstack/react-table](https://togithub.com/tanstack/react-table)[@&#8203;8](https://togithub.com/8).9.3
-
[@&#8203;tanstack/solid-table](https://togithub.com/tanstack/solid-table)[@&#8203;8](https://togithub.com/8).9.3
-
[@&#8203;tanstack/vue-table](https://togithub.com/tanstack/vue-table)[@&#8203;8](https://togithub.com/8).9.3
-
[@&#8203;tanstack/svelte-table](https://togithub.com/tanstack/svelte-table)[@&#8203;8](https://togithub.com/8).9.3

</details>

<details>
<summary>vitejs/vite-plugin-react
(@&#8203;vitejs/plugin-react)</summary>

###
[`v4.0.1`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#&#8203;401-2023-06-19)

[Compare
Source](https://togithub.com/vitejs/vite-plugin-react/compare/f87d23e91fa48b8a8488dd8bee5277070f5fc3c2...deb40a45f8c296ca2ae4e27c7709bec5ae5b9a62)

- Support [Vitest
deps.experimentalOptimizer](https://vitest.dev/config/#deps-experimentaloptimizer)
- Support using components inside web workers
([#&#8203;181](https://togithub.com/vitejs/vite-plugin-react/pull/181))

</details>

<details>
<summary>graphql/graphql-js (graphql)</summary>

###
[`v16.7.1`](https://togithub.com/graphql/graphql-js/releases/tag/v16.7.1)

[Compare
Source](https://togithub.com/graphql/graphql-js/compare/v16.7.0...v16.7.1)

#### v16.7.1 (2023-06-22)

:loudspeaker: Big shout out to
[@&#8203;phryneas](https://togithub.com/phryneas), who managed to
reproduce this issue and come up with this fix.

##### Bug Fix 🐞

- [#&#8203;3923](https://togithub.com/graphql/graphql-js/pull/3923)
instanceOf: workaround bundler issue with `process.env`
([@&#8203;IvanGoncharov](https://togithub.com/IvanGoncharov))

##### Committers: 1

- Ivan
Goncharov([@&#8203;IvanGoncharov](https://togithub.com/IvanGoncharov))

###
[`v16.7.0`](https://togithub.com/graphql/graphql-js/releases/tag/v16.7.0)

[Compare
Source](https://togithub.com/graphql/graphql-js/compare/v16.6.0...v16.7.0)

#### v16.7.0 (2023-06-21)

##### New Feature 🚀

- [#&#8203;3887](https://togithub.com/graphql/graphql-js/pull/3887)
check "globalThis.process" before accessing it
([@&#8203;kettanaito](https://togithub.com/kettanaito))

##### Bug Fix 🐞

- [#&#8203;3707](https://togithub.com/graphql/graphql-js/pull/3707) Fix
crash in node when mixing sync/async resolvers (backport of
[#&#8203;3706](https://togithub.com/graphql/graphql-js/issues/3706))
([@&#8203;chrskrchr](https://togithub.com/chrskrchr))
- [#&#8203;3838](https://togithub.com/graphql/graphql-js/pull/3838)
Fix/invalid error propagation custom scalars (backport for 16.x.x)
([@&#8203;stenreijers](https://togithub.com/stenreijers))

##### Committers: 3

- Artem
Zakharchenko([@&#8203;kettanaito](https://togithub.com/kettanaito))
-   Chris Karcher([@&#8203;chrskrchr](https://togithub.com/chrskrchr))
- Sten Reijers([@&#8203;stenreijers](https://togithub.com/stenreijers))

</details>

<details>
<summary>jsdom/jsdom (jsdom)</summary>

###
[`v22.1.0`](https://togithub.com/jsdom/jsdom/blob/HEAD/Changelog.md#&#8203;2210)

[Compare
Source](https://togithub.com/jsdom/jsdom/compare/22.0.0...22.1.0)

-   Added `crypto.randomUUID()`. (jamesbvaughan)
-   Added `DOMRect` and `DOMRectReadOnly`.
-   Added `AbortSignal.timeout()`.
-   Added `abortSignal.throwIfAborted()`.
- Added support for the `submitter` argument to the `FormData`
constructor. (jenseng)
- Improved `getComputedStyle()`'s results for color-based properties, to
resolve named colors and attempt to provide initial inheritance support.
(hoekz-wwt)
- Updated `Window`'s event handler properties (e.g. `oncopy`,
`ontouchstart`, etc.) to reflect the latest list from the standard.
- Fixed `DOMParser`-created documents to inherit their URL from the
creating document.

</details>

<details>
<summary>graphql/graphiql (monaco-graphql)</summary>

###
[`v1.2.4`](https://togithub.com/graphql/graphiql/blob/HEAD/packages/monaco-graphql/CHANGELOG.md#&#8203;124)

[Compare
Source](https://togithub.com/graphql/graphiql/compare/monaco-graphql@1.2.3...monaco-graphql@1.2.4)

##### Patch Changes

- Updated dependencies
\[[`5971d528`](https://togithub.com/graphql/graphiql/commit/5971d528b0608e76d9d109103f64857a790a99b9),
[`d9e5089f`](https://togithub.com/graphql/graphiql/commit/d9e5089f78f85cd50c3e3e3ba8510f7dda3d06f5)]:
    -   graphql-language-service@5.1.7

</details>

<details>
<summary>nodejs/node (node)</summary>

###
[`v18.16.1`](https://togithub.com/nodejs/node/releases/tag/v18.16.1):
2023-06-20, Version 18.16.1 &#x27;Hydrogen&#x27; (LTS),
@&#8203;RafaelGSS

[Compare
Source](https://togithub.com/nodejs/node/compare/v18.16.0...v18.16.1)

This is a security release.

##### Notable Changes

The following CVEs are fixed in this release:

-
[CVE-2023-30581](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30581):
`mainModule.__proto__` Bypass Experimental Policy Mechanism (High)
-
[CVE-2023-30585](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30585):
Privilege escalation via Malicious Registry Key manipulation during
Node.js installer repair process (Medium)
-
[CVE-2023-30588](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30588):
Process interuption due to invalid Public Key information in x509
certificates (Medium)
-
[CVE-2023-30589](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30589):
HTTP Request Smuggling via Empty headers separated by CR (Medium)
-
[CVE-2023-30590](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30590):
DiffieHellman does not generate keys after setting a private key
(Medium)
-   OpenSSL Security Releases
- [OpenSSL security advisory 28th
March](https://www.openssl.org/news/secadv/20230328.txt).
- [OpenSSL security advisory 20th
April](https://www.openssl.org/news/secadv/20230420.txt).
- [OpenSSL security advisory 30th
May](https://www.openssl.org/news/secadv/20230530.txt)
-   c-ares vulnerabilities:
-
[GHSA-9g78-jv2r-p7vc](https://togithub.com/c-ares/c-ares/security/advisories/GHSA-9g78-jv2r-p7vc)
-
[GHSA-8r8p-23f3-64c2](https://togithub.com/c-ares/c-ares/security/advisories/GHSA-8r8p-23f3-64c2)
-
[GHSA-54xr-f67r-4pc4](https://togithub.com/c-ares/c-ares/security/advisories/GHSA-54xr-f67r-4pc4)
-
[GHSA-x6mf-cxr9-8q6v](https://togithub.com/c-ares/c-ares/security/advisories/GHSA-x6mf-cxr9-8q6v)

More detailed information on each of the vulnerabilities can be found in
[June 2023 Security
Releases](https://nodejs.org/en/blog/vulnerability/june-2023-security-releases/)
blog post.

##### Commits

- \[[`bf3e2c8928`](https://togithub.com/nodejs/node/commit/bf3e2c8928)]
- **crypto**: handle cert with invalid SPKI gracefully (Tobias Nießen)
[nodejs-private/node-private#&#8203;393](https://togithub.com/nodejs-private/node-private/pull/393)
- \[[`70f9449072`](https://togithub.com/nodejs/node/commit/70f9449072)]
- **deps**: set `CARES_RANDOM_FILE` for c-ares (Richard Lau)
[#&#8203;48156](https://togithub.com/nodejs/node/pull/48156)
- \[[`35d4efb57b`](https://togithub.com/nodejs/node/commit/35d4efb57b)]
- **deps**: update c-ares to 1.19.1 (RafaelGSS)
[#&#8203;48115](https://togithub.com/nodejs/node/pull/48115)
- \[[`392dfedc77`](https://togithub.com/nodejs/node/commit/392dfedc77)]
- **deps**: update archs files for openssl-3.0.9-quic1 (Node.js GitHub
Bot) [#&#8203;48402](https://togithub.com/nodejs/node/pull/48402)
- \[[`46cd5fe38b`](https://togithub.com/nodejs/node/commit/46cd5fe38b)]
- **deps**: upgrade openssl sources to quictls/openssl-3.0.9-quic1
(Node.js GitHub Bot)
[#&#8203;48402](https://togithub.com/nodejs/node/pull/48402)
- \[[`7e3d2d85c2`](https://togithub.com/nodejs/node/commit/7e3d2d85c2)]
- **doc,test**: clarify behavior of DH generateKeys (Tobias Nießen)
[nodejs-private/node-private#&#8203;426](https://togithub.com/nodejs-private/node-private/pull/426)
- \[[`4ff6ba050a`](https://togithub.com/nodejs/node/commit/4ff6ba050a)]
- **http**: disable request smuggling via rempty headers (Paolo Insogna)
[nodejs-private/node-private#&#8203;428](https://togithub.com/nodejs-private/node-private/pull/428)
- \[[`ab269129a6`](https://togithub.com/nodejs/node/commit/ab269129a6)]
- **msi**: do not create AppData\Roaming\npm (Tobias Nießen)
[nodejs-private/node-private#&#8203;408](https://togithub.com/nodejs-private/node-private/pull/408)
- \[[`925e8f5619`](https://togithub.com/nodejs/node/commit/925e8f5619)]
- **policy**: handle mainModule.\__proto\_\_ bypass (RafaelGSS)
[nodejs-private/node-private#&#8203;416](https://togithub.com/nodejs-private/node-private/pull/416)
- \[[`d6fae8e47e`](https://togithub.com/nodejs/node/commit/d6fae8e47e)]
- **test**: allow SIGBUS in signal-handler abort test (Michaël Zasso)
[#&#8203;47851](https://togithub.com/nodejs/node/pull/47851)

</details>

<details>
<summary>recharts/recharts (recharts)</summary>

###
[`v2.7.2`](https://togithub.com/recharts/recharts/releases/tag/v2.7.2)

[Compare
Source](https://togithub.com/recharts/recharts/compare/v2.7.1...v2.7.2)

#### What's Changed

##### Fix

- Allow `accessibilityLayer` when there is no tooltip (fixes undefined
access bug) by
[@&#8203;julianna-langston](https://togithub.com/julianna-langston) in
[https://github.com/recharts/recharts/pull/3627](https://togithub.com/recharts/recharts/pull/3627)
- Fix regression when `null` is passed into Line `dot` (fixes undefined
access bug although `null` is not a supported type for `dot`) by
[@&#8203;ckifer](https://togithub.com/ckifer) in
[https://github.com/recharts/recharts/pull/3637](https://togithub.com/recharts/recharts/pull/3637)

##### Other

-   Few minor storybook changes and dev chore items

**Full Changelog**:
https://github.com/recharts/recharts/compare/v2.7.1...v2.7.2

</details>

<details>
<summary>timlrx/rehype-prism-plus (rehype-prism-plus)</summary>

###
[`v1.6.1`](https://togithub.com/timlrx/rehype-prism-plus/releases/tag/v1.6.1)

[Compare
Source](https://togithub.com/timlrx/rehype-prism-plus/compare/v1.6.0...v1.6.1)

#### What's Changed

- Fix - add class info for default language by
[@&#8203;timlrx](https://togithub.com/timlrx) in
[https://github.com/timlrx/rehype-prism-plus/pull/61](https://togithub.com/timlrx/rehype-prism-plus/pull/61)

**Full Changelog**:
https://github.com/timlrx/rehype-prism-plus/compare/v1.6.0...v1.6.1

###
[`v1.6.0`](https://togithub.com/timlrx/rehype-prism-plus/releases/tag/v1.6.0)

[Compare
Source](https://togithub.com/timlrx/rehype-prism-plus/compare/v1.5.1...v1.6.0)

#### What's Changed

- Feature - Add default language option by
[@&#8203;timlrx](https://togithub.com/timlrx) in
[https://github.com/timlrx/rehype-prism-plus/pull/59](https://togithub.com/timlrx/rehype-prism-plus/pull/59)
You can now pass in `{defaultLanguage: 'py'}` or your most commonly used
language and save the hassle of specifying it at every code block level.
Note that `defaultLanguage` takes precedence over the `ignoreMissing`
setting. The `defaultLanguage` should be registered with refractor,
otherwise the plugin will throw an error message.
-   Update dependencies

**Full Changelog**:
https://github.com/timlrx/rehype-prism-plus/compare/v1.5.1...v1.6.0

</details>

<details>
<summary>rudderlabs/rudder-sdk-js (rudder-sdk-js)</summary>

###
[`v2.35.1`](https://togithub.com/rudderlabs/rudder-sdk-js/blob/HEAD/CHANGELOG.md#&#8203;2351-httpsgithubcomrudderlabsrudder-sdk-jscomparev2350v2351-2023-06-22)

[Compare
Source](https://togithub.com/rudderlabs/rudder-sdk-js/compare/v2.35.0...v2.35.1)

</details>

<details>
<summary>stripe/stripe-node (stripe)</summary>

###
[`v12.10.0`](https://togithub.com/stripe/stripe-node/blob/HEAD/CHANGELOG.md#&#8203;12100---2023-06-22)

[Compare
Source](https://togithub.com/stripe/stripe-node/compare/v12.9.0...v12.10.0)

- [#&#8203;1820](https://togithub.com/stripe/stripe-node/pull/1820)
Update generated code
    -   Add support for `on_behalf_of` on `Mandate`
- [#&#8203;1817](https://togithub.com/stripe/stripe-node/pull/1817)
Update README.md
- [#&#8203;1819](https://togithub.com/stripe/stripe-node/pull/1819)
Update generated code
    -   Release specs are identical.
- [#&#8203;1813](https://togithub.com/stripe/stripe-node/pull/1813)
Update generated code
- Change type of `Checkout.Session.success_url` from `string` to `string
| null`
    -   Change type of `FileCreateParams.file` from `string` to `file`
- [#&#8203;1815](https://togithub.com/stripe/stripe-node/pull/1815)
Generate FileCreateParams

</details>

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.10.6`](https://togithub.com/vercel/turbo/releases/tag/v1.10.6):
Turborepo v1.10.6

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.5...v1.10.6)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.6 -->

#### What's Changed

##### Changelog

- feat(turborepo): Scripts to build a debug version on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5007](https://togithub.com/vercel/turbo/pull/5007)
- release(turborepo): 1.10.5 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5364](https://togithub.com/vercel/turbo/pull/5364)
- fix: prevent looking up workspace task if name is not in there by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5370](https://togithub.com/vercel/turbo/pull/5370)
- fix(turborepo): Restructure spaces client and test error handling by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5367](https://togithub.com/vercel/turbo/pull/5367)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.5...v1.10.6

### [`v1.10.5`](https://togithub.com/vercel/turbo/releases/tag/v1.10.5):
Turborepo v1.10.5

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.4...v1.10.5)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.5 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5349](https://togithub.com/vercel/turbo/pull/5349)
- feat(turborepo) Add timeout to api client json methods by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5350](https://togithub.com/vercel/turbo/pull/5350)
- feat(turborepo): Debugging output for e2e tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5351](https://togithub.com/vercel/turbo/pull/5351)
- feat(turbo): add main pointing to bin by
[@&#8203;wesleytodd](https://togithub.com/wesleytodd) in
[https://github.com/vercel/turbo/pull/5333](https://togithub.com/vercel/turbo/pull/5333)
- fix: Removed path slash conversion on unix by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5356](https://togithub.com/vercel/turbo/pull/5356)
- fix(turborepo): Fix single package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5362](https://togithub.com/vercel/turbo/pull/5362)

#### New Contributors

- [@&#8203;wesleytodd](https://togithub.com/wesleytodd) made their first
contribution in
[https://github.com/vercel/turbo/pull/5333](https://togithub.com/vercel/turbo/pull/5333)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.4...v1.10.5

### [`v1.10.4`](https://togithub.com/vercel/turbo/releases/tag/v1.10.4):
Turborepo v1.10.4

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.10.3...v1.10.4)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.10.4 -->

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5250](https://togithub.com/vercel/turbo/pull/5250)
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5237](https://togithub.com/vercel/turbo/pull/5237)
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5263](https://togithub.com/vercel/turbo/pull/5263)
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5262](https://togithub.com/vercel/turbo/pull/5262)
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5224](https://togithub.com/vercel/turbo/pull/5224)
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5251](https://togithub.com/vercel/turbo/pull/5251)
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5271](https://togithub.com/vercel/turbo/pull/5271)
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5274](https://togithub.com/vercel/turbo/pull/5274)
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5275](https://togithub.com/vercel/turbo/pull/5275)
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5277](https://togithub.com/vercel/turbo/pull/5277)
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5278](https://togithub.com/vercel/turbo/pull/5278)
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5273](https://togithub.com/vercel/turbo/pull/5273)
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5283](https://togithub.com/vercel/turbo/pull/5283)
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5284](https://togithub.com/vercel/turbo/pull/5284)
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[https://github.com/vercel/turbo/pull/5285](https://togithub.com/vercel/turbo/pull/5285)
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5203](https://togithub.com/vercel/turbo/pull/5203)
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5255](https://togithub.com/vercel/turbo/pull/5255)
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5286](https://togithub.com/vercel/turbo/pull/5286)
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5287](https://togithub.com/vercel/turbo/pull/5287)
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5300](https://togithub.com/vercel/turbo/pull/5300)
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5303](https://togithub.com/vercel/turbo/pull/5303)
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5305](https://togithub.com/vercel/turbo/pull/5305)
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5309](https://togithub.com/vercel/turbo/pull/5309)
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[https://github.com/vercel/turbo/pull/3916](https://togithub.com/vercel/turbo/pull/3916)
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5313](https://togithub.com/vercel/turbo/pull/5313)
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5312](https://togithub.com/vercel/turbo/pull/5312)
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5310](https://togithub.com/vercel/turbo/pull/5310)
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5316](https://togithub.com/vercel/turbo/pull/5316)
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5317](https://togithub.com/vercel/turbo/pull/5317)
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5319](https://togithub.com/vercel/turbo/pull/5319)
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5297](https://togithub.com/vercel/turbo/pull/5297)
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5320](https://togithub.com/vercel/turbo/pull/5320)
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5322](https://togithub.com/vercel/turbo/pull/5322)
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5323](https://togithub.com/vercel/turbo/pull/5323)
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5329](https://togithub.com/vercel/turbo/pull/5329)
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5248](https://togithub.com/vercel/turbo/pull/5248)
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5342](https://togithub.com/vercel/turbo/pull/5342)
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5340](https://togithub.com/vercel/turbo/pull/5340)
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5344](https://togithub.com/vercel/turbo/pull/5344)
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5346](https://togithub.com/vercel/turbo/pull/5346)

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[https://github.com/vercel/turbo/pull/5252](https://togithub.com/vercel/turbo/pull/5252)
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[https://github.com/vercel/turbo/pull/4883](https://togithub.com/vercel/turbo/pull/4883)
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.3...v1.10.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/grafbase/website).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNDEuMyIsInVwZGF0ZWRJblZlciI6IjM1LjE0MS4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Vitaly <9862028+vitalikda@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants