We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d8b69a commit f8791bbCopy full SHA for f8791bb
CHANGELOG.md
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## Unreleased
9
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
25
## [2.2.1](https://github.com/coder/code-marketplace/releases/tag/v2.2.1) - 2024年08月14日
26
27
### Fixed
storage/signature.go
@@ -33,7 +33,7 @@ type Signature struct {
33
34
func NewSignatureStorage(logger slog.Logger, includeEmptySignatures bool, s Storage) *Signature {
35
if includeEmptySignatures {
36
- 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.")
37
}
38
return &Signature{
39
Logger: logger,
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments