Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.
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/nodejs-datastore
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9.1.0
Choose a base ref
...
head repository: googleapis/nodejs-datastore
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v9.2.0
Choose a head ref
  • 11 commits
  • 42 files changed
  • 6 contributors

Commits on Jul 29, 2024

  1. feat: update Go Datastore import path (#1261)

    * feat: update Go Datastore import path
    feat: update Go Bigtable import path
    
    PiperOrigin-RevId: 651776284
    
    Source-Link: googleapis/googleapis@b8eed55
    
    Source-Link: googleapis/googleapis-gen@9d7fe2c
    Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOWQ3ZmUyYzQ4OGU4NzY3MWU2ODZlM2ExOWFhOGNmNGYwNzFlODA2YSJ9
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Jul 29, 2024
    Configuration menu
    Copy the full SHA
    bf3dafd View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. test: Add a test that ensures warning is not emitted (#1165)

    * Add a test that ensures warning is not emitted
    
    When EntityFilter is provided then a warning should not be emitted. This commit ensures that a warning is not emitted.
    
    * test: Add a test that ensures warning is not emitted
    
    * Remove test accidentally added in the merge
    danieljbruce authored Aug 19, 2024
    Configuration menu
    Copy the full SHA
    bbcfc3e View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2024

  1. fix: Add excludeFromIndexes in the proper places for large properties…

    … of nested fields (#1266)
    
    * test: Restrict types inside the save function (#1264)
    
    * Add interfaces that restrict values passed to save
    
    * Add interfaces for save
    
    We need help from the compiler so these interfaces will be useful for determining the shape of the data.
    
    * Modify current interfaces to make a closer match
    
    The interfaces should match the actual data types that get passed in.
    
    * key and data in PrepareEntityObjectResponse option
    
    These properties are actually optional
    
    * Document all the interfaces added for the save fn
    
    * Add two tests showing name/value should be provide
    
    * Make the SaveNonArrayData more specific.
    
    save doesn’t encode strings or ints or any values that don’t have keys properly so we should restrict the interface to what it does include.
    
    * Add header
    
    * Test should be more flexible
    
    * Add a class for elements with ToString
    
    * Define the toString class inline
    
    * Eliminate links to points in code
    
    * test: Add tests that describe how save should encode excludeFromIndexes for a complex case (#1263)
    
    * Write a sample test for what save output should be
    
    * Add a test for a bunch of complex excludeFromIndex
    
    * Change the replace function so it works everywhere
    
    * Modify the expected value
    
    Make it contain longStringArray
    
    * Correct the test for evaluating arrays
    
    * Break up the entityToEntityProto into separate par
    
    * Fix the tests to work with new addExcludeFromIndex
    
    * Revert "Break up the entityToEntityProto into separate par"
    
    This reverts commit 60dabd7.
    
    * Revert "Fix the tests to work with new addExcludeFromIndex"
    
    This reverts commit ba4e82b.
    
    * Remove source code changes
    
    * Skip the test that looks at arrays
    
    * Remove some of the wildcard indexes
    
    This is in excludeFromIndexes - replace them with literals.
    
    * Remove another boolean value from excludeFromIndex
    
    * Eliminate duplicate expectedMutations
    
    * Eliminate duplicate runTest function
    
    * Begin to set up the async tests
    
    * Pack all tests into the async framework
    
    * Delete tests addressed by async
    
    * Get rid of test functions and inline everything
    
    * Add comment
    
    * Add comments describing each test case
    
    * Remove only
    
    * Add another test looks at name/value not in array
    
    * Add a test for excludeLarge properties and name/va
    
    * Fix the test so that the array case matches
    
    Matches the single case
    
    * should pass the right properties for an array
    
    * Rename the test
    
    * Change name to entityName
    
    * Add two tests that capture the array encoding
    
    encoding problem
    
    * Change expected output of arrays
    
    * Remove only
    
    * Add 2 more tests to ensure behaviour is preserved
    
    * Correct test - it should apply excludeFromIndexes
    
    * Update the test for the nested value
    
    * fix: Handle excludeLarge properties for arrays properly (#1265)
    
    * Write a sample test for what save output should be
    
    * Add a test for a bunch of complex excludeFromIndex
    
    * Change the replace function so it works everywhere
    
    * Modify the expected value
    
    Make it contain longStringArray
    
    * Correct the test for evaluating arrays
    
    * Break up the entityToEntityProto into separate par
    
    * Fix the tests to work with new addExcludeFromIndex
    
    * Break up the entityToEntityProto into separate par
    
    * Fix the tests to work with new addExcludeFromIndex
    
    * Revert "Break up the entityToEntityProto into separate par"
    
    This reverts commit 60dabd7.
    
    * Revert "Fix the tests to work with new addExcludeFromIndex"
    
    This reverts commit ba4e82b.
    
    * Remove source code changes
    
    * Skip the test that looks at arrays
    
    * Remove some of the wildcard indexes
    
    This is in excludeFromIndexes - replace them with literals.
    
    * Remove another boolean value from excludeFromIndex
    
    * Eliminate duplicate expectedMutations
    
    * Eliminate duplicate runTest function
    
    * Begin to set up the async tests
    
    * Pack all tests into the async framework
    
    * Delete tests addressed by async
    
    * Get rid of test functions and inline everything
    
    * Add comment
    
    * Add comments describing each test case
    
    * Remove only
    
    * Add another test looks at name/value not in array
    
    * Add a test for excludeLarge properties and name/va
    
    * Fix the test so that the array case matches
    
    Matches the single case
    
    * should pass the right properties for an array
    
    * Rename the test
    
    * Change name to entityName
    
    * Add two tests that capture the array encoding
    
    encoding problem
    
    * Change expected output of arrays
    
    * Remove only
    
    * Add 2 more tests to ensure behaviour is preserved
    
    * Make argument more specific for excludeFromIndexes
    
    * Use excludeLargeProperties for array/non-array cas
    
    * Fix the test to include entity proto
    
    * Correct mistakes in initial implementation
    
    * Don’t skip any of the tests
    
    * Remove only
    
    * Add check for excludeLargeProperties
    
    * Remove TODO
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    danieljbruce and gcf-owl-bot[bot] authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    9c7730a View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2024

  1. chore: update links in github issue templates (#1328)

    * chore: update links in github issue templates
    
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    Co-authored-by: sofisl <[email protected]>
    3 people authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    519e33b View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. feat: Add FindNearest API to the stable branch (#1333)

    * feat: Support for field update operators in the Datastore API and resolution strategies when there is a conflict at write time
    
    PiperOrigin-RevId: 683253625
    
    Source-Link: googleapis/googleapis@3effbf2
    
    Source-Link: googleapis/googleapis-gen@5dd983c
    Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNWRkOTgzYzc2NDE3ZjJhZDg4ZjlkNDc0MzhjNDhjMjdkNWFjMGUyNyJ9
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * feat: Add FindNearest API to the stable branch
    
    PiperOrigin-RevId: 684905940
    
    Source-Link: googleapis/googleapis@2196d48
    
    Source-Link: googleapis/googleapis-gen@05df6fa
    Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDVkZjZmYTE2YWI5M2JkOWRhMTdiNTZlZGQzNzliNDM5NjNkZTE2NyJ9
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    Co-authored-by: danieljbruce <[email protected]>
    3 people authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    1d56433 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. docs: Change description of DatastoreRequest class (#1338)

    * Change description of DatastoreRequest class.
    
    * docs: Change description of DatastoreRequest class
    danieljbruce authored Oct 24, 2024
    Configuration menu
    Copy the full SHA
    7c11d93 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ad2c6c0 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2024

  1. docs: Add descriptions to many parameters (#1341)

    * Add descriptions for some query parameters
    
    * Eliminate the extra space
    
    * Add a description to all the alias parameters
    
    * Add documentation for property parameters
    
    * Add descriptions for the aggregation argument
    
    * Add property params to these objects
    
    * Add descriptions for data types
    
    * Fix the broken links
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    Co-authored-by: Kevin Kim <[email protected]>
    3 people authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    08852cc View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2024

  1. docs: Add descriptions to more of the parameters (#1342)

    * Add descriptions for some query parameters
    
    * Eliminate the extra space
    
    * Add a description to all the alias parameters
    
    * Add documentation for property parameters
    
    * Add descriptions for the aggregation argument
    
    * Add property params to these objects
    
    * Add descriptions for data types
    
    * Fix the broken links
    
    * Add documentation for the addExcludeFromIndexes
    
    * Buffer description
    
    * Add a description for entity filters
    
    * Add parameters documentation for the `and` and `or
    
    * Add descriptions for the filter object
    
    * Add some parameter documentation for the client
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    danieljbruce and gcf-owl-bot[bot] authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    01bfb84 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. docs: Add parameters to second commit overload (#1343)

    * Add parameters to second commit overload
    
    * docs: Add parameters to second commit overload
    danieljbruce authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    badffc2 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. chore(main): release 9.2.0 (#1262)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    44dc28f View commit details
    Browse the repository at this point in the history
Loading