Daniel Gräfe

Results 18 issues of Daniel Gräfe

As far as I can tell, Swift Crypto requires macOS 10.15 / iOS 13 on Apple platforms, presumably due to the dependency on CryptoKit. Would it be possible to use...

See https://github.com/grpc/grpc-swift/blob/master/Tests/SwiftGRPCTests/ClientTestExample.swift and https://github.com/grpc/grpc-swift/blob/master/Tests/SwiftGRPCTests/ServerTestExample.swift. The point of these two files is to illustrate how a library user could use the test stubs optionally generated by our `protoc` plugin to test...

enhancement

Many models contain "write-once" fields that will only ever be set at creation time (e.g. the creation timestamp), but shall not modified ever after. Will Fluent 4 support declaring such...

enhancement

I am implementing my own serialization methods for a few objects, e.g. `NSPredicate`: extension NSPredicate: Value { @nonobjc public static let declaredDatatype = Blob.declaredDatatype public static func fromDatatypeValue(_ datatypeValue: Blob)...

enhancement

Due to permission issues, I need to run a few of my scripts as `www-data` (e.g. via `sudo -E -u www-data php artisan ...`). This currently triggers an error message,...

bug confirmed

It appears that the FPM images use `php-fpm` as their entry point, indicating that they only launch the FPM service but do not support serving HTTP requests directly. Is that...

help wanted
enhancement requested

Happy user of the v2 images trying to migrate to v3 here. With v2, I built two custom PHP extensions using the following Dockerfile snippet: ```Dockerfile FROM thecodingmachine/php:7.3-v2-apache as ext_builder...

information

I noticed that my own code is actually only depending on several auxiliary modules of the Vapor family, but not the main `Vapor` module itself. In the spirit of having...

At the moment we are implementing `flatten ourself in https://github.com/vapor/core/blob/3b72f2cc3fb21d505fbe97215418951a8e4a2871/Sources/Async/Future%2BFlatten.swift#L42. We could investigate whether we could replace that with an almost-trivial call to https://github.com/apple/swift-nio/blob/82a6e4d8215660005127547106aa8cf10817cb78/Sources/NIO/EventLoopFuture.swift#L915.

enhancement