@atlaspack/graph 3.4.5 → 3.4.7

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
@@ -1,5 +1,19 @@
1
1
  # @atlaspack/graph
2
2
 
3
+ ## 3.4.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`209692f`](https://github.com/atlassian-labs/atlaspack/commit/209692ffb11eae103a0d65c5e1118a5aa1625818), [`f4da1e1`](https://github.com/atlassian-labs/atlaspack/commit/f4da1e120e73eeb5e8b8927f05e88f04d6148c7b)]:
8
+ - @atlaspack/feature-flags@2.16.0
9
+
10
+ ## 3.4.6
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`30f6017`](https://github.com/atlassian-labs/atlaspack/commit/30f60175ba4d272c5fc193973c63bc298584775b)]:
15
+ - @atlaspack/feature-flags@2.15.1
16
+
3
17
  ## 3.4.5
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/graph",
3
- "version": "3.4.5",
3
+ "version": "3.4.7",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -16,7 +16,7 @@
16
16
  "node": ">= 16.0.0"
17
17
  },
18
18
  "dependencies": {
19
- "@atlaspack/feature-flags": "2.15.0",
19
+ "@atlaspack/feature-flags": "2.16.0",
20
20
  "nullthrows": "^1.1.1"
21
21
  },
22
22
  "type": "commonjs"
@@ -528,12 +528,17 @@ describe('Graph', () => {
528
528
  getChildren,
529
529
  });
530
530
 
531
- assert.deepEqual(contexts, [
532
- [0, undefined],
533
- [1, 'node-0-created-context'],
534
- [2, 'node-1-created-context'],
535
- [3, 'node-2-created-context'],
536
- ]);
531
+ assert.deepEqual(
532
+ contexts.map((values) =>
533
+ values.map((v) => (v != null ? v : undefined)),
534
+ ),
535
+ [
536
+ [0, undefined],
537
+ [1, 'node-0-created-context'],
538
+ [2, 'node-1-created-context'],
539
+ [3, 'node-2-created-context'],
540
+ ],
541
+ );
537
542
  assert.equal(result, undefined);
538
543
  });
539
544
  });
@@ -572,16 +577,21 @@ describe('Graph', () => {
572
577
  getChildren,
573
578
  });
574
579
 
575
- assert.deepEqual(contexts, [
576
- [0, undefined],
577
- [1, 'node-0-created-context'],
578
- [2, 'node-1-created-context'],
579
- ['exit', 2, 'node-2-created-context'],
580
- [3, 'node-1-created-context'],
581
- ['exit', 3, 'node-3-created-context'],
582
- ['exit', 1, 'node-1-created-context'],
583
- ['exit', 0, 'node-0-created-context'],
584
- ]);
580
+ assert.deepEqual(
581
+ contexts.map((values) =>
582
+ values.map((v) => (v != null ? v : undefined)),
583
+ ),
584
+ [
585
+ [0, undefined],
586
+ [1, 'node-0-created-context'],
587
+ [2, 'node-1-created-context'],
588
+ ['exit', 2, 'node-2-created-context'],
589
+ [3, 'node-1-created-context'],
590
+ ['exit', 3, 'node-3-created-context'],
591
+ ['exit', 1, 'node-1-created-context'],
592
+ ['exit', 0, 'node-0-created-context'],
593
+ ],
594
+ );
585
595
  assert.equal(result, undefined);
586
596
  });
587
597
  });