Skip to content

Commit e724d60

Browse files
committed
run prettier
1 parent 1b28cd6 commit e724d60

4 files changed

Lines changed: 5 additions & 11 deletions

File tree

CHANGES.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@
99
**2025-12-04**
1010

1111
- **Security fixes**
12-
1312
- 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)
1413

1514
- **Deprecations**
16-
1715
- 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.
1816

1917
- Upgrades TerriaJS to
@@ -145,9 +143,7 @@ Failed release workflow
145143
**2023-05-22**
146144

147145
- Update TerriaJS to `8.3.0`
148-
149146
- **Breaking changes:**
150-
151147
- **Upgraded Mobx to version 6.7.x**
152148
- **Upgraded Typescript to version 4.9.x**
153149

buildprocess/webpack.config.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,8 @@ module.exports = function ({ devMode, baseHref = "/" }) {
127127
modules: ["node_modules"]
128128
}
129129
};
130-
config.resolve.alias["terriajs-variables"] = require.resolve(
131-
"../lib/Styles/variables-overrides.scss"
132-
);
130+
config.resolve.alias["terriajs-variables"] =
131+
require.resolve("../lib/Styles/variables-overrides.scss");
133132

134133
return configureWebpackForPlugins(
135134
configureWebpackForTerriaJS({

deploy/docker/docker-util.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ exports.getName = function getName(name) {
1515
return process.env.npm_package_config_docker_name
1616
? process.env.npm_package_config_docker_name
1717
: process.env.npm_package_name
18-
? "data61/magda-" + process.env.npm_package_name.split("/")[1]
19-
: "UnnamedImage";
18+
? "data61/magda-" + process.env.npm_package_name.split("/")[1]
19+
: "UnnamedImage";
2020
};
2121

2222
exports.getTags = function getTags(tag, local, repository, version, name) {

deploy/helm/terria/charts/terriamap/values.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ serverConfig:
4747
allowProxyFor: []
4848
initPaths:
4949
- "/etc/config/client"
50-
resources:
51-
{}
50+
resources: {}
5251
# We usually recommend not to specify default resources and to leave this as a conscious
5352
# choice for the user. This also increases chances charts run on environments with little
5453
# resources, such as Minikube. If you do want to specify resources, uncomment the following

0 commit comments

Comments
 (0)