Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lavann/java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: exercism/java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 7 commits
  • 12 files changed
  • 6 contributors

Commits on Jul 20, 2026

  1. Update Map.ofEntries usage (exercism#3151)

    Looks like each entry should be wrapped in its own `Map.entry(K,V)` before being passed to `Map.ofEntries()`
    
    Change:
    
    From
    
    `Map<String, Integer> temperatures = Map.ofEntries(Map.entry("Mon", 30, "Tue", 28, "Wed", 32));`
    
    To 
    
    `Map<String, Integer> temperatures2 = Map.ofEntries(
        Map.entry("Mon", 30),
        Map.entry("Tue", 28),
        Map.entry("Wed", 32)
    );`
    YC-TAN authored Jul 20, 2026
    Configuration menu
    Copy the full SHA
    9f5b52d View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2026

  1. Bump DavidAnson/markdownlint-cli2-action from 23.2.0 to 24.1.0 (exerc…

    …ism#3156)
    
    Bumps [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action) from 23.2.0 to 24.1.0.
    - [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases)
    - [Commits](DavidAnson/markdownlint-cli2-action@ded1f94...6bf21b0)
    
    ---
    updated-dependencies:
    - dependency-name: DavidAnson/markdownlint-cli2-action
      dependency-version: 24.1.0
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 1, 2026
    Configuration menu
    Copy the full SHA
    814810f View commit details
    Browse the repository at this point in the history
  2. Bump actions/setup-java from 5.4.0 to 5.6.0 (exercism#3155)

    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 5.4.0 to 5.6.0.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](actions/setup-java@1bcf9fb...03ad4de)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-version: 5.6.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 1, 2026
    Configuration menu
    Copy the full SHA
    b17202e View commit details
    Browse the repository at this point in the history
  3. Bump actions/checkout from 7.0.0 to 7.0.1 (exercism#3154)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Commits](actions/checkout@v7...v7.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: 7.0.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 1, 2026
    Configuration menu
    Copy the full SHA
    fc789fb View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2026

  1. state-of-tic-tac-toe: add missing test cases for invalid board states (

    …exercism#3153)
    
    * state-of-tic-tac-toe: add missing test cases for invalid board states
    
    * fix: align test cases with canonical data and clean up comments
    
    * chore: sync tests.toml using configlet
    
    * fix: enable all tests and add trailing newline
    
    * fix: enable all tests and resolve checkstyle newline errors
    
    * remove comments
    
    * final commit for endlines
    
    * Update exercises/practice/state-of-tic-tac-toe/.meta/src/reference/java/StateOfTicTacToe.java
    
    Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com>
    
    * Update exercises/practice/state-of-tic-tac-toe/.meta/src/reference/java/StateOfTicTacToe.java
    
    Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com>
    
    * Update exercises/practice/state-of-tic-tac-toe/src/test/java/StateOfTicTacToeTest.java
    
    Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com>
    
    * rectify code
    
    ---------
    
    Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com>
    MathJAY10 and jagdish-15 authored Aug 2, 2026
    Configuration menu
    Copy the full SHA
    d8a4083 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2026

  1. Configuration menu
    Copy the full SHA
    388d96e View commit details
    Browse the repository at this point in the history
  2. 🤖 Auto-sync docs, metadata, and filepaths (exercism#3157)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com>
    github-actions[bot] and jagdish-15 authored Aug 21, 2026
    Configuration menu
    Copy the full SHA
    4a8369e View commit details
    Browse the repository at this point in the history
Loading