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
49 changes: 25 additions & 24 deletions .vibe/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
active_model = "devstral-2"
active_model = "mistral-medium-3.5"
vim_keybindings = false
disable_welcome_banner_animation = false
displayed_workdir = ""
Expand Down Expand Up @@ -35,10 +35,12 @@ backend = "generic"
[[models]]
name = "mistral-vibe-cli-latest"
provider = "mistral"
alias = "devstral-2"
temperature = 0.2
input_price = 0.4
output_price = 2.0
alias = "mistral-medium-3.5"
temperature = 1.0
input_price = 1.5
output_price = 7.5
thinking = "high"
supports_images = true

[[models]]
name = "devstral-small-latest"
Expand Down Expand Up @@ -71,33 +73,26 @@ save_dir = "/Users/jasperfrumau/.vibe/logs/session"
session_prefix = "session"
enabled = true

[tools.search_replace]
permission = "ask"
allowlist = []
denylist = []
max_content_size = 100000
create_backup = false
fuzzy_threshold = 0.9

[tools.bash]
permission = "ask"
allowlist = [
"cat",
"echo",
"file",
"find",
"git diff",
"git log",
"git status",
"tree",
"whoami",
"cat",
"file",
"head",
"ls",
"pwd",
"stat",
"tail",
"tree",
"uname",
"wc",
"which",
"whoami",
]
denylist = [
"gdb",
Expand Down Expand Up @@ -165,13 +160,6 @@ exclude_patterns = [
]
codeignore_file = ".vibeignore"

[tools.read_file]
permission = "always"
allowlist = []
denylist = []
max_read_bytes = 64000
max_state_history = 10

[tools.todo]
permission = "always"
allowlist = []
Expand All @@ -184,3 +172,16 @@ allowlist = []
denylist = []
max_write_bytes = 64000
create_parent_dirs = true

[tools.read]
permission = "always"
allowlist = []
denylist = []
max_read_bytes = 64000
max_state_history = 10

[tools.edit]
permission = "ask"
allowlist = []
denylist = []
fuzzy_threshold = 0.9
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@ All notable changes to the Nynaeve theme will be documented in this file.

For project-wide changes (infrastructure, tooling, cross-cutting concerns), see the [project root CHANGELOG.md](../../../../../CHANGELOG.md).

## [2.14.0] - 2026-06-11

### Changed - Framework and dependency upgrades

**Roots Acorn 6 Upgrade:**
- Upgraded `roots/acorn` from 5.0.1 to ^6.0, the latest major version of the Acorn framework that powers Sage 11's Laravel integration
- Brings the underlying Illuminate (Laravel) components from v12 to v13

**Illuminate (Laravel) 13 Components:**
- Upgraded all Illuminate packages from v12.61.0 to v13.15.0 (auth, bus, cache, collections, config, console, container, contracts, cookie, database, encryption, events, filesystem, hashing, http, log, macroable, and more)
- Updated underlying Symfony component constraints to support Symfony 7.4 and 8.0

**Blade FontAwesome:**
- Upgraded `owenvoke/blade-fontawesome` from ^2.8 to ^3.2

**Guzzle HTTP Client:**
- Updated `guzzlehttp/guzzle` to 7.11.1, `guzzlehttp/promises` to 2.5.0, and `guzzlehttp/psr7` to 2.11.0

### Technical - PHP version requirement

**Minimum PHP Bumped to 8.3:**
- Raised the theme's minimum PHP requirement from `>=8.2` to `>=8.3` in `composer.json`
- Required by Acorn 6 and Illuminate 13, which both mandate PHP ^8.3
- Ensure your hosting environment runs PHP 8.3 or newer before updating

## [2.13.3] - 2026-05-29

### Security
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
}
},
"require": {
"php": ">=8.2",
"php": ">=8.3",
"blade-ui-kit/blade-icons": "^1.7",
"codeat3/blade-clarity-icons": "^1.9",
"generoi/sage-woocommerce": "^1.1",
Expand All @@ -52,8 +52,8 @@
"log1x/acf-composer": "^3.3",
"log1x/navi": "^3.1",
"log1x/sage-svg": "^2.0",
"owenvoke/blade-fontawesome": "^2.8",
"roots/acorn": "5.0.1"
"owenvoke/blade-fontawesome": "^3.2",
"roots/acorn": "^6.0"
},
"require-dev": {
"laravel/pint": "^1.20",
Expand Down
Loading
Loading