Hey, something going wrong with latest pulumi rele...
# general
q
Hey, something going wrong with latest pulumi release, I never had this before.
Copy code
Request message serialization failure: b.Va is not a function
Copy code
import * as docker from '@pulumi/docker';
import * as path from 'path';

export const image = new docker.Image('image', {
  imageName: '<http://docker.io/repository/test:tag|docker.io/repository/test:tag>',
  build: {
    context: path.resolve(__dirname, '../../'),
    dockerfile: path.resolve(__dirname, '../../Dockerfile'),
    args: {
      BUILDKIT_INLINE_CACHE: '1',
      '.dockerignore': path.resolve(__dirname, '../../.dockerignore'),
    },
    platform: 'linux/amd64',
  },
});
this just gives this error, nothing else in the stack
any ideas?
f
Hello, I was not able to replicate this myself on
pulumi
v.3.133.0. I have seen reports of this happening from time to time and it may be a transient issue. The Pulumi engineering team is aware of this issue though.
q
looks like something in backward compatibility... I rebuild the devcontainer, and issue disappeared
b
FWIW We ran into a similar issue at my org earlier today with some GCP resources, and the issue turned out to be outdated providers and pulumi versions. Im assuming something in the protocol support got messed up as a result of being pretty outdated. We bumped versions across the board and it seems to be playing nicely again.