Skip to content

Commit f8791bb

Browse files
committed
v2.3.0
1 parent 1d8b69a commit f8791bb

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

Diff for: CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [2.3.0](https://github.com/coder/code-marketplace/releases/tag/v2.3.0) - 2024-12-20
11+
12+
### Added
13+
14+
- Add empty signatures when starting the server with --sign. This will not work
15+
with VS Code on Windows and macOS as we do not have the key required, but it
16+
will work for open source versions of VS Code (VSCodium, code-server) and VS
17+
Code on Linux where signatures must exist but are not actually checked.
18+
19+
### Changed
20+
21+
- Ignore extensions without a manifest. This is not expected in normal use, but
22+
could happen if, for example, a manifest temporarily failed to download, which
23+
would then crash the entire process with a segfault.
24+
1025
## [2.2.1](https://github.com/coder/code-marketplace/releases/tag/v2.2.1) - 2024-08-14
1126

1227
### Fixed

Diff for: storage/signature.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type Signature struct {
3333

3434
func NewSignatureStorage(logger slog.Logger, includeEmptySignatures bool, s Storage) *Signature {
3535
if includeEmptySignatures {
36-
logger.Info(context.Background(), "Signature storage enabled, if using VSCode on Windows, this will not work.")
36+
logger.Info(context.Background(), "Signature storage enabled, if using VS Code on Windows or macOS, this will not work.")
3737
}
3838
return &Signature{
3939
Logger: logger,

0 commit comments

Comments
 (0)