Bump org.junit.jupiter:junit-jupiter-engine from 5.8.1 to 6.1.3 in /spark - #23
Open
dependabot[bot] wants to merge 152 commits into
Conversation
Co-authored-by: chandan <chandanydv0402@gmail.com>
Co-authored-by: chandan <chandanydv0402@gmail.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: chandan <chandanydv0402@gmail.com>
Extract the shared steps of perfTest-febrl120K and perfTest-ncVoters5M into a single reusable workflow (perfTest-reusable.yml) invoked via workflow_call. The two dataset workflows become thin callers that pass their INPUT file and keep their own schedule. Also fix the copy-pasted 'No changes to commit for perfTest-febrl120K' message in the ncVoters workflow. Co-authored-by: chandan <chandanydv0402@gmail.com>
…inggAI#1344) The abstract Matcher and Linker classes carried a leftover `static String name` field ("zingg.Matcher" / "zingg.Linker") from the original single-package layout. After the multi-module refactor these classes moved to zingg.common.core.executor, so the value no longer reflects the package structure. The field is also unused: the phase factory (e.g. SparkZFactory) loads executors by reflection using the concrete engine classes' own name field (SparkMatcher.name, SparkLinker.name, ...), which are correct. The abstract base field is never read and, being abstract, could never be instantiated via that path. Removing it resolves the "names are incorrect" issue and drops dead, misleading code. Co-authored-by: chandan <chandanydv0402@gmail.com>
Co-authored-by: chandan <chandanydv0402@gmail.com>
* Split Spark test session provider into Lite and Heavy profiles * use a flag instead of getInstance as suggested in review dropped getInstance from the providers and used the isSessionInitialised flag in the extension to build the session once. made initializeSession public. memory stays the same, lite 1g and heavy 8g. --------- Co-authored-by: chandan <chandanydv0402@gmail.com>
…missing from telemetry (zinggAI#1342) * Fix: call track(boolean) in postMetrics() to populate missing telemetry fields The abstract track(boolean) method in ZinggBase sets dataFormat, outputFormat, numTotalFields, numMatchFields, and stopWords - but was never being called, since postMetrics() in the parent class ZinggBaseCommon had no reference to it. This left those 5 fields permanently missing from every telemetry event sent to GA4/BigQuery, confirmed via IDE (0 usages) and via live payload inspection. Fix: declared track(boolean) as abstract in ZinggBaseCommon (matching the existing pattern used for getArgs/setArgs/execute), and added a call to it in postMetrics() right before postEvent() sends the event. Verified locally: rebuilt from source, ran a match job with debug logging, confirmed all 5 previously-missing fields now appear correctly in the outgoing GA4 payload. * Revert unintended workflow file version drift (unrelated to telemetry fix) * Revert remaining workflow file version drift (unrelated to telemetry fix)
The labeler rendered pairs via ZFrame.show(int), which lets Spark default to truncate=true, capping cell values at 20 characters (e.g. emails shown as john_smith@cas...). Add a show(int, boolean) overload to ZFrame and SparkFrame, and have VerticalDisplayUtility call show(MAX_COLUMNS, false) so full values are displayed.
…ation Fix labeler truncating field values in vertical display
Correct minor typos and grammar in docs/faq.md: add missing apostrophe, replace 'advance/peristent/gden' with 'advanced/persistent/golden', improve CDP paragraph wording and hyphenate 'out-of-the-box'. Minor copy edits for clarity and readability.
Reorganize documentation
Correct typos in docs/running-zingg/compare-model-results.md: change 'Snowfalke' to 'Snowflake' and 'provivded' to 'provided' in the Enterprise Snowflake tab.
Replace TransformedOutputArguments with CompareArguments in docs/running-zingg/compare-model-results.md and reassign-zingg-id.md. Update API calls (setOriginalArgs -> setCompareToArgs, setTransformedOutputPath -> setResults) and adjust example usage. Rename tab to "Enterprise Python" and add an "Enterprise CLI" tab. Small example tweaks: change sample CSV path and add a note about marking the primary key for reassignment.
Expand and clarify the MAPPING_(FILENAME) documentation: add algorithm steps (dictionary loading, representative selection by longest value, value substitution, then handoff to configured match scorer), add a danger hint that MAPPING must be paired with another match type, update comparison table to show MAPPING+EXACT vs MAPPING+FUZZY, include an example JSON mapping, and update code snippets to include FUZZY. Also remove an extraneous commented instruction in reassign-zingg-id.md about marking a primary key.
added snowflake steps for configuring zingg
Rename 'Explain Matches' to 'Explainability and Statistics' and restructure the interpreting results section. Nest 'Explain a Specific Cluster' and 'Output Statistics' as subsections under the parent topic. Update content to clarify the distinction between the explain phase and output statistics, and update all cross-references throughout the docs.
The codebase uses Encoders.row(StructType), which only exists in Spark 3.5+, so the spark-3.4 profile could never compile. Remove the dead profile so the build only advertises the Spark version it actually supports. Co-authored-by: chandan <chandanydv0402@gmail.com> Co-authored-by: Sonal <sonalgoyal4@gmail.com>
…zinggAI#1337) Fixes zinggAI#1080 Co-authored-by: chandan <chandanydv0402@gmail.com>
Derive the Dependabot config from the single source of truth (the poms) instead of hand-maintaining it: - scripts/gen-dependabot.py scans every pom, emitting an allow list for compile-scope (shipped) deps and an ignore list for provided-scope deps (Spark/Scala/Jackson-core) the runtime supplies. Version placeholders are wildcarded; a dep that is provided in any module is treated as provided (mirrors Dependabot's ignore-wins-over-allow rule). - .github/dependabot.yml regenerated from the script (also fixes the invalid package-ecosystem: "*" that had been silently rejecting the whole file). - A pre-commit hook and CI workflow run the script in --check mode so the committed config can never drift from the poms. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Bumps [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit-framework) from 5.8.1 to 6.1.3. - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](junit-team/junit-framework@r5.8.1...r6.1.3) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-version: 6.1.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/maven/spark/org.junit.jupiter-junit-jupiter-engine-6.1.2
branch
from
August 24, 2026 18:17
7566fe5 to
5347f73
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps org.junit.jupiter:junit-jupiter-engine from 5.8.1 to 6.1.3.
Release notes
Sourced from org.junit.jupiter:junit-jupiter-engine's releases.
... (truncated)
Commits
f59f60dRelease 6.1.3cd8ec92Finalize 6.1.3 release notesc8729f2Restore compatibility with GraalVM 25 (#5901)ddc9e74Update graalvm/setup-graalvm action to v1.6.4 (#5959)fe2c52aUpdate plugin org.graalvm.buildtools.native to v1.1.7 (#5923)62afc02Delay GraalVM plugin updates for 3 days0cc2902SkipgraalVmTesttask if GraalVM env vars are not setf6bbfc5Move GraalVM tests to separate test task (#5903)e87e052Update plugin org.graalvm.buildtools.native to v1.1.6 (#5899)1cd56dfUpdate plugin org.graalvm.buildtools.native to v1.1.5 (#5880)