fluent-kit

1.48.3

Swift ORM (queries, models, and relations) for NoSQL and SQL databases
vapor/fluent-kit

What's New

1.48.3 - Fix accidentally changed module names in exports

2024-04-30T15:15:50Z

What's Changed

Fix accidentally changed module names in exports by @gwynne in #605

The NIO module name on some @_exported imports was incorrectly changed. Since we’re stuck with @_exported, we need to fix this for source compatibility.

This patch was released by @gwynne

Full Changelog: 1.48.2...1.48.3

FluentKit

Documentation Team Chat MIT License Continuous Integration Swift 5.8+


An Object-Relational Mapper (ORM) for Swift. It allows you to write type safe, database agnostic models and queries. It takes advantage of Swift's type system to provide a powerful, yet easy to use API.

An example query looks like:

let planets = try await Planet.query(on: database)
    .filter(\.$type == .gasGiant)
    .sort(\.$name)
    .with(\.$star)
    .all()

For more information, see the Fluent documentation.

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

Last updated: Thu May 16 2024 14:31:39 GMT-0900 (Hawaii-Aleutian Daylight Time)