Skip to content
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 or learn 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: googleapis/sdk-platform-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.14.0
Choose a base ref
...
head repository: googleapis/sdk-platform-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.15.0
Choose a head ref
  • 16 commits
  • 208 files changed
  • 9 contributors

Commits on Jan 19, 2023

  1. chore(main): release 2.14.1-SNAPSHOT (#1258)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Jan 19, 2023
    Configuration menu
    Copy the full SHA
    92984db View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2023

  1. ci: speed up presubmit downstream test by not explicitly installing a…

    …ll modules in google-cloud-java (#1257)
    burkedavison authored Jan 24, 2023
    Configuration menu
    Copy the full SHA
    8ef747b View commit details
    Browse the repository at this point in the history
  2. fix: support mvn fmt:check and fmt:format (#1266)

    * fix: support mvn fmt:check and fmt:format
    
    * ci: remove unnecessary root project exclusion from fmt:check
    burkedavison authored Jan 24, 2023
    Configuration menu
    Copy the full SHA
    c96a2e7 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2023

  1. ci: add nightly build workflow (#1276)

    * ci: add nightly build workflow
    
    * fix: support long filenames on windows
    
    * fix: avoid new lines to bypass OS differences
    
    * fix: explicitly use bash to avoid powershell
    
    * fix: use System.lineSeparator() to support testing on Windows
    
    * fix: formatting
    
    * fix: avoid new lines in Truth assertion
    
    * chore: use mvn's -T 1C
    
    * ci: remove bazel test from matrix testing due to missing Visual C++ tools in Windows image
    
    * ci: switch to nightly cron trigger
    
    * chore: whitespace request
    
    * ci: use specific OS runner image versions
    
    * ci: use bazelisk
    
    * ci: re-enable pull-request testing of nightly builds
    
    * Revert "ci: use specific OS runner image versions"
    
    This reverts commit 873474a.
    
    * ci: replace -latest with explicit versions
    
    * ci: replace 'pull_request' trigger event with 'workflow_dispatch'
    burkedavison authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    7d426ed View commit details
    Browse the repository at this point in the history
  2. chore: update README to include instructions on bazelisk installation (

    …#1271)
    
    * chore: update README to include instructions on bazelisk installation
    
    * add link to github page; move to setup section
    
    * fix typo
    mpeddada1 authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    d4efc37 View commit details
    Browse the repository at this point in the history
  3. ci: split showcase golden and integration test phases (#1280)

    * ci: split showcase golden and integration test phases
    
    * ci: remove 'Install system dependencies' from native check
    burkedavison authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    9737beb View commit details
    Browse the repository at this point in the history
  4. build: not relying on gax's zip archive (#1273)

    gax-java is now part of gapic-generator-java. No need to fetch
    the released zip file to get the dependencies list.
    
    In future, we'll revisit how we maintain the dependencies to
    the user of gapic-generator-java, even for self-service users.
    suztomo authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    86a560d View commit details
    Browse the repository at this point in the history
  5. fix(ast): update import generation to cover annotation parameters (#1229

    )
    
    This change is cherry-picked from an AST fix made in the spring branch (https://togithub.com/googleapis/gapic-generator-java/pull/1208). It fixes `ImportWriter` to account for types introduced by annotation parameters, which as enabled in #1012.
    emmileaf authored Jan 26, 2023
    Configuration menu
    Copy the full SHA
    bdf12b0 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2023

  1. feat: Do not generate Service REST code if there are no matching RPC …

    …in a Service (#1236)
    
    * feat: Add callable getter methods for REST
    
    * chore: Update showcase tests
    
    * chore: Update error message
    
    * feat: Move httpjson specific logic to sub composer
    
    * feat: Move method supported logic to Method
    
    * feat: Move method supported logic to Method
    
    * chore: Format the files
    
    * chore: Cleanup Abstract composer
    
    * chore: Move code to httpjson composer
    
    * chore: Resolve code smell
    
    * feat: Use generic error message
    
    * chore: Fix format issues
    
    * feat: Add tests for Method.isSupportedByTransport()
    
    * feat: Resolve PR comments
    
    * feat: Update back to private
    
    * feat: Update error message
    
    * feat: Update javadoc comment
    
    * feat: Do not generate Service REST code if there are no matching RPC in a Service
    
    * chore: Pull in latest part 1 changes
    
    * fix: Update Kind to NON_GENERATED
    
    * feat: Do not generate secondary Transport sample if no rest code is generated
    
    * feat: Do not generate httpjson tests if no matching RPCs
    
    * chore: Run mvn test -DupdateUnitGoldens
    
    * chore: Update formatting
    
    * chore: Add apigeeconnect to test REGAPIC
    
    * chore: Create directory for new modules
    
    * chore: Update googleapis commit to a later version for grpc+rest enabled APIs
    
    * chore Add in goldens for apigeeconnect
    
    * chore: Add comments for funcs
    
    * chore: Refactor ServiceClientClassComposer for GRPC_REST
    
    * chore: Remove unused import
    
    * chore: Remove unnecessary if/else check
    
    * chore: Fix transport sample name
    
    * chore: Update apigeeconnect IT goldens
    
    * chore: Update asset IT goldens
    
    * chore: Update asset goldens
    
    * chore: Update credentials IT goldens
    
    * chore: Update library IT goldens
    
    * chore: Update redis IT goldens
    
    * chore: Fix linting issues
    
    * chore: Add showcase extended proto framework
    
    * chore: Use seperate Bazel rules for showcase extended
    
    * chore: Seperate GRPC jar into separate jobs
    
    * chore: Update bazel build file
    
    * Apply suggestions from code review
    
    Co-authored-by: Burke Davison <40617934+burkedavison@users.noreply.github.com>
    
    * chore: Update showcase tests
    
    * chore: Resolve sonar comments
    
    * chore: Update unit tests for wicked proto
    
    * chore: Resolve format
    
    * chore: Update sonar comments
    
    * chore: Update PR comments
    
    * chore: Update golden test cases
    
    * chore: Revert back to original sample name
    
    * chore: Update showcase and goldens
    
    * chore: Leave framework but remove wicked proto from showcase extended
    
    * chore: Update showcase project with extended info
    
    * chore: Remove comment
    
    * chore: Use TransportContext instead of duplicate transportName()
    
    * chore: Fix formatting issues
    
    * chore: Remove the changed spacing in the file
    
    * chore: Use transportContext where possible
    
    * chore: Fix format issues
    
    * chore: Fix compile issue
    
    ---------
    
    Co-authored-by: Burke Davison <40617934+burkedavison@users.noreply.github.com>
    lqiu96 and burkedavison authored Jan 27, 2023
    Configuration menu
    Copy the full SHA
    9c06bc9 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2023

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

Commits on Feb 1, 2023

  1. Configuration menu
    Copy the full SHA
    4b98054 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    734381d View commit details
    Browse the repository at this point in the history
  3. ci: use java-shared-dependencies in google-cloud-java repository for …

    …downstream test (#1291)
    
    * ci: use java-shared-dependencies in google-cloud-java
    
    * No need to modify google-cloud-jar-parent
    suztomo authored Feb 1, 2023
    Configuration menu
    Copy the full SHA
    dc3233f View commit details
    Browse the repository at this point in the history
  4. fix(java): initialize netty-shaded at run-time and add reflection con…

    …figurations for netty classes (#1290)
    
    * fix(java): initialize netty-shaded at run-time and add reflection configurations for netty classes
    mpeddada1 authored Feb 1, 2023
    Configuration menu
    Copy the full SHA
    b7ca95f View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2023

  1. ci(showcase): disable rest_numeric_enum for showcase testing (#1284)

    * ci(showcase): disable rest_numeric_enum feature in showcase tests
    mpeddada1 authored Feb 2, 2023
    Configuration menu
    Copy the full SHA
    70cc38d View commit details
    Browse the repository at this point in the history
  2. chore(main): release 2.15.0 (#1269)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Feb 2, 2023
    Configuration menu
    Copy the full SHA
    197c982 View commit details
    Browse the repository at this point in the history
Loading