Skip to content

build(deps): bump org.apache.maven.plugins:maven-shade-plugin from 3.6.0 to 3.6.2#8

Closed
dependabot[bot] wants to merge 45 commits into
mainfrom
dependabot/maven/org.apache.maven.plugins-maven-shade-plugin-3.6.2
Closed

build(deps): bump org.apache.maven.plugins:maven-shade-plugin from 3.6.0 to 3.6.2#8
dependabot[bot] wants to merge 45 commits into
mainfrom
dependabot/maven/org.apache.maven.plugins-maven-shade-plugin-3.6.2

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 13, 2026

Bumps org.apache.maven.plugins:maven-shade-plugin from 3.6.0 to 3.6.2.

Release notes

Sourced from org.apache.maven.plugins:maven-shade-plugin's releases.

3.6.2

🐛 Bug Fixes

  • Bug: Extra JARs and Artifacts were not subjected to filtering (#785) @​cstamas

👻 Maintenance

📦 Dependency updates

3.6.1

📝 Documentation updates

👻 Maintenance

📦 Dependency updates

... (truncated)

Commits
  • ad8de59 [maven-release-plugin] prepare release maven-shade-plugin-3.6.2
  • 8eb19dc Drop unneeded dependencies (#788)
  • 397b2cd Drop excessive dependencies (#786)
  • eca6398 Bug: Extra JARs and Artifacts were not subjected to filtering (#785)
  • 7edce17 Update to parent POM v 47 (#781)
  • 3171a34 Mockito improvements (#783)
  • 678844b Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness (#782)
  • 73ec909 Bump org.codehaus.mojo:mrm-maven-plugin from 1.7.0 to 1.7.1 (#780)
  • 5f7a877 Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness (#778)
  • 73c5247 chore: remove junit3 reference (#762)
  • Additional commits viewable in compare view

@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 13, 2026

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

…hunker, TextUtils and add chunked ingestion for large documents
- QuantizationType enum (NONE, SCALAR_INT8)
- ScalarQuantizer with min/max calibration and INT8 encoding
- QuantizedCosineSimilarity and QuantizedDotProduct SIMD kernels
- SimilarityFunction updated with quantized variants
- ScalarQuantizerTest for encode/decode and batch operations
- PersistenceMode enum (IN_MEMORY, DISK, MMAP)
- IndexFileFormat for binary HNSW serialization
- QuantizedVectorStore with INT8 compression
- InMemoryVectorStore concurrent access improvements
- DiskHnswWriter for binary HNSW graph serialization
- DiskHnswIndex for mmap-based read-only index loading
- QuantizedHnswIndex with INT8 scalar quantization (4x memory reduction)
- BM25Index and HnswIndex performance improvements
- DiskHnswIndexTest and QuantizedHnswIndexTest
- ProductQuantizer: K-Means++ codebook training, PQ encode/decode, ADC
  distance computation, batch encoding
- IvfPqIndex: full IVF-PQ implementing VectorIndex SPI with cluster
  assignment, residual-based PQ encoding, and multi-probe search
- PostingList: per-cluster growable storage for PQ codes
- 14 tests: PQ training/encode/decode/ADC + IVF-PQ search/recall/sorting
- Reranker SPI interface for pluggable re-ranking strategies
- LlmReranker: listwise relevance scoring using Ollama generate API
  with prompt-based 0-10 scoring and graceful fallback
- HybridSearchOrchestrator: integrated optional re-ranking post-processing
- LlmRerankerTest: fallback behavior, empty input, topK limiting
- spector-gpu Maven module with Panama FFM CUDA bindings
- GpuCapability: runtime CUDA detection (device count, name, memory)
- GpuBatchSimilarity: SIMD-optimized batch dot product and cosine
  similarity using FMA Vector API operations
- CudaKernelLauncher: PTX module loader, function resolver, kernel
  launcher with grid/block configuration
- batch_similarity.cu: CUDA kernels for batch_cosine, batch_dot, batch_l2
  with block-level shared memory reduction
- 14 tests: GPU detection, batch similarity correctness, CUDA launcher
…hitecture

- spector-cluster Maven module with gRPC/protobuf integration
- spector_search.proto: 6 RPC definitions (vector, keyword, hybrid
  search, ingest, health check, stats)
- ClusterCoordinator: fan-out/merge query execution via virtual threads
  with consistent hash shard routing
- ShardNode: gRPC server wrapping SpectorEngine
- SpectorSearchServiceImpl: full gRPC service delegating to local engine
- RemoteShardClient: type-safe gRPC client for all 5 RPC methods
- ClusterConfig: multi-node endpoint configuration with replication
- ClusterConfigTest: routing, hash consistency, topology tests
…rEngine

- IndexType enum (HNSW, IVF_PQ) for configurable index strategy
- SpectorConfig: added indexType, ivfNlist, ivfNprobe, pqSubspaces with
  builder methods (withIvfPq) and auto-defaults
- SpectorEngine: IVF-PQ auto-training pipeline that buffers ingested
  vectors and trains PQ codebooks after nlist*40 samples
- Backward-compatible 7-arg constructor preserved
- 4 new tests: auto-training, keyword search during buffering, config
  builder, auto-defaults
- HeavyPerformanceBenchmark: keyword/vector/hybrid at 50K-100K scale
- IvfPqBenchmark: IVF-PQ search, PQ encode/decode, ADC distance, batch
  cosine similarity at 10K-50K scale
- ConcurrencyBenchmark: multi-threaded search throughput
- IngestionBenchmark: document ingestion throughput
- PerformanceTestRunner: standalone runner with formatted results
- pom.xml: added spector-gpu, spector-cluster modules to reactor
  and dependencyManagement
- README.md: expanded architecture (13 modules), 5 new features,
  updated comparison table (quantization, IVF-PQ, GPU, LLM, distributed),
  updated test suite (316+ tests), added roadmap checklist
Extract ~300 lines of duplicated graph traversal code (greedyClosest,
searchLayer, selectNeighbors, addConnection, getNeighbors, setNeighbors)
into AbstractHnswIndex base class with three template method hooks:

- computeDistance(float[], int) — distance from query to stored node
- getNodeVector(int) — float32 vector retrieval for pruning
- storeVector(int, float[]) — vector storage on insertion

HnswIndex: 413 -> 76 lines (-81%)
QuantizedHnswIndex: 476 -> 226 lines (-53%)

All 316+ tests passing, zero regressions.
- VectorIndex: add default isReadOnly() method (returns false)
- DiskHnswIndex: override isReadOnly() to return true
- KeywordIndex: add default remove(String id) method
- BM25Index: expose existing removeDoc() logic via KeywordIndex.remove()

Completes the deletion API path across the engine.
- Add gpuEnabled, rerankerEnabled, rerankerOllamaUrl, rerankerModel,
  rerankerMaxCandidates fields to SpectorConfig record
- Add with*() builder-style methods for GPU and reranker config
- Add IVF-PQ computed defaults (effectiveNlist, effectiveNprobe, etc.)
- Add spector-gpu dependency to engine POM
Introduce GoF design patterns for component creation:

- VectorIndexFactory: creates HNSW, QuantizedHNSW, or IVF-PQ based on
  config (replaces if/else chain in engine constructor)
- VectorStoreFactory: creates InMemory or MappedVectorStore based on
  PersistenceMode (replaces hardcoded InMemoryVectorStore)
- EngineComponentFactory: Abstract Factory assembling all components
  (store, index, GPU, reranker) into an EngineComponents record
- EngineComponents: immutable record grouping all subsystems

Adding a new index or store type now requires zero changes to
SpectorEngine (Open/Closed Principle).
Refactor SpectorEngine to delegate component construction to
EngineComponentFactory (Abstract Factory) instead of inline if/else:

- Constructor: 150 lines -> 30 lines
- Field type: BM25Index -> KeywordIndex (DIP compliance)
- Removed 8 concrete class imports for construction (now in factories)
- Added SpectorEngine.Builder for fluent engine construction:

    SpectorEngine engine = SpectorEngine.builder()
        .dimensions(384).capacity(100_000)
        .similarity(SimilarityFunction.COSINE)
        .gpu(true).build();

- Added constructor accepting custom EngineComponentFactory for testing
- Integrated GPU fallback and LLM reranker lifecycle
…points

- CORS support via Javalin bundled plugin
- Optional API key authentication via X-API-Key header
- Vector dimension validation on ingest
- New endpoints: /api/v1/ingest/auto, /api/v1/ingest/bulk,
  DELETE /api/v1/documents/{id}, /api/v1/metrics
- Request counters via LongAdder for observability
Add 4-arg constructor accepting CA cert, client cert, and client key
for TLS-encrypted gRPC connections. Transparent fallback to plaintext
for development environments.
…ReentrantLock

- Parent POM: remove duplicate jackson-databind declaration
- MappedVectorStore: replace synchronized with ReentrantLock on put()
  and close() for virtual thread compatibility (consistent with
  InMemoryVectorStore)
- README: reflect current 13-module architecture, design patterns,
  GPU acceleration, LLM re-ranking, and IVF-PQ indexing
- CHANGELOG: comprehensive feature inventory across all modules
- goal.md: update roadmap with completed items and current status
@dependabot dependabot Bot changed the title chore(deps-dev): bump org.apache.maven.plugins:maven-shade-plugin from 3.6.0 to 3.6.2 build(deps): bump org.apache.maven.plugins:maven-shade-plugin from 3.6.0 to 3.6.2 May 20, 2026
Bumps [org.apache.maven.plugins:maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.6.0 to 3.6.2.
- [Release notes](https://github.com/apache/maven-shade-plugin/releases)
- [Commits](apache/maven-shade-plugin@maven-shade-plugin-3.6.0...maven-shade-plugin-3.6.2)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-shade-plugin
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/maven/org.apache.maven.plugins-maven-shade-plugin-3.6.2 branch from b7b8a6a to c884cc4 Compare May 20, 2026 23:26
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Jun 1, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/maven/org.apache.maven.plugins-maven-shade-plugin-3.6.2 branch June 1, 2026 13:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant