heroku 11.2.0-beta.1 → 11.2.0

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 CHANGED
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
6
 
7
- ## [11.2.0-beta.1](https://github.com/heroku/cli/compare/v11.1.1...v11.2.0-beta.1) (2026-04-08)
7
+ ## [11.2.0](https://github.com/heroku/cli/compare/v11.1.1...v11.2.0) (2026-04-08)
8
8
 
9
9
 
10
10
  ### Features
@@ -29,6 +29,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
29
29
  ### Tests
30
30
 
31
31
  * this fixes the mocking difference causing flappy tests and adds chore to PR release title ([#3640](https://github.com/heroku/cli/issues/3640)) ([32920f9](https://github.com/heroku/cli/commit/32920f9600cc6b06815aa7db532dd8bb352d90db))
32
+ * use Sinon stubs; parallel slug checksums ([#3650](https://github.com/heroku/cli/issues/3650)) ([73e4990](https://github.com/heroku/cli/commit/73e4990222d4a1b1dfec5fc64eae0c25f811c93c))
32
33
 
33
34
  ## [11.1.1](https://github.com/heroku/cli/compare/v11.1.0...v11.1.1) (2026-04-01)
34
35
 
@@ -28,9 +28,8 @@ async function checksum(heroku, app) {
28
28
  }
29
29
  }
30
30
  async function diffFiles(heroku, app1, app2) {
31
- const sum1 = await checksum(heroku, app1);
32
- const sum2 = await checksum(heroku, app2);
33
- return sum1 === sum2 ? [] : [{ prop: 'slug (checksum)', app1: sum1 ?? undefined, app2: sum2 ?? undefined }];
31
+ const sums = await Promise.all([checksum(heroku, app1), checksum(heroku, app2)]);
32
+ return sums[0] === sums[1] ? [] : [{ prop: 'slug (checksum)', app1: sums[0] ?? undefined, app2: sums[1] ?? undefined }];
34
33
  }
35
34
  async function diffEnv(heroku, app1, app2) {
36
35
  const [res1, res2] = await Promise.all([
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "heroku",
3
- "version": "11.2.0-beta.1",
3
+ "version": "11.2.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "heroku",
9
- "version": "11.2.0-beta.1",
9
+ "version": "11.2.0",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "@heroku-cli/command": "^12.3.1",