Skip to content
This repository has been archived by the owner on Mar 26, 2023. It is now read-only.

[159] Issue #159 - May 7, 2020 #509

Closed
BasThomas opened this issue Apr 23, 2020 · 39 comments
Closed

[159] Issue #159 - May 7, 2020 #509

BasThomas opened this issue Apr 23, 2020 · 39 comments
Assignees

Comments

@BasThomas
Copy link
Contributor

To contribute to this issue, simply leave a comment here. Please also review our contributing guidelines.

The current draft for this issue in _drafts/. If you want to contribute directly, feel free to open a pull request.

@fassko
Copy link
Member

fassko commented Apr 24, 2020

Swift Package Installation

It would be desirable to simplify the use of executables that have been compiled with swift build and installing the binary, payloads and other requirements into either a global location usable by all users on the system, or make it available only to the current user.

This would simplify the distribution and usage of Swift-authored tools, as instructions for installing the software would be as simple as directing the user to type swift tool install.

Other ecosystems like Node and .NET have made it easy for consumers of software to grab software and make it accessible with a single command. In the Node/NPM world this is achieved with the npm install tool and in .NET with the dotnet tool install command.

https://forums.swift.org/t/swift-package-installation/35728

@fassko
Copy link
Member

fassko commented Apr 24, 2020

Subclassing non-open / final classes in unit tests with @testable

https://forums.swift.org/t/subclassing-non-open-final-classes-in-unit-tests-with-testable/35666

@fassko
Copy link
Member

fassko commented Apr 24, 2020

Are you using LLDB on Linux and if not why?

https://forums.swift.org/t/are-you-using-lldb-on-linux-and-if-not-why/35672

@fassko
Copy link
Member

fassko commented Apr 24, 2020

71: “Polymorphic interfaces” with special guest Dave Abrahams

https://swiftbysundell.com/podcast/71/

@fassko
Copy link
Member

fassko commented Apr 26, 2020

Newtype for Swift

https://forums.swift.org/t/newtype-for-swift/35859

@fassko
Copy link
Member

fassko commented Apr 26, 2020

Add default parameter values to DecodingContainer decode overloads

https://forums.swift.org/t/add-default-parameter-values-to-decodingcontainer-decode-overloads/35856

@fassko
Copy link
Member

fassko commented Apr 27, 2020

Extensible Enumerations for Non-Resilient Libraries

https://forums.swift.org/t/extensible-enumerations-for-non-resilient-libraries/35900

@MaxDesiatov
Copy link
Contributor

MaxDesiatov commented Apr 27, 2020

An update on WebAssembly support:

An update on the current status: if you don't care about binary size, it's more or less usable right now as in this demo. Swift can't run dead code elimination on unused protocol conformances yet, so the minimum produced binary size is ~10M raw and ~1.5M when optimized and compressed with 3rd-party tools, as tracked in swiftwasm/swift#7. Building with SwiftPM works, as long as you don't use Foundation or Dispatch due to a few technical reasons (swiftwasm/swift#592, swiftwasm/swift#658, swiftwasm/swift#647), but I hope that a minimalistic bare-bones subset of Foundation can alleviate that pain in the meantime.

https://forums.swift.org/t/wasm-support/16087/26

@fassko
Copy link
Member

fassko commented Apr 28, 2020

Breaking changes in Swift 6

https://forums.swift.org/t/breaking-changes-in-swift-6/35928

@fassko
Copy link
Member

fassko commented Apr 29, 2020

SourceKit-LSP file status UX

https://forums.swift.org/t/sourcekit-lsp-file-status-ux/35947

@fassko
Copy link
Member

fassko commented Apr 29, 2020

https://twitter.com/c10um0/status/1255537044853362688

@BasThomas
Copy link
Contributor Author

https://twitter.com/slava_pestov/status/1255555177538519046?s=20

@fassko
Copy link
Member

fassko commented Apr 29, 2020

https://twitter.com/_siejkowski/status/1254416642173554693?s=21

@BasThomas
Copy link
Contributor Author

https://twitter.com/k__mahar/status/1255601788067119104

Our SSWG proposal for the MongoDB Swift driver is in review from today through May 13. Would love for you to read it and share your feedback! https://forums.swift.org/t/feedback-mongodb-swift-driver/35989

@fassko
Copy link
Member

fassko commented Apr 30, 2020

[Feedback] MongoDB Swift driver

https://forums.swift.org/t/feedback-mongodb-swift-driver/35989

@fassko
Copy link
Member

fassko commented Apr 30, 2020

Announcing Swift 5.2.3 for Linux

https://forums.swift.org/t/swift-5-2-3-for-linux/35991

@BasThomas
Copy link
Contributor Author

https://twitter.com/steipete/status/1255751675853377537

@fassko
Copy link
Member

fassko commented Apr 30, 2020

https://twitter.com/twostraws/status/1255875829541875714

@fassko
Copy link
Member

fassko commented Apr 30, 2020

[Pitch] Make Never the bottom type

https://forums.swift.org/t/pitch-make-never-the-bottom-type/36013

@fassko
Copy link
Member

fassko commented May 1, 2020

https://twitter.com/johannesweiss/status/1256272880364589059

@fassko
Copy link
Member

fassko commented May 2, 2020

Fix inconsistency for Sequence.max

Pitch: I'd like to propose that we modify the behavior of the Sequence.max algorithms to match the free max(...) functions in cases where there is more than one "maximum" element

https://forums.swift.org/t/fix-inconsistency-for-sequence-max/36063

@fassko
Copy link
Member

fassko commented May 2, 2020

Add subscript with unchecked index to Array

https://forums.swift.org/t/add-subscript-with-unchecked-index-to-array/36035/22

@fassko
Copy link
Member

fassko commented May 2, 2020

Manually select overloaded functions

I would like to pitch an idea of allowing the programmer to optionally inform the compiler of a function parameter's type at call site, instead of always having the compiler infer the type.

Motivation

Overloaded functions are common in Swift. All of them rely on the compiler to infer at call site. Some times, there is no ambiguity between overloaded functions, and the compiler can always reliably infer which function is the correct one.

https://forums.swift.org/t/manually-select-overloaded-functions/36031/3

@BasThomas
Copy link
Contributor Author

282 returned for revision

@fassko
Copy link
Member

fassko commented May 2, 2020

https://twitter.com/tkremenek/status/1256039832754634753 finally?

@fassko
Copy link
Member

fassko commented May 3, 2020

Swift Evolution Proposal: Concise ASCII Usage

https://forums.swift.org/t/swift-evolution-proposal-concise-ascii-usage/36091

@fassko
Copy link
Member

fassko commented May 4, 2020

https://forums.swift.org/t/convenience-member-on-result-when-when-success-is-void/36134

@fassko
Copy link
Member

fassko commented May 5, 2020

@fassko
Copy link
Member

fassko commented May 5, 2020

https://twitter.com/dgregor79/status/1257421359870808069

@fassko
Copy link
Member

fassko commented May 5, 2020

Announcing our Google Summer of Code 2020 students

https://forums.swift.org/t/announcing-our-google-summer-of-code-2020-students/36147

@fassko
Copy link
Member

fassko commented May 5, 2020

SE-0283: Tuples conform to Equatable, Comparable, and Hashable

https://forums.swift.org/t/se-0283-tuples-conform-to-equatable-comparable-and-hashable/36140

@fassko
Copy link
Member

fassko commented May 5, 2020

https://developer.apple.com/wwdc20/

@fassko
Copy link
Member

fassko commented May 5, 2020

https://twitter.com/SwiftLang/status/1257737356464930817
https://swift.org/blog/additional-linux-distros/

@BasThomas
Copy link
Contributor Author

https://twitter.com/tomerdoron/status/1257745600788881408

More exciting swift-server news 🔥

@ktosopl and myself will be @gsoc mentors this year, working with @slashmodev to build distributed tracing support for swift-server: https://swift.org/gsoc2020/. Can't wait to get started!

@fassko
Copy link
Member

fassko commented May 6, 2020

https://twitter.com/ServerSideSwift/status/1257786086404874240

@fassko
Copy link
Member

fassko commented May 6, 2020

https://forums.swift.org/t/additional-linux-distributions/36188

@fassko
Copy link
Member

fassko commented May 7, 2020

https://twitter.com/ServerSideSwift/status/1258143148448022529

@fassko
Copy link
Member

fassko commented May 7, 2020

swiftlang/swift#31187

1 similar comment
@BasThomas
Copy link
Contributor Author

swiftlang/swift#31187

@BasThomas BasThomas unpinned this issue May 7, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Development

No branches or pull requests

3 participants