Compare commits

...

4 Commits

Author SHA1 Message Date
sponomarova
d91595b74b patch(TPS-3140): update release notes 2019-05-17 11:33:04 +03:00
sponomarova
0a650c2931 patch(TPS-3140): update release notes 2019-05-16 15:35:13 +03:00
sponomarova
9600a846cc patch(TPS-3140): add release notes 2019-05-16 15:02:55 +03:00
Hanna Liashchuk
c3a53a93c5 fix(TBD-8573): correct parsing date values from BigQuery (#3429) 2019-05-16 12:01:57 +03:00
2 changed files with 80 additions and 1 deletions

73
PATCH_RELEASE_NOTE.md Normal file
View File

@@ -0,0 +1,73 @@
---
version: 7.1.1
module: https://talend.poolparty.biz/coretaxonomy/42
product:
- https://talend.poolparty.biz/coretaxonomy/183
---
# TPS-3140
| Info | Value |
| ---------------- | ---------------- |
| Patch Name | Patch\_20190516\_TPS-3140\_v1-7.1.1|
| Release Date | 2019-05-24 |
| Target Version | 20181026\_1147-v7.1.1 |
| Product affected | Talend Studio |
## Introduction <!-- mandatory -->
This is a self-contained patch.
**NOTE**: For information on how to obtain this patch, reach out to your Support contact at Talend.
## Fixed issues <!-- mandatory -->
This patch contains the following fixes:
- TPS-3140 resolves Bigquery components throw NumberFormatException in 7.1.1 (TBD-8573)
## Prerequisites <!-- mandatory -->
Consider the following requirements for your system:
- Talend Studio 7.1.1 must be installed.
- The current patch should be installed with Patch\_20190516\_TPS-3108\_v1-7.1.1
## Installation <!-- mandatory -->
### Installing the patch using Software update <!-- if applicable -->
1) Logon TAC and switch to Configuration->Software Update, then enter the correct values and save referring to the documentation: https://help.talend.com/reader/f7Em9WV_cPm2RRywucSN0Q/j9x5iXV~vyxMlUafnDejaQ
2) Switch to Software update page, where the new patch will be listed. The patch can be downloaded from here into the nexus repository.
3) On Studio Side: Logon Studio with remote mode, on the logon page the Update button is displayed: click this button to install the patch.
### Installing the patch using Talend Studio <!-- if applicable -->
1) Create a folder named "patches" under your studio installer directory and copy the patch .zip file to this folder.
2) Restart your studio: a window pops up, then click OK to install the patch, or restart the commandline and the patch will be installed automatically.
### Installing the patch using Commandline <!-- if applicable -->
Execute the following commands:
1. Talend-Studio-win-x86_64.exe -nosplash -application org.talend.commandline.CommandLine -consoleLog -data commandline-workspace startServer -p 8002 --talendDebug
2. initRemote {tac_url} -ul {TAC login username} -up {TAC login password}
3. checkAndUpdate -tu {TAC login username} -tup {TAC login password}
## Affected files for this patch <!-- if applicable -->
-The following files are installed by this patch:
-- tBigQueryInput_begin.javajet

View File

@@ -347,7 +347,13 @@
<%
} else if(javaType == JavaTypesManager.DATE) {
%>
<%=connName%>.<%=columnName%> = ParserUtils.parseTo_Date(value_<%=cid%>.toString());
if (value_<%=cid%>.toString().contains("-")) {
<%=connName%>.<%=columnName%> = ParserUtils.parseTo_Date(value_<%=cid%>.toString(),<%=patternValue%>);
} else {
<%=connName%>.<%=columnName%> = ParserUtils.parseTo_Date(value_<%=cid%>.toString());
}
<%
} else if(advancedSeparator && JavaTypesManager.isNumberType(javaType)) {
%>