10000 Tags · vapor/console-kit · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: vapor/console-kit

Tags

4.15.2

Toggle 4.15.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix Android support (#207)

4.15.1

Toggle 4.15.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix Windows build break in Terminal. (#205)

4.15.0

Toggle 4.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Don't animate ActivityIndicator when outputting to a file (#202)

* Don't animate ActivityIndicator when outputting to a file

* Tweak comment

* Trigger CI

---------

Co-authored-by: Tim <0xtimc@gmail.com>

4.14.3

Toggle 4.14.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Make logged metadata a little more readable (#201)

* The usual package updates. Bump Swift min to 5.8

* Fix a couple Sendable warnings

* Make the "without quotes" part of metadata logging more true than before by descending recursively into dictionary and array metadata.

* Fix logging tests so that the logged line number is deterministic despite changes to the file.

* Fix typo, thanks @weissi!

4.14.2

Toggle 4.14.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Support compiling against Musl (#198)

In order to compile this package against Musl libc, we need to not
conflate `#if os(Linux)` with the ability to `import Glibc`. The
common pattern for this is to use the `#if canImport` directive.

This patch adds support for Musl by replacing the `Glibc` import
conditional alongside a new conditional import of `Musl`.

It also updates the `linux_readpassphrase` implementation to use the
appropriate `sigaction` handler field for Musl.

4.14.1

Toggle 4.14.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revert unnecessary command behavior change (#197)

Revert this unnecessary and ill-advised behavior change.

4.14.0

Toggle 4.14.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revise async commands support (#196)

* Bump NIO version requirement
* Deprecate unneeded and functionally incorrect APIs
* Simplify and correct sync command adapters.
* Remove excess imports, avoid concurrency warnings about fflush(), and a bit of code style

4.13.0

Toggle 4.13.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add merge function to command groups (#195)

* add merge function to command groups

* Fix compilation error

---------

Co-authored-by: Tim <0xtimc@gmail.com>

4.12.0

Toggle 4.12.0's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
Split ConsoleKit into two functional targets (#192)

* Split ConsoleKit into two functional targets - one for terminal interaction, one for command handling, plus an umbrella for compatibility. Also update README, and docs images. Clean up several bits of code.
* Apply some of the lessons learned from apple/swift-argument-parser#590, pretty much just for the hell of it. Deprecate `ConsoleErrror`.
* Readme cleanup
* Make the levenshteinDistance method noticeably more efficient.

---------

Co-authored-by: Mahdi Bahrami <github@mahdibm.com>
Co-authored-by: Tim Condon <0xTim@users.noreply.github.com>

4.11.0

Toggle 4.11.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add a public initializer to LogRecord (#194)

0