This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
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.
This PR contains the following updates:
0.2.5
->0.2.9
0.27.0
->0.29.0
0.3.69
->0.3.70
0.11.0
->0.12.0
1.10.5
->1.10.6
1.11.0
->1.12.0
0.2.92
->0.2.93
0.4.42
->0.4.43
0.3.42
->0.3.43
0.3.69
->0.3.70
Release Notes
johnstonskj/rust-email_address (email_address)
v0.2.9
: Fix Unicode character selectionCompare Source
This release replaces the internal
is_uchar
function withis_utf8_non_ascii
that implements the correct RFC set of Unicode characters.This fixes issue #21
Full Changelog: johnstonskj/rust-email_address@v0.2.8...v0.2.9
v0.2.8
: Fix missing Eq implementationCompare Source
PRs to make
PartialEq
correct lost the implementation ofEq
. This caused downstream packages to break, the implementation has been put back.Fixes issue #29
Full Changelog: johnstonskj/rust-email_address@v0.2.7...v0.2.8
v0.2.7
: Better Option documentationCompare Source
Added more documentation in general but specifically to the
Option
type.Also added builder functions to the same type.
Full Changelog: johnstonskj/rust-email_address@v0.2.6...v0.2.7
v0.2.6
Compare Source
Fixes and merge clean-up
What's Changed
New Contributors
Full Changelog: johnstonskj/rust-email_address@v0.2.5...v0.2.6
raphlinus/pulldown-cmark (pulldown-cmark)
v0.12.1
: 0.12.1Compare Source
Security
New features
Developers
New Contributors
Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.0...v0.12.1
v0.12.0
: 0.12.0Compare Source
Thanks to all contributors! This release mainly adds the long awaited commonmark-hs description lists (under a flag) and enables the blockquote kind in
TagEnd
reverted in 0.11.2.Breaking changes
New features
Other changes
dos-fuzzer
by @ollpu in https://github.com/pulldown-cmark/pulldown-cmark/pull/938Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.2...v0.12.0
v0.11.3
: 0.11.3Compare Source
Security
Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.2...v0.11.3
v0.11.2
Compare Source
Revert BlockQuote kind to avoid breaking change.
v0.11.1
Compare Source
Thanks to all people involved in this release! The main change of this release is the reduction of the MSRV to 1.71.1, but it also includes a lot of bug fixes and a new mdBook for user-friendly documentation.
Breaking changes
What's Changed
-G
CLI option to enable GFM support by @rhysd in https://github.com/pulldown-cmark/pulldown-cmark/pull/905DefaultBrokenLinkCallback
as the default broken link callback ofOffsetIter
by @rhysd in https://github.com/pulldown-cmark/pulldown-cmark/pull/901cargo add
to instruct how to install this crate as dependency by @rhysd in https://github.com/pulldown-cmark/pulldown-cmark/pull/904New Contributors
Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.0...v0.11.1
rust-lang/regex (regex)
v1.10.6
Compare Source
===================
This is a new patch release with a fix for the
unstable
crate feature thatenables
std::str::Pattern
trait integration.Bug fixes:
Fix the
Pattern
trait implementation as a result of nightly API breakage.unicode-rs/unicode-segmentation (unicode-segmentation)
v1.12.0
Compare Source
rustwasm/wasm-bindgen (wasm-bindgen)
v0.2.93
Compare Source
Released 2024-08-13
Added
Allow exporting functions named
default
. Throw error in wasm-bindgen-cli if --target web andan exported symbol is named
default
.#3930
Added support for arbitrary expressions when using
#[wasm_bindgen(typescript_custom_section)]
.#3901
Implement
From<NonNull<T>>
forJsValue
.#3877
Add method
copy_within
for TypedArray, add methodsfind_last
,find_last_index
for Array.#3888
Added support for returning
Vec
s from async functions.#3630
Added bindings for
InputDeviceInfo
andMediaTrackCapabilities
.#3935
Add bindings for
RTCRtpReceiver.getCapabilities(DOMString)
method.#3941
Add bindings for
VisualViewport
.#3931
Add bindings for
queueMicrotask
.#3981
Add experimental bindings for User Agent Client Hints API
#3989
Add bindings for
FocusOptions
.#3996
Add bindings for
RTCRtpReceiver.jitterBufferTarget
.#3968
Generate getters for all WebIDL dictionary types.
#3993
Support for iterable in WebIDL. Gives
entries
,keys
,values
methods for regular and asynchronous, as well asfor_each
for regular, iterables.#3962
Add bindings for
HTMLTableCellElement.abbr
andscope
properties.#3972
Add WebIDL definitions relating to
Popover API
.#3977
Added the
thread_stack_size
property to the object parameter ofdefault()
(init()
) andinitSync()
, making it possible to set the stack size of spawned threads.__wbindgen_thread_destroy()
now has a third optional parameter for the stack size, the default stack size is assumed when not passing it. When calling from the thread to be destroyed, by passing no parameters, the correct stack size is determined internally.#3995
Added bindings to the Device Memory API.
#4011
Added support for WebIDL records. This added new methods to various APIs, notably
ClipboardItem()
,GPUDeviceDescriptor.requiredLimits
andHeader()
.#4030
Added an official MSRV policy. Library MSRV changes will be accompanied by a minor version bump. CLI tool MSRV can change with any version bump.
#4038
Added bindings to
NavigatorOptions.vibrate
.#4041
Added an experimental Node.JS ES module target, in comparison the current
node
target uses CommonJS, with--target experimental-nodejs-module
or when testing withwasm_bindgen_test_configure!(run_in_node_experimental)
.#4027
Added importing strings as
JsString
through#[wasm_bindgen(thread_local, static_string)] static STRING: JsString = "a string literal";
.#4055
Added experimental test coverage support for
wasm-bindgen-test-runner
, see the guide for more information.#4060
Changed
Stabilize Web Share API.
#3882
Generate JS bindings for WebIDL dictionary setters instead of using
Reflect
. This increases the size of the Web API bindings but should be more performant. Also, importing getters/setters from JS now supports specifying the JS attribute name as a string, e.g.#[wasm_bindgen(method, setter = "x-cdm-codecs")]
.#3898
Greatly improve the performance of sending WebIDL 'string enums' across the JavaScript boundary by converting the enum variant string to/from an int.
#3915
Use
table.fill
when appropriate.#3446
Annotated methods in WebCodecs that throw.
#3970
Update and stabilize the Clipboard API.
#3992
Deprecate builder-pattern type setters for WebIDL dictionary types and introduce non-mutable setters instead.
#3993
Allow imported async functions to return any type that can be converted from a
JsValue
.#3919
Update Web Authentication API to level 3.
#4000
Deprecate
AudioBufferSourceNode.onended
andAudioBufferSourceNode.stop()
.#4020
Increase default stack size for spawned threads from 1 to 2 MB.
#3995
Deprecated parameters to
default
(init
) andinitSync
in favor of an object.#3995
Update
AbortSignal
andAbortController
according to the WHATWG specification.#4026
Update the Indexed DB API.
#4027
UnwrapThrowExt for Result
now makes use of the requiredDebug
bound to display the error as well.#4035
#4049
MSRV of CLI tools bumped to v1.76. This does not affect libraries like
wasm-bindgen
,js-sys
andweb-sys
!#4037
Filtered files in published crates, significantly reducing the package size and notably excluding any bash files.
#4046
Deprecated
JsStatic
in favor of#[wasm_bindgen(thread_local)]
, which creates astd::thread::LocalKey
. The syntax is otherwise the same.#4057
Removed
impl Deref for JsStatic
when compiling withcfg(target_feature = "atomics")
, which was unsound.#4057
Updated the WebGPU WebIDL to the current draft as of 2024-08-05.
#4062
Use object URLs for linked modules without
--split-linked-modules
.#4067
Fixed
Copy port from headless test server when using
WASM_BINDGEN_TEST_ADDRESS
.#3873
Fix
catch
not being thread-safe.#3879
Fix MSRV compilation.
#3927
Fix
clippy::empty_docs
lint.#3946
Fix missing target features in module when enabling reference types or multi-value transformation.
#3967
Fixed Rust values getting GC'd while still borrowed.
#3940
Fixed Rust values not getting GC'd if they were created via. a constructor.
#3940
Fix triggering
clippy::mem_forget
lint in exported structs.#3985
Fix MDN links to static interface methods.
#4010
Fixed Deno support.
#3990
Fix
__wbindgen_thread_destroy()
ignoring parameters.#3995
Fix
no_std
support and therefor compiling withdefault-features = false
.#4005
Fix byte order for big-endian platforms.
#4015
Allow ex/importing structs, functions and parameters named with raw identifiers.
#4025
Implement a more reliable way to detect the stack pointer.
#4036
#[track_caller]
is now always applied onUnwrapThrowExt
methods when not targetingwasm32-unknown-unknown
.#4042
Fixed linked modules emitting snippet files when not using
--split-linked-modules
.#4066
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.