Skip to content

Commit a0654f0

Browse files
Hotfix 1.0.0 beta.10 #192
Release Hotfix 1.0.0. beta.10
2 parents 26d090f + f672670 commit a0654f0

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.rst

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ Changelog
44

55
This project adheres to `Semantic Versioning <https://semver.org/>`_.
66

7+
1.0.0-beta.10 (2022-01-18)
8+
---------------------------
9+
10+
**Added**
11+
12+
**Fixed**
13+
14+
* Use user id instead of email field to find subscriber in the database (#192)
15+
16+
**Dependencies**
17+
18+
**Deprecated**
19+
720
1.0.0-beta.9 (2022-01-04)
821
---------------------------
922

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</modules>
1111
<artifactId>sample-tracking-status-overview</artifactId>
1212
<groupId>life.qbic</groupId>
13-
<version>1.0.0-beta.9</version> <!-- <<QUBE_FORCE_BUMP>> -->
13+
<version>1.0.0-beta.10</version> <!-- <<QUBE_FORCE_BUMP>> -->
1414
<name>Sample Tracking Status Overview</name>
1515
<url>https://github.com/qbicsoftware/sample-tracking-status-overview</url>
1616
<description>Gives a visual overview of sample statuses</description>

sample-tracking-status-overview-app/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sample-tracking-status-overview</artifactId>
77
<groupId>life.qbic</groupId>
8-
<version>1.0.0-beta.9</version>
8+
<version>1.0.0-beta.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>war</packaging>
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>life.qbic</groupId>
1818
<artifactId>sample-tracking-status-overview-domain</artifactId>
19-
<version>1.0.0-beta.9</version>
19+
<version>1.0.0-beta.10</version>
2020
<scope>compile</scope>
2121
</dependency>
2222
<dependency>

sample-tracking-status-overview-app/src/main/groovy/life/qbic/portal/sampletracking/datasources/subscriptions/SubscriptionsDbConnector.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class SubscriptionsDbConnector implements SubscriptionDataSource, SubscribedProj
106106
}
107107

108108
private Optional<Integer> getSubscriberId(Subscriber subscriber) {
109-
String query = "SELECT id FROM person WHERE first_name = ? AND last_name = ? AND title = ? AND email = ?"
109+
String query = "SELECT id FROM person WHERE first_name = ? AND last_name = ? AND title = ? AND user_id = ?"
110110

111111
Optional<Integer> personId = Optional.empty()
112112
Connection connection = connectionProvider.connect()

sample-tracking-status-overview-domain/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>sample-tracking-status-overview</artifactId>
99
<groupId>life.qbic</groupId>
10-
<version>1.0.0-beta.9</version>
10+
<version>1.0.0-beta.10</version>
1111
</parent>
1212
<dependencies>
1313
<dependency>

0 commit comments

Comments
 (0)