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: VrushankTS/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.
  • 16 commits
  • 46 files changed
  • 10 contributors

Commits on May 26, 2026

  1. Format all instructions.append.md to start with an H1 (required but…

    … ignored) and H2 (exercism#3135)
    
    * Format all `instructions.append.md` to start with an H1 (required but ignored) and H2
    
    * Revert deprecated diffie-hellman
    IsaacG authored May 26, 2026
    Configuration menu
    Copy the full SHA
    d71270e View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2026

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

    …ism#3137)
    
    Bumps [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action) from 23.1.0 to 23.2.0.
    - [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases)
    - [Commits](DavidAnson/markdownlint-cli2-action@6b51ade...ded1f94)
    
    ---
    updated-dependencies:
    - dependency-name: DavidAnson/markdownlint-cli2-action
      dependency-version: 23.2.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 Jun 1, 2026
    Configuration menu
    Copy the full SHA
    8d95bc0 View commit details
    Browse the repository at this point in the history
  2. Bump actions/checkout from 4 to 6 (exercism#3136)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Commits](actions/checkout@v4...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '6'
      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 Jun 1, 2026
    Configuration menu
    Copy the full SHA
    fd1b44d View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2026

  1. 🤖 Auto-sync docs, metadata, and filepaths (exercism#3138)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Jun 15, 2026
    Configuration menu
    Copy the full SHA
    86fe0ae View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2026

  1. Update dot dsl exercise (exercism#3143)

    * Update dot dsl exercise
    
    * Fix formating
    kahgoh authored Jun 20, 2026
    Configuration menu
    Copy the full SHA
    0443ae5 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2026

  1. Configuration menu
    Copy the full SHA
    641ae34 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2026

  1. simple-linked-list: sync missing test cases and add peek/toList (exer…

    …cism#3146)
    
    * simple-linked-list: sync missing test cases and add peek/toList
    
    * simple-linked-list: address review feedback
    
    * simple-linked-list: fix constructor order, update expectations, remove asArray
    
    * simple-linked-list: remove unused imports
    AdityaPudasaini authored Jun 28, 2026
    Configuration menu
    Copy the full SHA
    6a13a7f View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2026

  1. Bump actions/checkout from 6 to 7 (exercism#3147)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Commits](actions/checkout@v6...v7)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '7'
      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 Jul 1, 2026
    Configuration menu
    Copy the full SHA
    518e926 View commit details
    Browse the repository at this point in the history
  2. Bump actions/setup-java from 5.2.0 to 5.4.0 (exercism#3148)

    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 5.2.0 to 5.4.0.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](actions/setup-java@be666c2...1bcf9fb)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-version: 5.4.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 Jul 1, 2026
    Configuration menu
    Copy the full SHA
    d8e92d5 View commit details
    Browse the repository at this point in the history

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