Alpha 0.2.6 (#2232)

* bump 0.2.6

* Double Cypress timeouts when running on CI

---------

Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com>
This commit is contained in:
Utku 2024-03-22 21:27:11 -04:00 committed by GitHub
parent e148028e2f
commit 904f210fc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 17 additions and 5 deletions

4
Cargo.lock generated
View file

@ -8179,7 +8179,7 @@ dependencies = [
[[package]]
name = "sd-core"
version = "0.2.5"
version = "0.2.6"
dependencies = [
"aovec",
"async-channel",
@ -8336,7 +8336,7 @@ dependencies = [
[[package]]
name = "sd-desktop"
version = "0.2.5"
version = "0.2.6"
dependencies = [
"axum",
"directories 5.0.1",

View file

@ -1,6 +1,6 @@
[package]
name = "sd-desktop"
version = "0.2.5"
version = "0.2.6"
description = "The universal file manager."
authors = ["Spacedrive Technology Inc <support@spacedrive.com>"]
default-run = "sd-desktop"

View file

@ -1,5 +1,16 @@
import { defineConfig } from 'cypress';
const ci_specific = {
// Double all the default timeouts
// https://docs.cypress.io/guides/references/configuration#Timeouts
defaultCommandTimeout: 4000 * 2,
execTimeout: 60000 * 2,
taskTimeout: 60000 * 2,
pageLoadTimeout: 60000 * 2,
requestTimeout: 5000 * 2,
responseTimeout: 30000 * 2
};
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:8002',
@ -7,5 +18,6 @@ export default defineConfig({
// implement node event listeners here
}
},
video: true
video: true,
...(process.env.CI === 'true' ? ci_specific : {})
});

View file

@ -1,6 +1,6 @@
[package]
name = "sd-core"
version = "0.2.5"
version = "0.2.6"
description = "Virtual distributed filesystem engine that powers Spacedrive."
authors = ["Spacedrive Technology Inc."]
rust-version = "1.75.0"