Stefan M.
Stefan M.
If I get it right it only fails locally with `vercel dev`, correct?
Might be because of this change https://tip.golang.org/doc/go1.21#tools Can someone test the behavior if you add `toolchain go1.21.0` to your go.mod file? 🤔 Might temporarily fix the problem...
No updates. 😔 But meanwhile I found [this](https://github.com/vercel/vercel/discussions/10941#discussioncomment-9256422comment) by @michael-freling and the solution he posted there should be correct. The "problem" is that go uses language versions until 1.21 and...
Hmm.. sad. I guess the best solution is what initially requested [here](https://github.com/vercel/vercel/discussions/10941#discussioncomment-9256422). Copy the go (and/or toolchain) thing to the `go.work` file. He even posted a bit code that looks...
#12574 was just merged 🤘 Someone can test the latest release and then close this issue if it works 🚀
I can report back that `vercel dev` works again. I tested it with [this project](https://github.com/StefMa/AppVersions) and [this branch](https://github.com/StefMa/AppVersions/pull/85). vercel cli version used: `39.1.0` go version: `1.23.3`
You might wanna check this discussion that provides a solution: https://github.com/apple/pkl/discussions/1032
While we are here, what is the reason that pkl has Mappings and Map and Listing and List? 🤔
Simar issue: https://github.com/apple/pkl/issues/278 Because I guess such dependencies shouldn't be in cache since they can be updated at any time... 🤔 Another which might be related: #313 Not sure exactly...
@markushi The tests failing with > Unrecognized auth token format! secrets are not available for PRs. See https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#accessing-secrets In your workflow file you're using `SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}`. A potential...