Don't fail parsing on @feature and @since gates.#329
Merged
thomastaylor312 merged 1 commit intobytecodealliance:mainfrom Sep 4, 2024
Merged
Don't fail parsing on @feature and @since gates.#329thomastaylor312 merged 1 commit intobytecodealliance:mainfrom
thomastaylor312 merged 1 commit intobytecodealliance:mainfrom
Conversation
4f6efdc to
46a1bd6
Compare
thomastaylor312
approved these changes
Sep 4, 2024
Contributor
thomastaylor312
left a comment
There was a problem hiding this comment.
Thanks for adding this in!
| export_macro_name: settings.export_macro_name.clone(), | ||
| pub_export_macro: settings.pub_export_macro, | ||
| generate_unused_types: settings.generate_unused_types, | ||
| // todo - add support for these settings |
mergify bot
referenced
this pull request
in andrzejressel/pulumi-gestalt
Sep 6, 2024
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [cargo-component](https://redirect.github.com/bytecodealliance/cargo-component) | minor | `0.15.0` -> `0.16.0` | --- ### Release Notes <details> <summary>bytecodealliance/cargo-component (cargo-component)</summary> ### [`v0.16.0`](https://redirect.github.com/bytecodealliance/cargo-component/releases/tag/v0.16.0) [Compare Source](https://redirect.github.com/bytecodealliance/cargo-component/compare/v0.15.0...v0.16.0) #### What's Changed - feat(\*)!: Uses wasm-pkg-client for loading dependencies by [@​thomastaylor312](https://redirect.github.com/thomastaylor312) in [https://github.com/bytecodealliance/cargo-component/pull/322](https://redirect.github.com/bytecodealliance/cargo-component/pull/322) - feat(\*)!: Adds back support for the offline flag by [@​thomastaylor312](https://redirect.github.com/thomastaylor312) in [https://github.com/bytecodealliance/cargo-component/pull/328](https://redirect.github.com/bytecodealliance/cargo-component/pull/328) - Don't fail parsing on `@feature` and `@since` gates. by [@​dmvk](https://redirect.github.com/dmvk) in [https://github.com/bytecodealliance/cargo-component/pull/329](https://redirect.github.com/bytecodealliance/cargo-component/pull/329) - ref(\*)!: Updates all code to use the new publish functionality in wkg by [@​thomastaylor312](https://redirect.github.com/thomastaylor312) in [https://github.com/bytecodealliance/cargo-component/pull/331](https://redirect.github.com/bytecodealliance/cargo-component/pull/331) - updated wasm-pkg-client dep version 0.5.0 by [@​calvinrp](https://redirect.github.com/calvinrp) in [https://github.com/bytecodealliance/cargo-component/pull/334](https://redirect.github.com/bytecodealliance/cargo-component/pull/334) #### New Contributors - [@​dmvk](https://redirect.github.com/dmvk) made their first contribution in [https://github.com/bytecodealliance/cargo-component/pull/329](https://redirect.github.com/bytecodealliance/cargo-component/pull/329) **Full Changelog**: bytecodealliance/cargo-component@v0.15.0...v0.16.0 </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/andrzejressel/pulumi-wasm).
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 adds basic (= doesn't fail parsing) support for WebAssembly/component-model#332. It's basically just a wit-parser version bump.