-
Notifications
You must be signed in to change notification settings - Fork 66
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
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.