protostream icon indicating copy to clipboard operation
protostream copied to clipboard

ProtoStream is a serialization library based on Protocol Buffers

Results 35 protostream issues
Sort by recently updated
recently updated
newest added

Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.25.3 to 4.26.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-java&package-manager=maven&previous-version=3.25.3&new-version=4.26.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: #...

dependencies
java

Bumps [org.apache.maven.plugins:maven-install-plugin](https://github.com/apache/maven-install-plugin) from 3.1.1 to 3.1.2. Release notes Sourced from org.apache.maven.plugins:maven-install-plugin's releases. 3.1.2 Release Notes - Maven Install Plugin - Version 3.1.2 What's Changed [MNG-6829] Replace StringUtils#isEmpty(String) & #isNotEmpty(String) by...

dependencies
java

Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 3.2.3 to 3.2.4. Release notes Sourced from org.apache.maven.plugins:maven-gpg-plugin's releases. 3.2.4 Release Notes - Maven GPG Plugin - Version 3.2.4 [MGPG-125] - Fix "bestPractices" (#95) @​cstamas 📦 Dependency...

dependencies
java

Using the new 5.0.1.Final dependency creates the following error: Execution failed for task ':compileJava'. > java.lang.NoClassDefFoundError: org/infinispan/protostream/annotations/ProtoSchema This happens as soon as the annotation processor is added to the project....

https://issues.redhat.com/browse/IPROTO-155 Parse annotations eagerly to avoid keeping them around.

Changes Required

Hi, I wrote a ProtoAdapter for an Enum and get a compilation error: > [ERROR] /home/user/.../caching/src/main/java/com/example/ColorEnumAdapter.java:[7,8] @ProtoAdapter can only be applied to classes. But [documentation](https://infinispan.org/docs/stable/titles/encoding/encoding.html#protoadapter) says > @ProtoAdapter is a...

Hi With the following cache definition e.g: `Cache` , with Protobuf, the values are not being marshalled. To recreated this issue, you can create a new project: ```bash mvn archetype:generate...

I would like a way to use generic marshallers without relying on deprecated methods, right now org.infinispan.protostream.impl.SerializationContextImpl looks up marshallers using a hashmap with the class as a key which...

I'm trying to create an adaptor for a dto which contains an object field, that's either an object of a registered marshaller, or an object array of objects of various...