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

chore(deps-dev): bump webpack from 5.88.2 to 5.90.1 in /site/docs/content #594

Closed
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
2 changes: 1 addition & 1 deletion site/docs/content/package.json
Original file line number Diff line number Diff line change
@@ -10,6 +10,6 @@
"devDependencies": {
"@mdx-js/esbuild": "2.3.0",
"@mdx-js/loader": "3.0.0",
"webpack": "5.90.0"
"webpack": "5.90.1"
}
}

Unchanged files with check annotations Beta

import "elide/structs/bloom.proto";
import "google/protobuf/timestamp.proto";
option optimize_for = SPEED;

Check failure on line 28 in proto/elide/assets/bundle.proto

GitHub Actions / buf-breaking

File option "optimize_for" changed from "CODE_SIZE" to "SPEED".
option cc_enable_arenas = true;
option java_multiple_files = true;
option java_string_check_utf8 = true;
// the hash to take for the resulting token.
message DigestSettings {
// Hash algorithm in use for asset digestion.
std.HashAlgorithm algorithm = 1;

Check failure on line 69 in proto/elide/assets/bundle.proto

GitHub Actions / buf-breaking

Field "1" on message "DigestSettings" changed type from "elide.crypto.HashAlgorithm" to "elide.std.HashAlgorithm".
// Number of characters to pluck from the tail of the hash.
uint32 tail = 2;
/*

Check failure on line 1 in proto/elide/crypto/crypto.proto

GitHub Actions / buf-breaking

Previously present enum "HashAlgorithm" was deleted from file.
* Copyright © 2022, The Elide Framework Authors. All rights reserved.
*
* The Gust/Elide framework and tools, and all associated source or object computer code, except where otherwise noted,
syntax = "proto3";
package elide.crypto;
option optimize_for = SPEED;

Check failure on line 21 in proto/elide/crypto/crypto.proto

GitHub Actions / buf-breaking

File option "optimize_for" changed from "CODE_SIZE" to "SPEED".
option cc_enable_arenas = true;
option java_multiple_files = true;
option java_string_check_utf8 = true;
// specification of a hash algorithm with a raw data field storing the result of the hash.
message DataFingerprint {
// Algorithm in use when fingerprinting the associated data.
std.HashAlgorithm hash = 1;

Check failure on line 58 in proto/elide/data/data.proto

GitHub Actions / buf-breaking

Field "1" on message "DataFingerprint" changed type from "elide.crypto.HashAlgorithm" to "elide.std.HashAlgorithm".
// Specifies the encoding for the affixed fingerprint data. If unspecified, the fingerprint is expressed in raw bytes.
data.Encoding encoding = 2;
bool enabled = 1;
// General and default settings to apply as part of this suite of policies.
repeated GeneralLanguageSettings general = 2;

Check failure on line 351 in proto/elide/meta/guest.proto

GitHub Actions / buf-breaking

Field "2" with name "general" on message "GuestConfiguration" changed option "json_name" from "settings" to "general".

Check failure on line 351 in proto/elide/meta/guest.proto

GitHub Actions / buf-breaking

Field "2" on message "GuestConfiguration" changed type from "elide.meta.GuestSettingsStanza" to "elide.meta.GeneralLanguageSettings".

Check failure on line 351 in proto/elide/meta/guest.proto

GitHub Actions / buf-breaking

Field "2" on message "GuestConfiguration" changed name from "settings" to "general".
// Settings stanzas, each of which describe general and language-specific settings for a given guest language.
repeated GuestSettings settings = 3;
// Hash algorithm in use for this Bloom filter. This must be considered an immutable value for a constituted filter,
// otherwise the underlying data may be rendered unusable.
std.HashAlgorithm algorithm = 1;

Check failure on line 65 in proto/elide/structs/bloom.proto

GitHub Actions / buf-breaking

Field "1" on message "BloomFilter" changed type from "elide.crypto.HashAlgorithm" to "elide.std.HashAlgorithm".
// Number of hash rounds to apply when adding data to this filter.
uint32 rounds = 2;
}
// If this fingerprint carries a `hash` value, this describes the algorithm used.
std.HashAlgorithm algorithm = 3;

Check failure on line 66 in proto/elide/vfs/file.proto

GitHub Actions / buf-breaking

Field "3" on message "Fingerprint" changed type from "elide.crypto.HashAlgorithm" to "elide.std.HashAlgorithm".
}
// Combines a compressed and uncompressed fingerprint of file data.