Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bring v2 up-to-date #270

Draft
wants to merge 101 commits into
base: v2
Choose a base branch
from
Draft

Bring v2 up-to-date #270

wants to merge 101 commits into from

Commits on Jun 9, 2023

  1. Add new ocpp-v2 sub-project with OCPP 2.0.1 types

    Add a new sub-project named "ocpp-v2", intended to support all OCPP 2.x
    versions in addition to OCPP 1.6, which it has a dependency on.
    
    As a first step, add Java classes for all OCPP 2.0.1 messages and types
    as well as client and server event handler interfaces and function
    classes corresponding to the OCPP 2.0.1 "functional blocks."
    robert-s-ubi committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    e33b758 View commit details
    Browse the repository at this point in the history
  2. Add OCPP 2.0.1 and multiple protocol versions support

    Add support for auto-negotiation of the protocol version to use in the
    WebSocket handshake, to offer and accept both OCPP 1.6 and OCPP 2.0.1.
    
    To facilitate this, add multiple protocol capable variants of the
    JSONClient, JSONServer, SessionFactory, WebSocketListener and
    WebSocketTransmitter classes.
    
    Add new IMultiProtocolClientAPI and IMultiProtocolServerAPI interfaces
    which extend IClientAPI and IServerAPI, respectively, with the methods
    needed for multi-protocol support. Specifically, methods to add feature
    profiles (OCPP 1.6) and functions (OCPP 2.0.1 or later) for a specific
    protocol version.
    
    The IMultiProtocolClientAPI interface has an additional method to
    retrieve the protocol version selected by the server.
    
    The IMultiProtocolServerAPI interface has an additional method to
    retrieve the port number the server is listening on, which is useful for
    tests where the server is started with port number 0 to let it pick any
    available port.
    
    The MultiProtocolJSONClient and MultiProtocolJSONServer classes are
    implementations of these two APIs:
    
    - Both take a list of protocol versions to offer/accept as a constructor
      argument, instead of the OCPP 1.6 CoreProfile, which is now optional.
    - The client has the new getProtocolVersion() API to retrieve the
      protocol version selected by the server after connecting.
    - The server makes the selected protocol version available through the
      getProtocolVersion() API added to the SessionInformation object passed
      to the ServerEvents#newSession() API.
    
    Refactor the existing Client, Server and Session classes and interfaces
    to make the Session provide the feature repository to Client and Server,
    to allow selecting or configuring it to the protocol version selected in
    the WebSocket handshake. Adapt the tests to the removal of the feature
    repository from the constructor parameters.
    
    Add the protocol version to the feature repository interface and
    implementation.
    
    Add an exemplary unit test for serialization and deserialization of the
    OCPP 2.0.1 BootNotificationRequest message. More unit tests should be
    added.
    
    Add integration tests for the protocol version auto-negotiation between
    client and server.
    robert-s-ubi committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    b1b07ce View commit details
    Browse the repository at this point in the history
  3. Implement OCPP 2.0.1 RPC Framework Error Codes

    Implement sending OCPP 2.0.1 RPC Framework Error Codes with corrected
    spelling instead of the incorrect "legacy" OCPP 1.6 ones if connected
    with a newer protocol version.
    
    Implement sending CALLERROR responses with the newly added error codes
    "MessageTypeNotSupported" and "RpcFrameworkError" if parsing fails at
    RPC message level. Note that these error codes will be sent even if
    connected with OCPP 1.6, where they were not specified. But this is
    deemed better than providing no response at all like before.
    robert-s-ubi committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    feb51ab View commit details
    Browse the repository at this point in the history
  4. Add option to disable the transactionQueue

    ... and use it in the MultiProtocolJSONClient
    decroc-shell authored and robert-s-ubi committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    ff4618b View commit details
    Browse the repository at this point in the history
  5. Add an option for non-blocking OCPP-J connects

    Add a new JSONConfiguration parameter "CONNECT_NON_BLOCKING" of Boolean
    type, which, if true, causes the OCPP-J clients to make non-blocking
    connect() and disconnect() calls to the underlying WebSocket library.
    
    The completion of the connection or disconnection attempt will be
    communicated via the callbacks in the ClientEvents object passed to the
    OCPP library's connect() method. Note that a failed connection attempt
    (connection refused or timeout, if configured) yields a call to the
    connectionClosed() callback.
    robert-s-ubi committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    c552d62 View commit details
    Browse the repository at this point in the history
  6. Bump all versions and dependencies to 1.2[.0]

    Bump the overall library version to 1.2, and all subproject versions and
    dependencies to 1.2.0.
    robert-s-ubi committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    df71015 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

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

Commits on Aug 17, 2023

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

Commits on Aug 18, 2023

  1. Merge pull request #243 from mmauksch/issue231-StopTransaction-valida…

    …tioncrash
    
    validate via test and use suggested fix from #231
    TVolden authored Aug 18, 2023
    Configuration menu
    Copy the full SHA
    62353f4 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2023

  1. Fix missing array string length validation in OCPP 2.0.1 classes

    Add the missing array string length validation.
    robert-s-ubi committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    2e1fcd8 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2023

  1. Merge pull request #239 from ubitricity/master

    Add OCPP 2.0.1 and multi-protocol support
    TVolden authored Sep 30, 2023
    Configuration menu
    Copy the full SHA
    4859ecd View commit details
    Browse the repository at this point in the history
  2. Update README.md

    I was pointed out to me that the README needed an update now that we support version 2+.
    TVolden authored Sep 30, 2023
    Configuration menu
    Copy the full SHA
    76fa4fa View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2023

  1. Configuration menu
    Copy the full SHA
    9d08ab9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #245 from slachiewicz/gha-refresh

    Bump GH Actions versions and add Dependabot to monitor our dependencies.
    TVolden authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    65e0e16 View commit details
    Browse the repository at this point in the history
  3. Bump org.jacoco:jacoco-maven-plugin from 0.8.5 to 0.8.10

    Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.5 to 0.8.10.
    - [Release notes](https://github.com/jacoco/jacoco/releases)
    - [Commits](jacoco/jacoco@v0.8.5...v0.8.10)
    
    ---
    updated-dependencies:
    - dependency-name: org.jacoco:jacoco-maven-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    326182c View commit details
    Browse the repository at this point in the history
  4. Bump org.java-websocket:Java-WebSocket from 1.5.3 to 1.5.4

    Bumps [org.java-websocket:Java-WebSocket](https://github.com/TooTallNate/Java-WebSocket) from 1.5.3 to 1.5.4.
    - [Release notes](https://github.com/TooTallNate/Java-WebSocket/releases)
    - [Changelog](https://github.com/TooTallNate/Java-WebSocket/blob/master/CHANGELOG.md)
    - [Commits](TooTallNate/Java-WebSocket@v1.5.3...v1.5.4)
    
    ---
    updated-dependencies:
    - dependency-name: org.java-websocket:Java-WebSocket
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    d3d8890 View commit details
    Browse the repository at this point in the history
  5. Bump github/codeql-action from 1 to 2

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    8574a3d View commit details
    Browse the repository at this point in the history
  6. Bump org.codehaus.gmavenplus:gmavenplus-plugin from 1.13.1 to 3.0.2

    Bumps [org.codehaus.gmavenplus:gmavenplus-plugin](https://github.com/groovy/GMavenPlus) from 1.13.1 to 3.0.2.
    - [Release notes](https://github.com/groovy/GMavenPlus/releases)
    - [Commits](groovy/GMavenPlus@1.13.1...3.0.2)
    
    ---
    updated-dependencies:
    - dependency-name: org.codehaus.gmavenplus:gmavenplus-plugin
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    64f2190 View commit details
    Browse the repository at this point in the history
  7. Bump junit:junit from 4.13.1 to 4.13.2

    Bumps [junit:junit](https://github.com/junit-team/junit4) from 4.13.1 to 4.13.2.
    - [Release notes](https://github.com/junit-team/junit4/releases)
    - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.13.1.md)
    - [Commits](junit-team/junit4@r4.13.1...r4.13.2)
    
    ---
    updated-dependencies:
    - dependency-name: junit:junit
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    c2a0365 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #247 from ChargeTimeEU/dependabot/maven/org.java-w…

    …ebsocket-Java-WebSocket-1.5.4
    
    Bump org.java-websocket:Java-WebSocket from 1.5.3 to 1.5.4
    TVolden authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    ffc259b View commit details
    Browse the repository at this point in the history
  9. Merge pull request #250 from ChargeTimeEU/dependabot/maven/junit-juni…

    …t-4.13.2
    
    Bump junit:junit from 4.13.1 to 4.13.2
    TVolden authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    8025e3a View commit details
    Browse the repository at this point in the history
  10. Merge pull request #248 from ChargeTimeEU/dependabot/github_actions/g…

    …ithub/codeql-action-2
    
    Bump github/codeql-action from 1 to 2
    TVolden authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    52e7416 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #246 from ChargeTimeEU/dependabot/maven/org.jacoco…

    …-jacoco-maven-plugin-0.8.10
    
    Bump org.jacoco:jacoco-maven-plugin from 0.8.5 to 0.8.10
    TVolden authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    df8e549 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #249 from ChargeTimeEU/dependabot/maven/org.codeha…

    …us.gmavenplus-gmavenplus-plugin-3.0.2
    
    Bump org.codehaus.gmavenplus:gmavenplus-plugin from 1.13.1 to 3.0.2
    TVolden authored Oct 2, 2023
    Configuration menu
    Copy the full SHA
    3df7c2a View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

  1. Bump org.apache.maven.plugins:maven-javadoc-plugin from 2.9.1 to 3.6.0

    Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 2.9.1 to 3.6.0.
    - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
    - [Commits](apache/maven-javadoc-plugin@maven-javadoc-plugin-2.9.1...maven-javadoc-plugin-3.6.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 3, 2023
    Configuration menu
    Copy the full SHA
    c3af38f View commit details
    Browse the repository at this point in the history
  2. Bump com.google.code.findbugs:jsr305 from 3.0.1 to 3.0.2

    Bumps com.google.code.findbugs:jsr305 from 3.0.1 to 3.0.2.
    
    ---
    updated-dependencies:
    - dependency-name: com.google.code.findbugs:jsr305
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 3, 2023
    Configuration menu
    Copy the full SHA
    42fbf0e View commit details
    Browse the repository at this point in the history
  3. Bump ch.qos.logback:logback-classic from 1.2.0 to 1.4.11

    Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.2.0 to 1.4.11.
    - [Commits](qos-ch/logback@v_1.2.0...v_1.4.11)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-classic
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 3, 2023
    Configuration menu
    Copy the full SHA
    f46b8c4 View commit details
    Browse the repository at this point in the history
  4. Bump org.apache.maven.plugins:maven-compiler-plugin from 3.5.1 to 3.11.0

    Bumps [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.5.1 to 3.11.0.
    - [Release notes](https://github.com/apache/maven-compiler-plugin/releases)
    - [Commits](apache/maven-compiler-plugin@maven-compiler-plugin-3.5.1...maven-compiler-plugin-3.11.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-compiler-plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 3, 2023
    Configuration menu
    Copy the full SHA
    8700991 View commit details
    Browse the repository at this point in the history
  5. Bump org.slf4j:slf4j-api from 1.7.25 to 2.0.9

    Bumps org.slf4j:slf4j-api from 1.7.25 to 2.0.9.
    
    ---
    updated-dependencies:
    - dependency-name: org.slf4j:slf4j-api
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 3, 2023
    Configuration menu
    Copy the full SHA
    173a46c View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2023

  1. Merge pull request #252 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-javadoc-plugin-3.6.0
    
    Bump org.apache.maven.plugins:maven-javadoc-plugin from 2.9.1 to 3.6.0
    TVolden authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    4fa1928 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #253 from ChargeTimeEU/dependabot/maven/com.google…

    ….code.findbugs-jsr305-3.0.2
    
    Bump com.google.code.findbugs:jsr305 from 3.0.1 to 3.0.2
    TVolden authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    60e404f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #254 from ChargeTimeEU/dependabot/maven/ch.qos.log…

    …back-logback-classic-1.4.11
    
    Bump ch.qos.logback:logback-classic from 1.2.0 to 1.4.11
    TVolden authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    9740269 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #255 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-compiler-plugin-3.11.0
    
    Bump org.apache.maven.plugins:maven-compiler-plugin from 3.5.1 to 3.11.0
    TVolden authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    87540fc View commit details
    Browse the repository at this point in the history
  5. Merge pull request #256 from ChargeTimeEU/dependabot/maven/org.slf4j-…

    …slf4j-api-2.0.9
    
    Bump org.slf4j:slf4j-api from 1.7.25 to 2.0.9
    TVolden authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    5bcac1d View commit details
    Browse the repository at this point in the history
  6. Bump org.spockframework:spock-core from 1.0-groovy-2.4 to 2.3-groovy-4.0

    Bumps org.spockframework:spock-core from 1.0-groovy-2.4 to 2.3-groovy-4.0.
    
    ---
    updated-dependencies:
    - dependency-name: org.spockframework:spock-core
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    72dad07 View commit details
    Browse the repository at this point in the history
  7. Bump org.sonatype.plugins:nexus-staging-maven-plugin

    Bumps org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.8 to 1.6.13.
    
    ---
    updated-dependencies:
    - dependency-name: org.sonatype.plugins:nexus-staging-maven-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    20d6716 View commit details
    Browse the repository at this point in the history
  8. Bump ch.qos.logback:logback-core from 1.2.9 to 1.4.11

    Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.2.9 to 1.4.11.
    - [Commits](qos-ch/logback@v_1.2.9...v_1.4.11)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-core
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    547806a View commit details
    Browse the repository at this point in the history
  9. Bump org.hamcrest:hamcrest-core from 1.3 to 2.2

    Bumps [org.hamcrest:hamcrest-core](https://github.com/hamcrest/JavaHamcrest) from 1.3 to 2.2.
    - [Release notes](https://github.com/hamcrest/JavaHamcrest/releases)
    - [Changelog](https://github.com/hamcrest/JavaHamcrest/blob/master/CHANGES.md)
    - [Commits](hamcrest/JavaHamcrest@hamcrest-java-1.3...v2.2)
    
    ---
    updated-dependencies:
    - dependency-name: org.hamcrest:hamcrest-core
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    42deb1a View commit details
    Browse the repository at this point in the history
  10. Bump javax.xml.bind:jaxb-api from 2.1 to 2.3.1

    Bumps [javax.xml.bind:jaxb-api](https://github.com/javaee/jaxb-spec) from 2.1 to 2.3.1.
    - [Commits](https://github.com/javaee/jaxb-spec/commits/2.3.1)
    
    ---
    updated-dependencies:
    - dependency-name: javax.xml.bind:jaxb-api
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    1ba760b View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2023

  1. Merge pull request #258 from ChargeTimeEU/dependabot/maven/org.sonaty…

    …pe.plugins-nexus-staging-maven-plugin-1.6.13
    
    Bump org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.8 to 1.6.13
    TVolden authored Oct 13, 2023
    Configuration menu
    Copy the full SHA
    ac347dc View commit details
    Browse the repository at this point in the history
  2. Merge pull request #259 from ChargeTimeEU/dependabot/maven/ch.qos.log…

    …back-logback-core-1.4.11
    
    Bump ch.qos.logback:logback-core from 1.2.9 to 1.4.11
    TVolden authored Oct 13, 2023
    Configuration menu
    Copy the full SHA
    ebcfdae View commit details
    Browse the repository at this point in the history
  3. Bump com.google.code.gson:gson from 2.8.9 to 2.10.1

    Bumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.8.9 to 2.10.1.
    - [Release notes](https://github.com/google/gson/releases)
    - [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md)
    - [Commits](google/gson@gson-parent-2.8.9...gson-parent-2.10.1)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.code.gson:gson
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 13, 2023
    Configuration menu
    Copy the full SHA
    c9550c4 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2023

  1. Merge pull request #261 from ChargeTimeEU/dependabot/maven/javax.xml.…

    …bind-jaxb-api-2.3.1
    
    Bump javax.xml.bind:jaxb-api from 2.1 to 2.3.1
    TVolden authored Oct 15, 2023
    Configuration menu
    Copy the full SHA
    f8b6802 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #262 from ChargeTimeEU/dependabot/maven/com.google…

    ….code.gson-gson-2.10.1
    
    Bump com.google.code.gson:gson from 2.8.9 to 2.10.1
    TVolden authored Oct 15, 2023
    Configuration menu
    Copy the full SHA
    42e25aa View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. Merge pull request #260 from ChargeTimeEU/dependabot/maven/org.hamcre…

    …st-hamcrest-core-2.2
    
    Bump org.hamcrest:hamcrest-core from 1.3 to 2.2
    TVolden authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    7b4cfdc View commit details
    Browse the repository at this point in the history
  2. Merge pull request #257 from ChargeTimeEU/dependabot/maven/org.spockf…

    …ramework-spock-core-2.3-groovy-4.0
    
    Bump org.spockframework:spock-core from 1.0-groovy-2.4 to 2.3-groovy-4.0
    TVolden authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    c6cf180 View commit details
    Browse the repository at this point in the history
  3. Move Tests to Mockito4

    slachiewicz committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    622bdb6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4f12030 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0d014bc View commit details
    Browse the repository at this point in the history
  6. Bump org.apache.maven.plugins:maven-gpg-plugin from 1.5 to 3.1.0

    Bumps [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) from 1.5 to 3.1.0.
    - [Commits](apache/maven-gpg-plugin@maven-gpg-plugin-1.5...maven-gpg-plugin-3.1.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-gpg-plugin
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    6860d7c View commit details
    Browse the repository at this point in the history
  7. Bump org.apache.maven.plugins:maven-source-plugin from 2.2.1 to 3.3.0

    Bumps [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) from 2.2.1 to 3.3.0.
    - [Commits](apache/maven-source-plugin@maven-source-plugin-2.2.1...maven-source-plugin-3.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-source-plugin
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    1b30cbc View commit details
    Browse the repository at this point in the history
  8. Bump org.slf4j:jul-to-slf4j from 1.7.10 to 2.0.9

    Bumps org.slf4j:jul-to-slf4j from 1.7.10 to 2.0.9.
    
    ---
    updated-dependencies:
    - dependency-name: org.slf4j:jul-to-slf4j
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    5d7c319 View commit details
    Browse the repository at this point in the history
  9. Bump org.apache.maven.plugins:maven-surefire-plugin from 2.22.2 to 3.1.2

    Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 2.22.2 to 3.1.2.
    - [Release notes](https://github.com/apache/maven-surefire/releases)
    - [Commits](apache/maven-surefire@surefire-2.22.2...surefire-3.1.2)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-surefire-plugin
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    8019ac7 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #264 from slachiewicz/mockito4

    Move Tests to Mockito4
    TVolden authored Oct 16, 2023
    Configuration menu
    Copy the full SHA
    552436d View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2023

  1. Merge pull request #266 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-gpg-plugin-3.1.0
    
    Bump org.apache.maven.plugins:maven-gpg-plugin from 1.5 to 3.1.0
    TVolden authored Oct 17, 2023
    Configuration menu
    Copy the full SHA
    d492687 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #267 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-source-plugin-3.3.0
    
    Bump org.apache.maven.plugins:maven-source-plugin from 2.2.1 to 3.3.0
    TVolden authored Oct 17, 2023
    Configuration menu
    Copy the full SHA
    917c304 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #268 from ChargeTimeEU/dependabot/maven/org.slf4j-…

    …jul-to-slf4j-2.0.9
    
    Bump org.slf4j:jul-to-slf4j from 1.7.10 to 2.0.9
    TVolden authored Oct 17, 2023
    Configuration menu
    Copy the full SHA
    b14120a View commit details
    Browse the repository at this point in the history
  4. Merge pull request #269 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-surefire-plugin-3.1.2
    
    Bump org.apache.maven.plugins:maven-surefire-plugin from 2.22.2 to 3.1.2
    TVolden authored Oct 17, 2023
    Configuration menu
    Copy the full SHA
    f56fc87 View commit details
    Browse the repository at this point in the history
  5. Bump org.jacoco:jacoco-maven-plugin from 0.8.10 to 0.8.11

    Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.10 to 0.8.11.
    - [Release notes](https://github.com/jacoco/jacoco/releases)
    - [Commits](jacoco/jacoco@v0.8.10...v0.8.11)
    
    ---
    updated-dependencies:
    - dependency-name: org.jacoco:jacoco-maven-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 17, 2023
    Configuration menu
    Copy the full SHA
    3cf541c View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Merge pull request #271 from ChargeTimeEU/dependabot/maven/org.jacoco…

    …-jacoco-maven-plugin-0.8.11
    
    Bump org.jacoco:jacoco-maven-plugin from 0.8.10 to 0.8.11
    TVolden authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    b742417 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.1

    Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.1.2 to 3.2.1.
    - [Release notes](https://github.com/apache/maven-surefire/releases)
    - [Commits](apache/maven-surefire@surefire-3.1.2...surefire-3.2.1)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-surefire-plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 24, 2023
    Configuration menu
    Copy the full SHA
    e936bbe View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Merge pull request #272 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-surefire-plugin-3.2.1
    
    Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.1
    TVolden authored Oct 26, 2023
    Configuration menu
    Copy the full SHA
    875b7cf View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2

    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 7, 2023
    Configuration menu
    Copy the full SHA
    cd6fe53 View commit details
    Browse the repository at this point in the history
  2. Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.1 to 3.2.2

    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-surefire-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 7, 2023
    Configuration menu
    Copy the full SHA
    e0685b0 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Merge pull request #273 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-javadoc-plugin-3.6.2
    
    Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2
    TVolden authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    3912f91 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #274 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-surefire-plugin-3.2.2
    
    Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.1 to 3.2.2
    TVolden authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    e4b211a View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Bump ch.qos.logback:logback-classic from 1.4.11 to 1.4.13

    Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.4.11 to 1.4.13.
    - [Commits](qos-ch/logback@v_1.4.11...v_1.4.13)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-classic
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    1f9c549 View commit details
    Browse the repository at this point in the history
  2. Bump ch.qos.logback:logback-core in /ocpp-v2_0-test

    Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.4.11 to 1.4.12.
    - [Commits](qos-ch/logback@v_1.4.11...v_1.4.12)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-core
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    855543b View commit details
    Browse the repository at this point in the history
  3. Bump ch.qos.logback:logback-core in /ocpp-v1_6-test

    Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.4.11 to 1.4.12.
    - [Commits](qos-ch/logback@v_1.4.11...v_1.4.12)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-core
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    2e4d258 View commit details
    Browse the repository at this point in the history
  4. Bump ch.qos.logback:logback-core from 1.4.11 to 1.4.12 in /ocpp-v2-test

    Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.4.11 to 1.4.12.
    - [Commits](qos-ch/logback@v_1.4.11...v_1.4.12)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-core
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    5a9e147 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. Merge pull request #279 from ChargeTimeEU/dependabot/maven/ch.qos.log…

    …back-logback-classic-1.4.13
    
    Bump ch.qos.logback:logback-classic from 1.4.11 to 1.4.13
    TVolden authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    27d5240 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #281 from ChargeTimeEU/dependabot/maven/ocpp-v2_0-…

    …test/ch.qos.logback-logback-core-1.4.12
    
    Bump ch.qos.logback:logback-core from 1.4.11 to 1.4.12 in /ocpp-v2_0-test
    TVolden authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    be5bb24 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #282 from ChargeTimeEU/dependabot/maven/ocpp-v1_6-…

    …test/ch.qos.logback-logback-core-1.4.12
    
    Bump ch.qos.logback:logback-core from 1.4.11 to 1.4.12 in /ocpp-v1_6-test
    TVolden authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    4cb9b57 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #283 from ChargeTimeEU/dependabot/maven/ocpp-v2-te…

    …st/ch.qos.logback-logback-core-1.4.12
    
    Bump ch.qos.logback:logback-core from 1.4.11 to 1.4.12 in /ocpp-v2-test
    TVolden authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    1d6c141 View commit details
    Browse the repository at this point in the history
  5. Bump ch.qos.logback:logback-core from 1.4.11 to 1.4.13

    Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.4.11 to 1.4.13.
    - [Commits](qos-ch/logback@v_1.4.11...v_1.4.13)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-core
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    f63e917 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #280 from ChargeTimeEU/dependabot/maven/ch.qos.log…

    …back-logback-core-1.4.13
    
    Bump ch.qos.logback:logback-core from 1.4.11 to 1.4.13
    TVolden authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    8112c85 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.2 to 3.6.3

    Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.6.2 to 3.6.3.
    - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
    - [Commits](apache/maven-javadoc-plugin@maven-javadoc-plugin-3.6.2...maven-javadoc-plugin-3.6.3)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    68f55e6 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2023

  1. Bump ch.qos.logback:logback-core in /ocpp-v1_6-test

    Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.4.13 to 1.4.14.
    - [Commits](qos-ch/logback@v_1.4.13...v_1.4.14)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-core
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    cf6d479 View commit details
    Browse the repository at this point in the history
  2. Bump ch.qos.logback:logback-core from 1.4.13 to 1.4.14 in /ocpp-v2-test

    Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.4.13 to 1.4.14.
    - [Commits](qos-ch/logback@v_1.4.13...v_1.4.14)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-core
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    f344348 View commit details
    Browse the repository at this point in the history
  3. Bump ch.qos.logback:logback-core in /ocpp-v2_0-test

    Bumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.4.13 to 1.4.14.
    - [Commits](qos-ch/logback@v_1.4.13...v_1.4.14)
    
    ---
    updated-dependencies:
    - dependency-name: ch.qos.logback:logback-core
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    d292437 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Bump github/codeql-action from 2 to 3

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    0aef7cb View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.2 to 3.2.5

    Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.2.2 to 3.2.5.
    - [Release notes](https://github.com/apache/maven-surefire/releases)
    - [Commits](apache/maven-surefire@surefire-3.2.2...surefire-3.2.5)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-surefire-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    12712cb View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. Revert "GitHub Actions: Downgrade maven workflow to 11.0.16+8"

    java-version: '11' no longer delivers an incompatible JDK.
    
    This reverts commit 3bc476e.
    bantu committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    ac7638c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #306 from InnoCharge/revert-github-221

    Revert "GitHub Actions: Downgrade maven workflow to 11.0.16+8"
    TVolden authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    01ba01e View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Allow configuration of allowed password string length

    This change allows the configuration of the password length with entries in JSONConfiguration.
    Johannes Zangl committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    6060237 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Merge pull request #308 from Joo200/feat/configure_pw_length

    Allow configuration of allowed password string length
    TVolden authored Jan 31, 2024
    Configuration menu
    Copy the full SHA
    0293ce1 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. Merge pull request #296 from ChargeTimeEU/dependabot/maven/ocpp-v1_6-…

    …test/ch.qos.logback-logback-core-1.4.14
    
    Bump ch.qos.logback:logback-core from 1.4.13 to 1.4.14 in /ocpp-v1_6-test
    TVolden authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    88e0a34 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #294 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-javadoc-plugin-3.6.3
    
    Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.2 to 3.6.3
    TVolden authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    e9c68df View commit details
    Browse the repository at this point in the history
  3. Merge pull request #297 from ChargeTimeEU/dependabot/maven/ocpp-v2-te…

    …st/ch.qos.logback-logback-core-1.4.14
    
    Bump ch.qos.logback:logback-core from 1.4.13 to 1.4.14 in /ocpp-v2-test
    TVolden authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    3dce708 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #298 from ChargeTimeEU/dependabot/maven/ocpp-v2_0-…

    …test/ch.qos.logback-logback-core-1.4.14
    
    Bump ch.qos.logback:logback-core from 1.4.13 to 1.4.14 in /ocpp-v2_0-test
    TVolden authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    28b4598 View commit details
    Browse the repository at this point in the history
  5. Bump org.slf4j:jul-to-slf4j from 2.0.9 to 2.0.12

    Bumps org.slf4j:jul-to-slf4j from 2.0.9 to 2.0.12.
    
    ---
    updated-dependencies:
    - dependency-name: org.slf4j:jul-to-slf4j
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    355aee0 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #301 from ChargeTimeEU/dependabot/github_actions/g…

    …ithub/codeql-action-3
    
    Bump github/codeql-action from 2 to 3
    TVolden authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    2348f9f View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Merge pull request #242 from mmauksch/validateMeterValues

    add stricter validation for Metervalues as described in  #241
    TVolden authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    caf3bb6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #302 from ChargeTimeEU/dependabot/maven/org.apache…

    ….maven.plugins-maven-surefire-plugin-3.2.5
    
    Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.2 to 3.2.5
    TVolden authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    53937d9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #321 from ChargeTimeEU/dependabot/maven/org.slf4j-…

    …jul-to-slf4j-2.0.12
    
    Bump org.slf4j:jul-to-slf4j from 2.0.9 to 2.0.12
    TVolden authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    6c636a2 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2024

  1. Update gson due to reported vulnerability.

    rpseng committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    14d60bc View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Configuration menu
    Copy the full SHA
    953f50b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f7b92a3 View commit details
    Browse the repository at this point in the history
  3. Fix password decoding.

    rpseng committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    cf20205 View commit details
    Browse the repository at this point in the history
  4. More password fixes.

    rpseng committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    fb5d0fb View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2024

  1. Merge pull request #345 from rpseng/master

    Fix for the default password max length (as per the 1.6 spec) and other minor changes
    TVolden authored Apr 28, 2024
    Configuration menu
    Copy the full SHA
    088b78c View commit details
    Browse the repository at this point in the history