Skip to content

Latest commit

 

History

History
183 lines (158 loc) · 9.37 KB

CHANGELOG.md

File metadata and controls

183 lines (158 loc) · 9.37 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

Added

  • nothing yet

Changed

  • Clean up TODO and deprecation info. #100
  • Separate topo file parser #103

Fixed

  • Remove use of 0.0.0.0 and "::". #103

0.2.0 - 2024-06-24

Added

  • SCMP echo responder #78
  • Maven Java executor #80
  • Dev environment setup hints doc #82
  • Added SCION_GETTING_STARTED.md #59

Changed

  • Some API changes: #67
    • Rename DatagramChannel to ScionDatagramChannel
    • Rename DatagramSocket to ScionDatagramSopcketl and move it to main package
    • Rename ScionSocketOptions starting with SN_ to SCION_
  • SCMP API changes. #71
  • BREAKING CHANGE: DatagramChannel.receive() returns a subclass of InetSocketAddress #86
  • Internal cleanup. #88
  • Deprecated getPaths(InetSocketAddress) because it wasn't clear that it did a SCION lookup. #89
  • BREAKING CHANGE: ScionDatagramChannel.send(buffer, path) returns int. #92
  • BREAKING CHANGE: Path metadata has been moved to PathMetadata. #93
  • BREAKING CHANGE: receive() returns ScionSocketAddress; ResponseAddress and ResponsePath are removed from from public API. #94
  • BREAKING CHANGE: removed RequestPath and ScionAddress from public API. #95
  • Better error message for SCMP echo in local AS #96

Fixed

  • Fixed locking and resizing of buffers. #68
  • Fixed unhelpful error & log message when with topo file has wrong permissions. #74
  • Topology file parser support for new "local" attribute. #72
  • Fixed path lookup error when destination isn't reachable. #70
  • Fixed internal raw path parsing and IP parsing. #77
  • Improved bootstrap logging #83
  • Fixed SCMP meta data reporting wrong remote port. #79

0.1.1 - 2024-05-10

Fixed

  • Fixed spurious CI failures, esp. Windows. #61
  • Fix SCM references in pom file + clean up. #60
  • DNS lookup caused by InetAddress.getByName(). #63
  • DNS lookup caused by InetAddress.getHostName(). #64
  • JPAN renaming cleanup. #65
  • Clean up PingPong framework + spurious CI failures. #62
  • Missing tests for "decimal:decimal" style ISD/AS codes. #66

0.1.0 - 2024-04-29

Added

  • Code coverage. #11
  • Global JUnit callback for initial setup. THis allows setting global properties before centrally before running any tests. #38
  • Support for /etc/scion/hosts and for OS search domains (e.g. /etc/resolv.conf). #40
  • CI builds for Windows and MacOS. #41
  • Added support communicating with a dispatcher-endhost in the local AS, see DatagramChannel.configureRemoteDispatcher. #46
  • Support for comments, multiple spaces and tabs in /etc/scion/hosts. #47
  • Added helper methods for ScmpChannel and ScionUtil.toStringPath(). #48,
  • Demo cleanup an new ScmpShowpathsDemo. #49
  • Channel demo cleanup. #52
  • Address/ISD/AS caching. #54
  • DatagramSocket #31
  • setOverrideSourceAddress() #58

Changed

  • BREAKING CHANGE: Changed maven artifactId to "client" #9
  • BREAKING CHANGE: SCMP refactoring, renamed several SCMP related classes. #14, #15, #17, #19, #20
  • BREAKING CHANGE:ScionService instances created via Scion.newXYZ will not be considered by Scion.defaultService(). Also, DatagramChannel.getService() does not create a service if none exists. #18
  • Doc cleanup #22
  • BREAKING CHANGE: getCurrentPath() renamed to getConnectionPath() #30
  • Cleaned up MultiMap utility class #34
  • Cleaned up DatagramChannel: Fixed connect()/disconnect(), improved concurrency, fixed buffer resizing wrt MTU, general clean up. #35
  • BREAKING CHANGE: Renamed project to jpan. #43, #45
  • BREAKING CHANGE: Path now returns InetAddress instead of byte[] #44
  • BREAKING CHANGE: Changed Path API: destination->remote and source->local #55

Fixed

  • Fixed: SCMP problem when pinging local AS. #16,
  • Fixed SCMP timeout and error handling (IOExceptions + SCMP errors). #13
  • CI (only) failures on JDK 8. #10
  • Sporadic CI (only) failures. #12
  • Small fixes for 0.1.0 release. #32
  • Fix NPE after 2nd send() in unconnected channel + cleanup. #33
  • Fixed traffic class not set. #36
  • Fixed handling of channel options. #37
  • Merged SCION_DAEMON_HOST and SCION_DAEMON_PORT into a single SCION_DAEMON property. #39
  • Some cleanup on to hosts file parser. #42
  • Added proper error when ports 30255 or 31000 are in use when running tests #50
  • Fix Unsupported platform: protoc-3.11.4-osx-aarch_64.exe. #53
  • Fixed spurious CI failure and SimpleCache packet name. #55

Removed

  • Removed all code related to DatagramSockets #21

0.1.0-ALPHA - 2024-02-01

Added

  • DatagramSocket #7
  • Path, RequestPath, ResponsePath #7
  • Scion, ScionService #7
  • ScmpChannel for SCMP #7

Changed

  • Nothing

Fixed

  • Nothing

Removed

  • Nothing