Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 18, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps candid_parser from 0.1.4 to 0.2.1.

Changelog

Sourced from candid_parser's changelog.

candid_parser 0.2.1

  • Breaking changes:

    • The candid_parser::types module has been renamed to candid_parser::syntax.
  • Non-breaking changes:

    • Supports collecting line comments as doc comments in the following cases:
      • above services:
        // This is a valid doc comment for the service
        service : {
          greet : (text) -> (text);
        }
        
      • above actor methods:
        service : {
          // This is a valid doc comment for greet
          greet : (text) -> (text);
        }
        
      • above type declarations:
        // This is a valid doc comment for type A
        type A = record {
          my_field : text;
        };
        
      • above record and variant fields:
        type A = record {
          // This is a valid doc comment for my_field
          my_field : text;
        };
        

        type B = record {
        // This is a valid doc comment for nat element
        nat;
        text;
        }

        type C = variant {
        // This is a valid doc comment for my_variant_field
        my_variant_field : nat;
        };

    • Adds the IDLMergedProg struct, used to collect the syntax types when parsing Candid declarations.
    • Supports reflecting doc comments from Candid declarations to the generated bindings. To enable this feature, we had to change the following:
      • The candid_parser::bindings::motoko::compile function now takes an additional &IDLMergedProg parameter.
      • The candid_parser::bindings::rust::compile function now takes an additional &IDLMergedProg parameter.

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 18, 2025
@dependabot dependabot bot requested a review from a team as a code owner August 18, 2025 00:19
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 18, 2025
@yhabib
Copy link
Contributor

yhabib commented Aug 18, 2025

@dependabot rebase

@yhabib yhabib force-pushed the dependabot/cargo/candid_parser-0.2.1 branch from 3bf5b84 to 5a0fd01 Compare August 18, 2025 11:30
Bumps [candid_parser](https://github.com/dfinity/candid) from 0.1.4 to 0.2.1.
- [Release notes](https://github.com/dfinity/candid/releases)
- [Changelog](https://github.com/dfinity/candid/blob/master/CHANGELOG.md)
- [Commits](https://github.com/dfinity/candid/commits)

---
updated-dependencies:
- dependency-name: candid_parser
  dependency-version: 0.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@yhabib yhabib force-pushed the dependabot/cargo/candid_parser-0.2.1 branch from 5a0fd01 to f4a95b1 Compare August 19, 2025 05:36
@yhabib
Copy link
Contributor

yhabib commented Aug 19, 2025

Closing in favor of #7287

@yhabib yhabib closed this Aug 19, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 19, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/cargo/candid_parser-0.2.1 branch August 19, 2025 06:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant