Skip to content

Created new changelog file #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

Merged
merged 2 commits into from
Jul 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions CHANGELOG-0.1.X.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# 0.1.5
> Published 12 Feb 2019

- `AbstractOutput` is implementable, simplified API
- Fixed ISO-8859-1 and other character encodings on native
- Fixed segfault caused by a wrong character encoding specified
- Introduced initial unsigned types support (#28)
- Introduced initial POSIX synchronous support (#34):
- added `Input(fileDescriptor)` and `Output(fileDescriptor)`
- added `read`, `write`, `fread`, `fwrite`, `send`, `receive`, `sendto`, `recvfrom`
with `IoBuffer` parameter
- Introduced initial `PosixException` support
- Strengthened internal API restrictions
- Introduced `Input.copyTo(Output)` utility function
- Introduced multiplatform `IOException`
- Introduced `reverseByteOrder` for primitive numeric types
- Fixed several memory management bugs
- Eliminated accidentally used JDK8+ API (#35)
- Fixed loosing trailing bytes in byte channel on native and JS (
[ktor/787](https://github.com/ktorio/ktor/issues/787),
[ktor/920](https://github.com/ktorio/ktor/issues/920)
)
- Improved `readDirect`/`writeDirect` functions on platforms.
- Fixed non-local returns from `use {}` block.
- Kotlin 1.3.21

# 0.1.4
> Published 23 Jan 2019

- Fixed byteOrder switch for packets (#30)
- Upgrade to Gradle 4.10 with new metadata
- Kotlin 1.3.20

# 0.1.3
> Published 25 Dec 2018

- Fixed wrong pom dependencies

# 0.1.2
> Published 24 Dec 2018

- Fixed byte channel constructor from an array
- Fixed endGap related errors (#23)
- Introduced suspending consumeEachRemaining (#22)
- Kotlin 1.3.11, kotlinx.coroutines 1.1.0
- Fixed await returned wrong result in sequential implementation (#24)
- `await` and `awaitAtLeast` contract clarified (#24)
- Fixed blocking I/O adapter to use coroutine's event loop

# 0.1.1
> Published 4 Dec 2018

- Fixed ability to implement DefaultPool in common
- Fixed error "Unable to stop reading in state Writing"
- Fixed tryPeek implementation to not consume byte
- Introduced peekCharUtf8
- Added a cpointer constructor to native IoBuffer so that IoBuffer can be used to read AND write on a memory chunk
- Made ByteChannel pass original cause from the owner job
- Fixed reading UTF-8 lines
- Fixed empty chunk view creation
- Utility functions takeWhile* improvements

# 0.1.0
> Published 15 Nov 2018
Initial release, maven central
77 changes: 18 additions & 59 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,65 +1,24 @@
# 0.1.5
> Published 12 Feb 2019
# CHANGELOG

- `AbstractOutput` is implementable, simplified API
- Fixed ISO-8859-1 and other character encodings on native
- Fixed segfault caused by a wrong character encoding specified
- Introduced initial unsigned types support (#28)
- Introduced initial POSIX synchronous support (#34):
- added `Input(fileDescriptor)` and `Output(fileDescriptor)`
- added `read`, `write`, `fread`, `fwrite`, `send`, `receive`, `sendto`, `recvfrom`
with `IoBuffer` parameter
- Introduced initial `PosixException` support
- Strengthened internal API restrictions
- Introduced `Input.copyTo(Output)` utility function
- Introduced multiplatform `IOException`
- Introduced `reverseByteOrder` for primitive numeric types
- Fixed several memory management bugs
- Eliminated accidentally used JDK8+ API (#35)
- Fixed loosing trailing bytes in byte channel on native and JS (
[ktor/787](https://github.com/ktorio/ktor/issues/787),
[ktor/920](https://github.com/ktorio/ktor/issues/920)
)
- Improved `readDirect`/`writeDirect` functions on platforms.
- Fixed non-local returns from `use {}` block.
- Kotlin 1.3.21
## 0.2.1
> Published 11 Jul 2023

The release includes a bug fix solving the issue with dependency management.

# 0.1.4
> Published 23 Jan 2019
### Bugfixes
- Fixed the dependency type for `bytesting` module,
it is no longer required to explicitly specify it when using `kotlinx-io-core`
([#169](https://github.com/Kotlin/kotlinx-io/issues/169)).

- Fixed byteOrder switch for packets (#30)
- Upgrade to Gradle 4.10 with new metadata
- Kotlin 1.3.20
## 0.2.0
> Published 3 Jul 2023

# 0.1.3
> Published 25 Dec 2018
Initial release of the new `kotlinx-io` version implemented based on `Okio` library.

- Fixed wrong pom dependencies
### Features
- A trimmed-down and reworked version of the core Okio API
([#132](https://github.com/Kotlin/kotlinx-io/issues/132), [#137](https://github.com/Kotlin/kotlinx-io/issues/137))
- ByteString implementation ([#133](https://github.com/Kotlin/kotlinx-io/issues/133))

# 0.1.2
> Published 24 Dec 2018

- Fixed byte channel constructor from an array
- Fixed endGap related errors (#23)
- Introduced suspending consumeEachRemaining (#22)
- Kotlin 1.3.11, kotlinx.coroutines 1.1.0
- Fixed await returned wrong result in sequential implementation (#24)
- `await` and `awaitAtLeast` contract clarified (#24)
- Fixed blocking I/O adapter to use coroutine's event loop

# 0.1.1
> Published 4 Dec 2018

- Fixed ability to implement DefaultPool in common
- Fixed error "Unable to stop reading in state Writing"
- Fixed tryPeek implementation to not consume byte
- Introduced peekCharUtf8
- Added a cpointer constructor to native IoBuffer so that IoBuffer can be used to read AND write on a memory chunk
- Made ByteChannel pass original cause from the owner job
- Fixed reading UTF-8 lines
- Fixed empty chunk view creation
- Utility functions takeWhile* improvements

# 0.1.0
> Published 15 Nov 2018
Initial release, maven central
---
Changelog for previous versions may be found in [CHANGELOG-0.1.X.md](CHANGELOG-0.1.X.md)