Skip to content

Commit

Permalink
Tools 1900 update log4j to 2.17.1 (#12)
Browse files Browse the repository at this point in the history
* Update copyright year

* fix: Update log4j to 2.17.1
  • Loading branch information
Jesse S authored Jan 5, 2022
1 parent 1c196db commit 2d29e7f
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.log
target
bin
.vscode
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
Following dependencies are downloaded automatically:
* Aerospike Java client 4.3.0 or greater
* Apache commons cli 1.2
* Log4j 2.16.0
* Log4j 2.17.1
* Junit 4.4
* Json-simple 1.1.1

Expand Down
8 changes: 8 additions & 0 deletions doc/releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,11 @@
## Aerospike Loader [2.4.1] Release Date [13 Dec 2021]
### Fix/Changes:
- Update log4j to version 2.15.0.

## Aerospike Loader [2.4.2] Release Date [16 Dec 2021]
### Fix/Changes:
- Update log4j to version 2.16.0.

## Aerospike Loader [2.4.3] Release Date [4 Jan 2022]
### Fix/Changes:
- Update log4j to version 2.17.1.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.16.0</version>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.16.0</version>
<version>2.17.1</version>
</dependency>
<!-- junit -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/AerospikeLoad.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/AsWriterTask.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/BinDefinition.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/ColumnDefinition.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/Constants.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/Counter.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/MappingDefinition.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/MetaDefinition.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/Parameters.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/Parser.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/PrintStat.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/Utils.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2017 by Aerospike.
* Copyright 2022 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
Expand Down

0 comments on commit 2d29e7f

Please sign in to comment.