Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions changes/en-us/2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Add changes here for all PR submitted to the 2.x branch.
- [[#6145](https://github.com/seata/seata/pull/6145)] upgrade jettison to 1.5.4
- [[#6164](https://github.com/seata/seata/pull/6164)] redis registry push empty protection optimize
- [[#6174](https://github.com/seata/seata/pull/6174)] add ASF basic config
- [[#6179](https://github.com/seata/seata/pull/6179)] remove @author info
- [[#6176](https://github.com/seata/seata/pull/6176)] update source header

### security:
- [[#6069](https://github.com/seata/seata/pull/6069)] Upgrade Guava dependencies to fix security vulnerabilities
Expand Down
2 changes: 2 additions & 0 deletions changes/zh-cn/2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
- [[#6116](https://github.com/seata/seata/pull/6034)] 移除 lgtm.com
- [[#6164](https://github.com/seata/seata/pull/6164)] redis 注册中心推空保护优化
- [[#6174](https://github.com/seata/seata/pull/6174)] 增加 ASF 基础配置
- [[#6179](https://github.com/seata/seata/pull/6179)] 移除 @author 信息
- [[#6176](https://github.com/seata/seata/pull/6176)] 更新源文件header信息

### security:
- [[#6069](https://github.com/seata/seata/pull/6069)] 升级Guava依赖版本,修复安全漏洞
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* The type Configuration keys.
*
* @author slievrly
*/
public interface ConfigurationKeys {
/**
Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* The type Constants.
*
* @author slievrly
*/
public interface Constants {

Expand Down
3 changes: 1 addition & 2 deletions common/src/main/java/io/seata/common/DefaultValues.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import java.time.Duration;

/**
* @author [email protected]
*/
public interface DefaultValues {
int DEFAULT_CLIENT_LOCK_RETRY_INTERVAL = 10;
Expand Down Expand Up @@ -313,4 +312,4 @@ public interface DefaultValues {
* Default druid location in classpath
*/
String DRUID_LOCATION = "lib/sqlparser/druid.jar";
}
}
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/XID.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* The type Xid.
*
* @author slievrly
*/
public class XID {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
* the data access exception
* @author jsbxyyx
*/
public class DataAccessException extends StoreException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* eureka registry exception
*
* @author [email protected]
*/
public class EurekaRegistryException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* The enum Framework error code.
*
* @author slievrly
*/
public enum FrameworkErrorCode {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
/**
* The type Framework exception.
*
* @author slievrly
*/
public class FrameworkException extends RuntimeException {
private static final Logger LOGGER = LoggerFactory.getLogger(FrameworkException.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package io.seata.common.exception;

/**
* @author zouwei
*/
public class JsonParseException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* The type Not support yet exception.
*
* @author slievrly
*/
public class NotSupportYetException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* The redis operate exception
*
* @author wangzhongxiang
*/
public class RedisException extends FrameworkException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* The type Should never happen exception.
*
* @author slievrly
*/
public class ShouldNeverHappenException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
* Skip Callback Wrapper Exception.
* This exception class will make the semantics clearer.
*
* @author wang.liang
* @since above 1.4.2
*/
public class SkipCallbackWrapperException extends RuntimeException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* the store exception
*
* @author zhangsen
*/
public class StoreException extends FrameworkException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*
* @param <T> the type parameter
*
* @author zhangsen
*/
public interface Callback<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* The interface Initialize.
*
* @author zhangsen
*/
public interface Initialize {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import io.seata.common.exception.ShouldNeverHappenException;

/**
* @author [email protected]
* The enum object holder
*/
public enum ObjectHolder {
Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/io/FileLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
/**
* file loader
*
* @author tianyu.li
*/
public class FileLoader {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
/**
* The type Enhanced service loader.
*
* @author slievrly
*/
public class EnhancedServiceLoader {

Expand Down Expand Up @@ -668,4 +667,4 @@ private T get() {
}


}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* The type Enhanced service not found exception.
*
* @author slievrly
*/
public class EnhancedServiceNotFoundException extends NestableRuntimeException {
private static final long serialVersionUID = 7748438218914409019L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* The type ExtensionDefinition
*
* @param <S> type of serviceClass
* @author haozhibei
*/
final class ExtensionDefinition<S> {

Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/loader/LoadLevel.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
/**
* The interface Load level.
*
* @author slievrly
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/loader/Scope.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* the scope of the extension
*
* @author haozhibei
*/
public enum Scope {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package io.seata.common.metadata;

/**
* @author funkye
*/
public enum ClusterRole {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import io.seata.common.util.StringUtils;

/**
* @author funkye
*/
public class Metadata {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import java.util.List;

/**
* @author funkye
*/
public class MetadataResponse {

Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/metadata/Node.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import java.util.Map;

/**
* @author funkye
*/
public class Node {

Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/rpc/RpcStatus.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
/**
* The state statistics.
*
* @author ph3636
*/
public class RpcStatus {

Expand Down
3 changes: 1 addition & 2 deletions common/src/main/java/io/seata/common/store/StoreMode.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
/**
* transaction log store mode
*
* @author zhangsen
*/
public enum StoreMode {

Expand Down Expand Up @@ -82,4 +81,4 @@ public String getName() {
return name;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
/**
* The type Named thread factory.
*
* @author slievrly
* @author ggndnn
*/
public class NamedThreadFactory implements ThreadFactory {
private final static Map<String, AtomicInteger> PREFIX_COUNTER = new ConcurrentHashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* positive atomic counter, begin with 0, ensure the number is positive.
*
* @author Geng Zhang
*/
public class PositiveAtomicCounter {
private static final int MASK = 0x7FFFFFFF;
Expand All @@ -43,4 +42,4 @@ public int get() {
return atom.get() & MASK;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
/**
* Policies for RejectedExecutionHandler
*
* @author guoyao
*/
public final class RejectedPolicies {

Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/util/ArrayUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
/**
* The type Array utils.
*
* @author wang.liang
*/
public class ArrayUtils {

Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/util/BeanUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
/**
* The bean utils
*
* @author wangzhongxiang
*/
public class BeanUtils {

Expand Down
2 changes: 0 additions & 2 deletions common/src/main/java/io/seata/common/util/BlobUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
/**
* The type Blob utils.
*
* @author slievrly
* @author Geng Zhang
*/
public class BlobUtils {

Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/util/BufferUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
* child classes (e.g the ByteBuffer), but the return type is the specialized one and not the abstract {@link Buffer}.
* So the code compiled with newer Java is not working on Java 8 unless a workaround with explicit casting is used.
*
* @author funkye
*/
public class BufferUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
/**
* The type Collection utils.
*
* @author zhangsen
* @author Geng Zhang
*/
public class CollectionUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ public static boolean isCompressData(byte[] bytes) {
}
return false;
}
}
}
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/util/ConfigTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import javax.crypto.Cipher;

/**
* @author funkye
*/
public class ConfigTools {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/**
* The type CycleDependency handler.
*
* @author wang.liang
*/
public class CycleDependencyHandler {

Expand Down
1 change: 0 additions & 1 deletion common/src/main/java/io/seata/common/util/DateUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
/**
* The type Date util.
*
* @author slievrly
*/
public class DateUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.util.regex.Pattern;

/**
* @author XCXCXCXCX
*/
public class DurationUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
import java.util.concurrent.ConcurrentHashMap;

/**
* @author funkye
*/
public class HttpClientUtil {

Expand Down Expand Up @@ -136,4 +135,4 @@ public static CloseableHttpResponse doGet(String url, Map<String, String> param,
return null;
}

}
}
Loading