diff --git a/CHANGELOG.md b/CHANGELOG.md index f18e330d3..637325309 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Makes default refresh API path "/session/refresh" - Compatibility with CDI 2.2. Makes `cookie_domain` default value to not set, so that it will work with any API - Makes sameSite = lax by default +- If licenseKey is missing, then dependency jars are downloaded in DEV mode ## [2.2.3] - 2020-08-10 ### Changes diff --git a/cli/jar/cli.jar b/cli/jar/cli.jar index 69f1e01eb..dbbf6d383 100644 Binary files a/cli/jar/cli.jar and b/cli/jar/cli.jar differ diff --git a/downloader/jar/downloader.jar b/downloader/jar/downloader.jar index 3e1b755ed..765ebee5e 100644 Binary files a/downloader/jar/downloader.jar and b/downloader/jar/downloader.jar differ diff --git a/downloader/src/main/java/io/supertokens/downloader/fileParsers/LicenseKeyParser.java b/downloader/src/main/java/io/supertokens/downloader/fileParsers/LicenseKeyParser.java index 321c925e2..f08711ed6 100644 --- a/downloader/src/main/java/io/supertokens/downloader/fileParsers/LicenseKeyParser.java +++ b/downloader/src/main/java/io/supertokens/downloader/fileParsers/LicenseKeyParser.java @@ -62,7 +62,7 @@ public LicenseKeyParser() { public String getMode() { if (this.mode == null) { - return "PRODUCTION"; + return "DEV"; } return this.mode; } diff --git a/jar/core-2.3.0.jar b/jar/core-2.3.0.jar index d8f653ebc..4526a2bfb 100644 Binary files a/jar/core-2.3.0.jar and b/jar/core-2.3.0.jar differ