Skip to content

Bump org.junit.jupiter:junit-jupiter-params from 5.8.1 to 6.1.3 in /common - #17

Open
dependabot[bot] wants to merge 152 commits into
fix/dependabot-autogenfrom
dependabot/maven/common/org.junit.jupiter-junit-jupiter-params-6.1.2
Open

Bump org.junit.jupiter:junit-jupiter-params from 5.8.1 to 6.1.3 in /common#17
dependabot[bot] wants to merge 152 commits into
fix/dependabot-autogenfrom
dependabot/maven/common/org.junit.jupiter-junit-jupiter-params-6.1.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown

Bumps org.junit.jupiter:junit-jupiter-params from 5.8.1 to 6.1.3.

Release notes

Sourced from org.junit.jupiter:junit-jupiter-params's releases.

JUnit 6.1.3 = Platform 6.1.3 + Jupiter 6.1.3 + Vintage 6.1.3

See Release Notes.

Full Changelog: junit-team/junit-framework@r6.1.2...r6.1.3

JUnit 6.1.2 = Platform 6.1.2 + Jupiter 6.1.2 + Vintage 6.1.2

See Release Notes.

Full Changelog: junit-team/junit-framework@r6.1.1...r6.1.2

JUnit 6.1.1 = Platform 6.1.1 + Jupiter 6.1.1 + Vintage 6.1.1

See Release Notes.

Full Changelog: junit-team/junit-framework@r6.1.0...r6.1.1

JUnit 6.1.0 = Platform 6.1.0 + Jupiter 6.1.0 + Vintage 6.1.0

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r6.0.3...r6.1.0

JUnit 6.1.0-RC1 = Platform 6.1.0-RC1 + Jupiter 6.1.0-RC1 + Vintage 6.1.0-RC1

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r6.1.0-M1...r6.1.0-RC1

JUnit 6.1.0-M1 = Platform 6.1.0-M1 + Jupiter 6.1.0-M1 + Vintage 6.1.0-M1

See Release Notes.

New Contributors

... (truncated)

Commits
  • f59f60d Release 6.1.3
  • cd8ec92 Finalize 6.1.3 release notes
  • c8729f2 Restore compatibility with GraalVM 25 (#5901)
  • ddc9e74 Update graalvm/setup-graalvm action to v1.6.4 (#5959)
  • fe2c52a Update plugin org.graalvm.buildtools.native to v1.1.7 (#5923)
  • 62afc02 Delay GraalVM plugin updates for 3 days
  • 0cc2902 Skip graalVmTest task if GraalVM env vars are not set
  • f6bbfc5 Move GraalVM tests to separate test task (#5903)
  • e87e052 Update plugin org.graalvm.buildtools.native to v1.1.6 (#5899)
  • 1cd56df Update plugin org.graalvm.buildtools.native to v1.1.5 (#5880)
  • Additional commits viewable in compare view

sonalgoyal and others added 8 commits June 24, 2026 20:46
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>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jul 24, 2026
Chandanydv1234 and others added 17 commits July 28, 2026 15:51
* 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.
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
sonalgoyal and others added 27 commits August 19, 2026 08:55
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>
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-params](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-params
  dependency-version: 6.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot changed the base branch from main to fix/dependabot-autogen August 24, 2026 18:17
@dependabot
dependabot Bot force-pushed the dependabot/maven/common/org.junit.jupiter-junit-jupiter-params-6.1.2 branch from 6807823 to 14caedc Compare August 24, 2026 18:17
@dependabot dependabot Bot changed the title Bump org.junit.jupiter:junit-jupiter-params from 5.8.1 to 6.1.2 in /common Bump org.junit.jupiter:junit-jupiter-params from 5.8.1 to 6.1.3 in /common Aug 24, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants