Skip to content

Commit

Permalink
release 5.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vmarc committed Jun 20, 2024
1 parent 68f0288 commit d3b6a9e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "5.0.0",
"version": "5.0.3",
"scripts": {
"serve": "ng serve --proxy-config src/proxy-dev.conf.mjs",
"serve:vmarc": "ng serve --proxy-config src/proxy-vmarc.conf.mjs",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/shared/services/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export class Version {
static readonly id = '5.0.0';
static readonly id = '5.0.3';
static readonly experimental = false;
}
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>knooppuntnet</groupId>
<artifactId>server</artifactId>
<version>5.0.2</version>
<version>5.0.3</version>
<name>server</name>
<description>knooppuntnet server</description>

Expand Down
50 changes: 25 additions & 25 deletions server/src/main/scala/kpn/database/base/DatabaseImpl.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,111 +50,111 @@ class DatabaseImpl(val database: MongoDatabase) extends Database {
}

override def networks: DatabaseCollection[NetworkDoc] = {
new DatabaseCollectionImpl(database.getCollection[NetworkDoc]("networks"))
new DatabaseCollectionImpl(database.getCollection[NetworkDoc]("old-networks"))
}

override def networkInfos: DatabaseCollection[NetworkInfoDoc] = {
new DatabaseCollectionImpl(database.getCollection[NetworkInfoDoc]("network-infos"))
new DatabaseCollectionImpl(database.getCollection[NetworkInfoDoc]("old-network-infos"))
}

override def nodes: DatabaseCollection[NodeDoc] = {
new DatabaseCollectionImpl(database.getCollection[NodeDoc]("nodes"))
new DatabaseCollectionImpl(database.getCollection[NodeDoc]("old-nodes"))
}

override def orphanNodes: DatabaseCollection[OrphanNodeDoc] = {
new DatabaseCollectionImpl(database.getCollection[OrphanNodeDoc]("orphan-nodes"))
new DatabaseCollectionImpl(database.getCollection[OrphanNodeDoc]("old-orphan-nodes"))
}

override def routes: DatabaseCollection[RouteDoc] = {
new DatabaseCollectionImpl(database.getCollection[RouteDoc]("routes"))
new DatabaseCollectionImpl(database.getCollection[RouteDoc]("old-routes"))
}

override def orphanRoutes: DatabaseCollection[OrphanRouteDoc] = {
new DatabaseCollectionImpl(database.getCollection[OrphanRouteDoc]("orphan-routes"))
new DatabaseCollectionImpl(database.getCollection[OrphanRouteDoc]("old-orphan-routes"))
}

override def networkChanges: DatabaseCollection[NetworkChange] = {
new DatabaseCollectionImpl(database.getCollection[NetworkChange]("network-changes"))
new DatabaseCollectionImpl(database.getCollection[NetworkChange]("old-network-changes"))
}

override def networkInfoChanges: DatabaseCollection[NetworkInfoChange] = {
new DatabaseCollectionImpl(database.getCollection[NetworkInfoChange]("network-info-changes"))
new DatabaseCollectionImpl(database.getCollection[NetworkInfoChange]("old-network-info-changes"))
}

override def routeChanges: DatabaseCollection[RouteChange] = {
new DatabaseCollectionImpl(database.getCollection[RouteChange]("route-changes"))
new DatabaseCollectionImpl(database.getCollection[RouteChange]("old-route-changes"))
}

override def nodeChanges: DatabaseCollection[NodeChange] = {
new DatabaseCollectionImpl(database.getCollection[NodeChange]("node-changes"))
new DatabaseCollectionImpl(database.getCollection[NodeChange]("old-node-changes"))
}

override def changeSetComments: DatabaseCollection[ChangeSetComment] = {
new DatabaseCollectionImpl(database.getCollection[ChangeSetComment]("changeset-comments"))
new DatabaseCollectionImpl(database.getCollection[ChangeSetComment]("old-changeset-comments"))
}

override def changes: DatabaseCollection[ChangeSetSummary] = {
new DatabaseCollectionImpl(database.getCollection[ChangeSetSummary]("changes"))
new DatabaseCollectionImpl(database.getCollection[ChangeSetSummary]("old-changes"))
}

override def nodeNetworkRefs: DatabaseCollection[NodeNetworkRef] = {
new DatabaseCollectionImpl(database.getCollection[NodeNetworkRef]("node-network-refs"))
new DatabaseCollectionImpl(database.getCollection[NodeNetworkRef]("old-node-network-refs"))
}

override def routeNetworkRefs: DatabaseCollection[RouteNetworkRef] = {
new DatabaseCollectionImpl(database.getCollection[RouteNetworkRef]("route-network-refs"))
new DatabaseCollectionImpl(database.getCollection[RouteNetworkRef]("old-route-network-refs"))
}

override def changeSets: DatabaseCollection[ChangeSetInfo] = {
new DatabaseCollectionImpl(database.getCollection[ChangeSetInfo]("changesets"))
new DatabaseCollectionImpl(database.getCollection[ChangeSetInfo]("old-changesets"))
}

override def pois: DatabaseCollection[Poi] = {
new DatabaseCollectionImpl(database.getCollection[Poi]("pois"))
new DatabaseCollectionImpl(database.getCollection[Poi]("old-pois"))
}

override def poiStates: DatabaseCollection[PoiState] = {
new DatabaseCollectionImpl(database.getCollection[PoiState]("poi-states"))
new DatabaseCollectionImpl(database.getCollection[PoiState]("old-poi-states"))
}

override def tasks: DatabaseCollection[Task] = {
new DatabaseCollectionImpl(database.getCollection[Task]("tasks"))
}

override def monitorGroups: DatabaseCollection[MonitorGroup] = {
new DatabaseCollectionImpl(database.getCollection[MonitorGroup]("monitor-groups"))
new DatabaseCollectionImpl(database.getCollection[MonitorGroup]("old-monitor-groups"))
}

override def monitorRoutes: DatabaseCollection[MonitorRoute] = {
new DatabaseCollectionImpl(database.getCollection[MonitorRoute]("monitor-routes"))
new DatabaseCollectionImpl(database.getCollection[MonitorRoute]("old-monitor-routes"))
}

override def monitorRouteReferences: DatabaseCollection[MonitorRouteReference] = {
new DatabaseCollectionImpl(database.getCollection[MonitorRouteReference]("monitor-route-references"))
new DatabaseCollectionImpl(database.getCollection[MonitorRouteReference]("old-monitor-route-references"))
}

override def monitorRouteStates: DatabaseCollection[MonitorRouteState] = {
new DatabaseCollectionImpl(database.getCollection[MonitorRouteState]("monitor-route-states"))
new DatabaseCollectionImpl(database.getCollection[MonitorRouteState]("old-monitor-route-states"))
}

override def monitorRouteChanges: DatabaseCollection[MonitorRouteChange] = {
new DatabaseCollectionImpl(database.getCollection[MonitorRouteChange]("monitor-route-changes"))
new DatabaseCollectionImpl(database.getCollection[MonitorRouteChange]("old-monitor-route-changes"))
}

override def monitorRouteChangeGeometries: DatabaseCollection[MonitorRouteChangeGeometry] = {
new DatabaseCollectionImpl(database.getCollection[MonitorRouteChangeGeometry]("monitor-route-change-geometries"))
new DatabaseCollectionImpl(database.getCollection[MonitorRouteChangeGeometry]("old-monitor-route-change-geometries"))
}

override def monitorRelations: DatabaseCollection[MonitorRelation] = {
new DatabaseCollectionImpl(database.getCollection[MonitorRelation]("monitor-relations"))
new DatabaseCollectionImpl(database.getCollection[MonitorRelation]("old-monitor-relations"))
}

override def monitorTasks: DatabaseCollection[MonitorTask] = {
new DatabaseCollectionImpl(database.getCollection[MonitorTask]("monitor-tasks"))
}

override def statistics: DatabaseCollection[StatisticLongValues] = {
new DatabaseCollectionImpl(database.getCollection[StatisticLongValues]("statistics"))
new DatabaseCollectionImpl(database.getCollection[StatisticLongValues]("old-statistics"))
}

override def status: DatabaseCollection[WithStringId] = {
Expand Down

0 comments on commit d3b6a9e

Please sign in to comment.