Skip to content

Commit 4a4805f

Browse files
committed
fix: domain fix and changelog
1 parent 605e2f0 commit 4a4805f

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1111

1212
- Adds hikari logs to opentelemetry
1313
- Fetches core and plugin config from env
14+
- Open Telemetry configuration is now optional
15+
- Migrates API calls from supertokens.io to supertokens.com
1416

1517
## [11.0.5]
1618

ee/src/main/java/io/supertokens/ee/EEFeatureFlag.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ private EE_FEATURES[] doServerCall(String licenseKey)
523523
ProcessState.getInstance(main)
524524
.addState(ProcessState.PROCESS_STATE.LICENSE_KEY_CHECK_NETWORK_CALL, null, json);
525525
JsonObject licenseCheckResponse = HttpRequest.sendJsonPOSTRequest(this.main, REQUEST_ID,
526-
"https://api.supertokens.io/0/st/license/check",
526+
"https://api.supertokens.com/0/st/license/check",
527527
json, 10000, 10000, 0);
528528
if (licenseCheckResponse.get("status").getAsString().equalsIgnoreCase("OK")) {
529529
Logging.debug(main, appIdentifier.getAsPublicTenantIdentifier(), "API returned OK");

src/main/java/io/supertokens/cronjobs/telemetry/Telemetry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ protected void doTaskPerApp(AppIdentifier app) throws Exception {
157157
json.add("maus", new JsonArray());
158158
}
159159

160-
String url = "https://api.supertokens.io/0/st/telemetry";
160+
String url = "https://api.supertokens.com/0/st/telemetry";
161161

162162
// we call the API only if we are not testing the core, of if the request can be mocked (in case a test
163163
// wants

src/main/java/io/supertokens/version/VersionFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void validate() {
3838
if (core_version == null || plugin_interface_version == null) {
3939
throw new QuitProgramException(
4040
"version.yaml file seems to be corrupted. Please redownload and install SuperTokens from "
41-
+ "https://supertokens.io/dashboard");
41+
+ "https://supertokens.com/");
4242
}
4343
}
4444

0 commit comments

Comments
 (0)