This is an automated email from the ASF dual-hosted git repository. trohrmann pushed a change to branch release-3.2 in repository https://gitbox.apache.org/repos/asf/flink-statefun-playground.git.
omit ebc83ab Change the version to 3.1.1 omit 127ab59 [hotfix] Fix typo in README omit 33bbe6a [FLINK-24301] use Async transport on all statefun playground examples omit 51c5c46 [hotfix] Remove trailing YAML document delimiters in module.yamls omit b7e7f3e [release] Add CoD and README for v3.1 series add c5ba3e4 [hotfix] Remove trailing YAML document delimiters in module.yamls add dffc594 [FLINK-24301] use Async transport on all statefun playground examples add 330247b [FLINK-24284][js] Add a JavaScript greeter add 9edb3eb [FLINK-24284][js] Add a JavaScript showcase add cccd603 [FLINK-24284][js] Use the latest merged version of the JS SDK add dcfcb3a [hotfix] Fix typo in README This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (ebc83ab) \ N -- N -- N refs/heads/release-3.2 (dcfcb3a) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: CODE_OF_CONDUCT.md | 3 - README.md | 23 +- deployments/aws-lambda/pom.xml | 4 +- .../k8s/04-statefun/01-statefun-runtime.yaml | 4 +- go/greeter/docker-compose.yml | 4 +- go/greeter/go.mod | 2 +- go/greeter/go.sum | 4 +- go/showcase/docker-compose.yml | 4 +- go/showcase/go.mod | 2 +- go/showcase/go.sum | 4 +- java/greeter/docker-compose.yml | 4 +- java/greeter/pom.xml | 4 +- java/shopping-cart/docker-compose.yml | 4 +- java/shopping-cart/pom.xml | 4 +- java/showcase/pom.xml | 4 +- javascript/.gitignore | 2 + {python => javascript}/greeter/.dockerignore | 0 javascript/greeter/.gitignore | 3 + {python => javascript}/greeter/Dockerfile | 16 +- {go => javascript}/greeter/README.md | 6 +- .../greeter/apache-flink-statefun-3.2-SNAPSHOT.tgz | Bin 0 -> 49694 bytes {python => javascript}/greeter/arch.png | Bin {python => javascript}/greeter/docker-compose.yml | 4 +- javascript/greeter/functions.js | 120 +++++++++ .../greeter}/input-example.json | 0 {python => javascript}/greeter/module.yaml | 6 +- javascript/greeter/package.json | 12 + javascript/showcase/.gitignore | 3 + javascript/showcase/README.md | 33 +++ .../apache-flink-statefun-3.2-SNAPSHOT.tgz | Bin 0 -> 49694 bytes {python => javascript}/showcase/docker-compose.yml | 4 +- {python => javascript}/showcase/input-example.json | 0 {python => javascript}/showcase/module.yaml | 4 +- javascript/showcase/package.json | 15 ++ javascript/showcase/showcase/showcase.js | 283 +++++++++++++++++++++ .../showcase/showcase/showcase_custom_types.js | 14 +- .../showcase}/showcase/showcase_custom_types.proto | 0 .../showcase/showcase/showcase_custom_types_pb.js | 215 ++++++++++++++++ python/greeter/docker-compose.yml | 4 +- python/greeter/requirements.txt | 2 +- python/showcase/docker-compose.yml | 4 +- python/showcase/setup.py | 4 +- 42 files changed, 740 insertions(+), 88 deletions(-) delete mode 100644 CODE_OF_CONDUCT.md create mode 100644 javascript/.gitignore copy {python => javascript}/greeter/.dockerignore (100%) create mode 100644 javascript/greeter/.gitignore copy {python => javascript}/greeter/Dockerfile (79%) copy {go => javascript}/greeter/README.md (89%) create mode 100644 javascript/greeter/apache-flink-statefun-3.2-SNAPSHOT.tgz copy {python => javascript}/greeter/arch.png (100%) copy {python => javascript}/greeter/docker-compose.yml (97%) create mode 100644 javascript/greeter/functions.js copy {python/showcase => javascript/greeter}/input-example.json (100%) copy {python => javascript}/greeter/module.yaml (93%) create mode 100644 javascript/greeter/package.json create mode 100644 javascript/showcase/.gitignore create mode 100644 javascript/showcase/README.md create mode 100644 javascript/showcase/apache-flink-statefun-3.2-SNAPSHOT.tgz copy {python => javascript}/showcase/docker-compose.yml (97%) copy {python => javascript}/showcase/input-example.json (100%) copy {python => javascript}/showcase/module.yaml (93%) create mode 100644 javascript/showcase/package.json create mode 100644 javascript/showcase/showcase/showcase.js copy python/showcase/showcase_custom_types.proto => javascript/showcase/showcase/showcase_custom_types.js (71%) copy {python => javascript/showcase}/showcase/showcase_custom_types.proto (100%) create mode 100644 javascript/showcase/showcase/showcase_custom_types_pb.js