Git Product home page Git Product logo

Comments (1)

apparentlymart avatar apparentlymart commented on July 30, 2024 3

Hello! Thanks for reporting this.

I also saw a problem like this when running an old build of "stringer" in a codebase containing go-cty.

In the interests of making this searchable, I'll copy the error message you saw from the other issue into here:

Unexpected package creation during export data loading

The problem seems to be upstream, tracked in golang/go#51629. It will occur as soon as there's at least one package in your codebase which uses Go 1.18 type parameters, and so I guess go-cty was the first module in your dependency tree to begin using those features. If another dependency had happened to start using type parameters first then it would've been that upgrade which would've encountered this error.

The fix was in the golang.org/x/tools module, which your code generator seems to depend on. If that's true then I think the resolution steps would be to:

  • Upgrade to golang.org/x/tools v0.1.12
  • If you're using a pre-built executable of your generator in your GOBIN directory, then you'll need to rebuild that with the upgraded golang.org/x/tools to make it work. If you are running it with go run ... then it should automatically notice that the dependency has changed and so rebuild it.

This module doesn't itself depend on golang.org/x/tools (directly or indirectly), so I can't force a newer version of that module through a change in this repository. The dependency must unfortunately be upgraded in the module which contains the tool, because it's the tool that depends on golang.org/x/tools. Based on what you showed in the linked issue, I guess that means that the dependency from packer-plugin-sdk is the one that needs to be updated here, because that seems to be the module which contains this "mapstructure-to-hcl2" tool.

from go-cty.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.