diff --git a/CHANGELOG.md b/CHANGELOG.md index 1737b36f5..d6d3c69ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.12.5 +- Fix transient test failures +- Fix Request ID handling for server-side idempotency + ## 3.12.4 - Fix incorrect span activation for local activities diff --git a/build.gradle b/build.gradle index be525bbdb..f6e051351 100644 --- a/build.gradle +++ b/build.gradle @@ -44,7 +44,7 @@ googleJavaFormat { } group = 'com.uber.cadence' -version = '3.12.4' +version = '3.12.5' description = '''Uber Cadence Java Client''' diff --git a/src/test/java/com/uber/cadence/internal/tracing/TracingPropagatorTest.java b/src/test/java/com/uber/cadence/internal/tracing/TracingPropagatorTest.java index 3952e60d2..25f9da59f 100644 --- a/src/test/java/com/uber/cadence/internal/tracing/TracingPropagatorTest.java +++ b/src/test/java/com/uber/cadence/internal/tracing/TracingPropagatorTest.java @@ -1,3 +1,20 @@ +/* + * Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Modifications copyright (C) 2017 Uber Technologies, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"). You may not + * use this file except in compliance with the License. A copy of the License is + * located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + package com.uber.cadence.internal.tracing; import static org.junit.Assert.assertEquals;