Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog and release notes #10

Merged
merged 1 commit into from
Dec 1, 2024
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
9 changes: 9 additions & 0 deletions .release-notes/next-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Fix workspace discovery of folders without corral.json

Now every folder not inside a folder having a `corral.json`, but with a `main.pony` is now properly discovered
as a workspace by the language server. A workspace is a sub-project inside the folder opened in the editor.
The Pony language server can only work with folders marked as workspaces.

## Properly discover all packages of a program

Previously the Language server was only discovering packages mentioned in `corral.json` as packages and dependencies. Now it is considering all packages being part of a program and creating internal data-structures for them. `corral.json` is now only used for discovery of workspaces and populating the programs dependencies.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ All notable changes to this project will be documented in this file. This projec

### Fixed

- Fixed workspace discovery of folders without `corral.json` but containing a `main.pony` file ([PR #9](https://github.com/ponylang/pony-language-server/pull/9))
- Properly discover all packages in a program, not only the packages and dependencies provided in `corral.json` ([PR #8](https://github.com/ponylang/pony-language-server/pull/9))

### Added


### Changed


## [0.2.2] - 2024-07-27

### Fixed
Expand All @@ -24,4 +24,3 @@ All notable changes to this project will be documented in this file. This projec
### Fixed

- Upgrade pony-ast dependency to 0.2.1 ([PR #1](https://github.com/ponylang/pony-language-server/pull/1))