You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# Change Log
2
2
3
+
#### 0.3.0
4
+
5
+
**2025-02-18**
6
+
7
+
-**Breaking changes:**
8
+
- Updated TerriaJS to `8.8.0`
9
+
- Upgrades Webpack to version 5
10
+
- Upgraded sass to version 1.80+
11
+
-[Full list of TerriaJS changes](https://github.com/TerriaJS/terriajs/blob/main/CHANGES.md#880---2025-02-18)
12
+
- Converted files from CJS to ESM style
13
+
- This includes `entry.js`, `index.js` - if you have changed these files it is likely that you will get a merge conflict when upgrading. Please [reach out to us](https://github.com/terriajs/terriajs/discussions) if you need help.
14
+
- Replaced webpack aliases `~terriajs-variables` and `~terriajs` in css imports with relative paths. This simplifies the webpack configuration.
// work around chrome needing the full URL when using sourcemaps (http://stackoverflow.com/questions/34133808/webpack-ots-parsing-error-loading-fonts/34133809#34133809)
17
-
publicPath: hot ? "http://localhost:3003/build/" : "build/",
17
+
publicPath: "build/",
18
18
sourcePrefix: "",// to avoid breaking multi-line string literals by inserting extra tabs.
19
19
globalObject: "(self || window)"// to avoid breaking in web worker (https://github.com/webpack/webpack/issues/6642)
0 commit comments