Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

#### 0.4.6

- Upgrades TerriaJS to [8.12.2](https://github.com/TerriaJS/terriajs/blob/main/CHANGES.md#8120---2026-03-27)

#### 0.4.5

- Upgrades TerriaJS to [8.11.3](https://github.com/TerriaJS/terriajs/blob/main/CHANGES.md#8113---2026-02-02)
Expand All @@ -9,11 +13,9 @@
**2025-12-04**

- **Security fixes**

- Fixed a security bug in `/proxy` endpoint that allowed requests to a variation of domains in the `allowProxyFor` list. If `example.com` is in `allowProxyFor` setting, this allowed requests to a domain with a different prefix, like `badexample.com` to pass through. [#212](https://github.com/TerriaJS/terriajs-server/pull/212)

- **Deprecations**

- Deprecates most of the proxy domains in the [default serverconfig.json](https://github.com/TerriaJS/TerriaMap/blob/d126a10a0625926762351b1b44b918fb03737836/serverconfig.json#L7-L25) file. These will be removed in a future release, so please add them through a [custom serverconfig.json](https://docs.terria.io/guide/getting-started/#customizing-terriamap) if you rely on terria proxying to any of these servers.

- Upgrades TerriaJS to
Expand Down Expand Up @@ -145,9 +147,7 @@ Failed release workflow
**2023-05-22**

- Update TerriaJS to `8.3.0`

- **Breaking changes:**

- **Upgraded Mobx to version 6.7.x**
- **Upgraded Typescript to version 4.9.x**

Expand Down
5 changes: 2 additions & 3 deletions buildprocess/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,8 @@ module.exports = function ({ devMode, baseHref = "/" }) {
modules: ["node_modules"]
}
};
config.resolve.alias["terriajs-variables"] = require.resolve(
"../lib/Styles/variables-overrides.scss"
);
config.resolve.alias["terriajs-variables"] =
require.resolve("../lib/Styles/variables-overrides.scss");

return configureWebpackForPlugins(
configureWebpackForTerriaJS({
Expand Down
4 changes: 2 additions & 2 deletions deploy/docker/docker-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ exports.getName = function getName(name) {
return process.env.npm_package_config_docker_name
? process.env.npm_package_config_docker_name
: process.env.npm_package_name
? "data61/magda-" + process.env.npm_package_name.split("/")[1]
: "UnnamedImage";
? "data61/magda-" + process.env.npm_package_name.split("/")[1]
: "UnnamedImage";
};

exports.getTags = function getTags(tag, local, repository, version, name) {
Expand Down
3 changes: 1 addition & 2 deletions deploy/helm/terria/charts/terriamap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ serverConfig:
allowProxyFor: []
initPaths:
- "/etc/config/client"
resources:
{}
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
]
},
"name": "terriajs-map",
"version": "0.4.5",
"version": "0.4.6",
"description": "Geospatial catalog explorer based on TerriaJS.",
"license": "Apache-2.0",
"engines": {
Expand Down Expand Up @@ -53,27 +53,28 @@
"fork-ts-checker-notifier-webpack-plugin": "^9.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"fs-extra": "^7.0.1",
"gulp": "^5.0.0",
"gulp": "^5.0.1",
"html-webpack-plugin": "^5.6.3",
"husky": "^8.0.3",
"is-subdir": "^1.2.0",
"json5": "^2.1.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"msw": "^2.12.9",
"node-notifier": "^10.0.1",
"plugin-error": "^2.0.1",
"prettier": "2.8.8",
"pretty-quick": "^4.0.0",
"prettier": "3.8.1",
"pretty-quick": "^4.2.2",
"prop-types": "^15.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"terriajs": "8.11.3",
"terriajs-cesium": "21.0.1",
"svg-sprite": "^2.0.4",
"terriajs": "8.12.2",
"terriajs-cesium": "23.0.2",
"terriajs-plugin-api": "0.0.1-alpha.17",
"terriajs-plugin-sample": "0.0.1-alpha.7",
"typescript": "^5.9.2",
Expand Down
Loading
Loading