Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
{
"file_scan_exclusions": [
".data",
".git$",
".hg",
".rsync_cache",
"assets/webpack",
"build/static",
"client/build",
"CVS",
"node_modules",
"public/system/*",
"tmp/cache",
"**/.classpath",
"**/.DS_Store",
"**/.git",
"**/.hg",
"**/.settings",
"**/.svn",
"**/CVS",
"**/Thumbs.db",
".svn",
"gems/scheduler/ext/*",
"gems/server/ext/*",
"benchmarks/results/*",
"docs/static/*"
]
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.2.18] - 2025-XX-XX
### WIP
-- Fixing error in auto-reload on Linux when reuse_port is false
-- Fix breaking of auto-reload on config file errors
-- include directive is relative (equivalent to require_relative)
-- Fixing preload gem group logic
-- Fix errors in interrupt handling during some debug flows

## [0.2.17] - 2025-05-31
- Enabled vectorized writes in IoSteam
- Replaced all usage of heap-allocated BoxBody with HttpBody enums
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
PATH
remote: .
specs:
itsi (0.2.17)
itsi-scheduler (~> 0.2.17)
itsi-server (~> 0.2.17)
itsi (0.2.18)
itsi-scheduler (~> 0.2.18)
itsi-server (~> 0.2.18)

PATH
remote: gems/scheduler
specs:
itsi-scheduler (0.2.17)
itsi-scheduler (0.2.18)
rb_sys (~> 0.9.91)

PATH
remote: gems/server
specs:
itsi-server (0.2.17)
itsi-server (0.2.18)
json (~> 2)
prism (~> 1.4)
rack (>= 1.6)
Expand Down
2 changes: 1 addition & 1 deletion crates/itsi_scheduler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "itsi-scheduler"
version = "0.2.17"
version = "0.2.18"
edition = "2021"
authors = ["Wouter Coppieters <wc@pico.net.nz>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/itsi_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "itsi-server"
version = "0.2.17"
version = "0.2.18"
edition = "2021"
authors = ["Wouter Coppieters <wc@pico.net.nz>"]
license = "MIT"
Expand Down
Loading
Loading