# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## 0.0.1 (2023-04-27) * Removed legacy API implementation in favour of the new cynic client * Fixed log querying * Added methods for retrieving DeployApp/Version by unique id ## 0.1.0-alpha.1 (2023-03-29) ### Refactor (BREAKING) - Rename wasmer-deploy-core to wasmer-deploy-schema -schema is a more sensible / expressive name for the crate, since it just holds type definitions. Done in preparation for publishing the crate, since it will need to be used by downstream consumers like the Wasmer repo ### Chore - Add description to wasmer-api Cargo.toml Required for releasing. ### Other - Dependency cleanup * Lift some dependencies to workspace.dependencies to avoid duplication * Remove a bunch of unused dependencies - Add crate metadata and prepare for first CLI release - "app list" filters Extend the "app list" command to query either a namespace, a users apps, or all apps accessible by a user. (--namepsace X, --all) - Add a webc app config fetch tests - Make serde_json a workspace dependency To avoid duplication... - Lift serde to be a workspace dependency Easier version management... - Lift anyhow, time and clap to workspace dependnecies Less version management... ### Bug Fixes - Use token for webc fetching If the api is configured with a token, use the token for fetching webcs. Previously it just used anonymous access. - Update deployment config generation to backend changes The generateDeployConfig GraphQL API has changed * Takes a DeployConfigVersion id instead of DeployConfig id * Returns a DeployConfigVersion ### New Features - Add generate_deploy_token to new cynic GQL api client Will be needed for various commands - Add getPackage GQL query - Add query for DeployAppVersion - Add new namespace and app commands - Add a CapabilityLoggingV1 config Allows to configure the logging behaviour of workloads. Will be used very soon to implement instance log forwarding. ### Documentation - add some changelogs - Add REAMDE to Cargo.toml of to-be-published crates ### Chore - Remove download_url from WebcPackageIdentifierV1 Not needed anymore, since now we have a deployment config registry. Needed to update relevant callsites