Skip to content

Commit

Permalink
Release 1.27 (#206)
Browse files Browse the repository at this point in the history
* CSCTTV-2248 dim_referencedata.order (#199)
TTV model update, add field ’order’ in table dim_referencedata.
Add field ’order’ in co-operation choices.

* CSCTTV-3419 ORCID activities conference paper (#200)
* Modify ORCID research activity import. Modify ORCID work type handling.
* Parse certain ORCID work types into research activities.
* Simplify mapping from ORCID activity to dim_referencedata.code_value. Fix unit tests
* Modify ORCID research activity date handling. Modify ORCID research activity to dim_referencedata mapping for translation work type. Add unit tests.
* Modify end date handling in ORCID research activity
* Clarify variable names related to profile only research activity handling

* CSCTTV-2075 Koivu metadata (#201)
* CSCTTV-2075 Add logging metadata for Wood logging service

* CSCTTV-3419 ORCID activities conference paper (#200)
* Modify ORCID research activity import. Modify ORCID work type handling.
* Parse certain ORCID work types into research activities.
* Simplify mapping from ORCID activity to dim_referencedata.code_value. Fix unit tests
* Modify ORCID research activity date handling. Modify ORCID research activity to dim_referencedata mapping for translation work type. Add unit tests.
* Modify end date handling in ORCID research activity
* Clarify variable names related to profile only research activity handling
* Use custom text formatter with Serilog HttpSink
* Ignore letter case in Wood log configuration variable names

* Fix ORCID funding related organization handling (#202)

* Deduplicate research activities (#203)

* Cscttv 3443 publication referencedata model update (#204)
* CSCTTV-3443 TTV model changes related to dim_publication and dim_profile_only_publication
* Update profile data SQL query to get publication type code from relation instead of table column.

* Add Visual Studio Code development configuration (#205)
  • Loading branch information
sarkikos authored Oct 3, 2023
1 parent 142826d commit 8b3c617
Show file tree
Hide file tree
Showing 30 changed files with 2,101 additions and 772 deletions.
34 changes: 34 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"launchSettingsProfile": "http",
"program": "${workspaceFolder}/aspnetcore/src/api/bin/Debug/net6.0/api.dll",
"args": [],
"cwd": "${workspaceFolder}/aspnetcore/src/api",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
41 changes: 41 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/aspnetcore/mydata.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/aspnetcore/mydata.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/aspnetcore/mydata.sln"
],
"problemMatcher": "$msCompile"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"value": 1486594670761
},
"given-names": {
"value": "Sofia"
"value": "Susan"
},
"family-name": {
"value": "Garcia"
"value": "Lopez"
},
"credit-name": {
"value": "Sofia Maria Hernandez Garcia"
"value": "Susan Maria Hernandez Lopez"
},
"source": null,
"visibility": "public",
Expand All @@ -42,13 +42,13 @@
},
"source-client-id": null,
"source-name": {
"value": "Sofia Maria Hernandez Garcia"
"value": "Susan Maria Hernandez Lopez"
},
"assertion-origin-orcid": null,
"assertion-origin-client-id": null,
"assertion-origin-name": null
},
"content": "Sofia Maria Garcia",
"content": "Susan Maria Lopez",
"visibility": "public",
"path": "/0000-0002-9227-8514/other-names/15812",
"put-code": 15812,
Expand All @@ -69,7 +69,7 @@
},
"source-client-id": null,
"source-name": {
"value": "Sofia Maria Hernandez Garcia"
"value": "Susan Maria Hernandez Lopez"
},
"assertion-origin-orcid": null,
"assertion-origin-client-id": null,
Expand All @@ -96,7 +96,7 @@
},
"source-client-id": null,
"source-name": {
"value": "Sofia Maria Hernandez Garcia"
"value": "Susan Maria Hernandez Lopez"
},
"assertion-origin-orcid": null,
"assertion-origin-client-id": null,
Expand All @@ -118,7 +118,7 @@
"last-modified-date": {
"value": 1460669280211
},
"content": "Sofia Maria Hernandez Garcia is the researcher that is used as an example ORCID record holder.",
"content": "Susan Maria Hernandez Lopez is the researcher that is used as an example ORCID record holder.",
"visibility": "public",
"path": "/0000-0002-9227-8514/biography"
},
Expand Down
Loading

0 comments on commit 8b3c617

Please sign in to comment.