Skip to content

Commit d7352de

Browse files
committed
carp_backend 1.9.0 published
1 parent 174f596 commit d7352de

File tree

4 files changed

+23
-22
lines changed

4 files changed

+23
-22
lines changed

backends/carp_backend/CHANGELOG.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.9.0
2+
3+
* upgrade to web_service version ^3.5
4+
15
## 1.8.0
26

37
* upgrade to carp_core v. 1.8 & carp_serialization v. 2.0
@@ -9,8 +13,8 @@
913

1014
## 1.6.0
1115

12-
* upgrade to web_service version ^3.0.0
13-
* upgrade to connectivity_plus: ^6.0.0
16+
* upgrade to web_service version ^3.0
17+
* upgrade to connectivity_plus: ^6.0
1418

1519
## 1.4.1
1620

@@ -22,30 +26,30 @@
2226

2327
## 1.3.2
2428

25-
* upgrade of `carp_webservices` package to 2.0.0
29+
* upgrade of `carp_webservices` package to 2.0
2630
* fix of example
2731

2832
## 1.3.0
2933

3034
* upgrade of uuid plugins
3135
* removal of uri and authentication information from CarpDataEndPoint (too unsecure to specify password in clear text)
32-
* update to `carp_mobile_sensing` v. 1.3.0
36+
* update to `carp_mobile_sensing` v. 1.3
3337

3438
## 1.1.0
3539

36-
* update to `carp_mobile_sensing` v. 1.1.0.
40+
* update to `carp_mobile_sensing` v. 1.1
3741
* support for the new v. 1.1.0 streaming data model using `Measurement` objects and the streaming endpoint in CAWS.
3842
* still supports the "old" non-core `DataPoint` endpoint.
3943
* measurements are now buffered on the phone before upload - default buffer time is 10 minutes, but can be configured in the redesigned `CarpDataEndPoint` configuration.
4044

4145
## 0.40.0
4246

43-
* update to `carp_mobile_sensing` v. 0.40.0
44-
* deployment are no longer caches locally in the `CustomProtocolDeploymentService`. This is now handled directly by CAMS v. 0.40.0
47+
* update to `carp_mobile_sensing` v. 0.40
48+
* deployment are no longer caches locally in the `CustomProtocolDeploymentService`. This is now handled directly by CAMS v. 0.40
4549

4650
## 0.33.0
4751

48-
* upgrade to `carp_mobile_sensing` v. 0.33.0
52+
* upgrade to `carp_mobile_sensing` v. 0.33
4953

5054
## 0.32.3
5155

@@ -57,7 +61,7 @@
5761

5862
## 0.32.0+1
5963

60-
* update to `carp_mobile_sensing` v. 0.32.0
64+
* update to `carp_mobile_sensing` v. 0.32
6165
* update to README file
6266

6367
## 0.31.2
@@ -70,7 +74,7 @@
7074

7175
## 0.31.0
7276

73-
* upgrade to `carp_mobile_sensing` v. 0.31.0
77+
* upgrade to `carp_mobile_sensing` v. 0.31
7478
* remove support for handling study description in `ResourceManager` since this is now part of a `SmartphoneStudyProtocol` and handled there.
7579

7680
## 0.30.5

backends/carp_backend/example/lib/example.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ void main() async {
2020
late CarpApp app = CarpApp(
2121
name: "CAWS @ DTU",
2222
uri: uri,
23-
studyId: '<the_study_id_if_known>',
24-
studyDeploymentId: '<the_study_deployment_id_if_known>',
2523
);
2624

2725
// The authentication configuration

backends/carp_backend/example/pubspec.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ dependencies:
1313

1414
carp_serializable: ^2.0.0
1515
carp_core: ^1.8.0
16-
carp_mobile_sensing: ^1.10.0
17-
carp_webservices: ^3.4.0
16+
carp_mobile_sensing: ^1.11.0
17+
carp_webservices: ^3.5.0
1818

1919
research_package: ^1.7.0
2020

@@ -30,6 +30,5 @@ dependencies:
3030
path: ../
3131

3232
dependency_overrides:
33-
uuid: "^4.3.3"
3433

3534
dev_dependencies:

backends/carp_backend/pubspec.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: carp_backend
22
description: CARP data backend for CARP Mobile Sensing. Supports downloading study deployments and uploading data from/to a CARP Web Service (CAWS) server.
3-
version: 1.8.0
3+
version: 1.9.0
44
homepage: https://github.com/cph-cachet/carp.sensing-flutter/
55

66
environment:
@@ -17,8 +17,8 @@ dependencies:
1717

1818
carp_serializable: ^2.0.0
1919
carp_core: ^1.8.0
20-
carp_mobile_sensing: ^1.10.0
21-
carp_webservices: ^3.4.0
20+
carp_mobile_sensing: ^1.11.0
21+
carp_webservices: ^3.5.0
2222

2323
research_package: ^1.7.0
2424

@@ -29,10 +29,10 @@ dependency_overrides:
2929
# path: ../../carp_serializable/
3030
# carp_core:
3131
# path: ../../carp_core/
32-
carp_mobile_sensing:
33-
path: ../../carp_mobile_sensing/
34-
carp_webservices:
35-
path: ../carp_webservices/
32+
# carp_mobile_sensing:
33+
# path: ../../carp_mobile_sensing/
34+
# carp_webservices:
35+
# path: ../carp_webservices/
3636
# research_package:
3737
# path: ../../../../research.package/
3838
# the following sampling packages are only used for unit testing

0 commit comments

Comments
 (0)