@squide/firefly-webpack-configs 4.0.2 → 4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @squide/firefly-webpack-configs
2
2
 
3
+ ## 4.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#219](https://github.com/gsoft-inc/wl-squide/pull/219) [`25cb482`](https://github.com/gsoft-inc/wl-squide/commit/25cb482779ee280f3f7109de4607b92dcfeef7f3) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Now dispatching events to enable instrumentation packages for observability platforms.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`25cb482`](https://github.com/gsoft-inc/wl-squide/commit/25cb482779ee280f3f7109de4607b92dcfeef7f3)]:
12
+ - @squide/webpack-configs@4.3.0
13
+
14
+ ## 4.1.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [#204](https://github.com/gsoft-inc/wl-squide/pull/204) [`d3f7b9c`](https://github.com/gsoft-inc/wl-squide/commit/d3f7b9c6aa80249cd898916f6315ea27c4526812) Thanks [@patricklafrance](https://github.com/patricklafrance)! - The `registerNavigationItem` function now accepts a `sectionId` option to nest the item under a specific navigation section:
19
+
20
+ ```ts
21
+ runtime.registerNavigationItem(
22
+ {
23
+ $id: "link",
24
+ $label: "Link",
25
+ to: "/link",
26
+ },
27
+ {
28
+ sectionId: "some-section",
29
+ }
30
+ );
31
+ ```
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [[`d3f7b9c`](https://github.com/gsoft-inc/wl-squide/commit/d3f7b9c6aa80249cd898916f6315ea27c4526812)]:
36
+ - @squide/webpack-configs@4.2.0
37
+
3
38
  ## 4.0.2
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@squide/firefly-webpack-configs",
3
3
  "author": "Workleap",
4
- "version": "4.0.2",
4
+ "version": "4.2.0",
5
5
  "description": "Webpack configuration helpers for the Squide firefly technology stack.",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -36,10 +36,10 @@
36
36
  "webpack-dev-server": ">=5.0.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@module-federation/enhanced": "0.2.6",
40
- "@swc/core": "1.7.0",
39
+ "@module-federation/enhanced": "0.6.9",
40
+ "@swc/core": "1.7.26",
41
41
  "@swc/jest": "0.2.36",
42
- "@types/jest": "29.5.12",
42
+ "@types/jest": "29.5.13",
43
43
  "@workleap/eslint-plugin": "3.2.2",
44
44
  "@workleap/swc-configs": "2.2.3",
45
45
  "@workleap/tsup-configs": "3.0.6",
@@ -47,14 +47,14 @@
47
47
  "eslint": "8.57.0",
48
48
  "jest": "29.7.0",
49
49
  "jest-environment-jsdom": "29.7.0",
50
- "ts-jest": "29.2.3",
51
- "tsup": "8.1.2",
52
- "typescript": "5.5.3",
53
- "webpack": "5.93.0"
50
+ "ts-jest": "29.2.5",
51
+ "tsup": "8.3.0",
52
+ "typescript": "5.5.4",
53
+ "webpack": "5.95.0"
54
54
  },
55
55
  "dependencies": {
56
56
  "@workleap/webpack-configs": "1.5.1",
57
- "@squide/webpack-configs": "4.1.0"
57
+ "@squide/webpack-configs": "4.3.0"
58
58
  },
59
59
  "engines": {
60
60
  "node": ">=20.0.0"