Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
skin27 committed Jul 3, 2023
1 parent b256a85 commit 8fdcdf3
Show file tree
Hide file tree
Showing 14 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ tasks.withType(JavaExec) {
}

group = "org.assimbly.gateway"
version = '4.0.1'
version = '4.0.2'

description = ""

Expand Down
Binary file modified data/bindings/activemq-bindings-1.bindings
Binary file not shown.
Binary file modified data/bindings/activemq-bindings-2.bindings
Binary file not shown.
Binary file modified data/journal/activemq-data-1.amq
Binary file not shown.
Binary file modified data/journal/activemq-data-2.amq
Binary file not shown.
Binary file added data/journal/activemq-data-68.amq
Binary file not shown.
Binary file added data/journal/activemq-data-69.amq
Binary file not shown.
Binary file added data/journal/activemq-data-70.amq
Binary file not shown.
Binary file added data/journal/activemq-data-72.amq
Binary file not shown.
Binary file added data/journal/activemq-data-73.amq
Binary file not shown.
Binary file added data/journal/activemq-data-74.amq
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ newVersion=0.0.0
systemProp.ASSIMBLY_ENV=test

# Dependency versions
spring_boot_version=2.7.12
spring_boot_version=2.7.13
hibernate_version=5.6.15.Final
mapstruct_version=1.5.5.Final
archunitJunit5Version=1.0.1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gateway",
"version": "4.0.1",
"version": "4.0.2",
"private": true,
"description": "A message gateway based on Apache camel",
"license": "Apache License 2.0",
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/assimbly/gateway/db/mongo/MongoDao.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import org.assimbly.gateway.variables.domain.GlobalEnvironmentVariable;
import org.bson.types.ObjectId;
import org.mongodb.morphia.Datastore;
import org.mongodb.morphia.query.FindOptions;
import org.mongodb.morphia.query.UpdateOperations;
import org.assimbly.gateway.authenticate.domain.Tenant;
import org.assimbly.gateway.authenticate.domain.User;
Expand Down Expand Up @@ -54,7 +55,7 @@ static public User findUser(String email, String password) {
return datastore.createQuery(User.class)
.field(EMAIL_FIELD).equal(email)
.field(PW_FIELD).equal(password)
.get();
.get(new FindOptions());
}

static public User findUser(String id) {
Expand Down

0 comments on commit 8fdcdf3

Please sign in to comment.