turbo 2.7.5-canary.9 → 2.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/package.json +7 -7
  3. package/schema.json +8 -1
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2025 Vercel, Inc
1
+ Copyright (c) 2026 Vercel, Inc
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbo",
3
- "version": "2.7.5-canary.9",
3
+ "version": "2.7.5",
4
4
  "description": "Turborepo is a high-performance build system for JavaScript and TypeScript codebases.",
5
5
  "repository": "https://github.com/vercel/turborepo",
6
6
  "bugs": "https://github.com/vercel/turborepo/issues",
@@ -15,12 +15,12 @@
15
15
  "schema.json"
16
16
  ],
17
17
  "optionalDependencies": {
18
- "turbo-darwin-64": "2.7.5-canary.9",
19
- "turbo-darwin-arm64": "2.7.5-canary.9",
20
- "turbo-linux-64": "2.7.5-canary.9",
21
- "turbo-linux-arm64": "2.7.5-canary.9",
22
- "turbo-windows-64": "2.7.5-canary.9",
23
- "turbo-windows-arm64": "2.7.5-canary.9"
18
+ "turbo-darwin-64": "2.7.5",
19
+ "turbo-darwin-arm64": "2.7.5",
20
+ "turbo-linux-64": "2.7.5",
21
+ "turbo-linux-arm64": "2.7.5",
22
+ "turbo-windows-64": "2.7.5",
23
+ "turbo-windows-arm64": "2.7.5"
24
24
  },
25
25
  "scripts": {
26
26
  "postversion": "node bump-version.js"
package/schema.json CHANGED
@@ -253,7 +253,14 @@
253
253
  },
254
254
  "FutureFlags": {
255
255
  "description": "Opt into breaking changes prior to major releases, experimental features, and beta features.\n\nNote: Currently all previous future flags (turboExtendsKeyword, nonRootExtends) have been graduated and are now enabled by default.",
256
- "type": "object"
256
+ "type": "object",
257
+ "properties": {
258
+ "errorsOnlyShowHash": {
259
+ "description": "When using `outputLogs: \"errors-only\"`, show task hashes when tasks complete successfully. This provides visibility into which tasks are running without showing full output logs.",
260
+ "default": false,
261
+ "type": "boolean"
262
+ }
263
+ }
257
264
  },
258
265
  "Map_of_TagRules": {
259
266
  "type": "object",