X Tutup
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/java-bigtable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main@{1day}
Choose a base ref
...
head repository: googleapis/java-bigtable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 9, 2026

  1. docs(bigtable): expose Admin API Stubs in Javadoc (#2835)

    In PR #2834, we removed the @internalapi annotations from the Admin API
    stub classes to align with a vanilla GAPIC surface. Because they are no
    longer internal, we must expose them in the public Javadoc reference
    documentation so that power users can use them for advanced configuration
    and custom transports.
    
    This commit updates the `pom.xml` file to:
    - Remove `sourceFileExclude` entries for Admin API stub classes in the
      `maven-javadoc-plugin` configuration.
    - Update the `docFX` regex to stop excluding `stub.*` classes for the
      `admin.v2` package.
    jinseopkim0 authored Mar 9, 2026
    Configuration menu
    Copy the full SHA
    b7a0232 View commit details
    Browse the repository at this point in the history
  2. fix: Fix race in emulator controller (#2836)

    Fix TSan data race in EmulatorController by synchronizing logging threads.
    
    The race condition occurred when a previous emulator process instance was shutting down
    while a new instance was starting. The logging threads for stdout/stderr of the previous
    process could still be reading from file descriptors that were subsequently reused for
    the new process's pipes.
    
    This fix ensures that:
    1. Logging threads are tracked.
    2. EmulatorController.stop() joins these threads after destroying the process.
    3. EmulatorController.stop() waits for the process to exit completely.
    mutianf authored Mar 9, 2026
    Configuration menu
    Copy the full SHA
    17707be View commit details
    Browse the repository at this point in the history
Loading
X Tutup