Skip to content

Releases: emilpriver/geni

v1.0.5

30 Apr 09:09
Compare
Choose a tag to compare

Changed docker slim version to not make a dump of the database

v1.0.4

24 Apr 12:44
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.3...v1.0.4

v1.0.3

08 Apr 13:54
Compare
Choose a tag to compare

This release come with a fix for GH actions

v1.0.2

06 Apr 18:59
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.1...v1.0.2

v1.0.1

03 Mar 10:24
Compare
Choose a tag to compare

This change fixes a build issue for macos where ARM binaries was created for intel cpus

v1.0.0

29 Feb 13:00
Compare
Choose a tag to compare
changed version

v0.0.11

21 Feb 09:41
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.10...v0.0.11

v0.0.10

10 Feb 13:05
17d07e6
Compare
Choose a tag to compare

What's Changed

Geni library

You are now able to use geni as a library to run migrations, ideal for tests.
Example:

use geni;

#[tokio::main]
async fn main() {
    // Migrate the database
    geni::migrate_database(
        "sqlite://./test.db".to_string(), // Database URL
        None,                             // Database Token
        "schema_migrations".to_string(),         // Migration Table
        "./migrations".to_string(),       // Migration Folder
        "schema.sql".to_string(),         // Schema File
        Some(30),                         // Wait timeout for the database to be ready
        false,                            // Dump Schema
    )
    .await
    .unwrap();

    ()
}

Full Changelog: v0.0.9...v0.0.10

v0.0.9

19 Jan 21:49
Compare
Choose a tag to compare

What's Changed

  • Bump the cargo group across 1 directories with 1 update by @dependabot in #36

New Contributors

Full Changelog: v0.0.8...v0.0.9

v0.0.8

05 Jan 00:32
Compare
Choose a tag to compare

Changelog

  1. Added github action
  2. Added check if passed env variables is empty