-
Notifications
You must be signed in to change notification settings - Fork 323
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
2023-11 dependency refresh #7419
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
58ee92a
version refresh: deno -> 1.37.2, pandoc -> 3.1.9, deno_std -> 0.204.0
cscheid b6edcc3
fix path
cscheid db8036c
revert deno_dom until i find the right binaries
cscheid 2accdb0
Merge branch 'main' into feature/2023-11-dependency-refresh
cscheid 6fbba05
update lock
cscheid 9247b67
update to pandoc 3.1.9 typst output
cscheid 252fce8
put comment in own line because of windows
cscheid 37140ac
put comment in own line because of windows
cscheid 48b8d61
Merge branch 'main' into feature/2023-11-dependency-refresh
cscheid 87ed929
typst 0.9.0
cscheid f04ca43
quarto-ojs-runtime bump
cscheid 6dac94b
merge
cscheid f5ed680
Merge branch 'main' into feature/2023-11-dependency-refresh
cscheid cdc32eb
run update-pandoc script
jjallaire 1a2af10
List known kernels found by Quarto in the error message when a specif…
cderv beb6de7
avoid combineFilters type mismatch by early exiting
cscheid 930952b
scaffold in-filter markdown parsing to work well in combineFilters
cscheid acb9d80
use Blocks instead of List for better type information
cscheid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,104 +39,104 @@ import * as textproto from "https://deno.land/[email protected]/textproto/mod.ts"; | |
import * as uuid from "https://deno.land/[email protected]/uuid/mod.ts"; | ||
*/ | ||
|
||
import * as tar from "https://deno.land/std@0.185.0/archive/tar.ts"; | ||
import * as async from "https://deno.land/std@0.185.0/async/mod.ts"; | ||
import * as bytes from "https://deno.land/std@0.185.0/bytes/mod.ts"; | ||
import * as collections from "https://deno.land/std@0.185.0/collections/mod.ts"; | ||
import * as crypto from "https://deno.land/std@0.185.0/crypto/mod.ts"; | ||
import * as datetime from "https://deno.land/std@0.185.0/datetime/mod.ts"; | ||
import * as dotenv from "https://deno.land/std@0.185.0/dotenv/mod.ts"; | ||
import * as tar from "https://deno.land/std@0.204.0/archive/tar.ts"; | ||
import * as async from "https://deno.land/std@0.204.0/async/mod.ts"; | ||
import * as bytes from "https://deno.land/std@0.204.0/bytes/mod.ts"; | ||
import * as collections from "https://deno.land/std@0.204.0/collections/mod.ts"; | ||
import * as crypto from "https://deno.land/std@0.204.0/crypto/mod.ts"; | ||
import * as datetime from "https://deno.land/std@0.204.0/datetime/mod.ts"; | ||
import * as dotenv from "https://deno.land/std@0.204.0/dotenv/mod.ts"; | ||
|
||
// encoding has no mod.ts | ||
import * as ascii85 from "https://deno.land/std@0.185.0/encoding/ascii85.ts"; | ||
import * as base32 from "https://deno.land/std@0.185.0/encoding/base32.ts"; | ||
import * as base58 from "https://deno.land/std@0.185.0/encoding/base58.ts"; | ||
import * as base64 from "https://deno.land/std@0.185.0/encoding/base64.ts"; | ||
import * as base64url from "https://deno.land/std@0.185.0/encoding/base64url.ts"; | ||
import * as binary from "https://deno.land/std@0.185.0/encoding/binary.ts"; | ||
import * as csv from "https://deno.land/std@0.185.0/csv/mod.ts"; | ||
import * as front_matter from "https://deno.land/std@0.185.0/front_matter/mod.ts"; | ||
import * as hex from "https://deno.land/std@0.185.0/encoding/hex.ts"; | ||
import * as jsonc from "https://deno.land/std@0.185.0/jsonc/mod.ts"; | ||
import * as toml from "https://deno.land/std@0.185.0/toml/mod.ts"; | ||
import * as varint from "https://deno.land/std@0.185.0/encoding/varint.ts"; | ||
import * as yaml from "https://deno.land/std@0.185.0/yaml/mod.ts"; | ||
import * as ascii85 from "https://deno.land/std@0.204.0/encoding/ascii85.ts"; | ||
import * as base32 from "https://deno.land/std@0.204.0/encoding/base32.ts"; | ||
import * as base58 from "https://deno.land/std@0.204.0/encoding/base58.ts"; | ||
import * as base64 from "https://deno.land/std@0.204.0/encoding/base64.ts"; | ||
import * as base64url from "https://deno.land/std@0.204.0/encoding/base64url.ts"; | ||
import * as binary from "https://deno.land/std@0.204.0/encoding/binary.ts"; | ||
import * as csv from "https://deno.land/std@0.204.0/csv/mod.ts"; | ||
import * as front_matter from "https://deno.land/std@0.204.0/front_matter/mod.ts"; | ||
import * as hex from "https://deno.land/std@0.204.0/encoding/hex.ts"; | ||
import * as jsonc from "https://deno.land/std@0.204.0/jsonc/mod.ts"; | ||
import * as toml from "https://deno.land/std@0.204.0/toml/mod.ts"; | ||
import * as varint from "https://deno.land/std@0.204.0/encoding/varint.ts"; | ||
import * as yaml from "https://deno.land/std@0.204.0/yaml/mod.ts"; | ||
|
||
import * as flags from "https://deno.land/std@0.185.0/flags/mod.ts"; | ||
import * as fmt_bytes from "https://deno.land/std@0.185.0/fmt/bytes.ts"; | ||
import * as fmt_colors from "https://deno.land/std@0.185.0/fmt/colors.ts"; | ||
import * as fmt_printf from "https://deno.land/std@0.185.0/fmt/printf.ts"; | ||
import * as fs from "https://deno.land/std@0.185.0/fs/mod.ts"; | ||
import * as http from "https://deno.land/std@0.185.0/http/mod.ts"; | ||
import * as io from "https://deno.land/std@0.185.0/io/mod.ts"; | ||
import * as log from "https://deno.land/std@0.185.0/log/mod.ts"; | ||
import * as mediaTypes from "https://deno.land/std@0.185.0/media_types/mod.ts"; | ||
import * as path from "https://deno.land/std@0.185.0/path/mod.ts"; | ||
import * as permissions from "https://deno.land/std@0.185.0/permissions/mod.ts"; | ||
import * as semver from "https://deno.land/std@0.185.0/semver/mod.ts"; | ||
import * as signal from "https://deno.land/std@0.185.0/signal/mod.ts"; | ||
import * as streams from "https://deno.land/std@0.185.0/streams/mod.ts"; | ||
import * as uuid from "https://deno.land/std@0.185.0/uuid/mod.ts"; | ||
import * as version from "https://deno.land/std@0.185.0/version.ts"; | ||
import * as flags from "https://deno.land/std@0.204.0/flags/mod.ts"; | ||
import * as fmt_bytes from "https://deno.land/std@0.204.0/fmt/bytes.ts"; | ||
import * as fmt_colors from "https://deno.land/std@0.204.0/fmt/colors.ts"; | ||
import * as fmt_printf from "https://deno.land/std@0.204.0/fmt/printf.ts"; | ||
import * as fs from "https://deno.land/std@0.204.0/fs/mod.ts"; | ||
import * as http from "https://deno.land/std@0.204.0/http/mod.ts"; | ||
import * as io from "https://deno.land/std@0.204.0/io/mod.ts"; | ||
import * as log from "https://deno.land/std@0.204.0/log/mod.ts"; | ||
import * as mediaTypes from "https://deno.land/std@0.204.0/media_types/mod.ts"; | ||
import * as path from "https://deno.land/std@0.204.0/path/mod.ts"; | ||
import * as permissions from "https://deno.land/std@0.204.0/permissions/mod.ts"; | ||
import * as semver from "https://deno.land/std@0.204.0/semver/mod.ts"; | ||
import * as signal from "https://deno.land/std@0.204.0/signal/mod.ts"; | ||
import * as streams from "https://deno.land/std@0.204.0/streams/mod.ts"; | ||
import * as uuid from "https://deno.land/std@0.204.0/uuid/mod.ts"; | ||
import * as version from "https://deno.land/std@0.204.0/version.ts"; | ||
|
||
/* | ||
|
||
These would be useful imports to add, but they increase the | ||
size of the download cache significantly, so we're skipping | ||
them until they are needed. | ||
|
||
import "https://deno.land/std@0.185.0/node/assert/strict.ts"; | ||
import "https://deno.land/std@0.185.0/node/dns/promises.ts"; | ||
import "https://deno.land/std@0.185.0/node/fs/promises.ts"; | ||
import "https://deno.land/std@0.185.0/node/path/mod.ts"; | ||
import "https://deno.land/std@0.185.0/node/readline/promises.ts"; | ||
import "https://deno.land/std@0.185.0/node/stream/web.ts"; | ||
import "https://deno.land/std@0.185.0/node/timers/promises.ts"; | ||
import "https://deno.land/std@0.185.0/node/util/types.ts"; | ||
import "https://deno.land/std@0.185.0/node/assert.ts"; | ||
import "https://deno.land/std@0.185.0/node/assertion_error.ts"; | ||
import "https://deno.land/std@0.185.0/node/async_hooks.ts"; | ||
import "https://deno.land/std@0.185.0/node/async_hooks.ts"; | ||
import "https://deno.land/std@0.185.0/node/buffer.ts"; | ||
import "https://deno.land/std@0.185.0/node/child_process.ts"; | ||
import "https://deno.land/std@0.185.0/node/cluster.ts"; | ||
import "https://deno.land/std@0.185.0/node/console.ts"; | ||
import "https://deno.land/std@0.185.0/node/constants.ts"; | ||
import "https://deno.land/std@0.185.0/node/crypto.ts"; | ||
import "https://deno.land/std@0.185.0/node/dgram.ts"; | ||
import "https://deno.land/std@0.185.0/node/diagnostics_channel.ts"; | ||
import "https://deno.land/std@0.185.0/node/dns.ts"; | ||
import "https://deno.land/std@0.185.0/node/domain.ts"; | ||
import "https://deno.land/std@0.185.0/node/events.ts"; | ||
import "https://deno.land/std@0.185.0/node/fs.ts"; | ||
import "https://deno.land/std@0.185.0/node/http.ts"; | ||
import "https://deno.land/std@0.185.0/node/http2.ts"; | ||
import "https://deno.land/std@0.185.0/node/https.ts"; | ||
import "https://deno.land/std@0.185.0/node/inspector.ts"; | ||
import "https://deno.land/std@0.185.0/node/module_all.ts"; | ||
import "https://deno.land/std@0.185.0/node/module_esm.ts"; | ||
import "https://deno.land/std@0.185.0/node/module.ts"; | ||
import "https://deno.land/std@0.185.0/node/net.ts"; | ||
import "https://deno.land/std@0.185.0/node/os.ts"; | ||
import "https://deno.land/std@0.185.0/node/path.ts"; | ||
import "https://deno.land/std@0.185.0/node/perf_hooks.ts"; | ||
import "https://deno.land/std@0.185.0/node/process.ts"; | ||
import "https://deno.land/std@0.185.0/node/punycode.ts"; | ||
import "https://deno.land/std@0.185.0/node/querystring.ts"; | ||
import "https://deno.land/std@0.185.0/node/readline.ts"; | ||
import "https://deno.land/std@0.185.0/node/repl.ts"; | ||
import "https://deno.land/std@0.185.0/node/stream.ts"; | ||
import "https://deno.land/std@0.185.0/node/string_decoder.ts"; | ||
import "https://deno.land/std@0.185.0/node/sys.ts"; | ||
import "https://deno.land/std@0.185.0/node/timers.ts"; | ||
import "https://deno.land/std@0.185.0/node/tls.ts"; | ||
import "https://deno.land/std@0.185.0/node/tty.ts"; | ||
import "https://deno.land/std@0.185.0/node/upstream_modules.ts"; | ||
import "https://deno.land/std@0.185.0/node/url.ts"; | ||
import "https://deno.land/std@0.185.0/node/util.ts"; | ||
import "https://deno.land/std@0.185.0/node/v8.ts"; | ||
import "https://deno.land/std@0.185.0/node/vm.ts"; | ||
import "https://deno.land/std@0.185.0/node/wasi.ts"; | ||
import "https://deno.land/std@0.185.0/node/worker_threads.ts"; | ||
import "https://deno.land/std@0.185.0/node/zlib.ts"; | ||
import "https://deno.land/std@0.204.0/node/assert/strict.ts"; | ||
import "https://deno.land/std@0.204.0/node/dns/promises.ts"; | ||
import "https://deno.land/std@0.204.0/node/fs/promises.ts"; | ||
import "https://deno.land/std@0.204.0/node/path/mod.ts"; | ||
import "https://deno.land/std@0.204.0/node/readline/promises.ts"; | ||
import "https://deno.land/std@0.204.0/node/stream/web.ts"; | ||
import "https://deno.land/std@0.204.0/node/timers/promises.ts"; | ||
import "https://deno.land/std@0.204.0/node/util/types.ts"; | ||
import "https://deno.land/std@0.204.0/node/assert.ts"; | ||
import "https://deno.land/std@0.204.0/node/assertion_error.ts"; | ||
import "https://deno.land/std@0.204.0/node/async_hooks.ts"; | ||
import "https://deno.land/std@0.204.0/node/async_hooks.ts"; | ||
import "https://deno.land/std@0.204.0/node/buffer.ts"; | ||
import "https://deno.land/std@0.204.0/node/child_process.ts"; | ||
import "https://deno.land/std@0.204.0/node/cluster.ts"; | ||
import "https://deno.land/std@0.204.0/node/console.ts"; | ||
import "https://deno.land/std@0.204.0/node/constants.ts"; | ||
import "https://deno.land/std@0.204.0/node/crypto.ts"; | ||
import "https://deno.land/std@0.204.0/node/dgram.ts"; | ||
import "https://deno.land/std@0.204.0/node/diagnostics_channel.ts"; | ||
import "https://deno.land/std@0.204.0/node/dns.ts"; | ||
import "https://deno.land/std@0.204.0/node/domain.ts"; | ||
import "https://deno.land/std@0.204.0/node/events.ts"; | ||
import "https://deno.land/std@0.204.0/node/fs.ts"; | ||
import "https://deno.land/std@0.204.0/node/http.ts"; | ||
import "https://deno.land/std@0.204.0/node/http2.ts"; | ||
import "https://deno.land/std@0.204.0/node/https.ts"; | ||
import "https://deno.land/std@0.204.0/node/inspector.ts"; | ||
import "https://deno.land/std@0.204.0/node/module_all.ts"; | ||
import "https://deno.land/std@0.204.0/node/module_esm.ts"; | ||
import "https://deno.land/std@0.204.0/node/module.ts"; | ||
import "https://deno.land/std@0.204.0/node/net.ts"; | ||
import "https://deno.land/std@0.204.0/node/os.ts"; | ||
import "https://deno.land/std@0.204.0/node/path.ts"; | ||
import "https://deno.land/std@0.204.0/node/perf_hooks.ts"; | ||
import "https://deno.land/std@0.204.0/node/process.ts"; | ||
import "https://deno.land/std@0.204.0/node/punycode.ts"; | ||
import "https://deno.land/std@0.204.0/node/querystring.ts"; | ||
import "https://deno.land/std@0.204.0/node/readline.ts"; | ||
import "https://deno.land/std@0.204.0/node/repl.ts"; | ||
import "https://deno.land/std@0.204.0/node/stream.ts"; | ||
import "https://deno.land/std@0.204.0/node/string_decoder.ts"; | ||
import "https://deno.land/std@0.204.0/node/sys.ts"; | ||
import "https://deno.land/std@0.204.0/node/timers.ts"; | ||
import "https://deno.land/std@0.204.0/node/tls.ts"; | ||
import "https://deno.land/std@0.204.0/node/tty.ts"; | ||
import "https://deno.land/std@0.204.0/node/upstream_modules.ts"; | ||
import "https://deno.land/std@0.204.0/node/url.ts"; | ||
import "https://deno.land/std@0.204.0/node/util.ts"; | ||
import "https://deno.land/std@0.204.0/node/v8.ts"; | ||
import "https://deno.land/std@0.204.0/node/vm.ts"; | ||
import "https://deno.land/std@0.204.0/node/wasi.ts"; | ||
import "https://deno.land/std@0.204.0/node/worker_threads.ts"; | ||
import "https://deno.land/std@0.204.0/node/zlib.ts"; | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This note is stale and can be removed (probably slipped in via a merge as it was true for about a day or so ;-) ).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that was my bad merge. Thanks!