@vercel/build-utils 7.6.0 → 7.7.1
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.
- package/CHANGELOG.md +12 -0
- package/dist/index.js +1 -1
- package/dist/schemas.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# @vercel/build-utils
|
2
2
|
|
3
|
+
## 7.7.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [build-utils] increase max memory limit ([#11209](https://github.com/vercel/vercel/pull/11209))
|
8
|
+
|
9
|
+
## 7.7.0
|
10
|
+
|
11
|
+
### Minor Changes
|
12
|
+
|
13
|
+
- Revert "Revert "Default ruby to only currently supported version (3.2.0)"" ([#11137](https://github.com/vercel/vercel/pull/11137))
|
14
|
+
|
3
15
|
## 7.6.0
|
4
16
|
|
5
17
|
### Minor Changes
|
package/dist/index.js
CHANGED
@@ -22511,7 +22511,7 @@ var functionsSchema = {
|
|
22511
22511
|
},
|
22512
22512
|
memory: {
|
22513
22513
|
minimum: 128,
|
22514
|
-
maximum:
|
22514
|
+
maximum: 3009
|
22515
22515
|
},
|
22516
22516
|
maxDuration: {
|
22517
22517
|
type: "number",
|
package/dist/schemas.js
CHANGED