Skip to content

Commit 136f492

Browse files
authored
Merge pull request #2039 from Maps-Messaging/development
Development
2 parents 2601251 + 97c457b commit 136f492

File tree

229 files changed

+5365
-2263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

229 files changed

+5365
-2263
lines changed

404.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="refresh" content="0; url=https://mapsmessaging.io/" />
6+
<meta name="robots" content="noindex,follow" />
7+
<link rel="canonical" href="https://mapsmessaging.io/" />
8+
<title>Redirecting…</title>
9+
<script>
10+
(function() {
11+
try {
12+
// For deep links, GitHub Pages serves 404.html; preserve full path
13+
var path = (location.pathname || "").replace(/^\/maps-messaging-site\/?/, "");
14+
var dest = "https://mapsmessaging.io/" + path + (location.search || "") + (location.hash || "");
15+
window.location.replace(dest);
16+
} catch (e) {
17+
window.location.replace("https://mapsmessaging.io/");
18+
}
19+
})();
20+
</script>
21+
</head>
22+
<body>
23+
<p>Redirecting… If nothing happens, <a href="https://mapsmessaging.io/">go to mapsmessaging.io</a>.</p>
24+
</body>
25+
</html>

PROTOCOLS.md

Lines changed: 0 additions & 174 deletions
This file was deleted.

index.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="refresh" content="0; url=https://mapsmessaging.io/" />
6+
<meta name="robots" content="noindex,follow" />
7+
<link rel="canonical" href="https://mapsmessaging.io/" />
8+
<title>Redirecting to MAPS Messaging…</title>
9+
<script>
10+
(function() {
11+
try {
12+
// Preserve path/query/hash when possible.
13+
var path = (location.pathname || "").replace(/^\/maps-messaging-site\/?/, "");
14+
var dest = "https://mapsmessaging.io/" + path + (location.search || "") + (location.hash || "");
15+
// Use replace() to avoid back button loops
16+
window.location.replace(dest);
17+
} catch (e) {
18+
// Fallback
19+
window.location.replace("https://mapsmessaging.io/");
20+
}
21+
})();
22+
</script>
23+
<style>
24+
html,body {height:100%;margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;display:grid;place-items:center;}
25+
.card {max-width:720px;padding:24px;border:1px solid #e5e7eb;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.05);text-align:center;}
26+
a {text-decoration:underline;}
27+
</style>
28+
</head>
29+
<body>
30+
<div class="card">
31+
<h1>Redirecting to <a href="https://mapsmessaging.io/">mapsmessaging.io</a></h1>
32+
<p>If you are not redirected automatically, <a href="https://mapsmessaging.io/">click here</a>.</p>
33+
<p><small>Status: soft redirect via HTML/JS (GitHub Pages). For permanent redirect use your DNS/hosting layer.</small></p>
34+
</div>
35+
</body>
36+
</html>

packaging/deb_package/DEBIAN/postinst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ case "$1" in
2727
if ! id -u mapsmessaging >/dev/null 2>&1; then
2828
useradd -r -s /usr/sbin/nologin -d /opt/maps mapsmessaging
2929
fi
30+
getent group dialout >/dev/null 2>&1 || groupadd -r dialout
31+
usermod -a -G dialout mapsmessaging
32+
3033

3134
# Create dirs
3235
mkdir -p /etc/maps

packaging/etc/maps.service

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Group=mapsmessaging
1717
LimitNOFILE=65535
1818
TimeoutStartSec=15s
1919
TimeoutStopSec=10s
20+
TasksMax=8192
2021

2122
[Install]
2223
WantedBy=multi-user.target

pom.xml

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>io.mapsmessaging</groupId>
2626
<artifactId>maps</artifactId>
2727
<modelVersion>4.0.0</modelVersion>
28-
<version>4.2.0</version>
28+
<version>4.3.0</version>
2929
<packaging>jar</packaging>
3030

3131
<name>Maps Messaging Server</name>
@@ -133,19 +133,19 @@
133133
<java.version>21</java.version>
134134

135135
<!-- Base -->
136-
<maps.logging.version>2.1.1</maps.logging.version>
137-
<maps.jms_selector.version>2.1.0</maps.jms_selector.version>
138-
<maps.nolc.version>1.2.1</maps.nolc.version>
136+
<maps.logging.version>2.1.2-SNAPSHOT</maps.logging.version>
137+
<maps.jms_selector.version>2.1.1-SNAPSHOT</maps.jms_selector.version>
138+
<maps.nolc.version>1.2.2-SNAPSHOT</maps.nolc.version>
139139

140140
<!-- first level dependencies -->
141-
<maps.nbts.version>2.2.1</maps.nbts.version>
142-
<maps.schema.version>3.0.0</maps.schema.version>
143-
<maps.config.version>1.1.3</maps.config.version>
141+
<maps.nbts.version>2.2.2-SNAPSHOT</maps.nbts.version>
142+
<maps.schema.version>3.0.1-SNAPSHOT</maps.schema.version>
143+
<maps.config.version>1.1.4-SNAPSHOT</maps.config.version>
144144

145145
<!-- Second level dependencies -->
146-
<maps.storage.version>2.5.1</maps.storage.version>
147-
<maps.device.version>3.0.0</maps.device.version>
148-
<maps.auth.version>2.0.1</maps.auth.version>
146+
<maps.storage.version>2.5.2-SNAPSHOT</maps.storage.version>
147+
<maps.device.version>3.1.1-SNAPSHOT</maps.device.version>
148+
<maps.auth.version>3.0.0-SNAPSHOT</maps.auth.version>
149149

150150

151151
</properties>
@@ -211,7 +211,7 @@
211211
<dependency>
212212
<groupId>org.graalvm.buildtools</groupId>
213213
<artifactId>graalvm-reachability-metadata</artifactId>
214-
<version>0.11.2</version>
214+
<version>0.11.3</version>
215215
<classifier>repository</classifier>
216216
<type>zip</type>
217217
</dependency>
@@ -529,7 +529,7 @@
529529
<plugin>
530530
<groupId>org.owasp</groupId>
531531
<artifactId>dependency-check-maven</artifactId>
532-
<version>12.1.8</version>
532+
<version>12.1.9</version>
533533
<configuration>
534534
<nvdApiKey>${nvd.api.key}</nvdApiKey>
535535
<failBuildOnCVSS>10</failBuildOnCVSS>
@@ -577,7 +577,7 @@
577577
<dependency>
578578
<groupId>software.amazon.awssdk</groupId>
579579
<artifactId>bom</artifactId>
580-
<version>2.38.2</version>
580+
<version>2.38.6</version>
581581
<type>pom</type>
582582
<scope>import</scope>
583583
</dependency>
@@ -662,16 +662,17 @@
662662
</dependency>
663663

664664
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-access -->
665+
<!-- https://mvnrepository.com/artifact/ch.qos.logback.access/logback-access-common -->
665666
<dependency>
666-
<groupId>ch.qos.logback</groupId>
667-
<artifactId>logback-access</artifactId>
668-
<version>${logback.version}</version>
667+
<groupId>ch.qos.logback.access</groupId>
668+
<artifactId>logback-access-common</artifactId>
669+
<version>2.0.6</version>
669670
</dependency>
670671

671672
<dependency>
672673
<groupId>com.fasterxml.jackson.datatype</groupId>
673674
<artifactId>jackson-datatype-jsr310</artifactId>
674-
<version>2.20.0</version>
675+
<version>2.20.1</version>
675676
</dependency>
676677

677678
<dependency>
@@ -872,13 +873,13 @@
872873
<dependency>
873874
<groupId>software.amazon.awssdk</groupId>
874875
<artifactId>cognitoidentity</artifactId>
875-
<version>2.37.5</version>
876+
<version>2.38.6</version>
876877
</dependency>
877878

878879
<dependency>
879880
<groupId>software.amazon.awssdk</groupId>
880881
<artifactId>cognitoidentityprovider</artifactId>
881-
<version>2.38.1</version>
882+
<version>2.38.6</version>
882883
</dependency>
883884

884885

@@ -1009,10 +1010,11 @@
10091010
<dependency>
10101011
<groupId>org.springframework</groupId>
10111012
<artifactId>spring-websocket</artifactId>
1012-
<version>6.2.12</version>
1013+
<version>6.2.14</version>
10131014
<scope>test</scope>
10141015
</dependency>
10151016

1017+
10161018
<dependency>
10171019
<groupId>org.springframework.boot</groupId>
10181020
<artifactId>spring-boot-starter-websocket</artifactId>

robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
Disallow: /
3+
Sitemap: https://mapsmessaging.io/sitemap.xml

0 commit comments

Comments
 (0)