[jira] [Commented] (AVRO-1126) Upgrade to Jackson 2+

2018-11-02 Thread Oscar Westra van Holthe - Kind (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1126?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16672666#comment-16672666
 ] 

Oscar Westra van Holthe - Kind commented on AVRO-1126:
--

Fixing this issue has become more important, due to 
[CVE-2018-7489|https://nvd.nist.gov/vuln/detail/CVE-2018-7489] (a remote code 
execution vulnerability in older Jackson versions).
>From the CVE:
{quote}
FasterXML jackson-databind before 2.8.11.1 and 2.9.x before 2.9.5 allows 
unauthenticated remote code execution because of an incomplete fix for the 
CVE-2017-7525 deserialization flaw. This is exploitable by sending maliciously 
crafted JSON input to the readValue method of the ObjectMapper, bypassing a 
blacklist that is ineffective if the c3p0 libraries are available in the 
classpath.
{quote}

> Upgrade to Jackson 2+
> -
>
> Key: AVRO-1126
> URL: https://issues.apache.org/jira/browse/AVRO-1126
> Project: Avro
>  Issue Type: Task
>  Components: java
>Reporter: James Tyrrell
>Assignee: Charles Honton
>Priority: Critical
> Fix For: 1.9.0
>
>
> Quite annoyingly with Jackson 2+ the base package name has changed from 
> org.codehaus.jackson to com.fasterxml.jackson so in addition to changing the 
> dependencies from:
> {code:xml} 
> 
> org.codehaus.jackson
> jackson-core-asl
> ${jackson.version}
> 
> 
> org.codehaus.jackson
> jackson-mapper-asl
> ${jackson.version}
> 
> {code} 
> to:
> {code:xml} 
> 
> com.fasterxml.jackson.core
> jackson-core
> ${jackson.version}
> 
> 
> com.fasterxml.jackson.core
> jackson-databind
> ${jackson.version}
> 
> {code} 
> the base package in the code needs to be updated. More info can be found 
> [here|http://wiki.fasterxml.com/JacksonUpgradeFrom19To20], I am happy to do 
> the work just let me know what is preferable i.e. should I just attach a 
> patch to this issue?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Reopened] (AVRO-2251) Modify Perf.java to better support automation scripts

2018-11-02 Thread Raymie Stata (JIRA)


 [ 
https://issues.apache.org/jira/browse/AVRO-2251?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Raymie Stata reopened AVRO-2251:


As I continue to work on performance testing, I'm wanting to experiment with 
values for Perf.COUNT and Perf.CYCLES without having to recompile.  An 
additional patch is forthcoming that allows for this.

> Modify Perf.java to better support automation scripts
> -
>
> Key: AVRO-2251
> URL: https://issues.apache.org/jira/browse/AVRO-2251
> Project: Avro
>  Issue Type: Test
>Reporter: Raymie Stata
>Assignee: Raymie Stata
>Priority: Major
> Fix For: 1.9.0
>
>
> To better support automated performance-test suites, this patch proposes two 
> new arguments to the 'Perf.java' command-line tool:
> The `-o' argument gives 'Perf.java' the name of a file that should get the 
> results of the run.  Currently, Perf.java sends output to System.out – but if 
> 'Perf.java' is invoked using Maven, which is the easiest way to invoke it, 
> then System.out is polluted with a bunch of other output.  Redirecting 
> 'Perf.java' output metrics to a file makes it easier for automation scripts 
> to process those metrics.
> The `-c [spec]` argument tells 'Perf.java' to generate a comma-separated 
> output.  By default, all benchmark metrics are output, but the optional 
> `spec` argument can be used to indicate exactly which metrics should be 
> included in the CSV output.  The default output of 'Perf.java' is optimized 
> for human inspection – for example, it includes the text "ms" in the 
> running-time column so humans will understand the units of the running-time 
> metric.  The `-c` option will tell 'Perf.java' to generate machine-optimized 
> output that is easier to consume by automation scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2251) Modify Perf.java to better support automation scripts

2018-11-02 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16672705#comment-16672705
 ] 

ASF GitHub Bot commented on AVRO-2251:
--

rstata opened a new pull request #365: AVRO-2251 part 2: Allow changes to COUNT 
and CYCLES via system properties.
URL: https://github.com/apache/avro/pull/365
 
 
   As I continue to work on performance testing, I'm wanting to experiment with 
values for Perf.COUNT and Perf.CYCLES without having to recompile.  This patch 
allows for such experimentation.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Modify Perf.java to better support automation scripts
> -
>
> Key: AVRO-2251
> URL: https://issues.apache.org/jira/browse/AVRO-2251
> Project: Avro
>  Issue Type: Test
>Reporter: Raymie Stata
>Assignee: Raymie Stata
>Priority: Major
> Fix For: 1.9.0
>
>
> To better support automated performance-test suites, this patch proposes two 
> new arguments to the 'Perf.java' command-line tool:
> The `-o' argument gives 'Perf.java' the name of a file that should get the 
> results of the run.  Currently, Perf.java sends output to System.out – but if 
> 'Perf.java' is invoked using Maven, which is the easiest way to invoke it, 
> then System.out is polluted with a bunch of other output.  Redirecting 
> 'Perf.java' output metrics to a file makes it easier for automation scripts 
> to process those metrics.
> The `-c [spec]` argument tells 'Perf.java' to generate a comma-separated 
> output.  By default, all benchmark metrics are output, but the optional 
> `spec` argument can be used to indicate exactly which metrics should be 
> included in the CSV output.  The default output of 'Perf.java' is optimized 
> for human inspection – for example, it includes the text "ms" in the 
> running-time column so humans will understand the units of the running-time 
> metric.  The `-c` option will tell 'Perf.java' to generate machine-optimized 
> output that is easier to consume by automation scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2251) Modify Perf.java to better support automation scripts

2018-11-02 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16672843#comment-16672843
 ] 

ASF GitHub Bot commented on AVRO-2251:
--

dkulp closed pull request #365: AVRO-2251 part 2: Allow changes to COUNT and 
CYCLES via system properties.
URL: https://github.com/apache/avro/pull/365
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java 
b/lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java
index ea6c4d34f..8f525b4cd 100644
--- a/lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java
+++ b/lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java
@@ -52,8 +52,10 @@
  * Avro encoding and decoding.
  */
 public class Perf {
-  private static final int COUNT = 25; // needs to be a multiple of 4
-  private static final int CYCLES = 800;
+  private static final int COUNT // needs to be a multiple of 4
+= 
Integer.parseInt(System.getProperty("org.apache.avro.io.perf.count","25"));
+  private static final int CYCLES
+= 
Integer.parseInt(System.getProperty("org.apache.avro.io.perf.cycles","800"));
 
   /**
* Use a fixed value seed for random number generation
@@ -166,6 +168,11 @@ private static void usage() {
   }
 
   public static void main(String[] args) throws Exception {
+if (0 != (COUNT % 4)) {
+  System.out.println("Property 'org.apache.avro.io.perf.count' must be a 
multiple of 4.");
+  System.exit(1);
+}
+
 List tests = new ArrayList<>();
 boolean writeTests = true;
 boolean readTests = true;


 


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Modify Perf.java to better support automation scripts
> -
>
> Key: AVRO-2251
> URL: https://issues.apache.org/jira/browse/AVRO-2251
> Project: Avro
>  Issue Type: Test
>Reporter: Raymie Stata
>Assignee: Raymie Stata
>Priority: Major
> Fix For: 1.9.0
>
>
> To better support automated performance-test suites, this patch proposes two 
> new arguments to the 'Perf.java' command-line tool:
> The `-o' argument gives 'Perf.java' the name of a file that should get the 
> results of the run.  Currently, Perf.java sends output to System.out – but if 
> 'Perf.java' is invoked using Maven, which is the easiest way to invoke it, 
> then System.out is polluted with a bunch of other output.  Redirecting 
> 'Perf.java' output metrics to a file makes it easier for automation scripts 
> to process those metrics.
> The `-c [spec]` argument tells 'Perf.java' to generate a comma-separated 
> output.  By default, all benchmark metrics are output, but the optional 
> `spec` argument can be used to indicate exactly which metrics should be 
> included in the CSV output.  The default output of 'Perf.java' is optimized 
> for human inspection – for example, it includes the text "ms" in the 
> running-time column so humans will understand the units of the running-time 
> metric.  The `-c` option will tell 'Perf.java' to generate machine-optimized 
> output that is easier to consume by automation scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2251) Modify Perf.java to better support automation scripts

2018-11-02 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16672844#comment-16672844
 ] 

ASF subversion and git services commented on AVRO-2251:
---

Commit 943411d20d27c9f11f9bd0311ae5c4438b7cc81c in avro's branch 
refs/heads/master from rstata
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=943411d ]

AVRO-2251 part 2: Allow changes to COUNT and CYCLES via system properties.


> Modify Perf.java to better support automation scripts
> -
>
> Key: AVRO-2251
> URL: https://issues.apache.org/jira/browse/AVRO-2251
> Project: Avro
>  Issue Type: Test
>Reporter: Raymie Stata
>Assignee: Raymie Stata
>Priority: Major
> Fix For: 1.9.0
>
>
> To better support automated performance-test suites, this patch proposes two 
> new arguments to the 'Perf.java' command-line tool:
> The `-o' argument gives 'Perf.java' the name of a file that should get the 
> results of the run.  Currently, Perf.java sends output to System.out – but if 
> 'Perf.java' is invoked using Maven, which is the easiest way to invoke it, 
> then System.out is polluted with a bunch of other output.  Redirecting 
> 'Perf.java' output metrics to a file makes it easier for automation scripts 
> to process those metrics.
> The `-c [spec]` argument tells 'Perf.java' to generate a comma-separated 
> output.  By default, all benchmark metrics are output, but the optional 
> `spec` argument can be used to indicate exactly which metrics should be 
> included in the CSV output.  The default output of 'Perf.java' is optimized 
> for human inspection – for example, it includes the text "ms" in the 
> running-time column so humans will understand the units of the running-time 
> metric.  The `-c` option will tell 'Perf.java' to generate machine-optimized 
> output that is easier to consume by automation scripts.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1126) Upgrade to Jackson 2+

2018-11-02 Thread Daniel Kulp (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1126?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673233#comment-16673233
 ] 

Daniel Kulp commented on AVRO-1126:
---

I'm going to take Romain's work on flipping from Jackson to javax.json and 
hopefully finish it up and get it in for 1.9.  This will change a bunch of 
public API's, but moving from Jackson 1.9 to anything will break things and 
moving to the standard API's is probably a better option moving forward.   
Which javax.json provider to default to can be decided later.


> Upgrade to Jackson 2+
> -
>
> Key: AVRO-1126
> URL: https://issues.apache.org/jira/browse/AVRO-1126
> Project: Avro
>  Issue Type: Task
>  Components: java
>Reporter: James Tyrrell
>Assignee: Charles Honton
>Priority: Critical
> Fix For: 1.9.0
>
>
> Quite annoyingly with Jackson 2+ the base package name has changed from 
> org.codehaus.jackson to com.fasterxml.jackson so in addition to changing the 
> dependencies from:
> {code:xml} 
> 
> org.codehaus.jackson
> jackson-core-asl
> ${jackson.version}
> 
> 
> org.codehaus.jackson
> jackson-mapper-asl
> ${jackson.version}
> 
> {code} 
> to:
> {code:xml} 
> 
> com.fasterxml.jackson.core
> jackson-core
> ${jackson.version}
> 
> 
> com.fasterxml.jackson.core
> jackson-databind
> ${jackson.version}
> 
> {code} 
> the base package in the code needs to be updated. More info can be found 
> [here|http://wiki.fasterxml.com/JacksonUpgradeFrom19To20], I am happy to do 
> the work just let me know what is preferable i.e. should I just attach a 
> patch to this issue?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1126) Upgrade to Jackson 2+

2018-11-02 Thread Daniel Kulp (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1126?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673544#comment-16673544
 ] 

Daniel Kulp commented on AVRO-1126:
---

Actually, flipping to javax.json will be a HUGE disruption to pretty much 
everyone.   Just updating to Jackson 2.9.7 is mostly a search/replace exercise 
for package names and "getIntValue()" -> "intValue()".   Thus, I think just 
updating to 2.9.7 is likely a better option for users.   It's a significantly 
easier update.   


> Upgrade to Jackson 2+
> -
>
> Key: AVRO-1126
> URL: https://issues.apache.org/jira/browse/AVRO-1126
> Project: Avro
>  Issue Type: Task
>  Components: java
>Reporter: James Tyrrell
>Assignee: Charles Honton
>Priority: Critical
> Fix For: 1.9.0
>
>
> Quite annoyingly with Jackson 2+ the base package name has changed from 
> org.codehaus.jackson to com.fasterxml.jackson so in addition to changing the 
> dependencies from:
> {code:xml} 
> 
> org.codehaus.jackson
> jackson-core-asl
> ${jackson.version}
> 
> 
> org.codehaus.jackson
> jackson-mapper-asl
> ${jackson.version}
> 
> {code} 
> to:
> {code:xml} 
> 
> com.fasterxml.jackson.core
> jackson-core
> ${jackson.version}
> 
> 
> com.fasterxml.jackson.core
> jackson-databind
> ${jackson.version}
> 
> {code} 
> the base package in the code needs to be updated. More info can be found 
> [here|http://wiki.fasterxml.com/JacksonUpgradeFrom19To20], I am happy to do 
> the work just let me know what is preferable i.e. should I just attach a 
> patch to this issue?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1126) Upgrade to Jackson 2+

2018-11-02 Thread Doug Cutting (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1126?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673641#comment-16673641
 ] 

Doug Cutting commented on AVRO-1126:


I wonder if this is the time to also remove the (deprecated) places where 
Avro's API leaks references to Jackson classes?

 

JsonProperties has a number of such deprecated methods, and Json.Reader and 
Json.Writer are classes deprecated for this reason.  
Schema.addProp(String,JsonNode) should have been deprecated, since 
Schema.addProp(String,Object) is preferred.  Schema.parse(JsonNode) was 
correctly deprecated.

Code that uses these will need to be updated after this change, so we might as 
well have them update to using the Object representation of json data, no?

In general, Avro's public APIs should no longer reference Jackson classes.  
Jackson should only be used internally.

> Upgrade to Jackson 2+
> -
>
> Key: AVRO-1126
> URL: https://issues.apache.org/jira/browse/AVRO-1126
> Project: Avro
>  Issue Type: Task
>  Components: java
>Reporter: James Tyrrell
>Assignee: Charles Honton
>Priority: Critical
> Fix For: 1.9.0
>
>
> Quite annoyingly with Jackson 2+ the base package name has changed from 
> org.codehaus.jackson to com.fasterxml.jackson so in addition to changing the 
> dependencies from:
> {code:xml} 
> 
> org.codehaus.jackson
> jackson-core-asl
> ${jackson.version}
> 
> 
> org.codehaus.jackson
> jackson-mapper-asl
> ${jackson.version}
> 
> {code} 
> to:
> {code:xml} 
> 
> com.fasterxml.jackson.core
> jackson-core
> ${jackson.version}
> 
> 
> com.fasterxml.jackson.core
> jackson-databind
> ${jackson.version}
> 
> {code} 
> the base package in the code needs to be updated. More info can be found 
> [here|http://wiki.fasterxml.com/JacksonUpgradeFrom19To20], I am happy to do 
> the work just let me know what is preferable i.e. should I just attach a 
> patch to this issue?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1126) Upgrade to Jackson 2+

2018-11-02 Thread Daniel Kulp (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1126?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673644#comment-16673644
 ] 

Daniel Kulp commented on AVRO-1126:
---

Yea I'm working on getting the patch for 
https://issues.apache.org/jira/browse/AVRO-1605 updated and applyable.  Hoping 
to have that committed on master shortly.  It's a start.



> Upgrade to Jackson 2+
> -
>
> Key: AVRO-1126
> URL: https://issues.apache.org/jira/browse/AVRO-1126
> Project: Avro
>  Issue Type: Task
>  Components: java
>Reporter: James Tyrrell
>Assignee: Charles Honton
>Priority: Critical
> Fix For: 1.9.0
>
>
> Quite annoyingly with Jackson 2+ the base package name has changed from 
> org.codehaus.jackson to com.fasterxml.jackson so in addition to changing the 
> dependencies from:
> {code:xml} 
> 
> org.codehaus.jackson
> jackson-core-asl
> ${jackson.version}
> 
> 
> org.codehaus.jackson
> jackson-mapper-asl
> ${jackson.version}
> 
> {code} 
> to:
> {code:xml} 
> 
> com.fasterxml.jackson.core
> jackson-core
> ${jackson.version}
> 
> 
> com.fasterxml.jackson.core
> jackson-databind
> ${jackson.version}
> 
> {code} 
> the base package in the code needs to be updated. More info can be found 
> [here|http://wiki.fasterxml.com/JacksonUpgradeFrom19To20], I am happy to do 
> the work just let me know what is preferable i.e. should I just attach a 
> patch to this issue?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1605) Remove Jackson classes from public API

2018-11-02 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673665#comment-16673665
 ] 

ASF subversion and git services commented on AVRO-1605:
---

Commit d799e1829a39ca0379f3e12d2e8cfdf5fcd26151 in avro's branch 
refs/heads/master from [~dkulp]
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d799e18 ]

Squashed commit of the following:

commit 6d4d6d6a963fd2363d9f5549f76140bdddfceb7d
Author: Gabor Szadovszky 
Date:   Sun Oct 16 17:22:53 2016 +0200

AVRO-1605 - Removed some unnecessary Accessor methods and callers

commit adcefac6cc1c7021b2a27da16b40c1253eff64cc
Author: Gabor Szadovszky 
Date:   Thu Sep 29 18:35:26 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (Removed jackson 
references from javadoc)

commit dc2ca7ee9f881901aaf23d9221cc2d6413b43dc4
Author: Gabor Szadovszky 
Date:   Thu Sep 29 14:31:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API

commit 4e4c5ec63b3b0cf203e3af21c1cbc7a51d63c9f4
Author: Gabor Szadovszky 
Date:   Wed Sep 28 17:08:15 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#4)

commit 5fb5a5c14fadc03f44879f029114c4705749dfad
Author: Gabor Szadovszky 
Date:   Wed Sep 28 16:54:44 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#3)

commit 378fcc5aa6be560c301e23b73f919bc0eb98dd05
Author: Gabor Szadovszky 
Date:   Wed Sep 28 11:11:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#2)

commit 12533657f9bc73c73b1009ed2d9dd39ca2401a20
Author: Gabor Szadovszky 
Date:   Mon Sep 26 16:25:19 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE)


> Remove Jackson classes from public API
> --
>
> Key: AVRO-1605
> URL: https://issues.apache.org/jira/browse/AVRO-1605
> Project: Avro
>  Issue Type: Sub-task
>  Components: java
>Affects Versions: 1.7.8
>Reporter: Tom White
>Assignee: Gabor Szadovszky
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1605) Remove Jackson classes from public API

2018-11-02 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673662#comment-16673662
 ] 

ASF subversion and git services commented on AVRO-1605:
---

Commit d799e1829a39ca0379f3e12d2e8cfdf5fcd26151 in avro's branch 
refs/heads/master from [~dkulp]
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d799e18 ]

Squashed commit of the following:

commit 6d4d6d6a963fd2363d9f5549f76140bdddfceb7d
Author: Gabor Szadovszky 
Date:   Sun Oct 16 17:22:53 2016 +0200

AVRO-1605 - Removed some unnecessary Accessor methods and callers

commit adcefac6cc1c7021b2a27da16b40c1253eff64cc
Author: Gabor Szadovszky 
Date:   Thu Sep 29 18:35:26 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (Removed jackson 
references from javadoc)

commit dc2ca7ee9f881901aaf23d9221cc2d6413b43dc4
Author: Gabor Szadovszky 
Date:   Thu Sep 29 14:31:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API

commit 4e4c5ec63b3b0cf203e3af21c1cbc7a51d63c9f4
Author: Gabor Szadovszky 
Date:   Wed Sep 28 17:08:15 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#4)

commit 5fb5a5c14fadc03f44879f029114c4705749dfad
Author: Gabor Szadovszky 
Date:   Wed Sep 28 16:54:44 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#3)

commit 378fcc5aa6be560c301e23b73f919bc0eb98dd05
Author: Gabor Szadovszky 
Date:   Wed Sep 28 11:11:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#2)

commit 12533657f9bc73c73b1009ed2d9dd39ca2401a20
Author: Gabor Szadovszky 
Date:   Mon Sep 26 16:25:19 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE)


> Remove Jackson classes from public API
> --
>
> Key: AVRO-1605
> URL: https://issues.apache.org/jira/browse/AVRO-1605
> Project: Avro
>  Issue Type: Sub-task
>  Components: java
>Affects Versions: 1.7.8
>Reporter: Tom White
>Assignee: Gabor Szadovszky
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1605) Remove Jackson classes from public API

2018-11-02 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673663#comment-16673663
 ] 

ASF subversion and git services commented on AVRO-1605:
---

Commit d799e1829a39ca0379f3e12d2e8cfdf5fcd26151 in avro's branch 
refs/heads/master from [~dkulp]
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d799e18 ]

Squashed commit of the following:

commit 6d4d6d6a963fd2363d9f5549f76140bdddfceb7d
Author: Gabor Szadovszky 
Date:   Sun Oct 16 17:22:53 2016 +0200

AVRO-1605 - Removed some unnecessary Accessor methods and callers

commit adcefac6cc1c7021b2a27da16b40c1253eff64cc
Author: Gabor Szadovszky 
Date:   Thu Sep 29 18:35:26 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (Removed jackson 
references from javadoc)

commit dc2ca7ee9f881901aaf23d9221cc2d6413b43dc4
Author: Gabor Szadovszky 
Date:   Thu Sep 29 14:31:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API

commit 4e4c5ec63b3b0cf203e3af21c1cbc7a51d63c9f4
Author: Gabor Szadovszky 
Date:   Wed Sep 28 17:08:15 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#4)

commit 5fb5a5c14fadc03f44879f029114c4705749dfad
Author: Gabor Szadovszky 
Date:   Wed Sep 28 16:54:44 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#3)

commit 378fcc5aa6be560c301e23b73f919bc0eb98dd05
Author: Gabor Szadovszky 
Date:   Wed Sep 28 11:11:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#2)

commit 12533657f9bc73c73b1009ed2d9dd39ca2401a20
Author: Gabor Szadovszky 
Date:   Mon Sep 26 16:25:19 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE)


> Remove Jackson classes from public API
> --
>
> Key: AVRO-1605
> URL: https://issues.apache.org/jira/browse/AVRO-1605
> Project: Avro
>  Issue Type: Sub-task
>  Components: java
>Affects Versions: 1.7.8
>Reporter: Tom White
>Assignee: Gabor Szadovszky
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1605) Remove Jackson classes from public API

2018-11-02 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673667#comment-16673667
 ] 

ASF subversion and git services commented on AVRO-1605:
---

Commit d799e1829a39ca0379f3e12d2e8cfdf5fcd26151 in avro's branch 
refs/heads/master from [~dkulp]
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d799e18 ]

Squashed commit of the following:

commit 6d4d6d6a963fd2363d9f5549f76140bdddfceb7d
Author: Gabor Szadovszky 
Date:   Sun Oct 16 17:22:53 2016 +0200

AVRO-1605 - Removed some unnecessary Accessor methods and callers

commit adcefac6cc1c7021b2a27da16b40c1253eff64cc
Author: Gabor Szadovszky 
Date:   Thu Sep 29 18:35:26 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (Removed jackson 
references from javadoc)

commit dc2ca7ee9f881901aaf23d9221cc2d6413b43dc4
Author: Gabor Szadovszky 
Date:   Thu Sep 29 14:31:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API

commit 4e4c5ec63b3b0cf203e3af21c1cbc7a51d63c9f4
Author: Gabor Szadovszky 
Date:   Wed Sep 28 17:08:15 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#4)

commit 5fb5a5c14fadc03f44879f029114c4705749dfad
Author: Gabor Szadovszky 
Date:   Wed Sep 28 16:54:44 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#3)

commit 378fcc5aa6be560c301e23b73f919bc0eb98dd05
Author: Gabor Szadovszky 
Date:   Wed Sep 28 11:11:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#2)

commit 12533657f9bc73c73b1009ed2d9dd39ca2401a20
Author: Gabor Szadovszky 
Date:   Mon Sep 26 16:25:19 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE)


> Remove Jackson classes from public API
> --
>
> Key: AVRO-1605
> URL: https://issues.apache.org/jira/browse/AVRO-1605
> Project: Avro
>  Issue Type: Sub-task
>  Components: java
>Affects Versions: 1.7.8
>Reporter: Tom White
>Assignee: Gabor Szadovszky
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1605) Remove Jackson classes from public API

2018-11-02 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673661#comment-16673661
 ] 

ASF subversion and git services commented on AVRO-1605:
---

Commit d799e1829a39ca0379f3e12d2e8cfdf5fcd26151 in avro's branch 
refs/heads/master from [~dkulp]
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d799e18 ]

Squashed commit of the following:

commit 6d4d6d6a963fd2363d9f5549f76140bdddfceb7d
Author: Gabor Szadovszky 
Date:   Sun Oct 16 17:22:53 2016 +0200

AVRO-1605 - Removed some unnecessary Accessor methods and callers

commit adcefac6cc1c7021b2a27da16b40c1253eff64cc
Author: Gabor Szadovszky 
Date:   Thu Sep 29 18:35:26 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (Removed jackson 
references from javadoc)

commit dc2ca7ee9f881901aaf23d9221cc2d6413b43dc4
Author: Gabor Szadovszky 
Date:   Thu Sep 29 14:31:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API

commit 4e4c5ec63b3b0cf203e3af21c1cbc7a51d63c9f4
Author: Gabor Szadovszky 
Date:   Wed Sep 28 17:08:15 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#4)

commit 5fb5a5c14fadc03f44879f029114c4705749dfad
Author: Gabor Szadovszky 
Date:   Wed Sep 28 16:54:44 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#3)

commit 378fcc5aa6be560c301e23b73f919bc0eb98dd05
Author: Gabor Szadovszky 
Date:   Wed Sep 28 11:11:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#2)

commit 12533657f9bc73c73b1009ed2d9dd39ca2401a20
Author: Gabor Szadovszky 
Date:   Mon Sep 26 16:25:19 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE)


> Remove Jackson classes from public API
> --
>
> Key: AVRO-1605
> URL: https://issues.apache.org/jira/browse/AVRO-1605
> Project: Avro
>  Issue Type: Sub-task
>  Components: java
>Affects Versions: 1.7.8
>Reporter: Tom White
>Assignee: Gabor Szadovszky
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1605) Remove Jackson classes from public API

2018-11-02 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673666#comment-16673666
 ] 

ASF subversion and git services commented on AVRO-1605:
---

Commit d799e1829a39ca0379f3e12d2e8cfdf5fcd26151 in avro's branch 
refs/heads/master from [~dkulp]
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d799e18 ]

Squashed commit of the following:

commit 6d4d6d6a963fd2363d9f5549f76140bdddfceb7d
Author: Gabor Szadovszky 
Date:   Sun Oct 16 17:22:53 2016 +0200

AVRO-1605 - Removed some unnecessary Accessor methods and callers

commit adcefac6cc1c7021b2a27da16b40c1253eff64cc
Author: Gabor Szadovszky 
Date:   Thu Sep 29 18:35:26 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (Removed jackson 
references from javadoc)

commit dc2ca7ee9f881901aaf23d9221cc2d6413b43dc4
Author: Gabor Szadovszky 
Date:   Thu Sep 29 14:31:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API

commit 4e4c5ec63b3b0cf203e3af21c1cbc7a51d63c9f4
Author: Gabor Szadovszky 
Date:   Wed Sep 28 17:08:15 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#4)

commit 5fb5a5c14fadc03f44879f029114c4705749dfad
Author: Gabor Szadovszky 
Date:   Wed Sep 28 16:54:44 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#3)

commit 378fcc5aa6be560c301e23b73f919bc0eb98dd05
Author: Gabor Szadovszky 
Date:   Wed Sep 28 11:11:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#2)

commit 12533657f9bc73c73b1009ed2d9dd39ca2401a20
Author: Gabor Szadovszky 
Date:   Mon Sep 26 16:25:19 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE)


> Remove Jackson classes from public API
> --
>
> Key: AVRO-1605
> URL: https://issues.apache.org/jira/browse/AVRO-1605
> Project: Avro
>  Issue Type: Sub-task
>  Components: java
>Affects Versions: 1.7.8
>Reporter: Tom White
>Assignee: Gabor Szadovszky
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-1605) Remove Jackson classes from public API

2018-11-02 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16673664#comment-16673664
 ] 

ASF subversion and git services commented on AVRO-1605:
---

Commit d799e1829a39ca0379f3e12d2e8cfdf5fcd26151 in avro's branch 
refs/heads/master from [~dkulp]
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d799e18 ]

Squashed commit of the following:

commit 6d4d6d6a963fd2363d9f5549f76140bdddfceb7d
Author: Gabor Szadovszky 
Date:   Sun Oct 16 17:22:53 2016 +0200

AVRO-1605 - Removed some unnecessary Accessor methods and callers

commit adcefac6cc1c7021b2a27da16b40c1253eff64cc
Author: Gabor Szadovszky 
Date:   Thu Sep 29 18:35:26 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (Removed jackson 
references from javadoc)

commit dc2ca7ee9f881901aaf23d9221cc2d6413b43dc4
Author: Gabor Szadovszky 
Date:   Thu Sep 29 14:31:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API

commit 4e4c5ec63b3b0cf203e3af21c1cbc7a51d63c9f4
Author: Gabor Szadovszky 
Date:   Wed Sep 28 17:08:15 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#4)

commit 5fb5a5c14fadc03f44879f029114c4705749dfad
Author: Gabor Szadovszky 
Date:   Wed Sep 28 16:54:44 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#3)

commit 378fcc5aa6be560c301e23b73f919bc0eb98dd05
Author: Gabor Szadovszky 
Date:   Wed Sep 28 11:11:40 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE#2)

commit 12533657f9bc73c73b1009ed2d9dd39ca2401a20
Author: Gabor Szadovszky 
Date:   Mon Sep 26 16:25:19 2016 +0200

AVRO-1605 - Remove Jackson classes from public API (INCOMPLETE)


> Remove Jackson classes from public API
> --
>
> Key: AVRO-1605
> URL: https://issues.apache.org/jira/browse/AVRO-1605
> Project: Avro
>  Issue Type: Sub-task
>  Components: java
>Affects Versions: 1.7.8
>Reporter: Tom White
>Assignee: Gabor Szadovszky
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)