Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also orlearn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also.Learn more about diff comparisons here.
base repository:cadence-workflow/cadence-java-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:v3.12.7
Choose a base ref
Loading
...
head repository:cadence-workflow/cadence-java-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:v4.0.0
Choose a head ref
Loading
  • 18commits
  • 430files changed
  • 6contributors

Commits on Jun 3, 2025

  1. fix updateDomainRequest mapper bug (#1005)

    What changed?mapper correct population of fieldsWhy?How did you test it?unit test
    @shijiesheng
    shijiesheng authoredJun 3, 2025
    Configuration menu
    Copy the full SHA
    bfe1039View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2025

  1. Configuration menu
    Copy the full SHA
    daa6211View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2025

  1. Remove payload from Thrift converter deprecation log and add addition…

    …al log for TEnumType converter (#1011)What changed?added deprecation log for TEnumType converterlog only payload class rather than bodyWhy?In V4, default support for thrift message will be dropped
    @shijiesheng
    shijiesheng authoredJul 8, 2025
    Configuration menu
    Copy the full SHA
    3a918a0View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2025

  1. Publish to Central Publisher Portal instead (#1012)

    What changed?point API to the new central publisher portalchange github release action to directly releaseWhy?deprecation of old nexus portalHow did you test it?locally uploaded (seehttps://central.sonatype.com/artifact/com.uber.cadence/cadence-client/3.12.8-rc.1)
    @shijiesheng
    shijiesheng authoredJul 10, 2025
    Configuration menu
    Copy the full SHA
    63a19b4View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2025

  1. Added github action tests (#1013)

    * Added github action tests* Fix naming in yaml file---------Co-authored-by: Mandy Chen <mandy.chen@uber.com>
    @mandyschen
    mandyschen andMandy Chen authoredJul 29, 2025
    Configuration menu
    Copy the full SHA
    d1a2f43View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2025

  1. Always upload artifacts (#1016)

    * Always upload artifacts* Test upload after fail* Try with running test* Remove forced fail---------Co-authored-by: Mandy Chen <mandy.chen@uber.com>
    @mandyschen
    mandyschen andMandy Chen authoredJul 31, 2025
    Configuration menu
    Copy the full SHA
    ea7a1c3View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2025

  1. Configuration menu
    Copy the full SHA
    8652ad7View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2025

  1. Remove references to buildkite (#1014)

    Co-authored-by: Mandy Chen <mandy.chen@uber.com>
    @mandyschen
    mandyschen andMandy Chen authoredAug 12, 2025
    Configuration menu
    Copy the full SHA
    c0ca78dView commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2025

  1. Add attempt number to structured activity logger (#1020)

    Co-authored-by: Evan Sandoval <evan.sandoval@uber.com>
    @evansandoval
    evansandoval andEvan Sandoval authoredAug 13, 2025
    Configuration menu
    Copy the full SHA
    468dee0View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2025

  1. remove unnecessary TaskListKind internal entity (#1023)

    What changed?Remove internal TaskListKind entityuse thrift entity directly (like everywhere else in the repo)Why?This complicates things and particularly for thrift deprecationHow did you test it?Unit TestSigned-off-by: Shijie Sheng <liouvetren@gmail.com>
    @shijiesheng
    shijiesheng authoredSep 15, 2025
    Configuration menu
    Copy the full SHA
    fa8456aView commit details
    Browse the repository at this point in the history
  2. merge raw history removal (#1025)

    Signed-off-by: Shijie Sheng <liouvetren@gmail.com>What changed?Remove raw history support in client. (It's already reviewed and merged in a side branch#1004 ) Now we are checking into main branchWhy?History is stored as Thrift encoded binary. Sending raw history in Thrift will no longer be supported in V4How did you test it?Unit Test
    @shijiesheng
    shijiesheng authoredSep 15, 2025
    Configuration menu
    Copy the full SHA
    729c884View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2025

  1. add v4 entities (#1024)

    Signed-off-by: Shijie Sheng <liouvetren@gmail.com>What changed?Add new internal entities that will replace thrift ones.These entities will be used in the next few diffs that removed thrift support.To generate entities, ./scripts/v4_entity_generator/run.shWhy?Thrift entities are not easily replaceable by GRPC ones. One quick approach for deprecation is to generate similar interface internal entities to replace thrift ones.How did you test it?These are generated by script
    @shijiesheng
    shijiesheng authoredSep 26, 2025
    Configuration menu
    Copy the full SHA
    e0704d1View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2025

  1. feat (thrift deprecation)!: replace thrift entities with internal ones (

    #1022)What changed?Migration GuideTo construct GRPC Workflow Service use new WorkflowServiceGrpc() instead of new Thrift2ProtoAdapter(IGrpcServiceStubs.newInstance());Removed TException and now all workflow service method returns CadenceError instead;Replaced thrift generated entities with internal entities (Currently still generated from thrift files but no longer has runtime dependency on thrift);Removed support for thrift entities in default data converter;Why?Java thrift deprecationHow did you test it?Unit Test
    @shijiesheng
    shijiesheng authoredOct 1, 2025
    Configuration menu
    Copy the full SHA
    8bb6468View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2025

  1. fix<data converter>: fail open on exception not found (#1027)

    What changed?Default data converter would throw I/O exception and thus fail workflow processing if the exception no longer exists. This PR changes the behavior by return null instead.Why?In V4, thrift exceptions will be removed and thus this is needed to avoid breaking existing workflows.How did you test it?Unit Test
    @shijiesheng
    shijiesheng authoredOct 2, 2025
    Configuration menu
    Copy the full SHA
    8f860b9View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2025

  1. ci: Lint PR titles with Conventional Commits standard (#1028)

    Signed-off-by: Chris Warren <16132615+c-warren@users.noreply.github.com>
    @c-warren
    c-warren authoredOct 6, 2025
    Configuration menu
    Copy the full SHA
    7b0bfb0View commit details
    Browse the repository at this point in the history
  2. ci: Allow gpg signed commits to pass DCO checks (#1029)

    Signed-off-by: Chris Warren <16132615+c-warren@users.noreply.github.com>
    @c-warren
    c-warren authoredOct 6, 2025
    Configuration menu
    Copy the full SHA
    1771f9bView commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2025

  1. fix(mapper): avoid null pointer exception in request mappers (#1030)

    What changed?nullable check before setting the field in GRPC entitiesWhy?GRPC entities have nullable checks
    @shijiesheng
    shijiesheng authoredOct 10, 2025
    Configuration menu
    Copy the full SHA
    c0a7fc5View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2025

  1. chore (thrift deprecation): remove tchannel dependency and other thri…

    …ft related names (#1031)What changed?remove tchannel dependencychange thrift namingremove some thrift related testsWhy?thrift deprecationHow did you test it?Unit Test
    @shijiesheng
    shijiesheng authoredOct 14, 2025
    Configuration menu
    Copy the full SHA
    474f5d1View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp