Bugfix: Fix error in list-devices-near error

This commit is contained in:
Starbeamrainbowlabs 2020-03-05 18:52:53 +00:00
parent 9ec570afff
commit 4c61f662cc
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
5 changed files with 511 additions and 472 deletions

View File

@ -7,6 +7,9 @@ This is the changelog for the air quality web interface and its associated HTTP
- `[Code]` refers to internal changes to the code that have no direct impact on the web interface or the HTTP API, but are significant enough to warrant note.
- `[Docs]` refers to changes to the [documentation](https://aq.connectedhumber.org/__nightdocs/00-Welcome.html).
## v0.13.4
- [API] Fix crash in `list-devices-near` action
## v0.13.3
- Update dependencies

View File

@ -148,6 +148,7 @@ class MariaDBDeviceRepository implements IDeviceRepository {
public function get_near_location(float $lat, float $long, int $count) {
$s = $this->get_static;
$o = $this->get_static_extra;
$data_repo_class = MariaDBMeasurementDataRepository::class;
$data_repo_table_meta = $o($data_repo_class, "table_name_metadata");

957
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "air-quality-mapper",
"version": "0.13.0",
"version": "0.13.4-dev",
"description": "The web interface and JSON api for the ConnectedHumber Air Quality Monitoring Project.",
"private": true,
"main": "index.mjs",
@ -20,7 +20,7 @@
"dependencies": {
"chart.js": "^2.9.3",
"chroma-js": "^2.1.0",
"d3-delaunay": "^5.1.6",
"d3-delaunay": "^5.2.1",
"dom-create-element-query-selector": "github:hekigan/dom-create-element-query-selector",
"event-emitter-es6": "^1.1.5",
"iso8601-js-period": "^0.2.1",
@ -30,28 +30,28 @@
"leaflet.markercluster": "^1.4.1",
"moment": "^2.24.0",
"nanomodal": "^5.1.1",
"shepherd.js": "^6.0.2",
"smartsettings": "^1.2.3",
"shepherd.js": "^7.0.3",
"smartsettings": "^2.0.3",
"tabs": "^0.2.0",
"xml-writer": "^1.7.0"
},
"devDependencies": {
"@types/chart.js": "^2.9.3",
"@types/chroma-js": "^1.4.3",
"@types/chart.js": "^2.9.15",
"@types/chroma-js": "^2.0.0",
"@types/d3-delaunay": "^4.1.0",
"@types/event-emitter-es6": "^1.1.0",
"@types/leaflet": "^1.5.6",
"@types/leaflet": "^1.5.9",
"@types/leaflet-fullscreen": "^1.0.4",
"nightdocs": "^1.0.6",
"postcss-copy": "^7.1.0",
"postcss-import": "^12.0.1",
"rollup": "^1.27.8",
"rollup": "^1.32.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-postcss": "^2.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2"
"rollup-plugin-terser": "^5.2.0"
},
"docpress": {
"github": "ConnectedHumber/Air-Quality-Web",

View File

@ -1 +1 @@
v0.13.3-dev
v0.13.4-dev