Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
ec0bf4f
Bump log4net from 2.0.14 to 3.3.0 (#3731)
dependabot[bot] Apr 15, 2026
d15dda4
Bump postcss from 8.5.8 to 8.5.9 in /doc (#3729)
dependabot[bot] Apr 15, 2026
87f3357
fix 'occured' -> 'occurred' typos in error messages across C# and Pyt…
SAY-5 Apr 17, 2026
4e8d81e
Bump org.apache.ant:ant from 1.10.16 to 1.10.17 in /lang/java (#3728)
dependabot[bot] Apr 17, 2026
37c3e68
Bump System.CodeDom from 10.0.5 to 10.0.6 (#3739)
dependabot[bot] Apr 20, 2026
95fd0cb
Bump coverlet.msbuild from 8.0.1 to 10.0.0 (#3738)
dependabot[bot] Apr 20, 2026
00169e6
Bump postcss from 8.5.9 to 8.5.10 in /doc (#3734)
dependabot[bot] Apr 20, 2026
7288023
Bump coverlet.collector from 8.0.1 to 10.0.0 (#3737)
dependabot[bot] Apr 20, 2026
0854052
Bump autoprefixer from 10.4.27 to 10.5.0 in /doc (#3735)
dependabot[bot] Apr 20, 2026
9e8f47b
Bump System.CodeDom from 10.0.6 to 10.0.7 (#3743)
dependabot[bot] Apr 27, 2026
1538e89
Bump junit5.version from 5.14.3 to 5.14.4 in /lang/java (#3742)
dependabot[bot] Apr 27, 2026
dc7b85a
Bump postcss from 8.5.10 to 8.5.12 in /doc (#3741)
dependabot[bot] Apr 27, 2026
4e35946
Bump com.fasterxml.jackson:jackson-bom in /lang/java (#3757)
dependabot[bot] May 5, 2026
8e969a5
Bump postcss from 8.5.12 to 8.5.13 in /doc (#3758)
dependabot[bot] May 5, 2026
64c0176
Bump grpc.version from 1.80.0 to 1.81.0 in /lang/java (#3759)
dependabot[bot] May 5, 2026
942af1d
Bump com.github.luben:zstd-jni from 1.5.7-7 to 1.5.7-8 in /lang/java …
dependabot[bot] May 5, 2026
8274fb0
Fix misaligned pointer use in BufferDetail.hh and BufferReader.hh (#3…
apilloud May 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"devDependencies": {
"autoprefixer": "^10.4.27",
"postcss": "^8.5.8",
"autoprefixer": "^10.5.0",
"postcss": "^8.5.13",
"postcss-cli": "^11.0.1"
}
}
3 changes: 2 additions & 1 deletion lang/c++/include/avro/buffer/BufferReader.hh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#define avro_BufferReader_hh__

#include "Buffer.hh"
#include <cstring>
#include <type_traits>

#ifdef min
Expand Down Expand Up @@ -233,7 +234,7 @@ private:
}

if (sizeof(T) <= chunkRemaining()) {
val = *(reinterpret_cast<const T *>(addr()));
memcpy(&val, addr(), sizeof(T));
incrementChunk(sizeof(T));
} else {
read(reinterpret_cast<data_type *>(&val), sizeof(T));
Expand Down
3 changes: 2 additions & 1 deletion lang/c++/include/avro/buffer/detail/BufferDetail.hh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <boost/asio/buffer.hpp>
#endif
#include <cassert>
#include <cstring>
#include <deque>
#include <exception>
#include <functional>
Expand Down Expand Up @@ -327,7 +328,7 @@ public:
if (freeSpace_ && (sizeof(T) <= writeChunks_.front().freeSize())) {
// fast path, there's enough room in the writeable chunk to just
// straight out copy it
*(reinterpret_cast<T *>(writeChunks_.front().tellWritePos())) = val;
memcpy(writeChunks_.front().tellWritePos(), &val, sizeof(T));
postWrite(sizeof(T));
} else {
// need to fixup chunks first, so use the regular memcpy
Expand Down
2 changes: 1 addition & 1 deletion lang/csharp/src/apache/ipc/Avro.ipc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

<ItemGroup>
<PackageReference Include="castle.core" Version="4.2.1" />
<PackageReference Include="log4net" Version="2.0.14" />
<PackageReference Include="log4net" Version="3.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion lang/csharp/src/apache/ipc/HttpListenerServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected void HttpListenerCallback(IAsyncResult result)
// ExceptionHandler(ex, result);
//else
// Debug.Print("Exception occured while processing a request, no exception handler was provided - ignoring", ex);
Debug.Print("Exception occured while processing a web request, skipping this request: ", ex);
Debug.Print("Exception occurred while processing a web request, skipping this request: ", ex);
}
}

Expand Down
6 changes: 3 additions & 3 deletions lang/csharp/versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
-->
<PropertyGroup Label="Latest Package Versions">
<NewtonsoftJsonVersion>13.0.1</NewtonsoftJsonVersion>
<SystemCodeDomVersion>10.0.5</SystemCodeDomVersion>
<SystemCodeDomVersion>10.0.7</SystemCodeDomVersion>
<SystemReflectionVersion>4.3.0</SystemReflectionVersion>
<SystemReflectionEmitILGenerationVersion>4.7.0</SystemReflectionEmitILGenerationVersion>
<SystemReflectionEmitLightweightVersion>4.7.0</SystemReflectionEmitLightweightVersion>
Expand Down Expand Up @@ -59,8 +59,8 @@
-->
<PropertyGroup Label="Build, Test, Code Analysis, Benchmark Package Versions">
<BenchmarkDotNetVersion>0.15.8</BenchmarkDotNetVersion>
<CoverletCollectorVersion>8.0.1</CoverletCollectorVersion>
<CoverletMSBuildVersion>8.0.1</CoverletMSBuildVersion>
<CoverletCollectorVersion>10.0.0</CoverletCollectorVersion>
<CoverletMSBuildVersion>10.0.0</CoverletMSBuildVersion>
<MicrosoftBuildFrameworkVersion>18.4.0</MicrosoftBuildFrameworkVersion>
<MicrosoftBuildUtilitiesCoreVersion>18.4.0</MicrosoftBuildUtilitiesCoreVersion>
<MicrosoftCodeAnalysisVersion>4.7.0</MicrosoftCodeAnalysisVersion>
Expand Down
10 changes: 5 additions & 5 deletions lang/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@
<main.basedir>${project.parent.basedir}</main.basedir>

<!-- version properties for dependencies -->
<ant.version>1.10.16</ant.version>
<ant.version>1.10.17</ant.version>
<commons-cli.version>1.11.0</commons-cli.version>
<commons-compress.version>1.28.0</commons-compress.version>
<commons-text.version>1.15.0</commons-text.version>
<commons-lang3.version>3.20.0</commons-lang3.version>
<grpc.version>1.80.0</grpc.version>
<grpc.version>1.81.0</grpc.version>
<hadoop.version>3.4.3</hadoop.version>
<hamcrest.version>3.0</hamcrest.version>
<jackson-bom.version>2.21.2</jackson-bom.version>
<jackson-bom.version>2.21.3</jackson-bom.version>
<jetty.version>9.4.58.v20250814</jetty.version>
<jopt-simple.version>5.0.4</jopt-simple.version>
<junit5.version>5.14.3</junit5.version>
<junit5.version>5.14.4</junit5.version>
<maven-core.version>3.9.6</maven-core.version>
<mockito.version>5.23.0</mockito.version>
<netty.version>4.2.12.Final</netty.version>
Expand All @@ -60,7 +60,7 @@
<thrift.version>0.20.0</thrift.version>
<tukaani.version>1.12</tukaani.version>
<velocity.version>2.4.1</velocity.version>
<zstd-jni.version>1.5.7-7</zstd-jni.version>
<zstd-jni.version>1.5.7-8</zstd-jni.version>
<!-- version properties for plugins -->
<archetype-plugin.version>3.4.1</archetype-plugin.version>
<bundle-plugin-version>6.0.2</bundle-plugin-version>
Expand Down
4 changes: 2 additions & 2 deletions lang/py/avro/tether/tether_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def fail(self, message):
"""
Call to fail the task.
"""
self.log.error("TetherTask.fail: failure occured message follows:\n%s", message)
self.log.error("TetherTask.fail: failure occurred message follows:\n%s", message)
try:
message = message.decode()
except AttributeError:
Expand All @@ -431,7 +431,7 @@ def fail(self, message):
try:
self.outputClient.request("fail", {"message": message})
except Exception:
self.log.exception("TetherTask.fail: an exception occured while trying to send the fail message to the output server.")
self.log.exception("TetherTask.fail: an exception occurred while trying to send the fail message to the output server.")

self.close()

Expand Down
4 changes: 2 additions & 2 deletions lang/py/avro/tether/tether_task_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def invoke(self, message, request):
try:
self.task.partitions = request["partitions"]
except Exception:
self.log.error("Exception occured while processing the partitions message: Message:\n%s", traceback.format_exc())
self.log.error("Exception occurred while processing the partitions message: Message:\n%s", traceback.format_exc())
raise
elif message.name == "input":
self.log.info("TetherTaskRunner: Received input")
Expand All @@ -84,7 +84,7 @@ def invoke(self, message, request):
self.log.warning("TetherTaskRunner: Received unknown message %s", message.name)

except Exception as e:
self.log.error("Error occured while processing message: %s", message.name)
self.log.error("Error occurred while processing message: %s", message.name)
e = traceback.format_exc()
self.task.fail(e)

Expand Down