Skip to content

Commit fedf88b

Browse files
updates dependencies (#56)
1 parent 9c2455d commit fedf88b

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,22 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [2.1.0] - 2022-11-07
11+
12+
- Updates dependencies as per: https://github.com/supertokens/supertokens-core/issues/525
13+
1014
## [2.0.0] - 2022-09-19
1115

12-
- Updates the `third_party_user_id` column in the `thirdparty_users` table from `VARCHAR(128)` to `VARCHAR(256)` to resolve https://github.com/supertokens/supertokens-core/issues/306
16+
- Updates the `third_party_user_id` column in the `thirdparty_users` table from `VARCHAR(128)` to `VARCHAR(256)` to
17+
resolve https://github.com/supertokens/supertokens-core/issues/306
1318

1419
- Adds support for user migration
15-
- Updates the `password_hash` column in the `emailpassword_users` table from `VARCHAR(128)` to `VARCHAR(256)` to support more types of password hashes.
20+
- Updates the `password_hash` column in the `emailpassword_users` table from `VARCHAR(128)` to `VARCHAR(256)` to
21+
support more types of password hashes.
1622

17-
- For legacy users who are self hosting the SuperTokens core run the following command to update your database with the changes:
18-
`ALTER TABLE thirdparty_users ALTER COLUMN third_party_user_id TYPE VARCHAR(256); ALTER TABLE emailpassword_users ALTER COLUMN password_hash TYPE VARCHAR(256);`
23+
- For legacy users who are self hosting the SuperTokens core run the following command to update your database with the
24+
changes:
25+
`ALTER TABLE thirdparty_users ALTER COLUMN third_party_user_id TYPE VARCHAR(256); ALTER TABLE emailpassword_users ALTER COLUMN password_hash TYPE VARCHAR(256);`
1926

2027
## [1.20.0] - 2022-08-18
2128

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
}
44

5-
version = "2.0.0"
5+
version = "2.1.0"
66

77
repositories {
88
mavenCentral()
@@ -20,10 +20,10 @@ dependencies {
2020
implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.10'
2121

2222
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml
23-
compileOnly group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.10.0'
23+
compileOnly group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.14.0'
2424

2525
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
26-
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.0'
26+
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.14.0'
2727

2828
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
2929
compileOnly group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
@@ -43,7 +43,7 @@ dependencies {
4343
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.1.0'
4444

4545
// https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core
46-
testImplementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '8.5.47'
46+
testImplementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '10.1.1'
4747

4848
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
4949
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
@@ -54,10 +54,10 @@ dependencies {
5454
testImplementation 'com.tngtech.archunit:archunit-junit4:0.22.0'
5555

5656
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml
57-
testImplementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.10.0'
57+
testImplementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.14.0'
5858

5959
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
60-
testImplementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.0'
60+
testImplementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.14.0'
6161
}
6262

6363
jar {

pluginInterfaceSupported.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"_comment": "contains a list of plugin interfaces branch names that this core supports",
33
"versions": [
4-
"2.18"
4+
"2.19"
55
]
66
}

0 commit comments

Comments
 (0)