fix(forge): use project.root_uri for cache key in Forge.Project.config - #594
Merged
Conversation
mhanberg
force-pushed
the
backport-575-to-v0.1
branch
from
April 23, 2026 12:45
85f6760 to
12d21ce
Compare
…nfig` (#575) Using `name(project)` risks a collision, especially with supporting multiple workspace folders. Replacing it with `root_uri` is a much safer choice. For now this is only used in `Forge.Project.display_name` + I don't think a lot of project use `:name` key in Mix config, so the impact is not great, but I think it's a good change for correctness. (cherry picked from commit deb019b)
mhanberg
force-pushed
the
backport-575-to-v0.1
branch
from
April 23, 2026 13:09
12d21ce to
9d1c63b
Compare
mhanberg
pushed a commit
that referenced
this pull request
Apr 23, 2026
🤖 I have created a release *beep* *boop* --- ## [0.1.1](v0.1.0...v0.1.1) (2026-04-23) ### Bug Fixes * don't connect to the epmd daemon ([#589](#589)) ([84523c8](84523c8)) * **engine:** respect formatter line length in Refactorex actions ([#590](#590)) ([33a897d](33a897d)) * **engine:** stop double applying alias suffix when prefix is aliased ([#591](#591)) ([d1fc3b0](d1fc3b0)) * **engine:** unify import lookup to correctly resolve local calls ([#592](#592)) ([5421f92](5421f92)) * **expert:** add no-op handler for $/setTrace ([#593](#593)) ([9bb4f0d](9bb4f0d)) * **forge:** use `project.root_uri` for cache key in `Forge.Project.config` ([#594](#594)) ([950e5e0](950e5e0)) * handle LSP supported invalid configuration values ([#595](#595)) ([ac6913e](ac6913e)) * hang at startup if .bashrc contains exec call ([#596](#596)) ([fb361d6](fb361d6)) * improve release overlays ([#603](#603)) ([c56cb9a](c56cb9a)) * improve startup time and module introspection ([#605](#605)) ([e67f370](e67f370)) * **release:** ensure start_expert works if symlinked ([#597](#597)) ([62ef114](62ef114)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Backport of #575 to
v0.1.