-
Notifications
You must be signed in to change notification settings - Fork 176
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
base: v2
Are you sure you want to change the base?
Bring v2 up-to-date #270
Commits on Jun 9, 2023
-
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."
Configuration menu - View commit details
-
Copy full SHA for e33b758 - Browse repository at this point
Copy the full SHA e33b758View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for b1b07ce - Browse repository at this point
Copy the full SHA b1b07ceView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for feb51ab - Browse repository at this point
Copy the full SHA feb51abView commit details -
Add option to disable the transactionQueue
... and use it in the MultiProtocolJSONClient
Configuration menu - View commit details
-
Copy full SHA for ff4618b - Browse repository at this point
Copy the full SHA ff4618bView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for c552d62 - Browse repository at this point
Copy the full SHA c552d62View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for df71015 - Browse repository at this point
Copy the full SHA df71015View commit details
Commits on Aug 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0ce7c80 - Browse repository at this point
Copy the full SHA 0ce7c80View commit details
Commits on Aug 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c3e438c - Browse repository at this point
Copy the full SHA c3e438cView commit details
Commits on Aug 18, 2023
-
Merge pull request #243 from mmauksch/issue231-StopTransaction-valida…
…tioncrash validate via test and use suggested fix from #231
Configuration menu - View commit details
-
Copy full SHA for 62353f4 - Browse repository at this point
Copy the full SHA 62353f4View commit details
Commits on Sep 29, 2023
-
Fix missing array string length validation in OCPP 2.0.1 classes
Add the missing array string length validation.
Configuration menu - View commit details
-
Copy full SHA for 2e1fcd8 - Browse repository at this point
Copy the full SHA 2e1fcd8View commit details
Commits on Sep 30, 2023
-
Merge pull request #239 from ubitricity/master
Add OCPP 2.0.1 and multi-protocol support
Configuration menu - View commit details
-
Copy full SHA for 4859ecd - Browse repository at this point
Copy the full SHA 4859ecdView commit details -
I was pointed out to me that the README needed an update now that we support version 2+.
Configuration menu - View commit details
-
Copy full SHA for 76fa4fa - Browse repository at this point
Copy the full SHA 76fa4faView commit details
Commits on Oct 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9d08ab9 - Browse repository at this point
Copy the full SHA 9d08ab9View commit details -
Merge pull request #245 from slachiewicz/gha-refresh
Bump GH Actions versions and add Dependabot to monitor our dependencies.
Configuration menu - View commit details
-
Copy full SHA for 65e0e16 - Browse repository at this point
Copy the full SHA 65e0e16View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 326182c - Browse repository at this point
Copy the full SHA 326182cView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for d3d8890 - Browse repository at this point
Copy the full SHA d3d8890View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 8574a3d - Browse repository at this point
Copy the full SHA 8574a3dView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 64f2190 - Browse repository at this point
Copy the full SHA 64f2190View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for c2a0365 - Browse repository at this point
Copy the full SHA c2a0365View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for ffc259b - Browse repository at this point
Copy the full SHA ffc259bView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 8025e3a - Browse repository at this point
Copy the full SHA 8025e3aView commit details -
Merge pull request #248 from ChargeTimeEU/dependabot/github_actions/g…
…ithub/codeql-action-2 Bump github/codeql-action from 1 to 2
Configuration menu - View commit details
-
Copy full SHA for 52e7416 - Browse repository at this point
Copy the full SHA 52e7416View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for df8e549 - Browse repository at this point
Copy the full SHA df8e549View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 3df7c2a - Browse repository at this point
Copy the full SHA 3df7c2aView commit details
Commits on Oct 3, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for c3af38f - Browse repository at this point
Copy the full SHA c3af38fView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 42fbf0e - Browse repository at this point
Copy the full SHA 42fbf0eView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for f46b8c4 - Browse repository at this point
Copy the full SHA f46b8c4View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 8700991 - Browse repository at this point
Copy the full SHA 8700991View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 173a46c - Browse repository at this point
Copy the full SHA 173a46cView commit details
Commits on Oct 5, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 4fa1928 - Browse repository at this point
Copy the full SHA 4fa1928View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 60e404f - Browse repository at this point
Copy the full SHA 60e404fView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 9740269 - Browse repository at this point
Copy the full SHA 9740269View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 87540fc - Browse repository at this point
Copy the full SHA 87540fcView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 5bcac1d - Browse repository at this point
Copy the full SHA 5bcac1dView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 72dad07 - Browse repository at this point
Copy the full SHA 72dad07View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 20d6716 - Browse repository at this point
Copy the full SHA 20d6716View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 547806a - Browse repository at this point
Copy the full SHA 547806aView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 42deb1a - Browse repository at this point
Copy the full SHA 42deb1aView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 1ba760b - Browse repository at this point
Copy the full SHA 1ba760bView commit details
Commits on Oct 13, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for ac347dc - Browse repository at this point
Copy the full SHA ac347dcView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for ebcfdae - Browse repository at this point
Copy the full SHA ebcfdaeView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for c9550c4 - Browse repository at this point
Copy the full SHA c9550c4View commit details
Commits on Oct 15, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for f8b6802 - Browse repository at this point
Copy the full SHA f8b6802View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 42e25aa - Browse repository at this point
Copy the full SHA 42e25aaView commit details
Commits on Oct 16, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 7b4cfdc - Browse repository at this point
Copy the full SHA 7b4cfdcView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for c6cf180 - Browse repository at this point
Copy the full SHA c6cf180View commit details -
Configuration menu - View commit details
-
Copy full SHA for 622bdb6 - Browse repository at this point
Copy the full SHA 622bdb6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f12030 - Browse repository at this point
Copy the full SHA 4f12030View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d014bc - Browse repository at this point
Copy the full SHA 0d014bcView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 6860d7c - Browse repository at this point
Copy the full SHA 6860d7cView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 1b30cbc - Browse repository at this point
Copy the full SHA 1b30cbcView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 5d7c319 - Browse repository at this point
Copy the full SHA 5d7c319View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 8019ac7 - Browse repository at this point
Copy the full SHA 8019ac7View commit details -
Merge pull request #264 from slachiewicz/mockito4
Move Tests to Mockito4
Configuration menu - View commit details
-
Copy full SHA for 552436d - Browse repository at this point
Copy the full SHA 552436dView commit details
Commits on Oct 17, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for d492687 - Browse repository at this point
Copy the full SHA d492687View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 917c304 - Browse repository at this point
Copy the full SHA 917c304View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for b14120a - Browse repository at this point
Copy the full SHA b14120aView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for f56fc87 - Browse repository at this point
Copy the full SHA f56fc87View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 3cf541c - Browse repository at this point
Copy the full SHA 3cf541cView commit details
Commits on Oct 19, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for b742417 - Browse repository at this point
Copy the full SHA b742417View commit details
Commits on Oct 24, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for e936bbe - Browse repository at this point
Copy the full SHA e936bbeView commit details
Commits on Oct 26, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 875b7cf - Browse repository at this point
Copy the full SHA 875b7cfView commit details
Commits on Nov 7, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for cd6fe53 - Browse repository at this point
Copy the full SHA cd6fe53View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for e0685b0 - Browse repository at this point
Copy the full SHA e0685b0View commit details
Commits on Nov 8, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 3912f91 - Browse repository at this point
Copy the full SHA 3912f91View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for e4b211a - Browse repository at this point
Copy the full SHA e4b211aView commit details
Commits on Nov 29, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 1f9c549 - Browse repository at this point
Copy the full SHA 1f9c549View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 855543b - Browse repository at this point
Copy the full SHA 855543bView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 2e4d258 - Browse repository at this point
Copy the full SHA 2e4d258View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 5a9e147 - Browse repository at this point
Copy the full SHA 5a9e147View commit details
Commits on Nov 30, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 27d5240 - Browse repository at this point
Copy the full SHA 27d5240View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for be5bb24 - Browse repository at this point
Copy the full SHA be5bb24View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 4cb9b57 - Browse repository at this point
Copy the full SHA 4cb9b57View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 1d6c141 - Browse repository at this point
Copy the full SHA 1d6c141View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for f63e917 - Browse repository at this point
Copy the full SHA f63e917View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 8112c85 - Browse repository at this point
Copy the full SHA 8112c85View commit details
Commits on Dec 4, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 68f55e6 - Browse repository at this point
Copy the full SHA 68f55e6View commit details
Commits on Dec 8, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for cf6d479 - Browse repository at this point
Copy the full SHA cf6d479View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for f344348 - Browse repository at this point
Copy the full SHA f344348View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for d292437 - Browse repository at this point
Copy the full SHA d292437View commit details
Commits on Dec 14, 2023
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 0aef7cb - Browse repository at this point
Copy the full SHA 0aef7cbView commit details
Commits on Jan 10, 2024
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 12712cb - Browse repository at this point
Copy the full SHA 12712cbView commit details
Commits on Jan 23, 2024
-
Revert "GitHub Actions: Downgrade maven workflow to 11.0.16+8"
java-version: '11' no longer delivers an incompatible JDK. This reverts commit 3bc476e.
Configuration menu - View commit details
-
Copy full SHA for ac7638c - Browse repository at this point
Copy the full SHA ac7638cView commit details -
Merge pull request #306 from InnoCharge/revert-github-221
Revert "GitHub Actions: Downgrade maven workflow to 11.0.16+8"
Configuration menu - View commit details
-
Copy full SHA for 01ba01e - Browse repository at this point
Copy the full SHA 01ba01eView commit details
Commits on Jan 25, 2024
-
Allow configuration of allowed password string length
This change allows the configuration of the password length with entries in JSONConfiguration.
Johannes Zangl committedJan 25, 2024 Configuration menu - View commit details
-
Copy full SHA for 6060237 - Browse repository at this point
Copy the full SHA 6060237View commit details
Commits on Jan 31, 2024
-
Merge pull request #308 from Joo200/feat/configure_pw_length
Allow configuration of allowed password string length
Configuration menu - View commit details
-
Copy full SHA for 0293ce1 - Browse repository at this point
Copy the full SHA 0293ce1View commit details
Commits on Feb 22, 2024
-
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
Configuration menu - View commit details
-
Copy full SHA for 88e0a34 - Browse repository at this point
Copy the full SHA 88e0a34View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for e9c68df - Browse repository at this point
Copy the full SHA e9c68dfView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 3dce708 - Browse repository at this point
Copy the full SHA 3dce708View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 28b4598 - Browse repository at this point
Copy the full SHA 28b4598View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 355aee0 - Browse repository at this point
Copy the full SHA 355aee0View commit details -
Merge pull request #301 from ChargeTimeEU/dependabot/github_actions/g…
…ithub/codeql-action-3 Bump github/codeql-action from 2 to 3
Configuration menu - View commit details
-
Copy full SHA for 2348f9f - Browse repository at this point
Copy the full SHA 2348f9fView commit details
Commits on Mar 4, 2024
-
Merge pull request #242 from mmauksch/validateMeterValues
add stricter validation for Metervalues as described in #241
Configuration menu - View commit details
-
Copy full SHA for caf3bb6 - Browse repository at this point
Copy the full SHA caf3bb6View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 53937d9 - Browse repository at this point
Copy the full SHA 53937d9View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 6c636a2 - Browse repository at this point
Copy the full SHA 6c636a2View commit details
Commits on Apr 20, 2024
-
Update gson due to reported vulnerability.
rpseng committedApr 20, 2024 Configuration menu - View commit details
-
Copy full SHA for 14d60bc - Browse repository at this point
Copy the full SHA 14d60bcView commit details
Commits on Apr 24, 2024
-
A single instace, otherwise a static get() method makes no sense.
rpseng committedApr 24, 2024 Configuration menu - View commit details
-
Copy full SHA for 953f50b - Browse repository at this point
Copy the full SHA 953f50bView commit details -
Recommended by 1.6 spec is a 20 byte (40 chars) key.
rpseng committedApr 24, 2024 Configuration menu - View commit details
-
Copy full SHA for f7b92a3 - Browse repository at this point
Copy the full SHA f7b92a3View commit details -
rpseng committed
Apr 24, 2024 Configuration menu - View commit details
-
Copy full SHA for cf20205 - Browse repository at this point
Copy the full SHA cf20205View commit details -
rpseng committed
Apr 24, 2024 Configuration menu - View commit details
-
Copy full SHA for fb5d0fb - Browse repository at this point
Copy the full SHA fb5d0fbView commit details
Commits on Apr 28, 2024
-
Merge pull request #345 from rpseng/master
Fix for the default password max length (as per the 1.6 spec) and other minor changes
Configuration menu - View commit details
-
Copy full SHA for 088b78c - Browse repository at this point
Copy the full SHA 088b78cView commit details