Eli Mensch
Eli Mensch
Regression when upgrading from 0.4.4 to 0.5.0. Minimal reproduction with this configuration: ```javascript import { esbuildPlugin } from "@web/dev-server-esbuild"; import { browserstackLauncher } from "@web/test-runner-browserstack"; export default { nodeResolve: true,...
In our L2 provenance display, manifest sections will still render even if the underlying manifest does not contain relevant data: We should hide sections that don't have any data to...
Rush is [pretty strict](https://rushjs.io/pages/maintainer/add_to_repo/#step-6-verify-that-the-new-project-builds) about log output during builds - anything logged to stderr will cause a build to fail. Some of our build steps generate log output that is...
The Rush prettier pre-commit hook breaks when used with the VSCode GUI. Error output suggests that this is because VSCode is using its own version of node which does not...
At the moment, production builds of many of our packages include inline sourcemaps. We should make sure that we have sensible sourcemap configurations for our prod/dev build modes.
Currently, each package defines its own config file for web-test-runner and many of them are duplicates. Additionally, each testing dependency must be installed per-project. Ideally, we should share the "base"...
As it stands, there is no way to inspect a manifest's certificate chain with the JavaScript SDK. The underlying rust library has a [ManifestStore::dump_cert_chain](https://docs.rs/c2pa/latest/c2pa/struct.ManifestStoreReport.html#method.dump_cert_chain) method that exposes this functionality, it...
Updating MIME types for `avi` files based on: https://github.com/contentauth/c2pa-rs/blob/main/sdk/src/asset_handlers/riff_io.rs#L43-L46
[`sha2`](https://crates.io/crates/sha2) depends on a deprecated version of `generic_array`, which should be resolved when `0.11.0` is released. Once that is available we can remove the `#[allow(deprecated)]` directive introduced here: https://github.com/contentauth/c2pa-rs/pull/1508