Releases: coder/code-marketplace
Releases · coder/code-marketplace
v2.2.1
v2.2.0
Changed
- Default max page size increased from 50 to 200.
Added
- New
server
sub-command flag--max-page-size
for setting the max page size.
v2.1.0
Added
- New
server
sub-command flag--list-cache-duration
for setting the duration
of the cache used when listing/searching extensions. The default is still
one minute. - Local storage will also use a cache for listing and searching extensions
(previously only Artifactory storage used a cache).
v2.0.1
Fixed
- Extensions with problematic UTF-8 characters will no longer cause a panic.
- Preview extensions will now show up as such.
v2.0.0
Breaking changes
- When removing extensions, the version is now delineated by
@
instead of-
(for exampleremove vscodevim.vim@1.0.0
). This fixes being unable to remove
extensions with-
in their names. Removal is the only backwards-incompatible
change; extensions are still added, stored, and queried the same way.
Added
- Support for platform-specific extensions. Previously all versions would have
been treated as universal and overwritten each other but now versions for
different platforms will be stored separately and show up separately in the
API response. If there are platform-specific versions that have already been
added, they will continue to be treated as universal versions so these should
be removed and re-added to be properly registered as platform-specific.
v1.2.2
Changed
- Help/usage outputs the binary name as
code-marketplace
instead of
marketplace
to be consistent with documentation. - Binary is symlinked into /usr/local/bin in the Docker image so it can be
invoked as simplycode-marketplace
.
v1.2.1
Fixed
- Adding extensions from a URL. This broke in 1.2.0 with the addition of bulk
adding.
v1.2.0
Added
- Artifactory integration. Set the ARTIFACTORY_TOKEN environment variable and
pass --artifactory and --repo (instead of --extensions-dir) to use. - Stat endpoints. This is just to prevent noisy 404s from being logged; the
endpoints do nothing since stats are not yet supported. - Bulk add from a directory. This only works when adding from a local directory
and not from web URLs.
v1.1.0
Added
add
sub-command for adding extensions to the marketplace.remove
sub-command for removing extensions from the marketplace.
Changed
- Compile statically so binaries work on Alpine.
v1.0.0
Added
- Initial marketplace implementation.