Jonas Finnemann Jensen

Results 199 issues of Jonas Finnemann Jensen

Throws in: https://github.com/dart-lang/shelf/blob/fbc691a595f16d983d6e44efc9b5efbc9003645c/lib/src/request.dart#L178-L184 Because `_computeUrl` returns a URI with a relative path in: https://github.com/dart-lang/shelf/blob/fbc691a595f16d983d6e44efc9b5efbc9003645c/lib/src/request.dart#L318-L320 From https://tools.ietf.org/html/rfc3986#section-3.3 > In addition, a URI reference (Section 4.1) may be a relative-path reference, in...

type-bug

We could use the same pattern as [UrlPattern](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API). This would be a breaking change... It's possible we could make a deprecated API or something else for use the old syntax.

enhancement
pkg:shelf_router

It seems like a good idea to support timeout of commands like `get` and `set` and break the connection, if the timeout is violated.. This could be handled further down...

enhancement

Working with [`Sink`](https://api.dart.dev/stable/2.18.1/dart-core/Sink-class.html) it would be nice to have utility factory constructors as follows: ```dart abstract class Sink { /// Create a [Sink] where data added invokes [accumulate]. /// ///...

area-library
library-core
type-enhancement

On pub.dev we probably want some sanity limits on number of files generated and total size generated. So maybe there is options like: * `--max-total-size 2000000000` * `--max-file-count 10000`

enhancement
P2

Adding: * `Notifier` with `wait` that'll be resolved when `notify()` is called. This is a primitive for signaling. * `Stream.parallelForEach(maxParallel, eachFn, onError)` for calling `eachFn` in parallel for each item...

If documentation pages are too large it gives a poor user experience. Maybe, we should have an option to limit size of code snippets / implementation / descriptions ? Perhaps...

type-enhancement
P3

We need an environment variable to indicate that TLS have already been terminated by a load balancer...

good first issue
lang:go

Context: https://dart.dev/tools/pub/automated-publishing I did this with some hacks in dart-neats: https://github.com/google/dart-neats/blob/master/.github/workflows/publish.yml It assumes packages are in a folder with the package name, and relies on a _tag pattern_ like `-v{{version}}`....

Documentation on [coveralls-github-action](https://github.com/marketplace/actions/coveralls-github-action) suggests that it authenticates with `GITHUB_TOKEN`. ![image](https://user-images.githubusercontent.com/149732/222163575-b766f143-4d7e-41bc-a943-2a000f1a54b8.png) Is this safe? If coveralls accidentally leaks this token it could be used for unpleasant things. It's even unclear to...

github-action
integrations