Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Multibase and illustrate Base256Emoji #1013

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@ enola_maven.install(
"org.apache.tika:tika-core:3.0.0-BETA2",
"org.apache.tika:tika-parsers-standard-package:3.0.0-BETA2",
"com.github.ipld:java-cid:1.3.8",

# TODO Fix missing version of java-multibase?!
"com.github.multiformats:java-multibase",

# TODO Remove after merge of https://github.com/multiformats/java-multibase/pull/37
"com.github.vorburger:java-multibase:Base256Emoji-166578b51d-1",
],
# NB: Never de-activate duplicate_version_warning = "error"!
# While it can be tempting to resolve a build-time problem which
Expand All @@ -126,6 +132,9 @@ enola_maven.install(
# to clean versions at build time!
duplicate_version_warning = "error",
excluded_artifacts = [
# TODO Remove after merge of https://github.com/multiformats/java-multibase/pull/37
"com.github.multiformats:java-multibase",

# https://commons.apache.org/proper/commons-logging/ is a PITA,
# because it contains package org.apache.commons.logging, which we
# already get from org.slf4j:jcl-over-slf4j, see https://www.slf4j.org/legacy.html
Expand Down
9 changes: 8 additions & 1 deletion docs/use/info/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,14 @@ $ ./enola info digest --base=Base64Pad --type=sha2_256 --http-scheme https://www
...
```

This _digest_ can be used e.g. in [`?integrity=...` of `fetch`](../fetch/index.md#integrity).
Or, just _"for fun",_ also:

```bash cd ../.././..
$ ./enola info digest --base=Base256Emoji --http-scheme https://www.vorburger.ch/hello.md
...
```

Any of these _digests_ can be used e.g. in [`?integrity=...` of `fetch`](../fetch/index.md#integrity).

## Screencast

Expand Down