Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
code-asher committed Dec 20, 2024
1 parent 1d8b69a commit f8791bb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [2.3.0](https://github.com/coder/code-marketplace/releases/tag/v2.3.0) - 2024-12-20

### Added

- Add empty signatures when starting the server with --sign. This will not work
with VS Code on Windows and macOS as we do not have the key required, but it
will work for open source versions of VS Code (VSCodium, code-server) and VS
Code on Linux where signatures must exist but are not actually checked.

### Changed

- Ignore extensions without a manifest. This is not expected in normal use, but
could happen if, for example, a manifest temporarily failed to download, which
would then crash the entire process with a segfault.

## [2.2.1](https://github.com/coder/code-marketplace/releases/tag/v2.2.1) - 2024-08-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion storage/signature.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type Signature struct {

func NewSignatureStorage(logger slog.Logger, includeEmptySignatures bool, s Storage) *Signature {
if includeEmptySignatures {
logger.Info(context.Background(), "Signature storage enabled, if using VSCode on Windows, this will not work.")
logger.Info(context.Background(), "Signature storage enabled, if using VS Code on Windows or macOS, this will not work.")
}
return &Signature{
Logger: logger,
Expand Down

0 comments on commit f8791bb

Please sign in to comment.