Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @azure/cosmos to v3.17.3 - autoclosed #40

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 24, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@azure/cosmos (source) 3.10.3 -> 3.17.3 age adoption passing confidence

Release Notes

Azure/azure-sdk-for-js (@​azure/cosmos)

v3.17.3

3.17.3 (2023-02-13)

Features Added
  • Changes in bulk api to honour size restictions (i.e 2Mb) while creating individual batches.#​23923
  • Enriched Timeout error response. We had defined Timeout error as custom error in our sdk but we were not sending up any message along with it, now we are throwing the specific Error. #​23025
  • Added functionality to delete entire data for a partition id. #​22091
  • SDK now defines all possible error types, namely Export RestError, AbortError, TimeoutError, and ErrorResponse. 22789
Bugs Fixed
  • Removed excessive log warnings during bulk operations on a container with no partitionkey set.
  • Fix issue with GlobalEndpointManager never making endpoints available after they fall-back #​22726
  • Fix issue that caused parallel queries to break when returning a result of 0 or false. #​24493
Other Changes
  • Error handling guidelines are added in README.md

v3.17.2

3.17.2 (2022-11-15)
Bugs Fixed
  • Fix issue with patch api not working with aadCredentials #​20689
  • Improve the contract of Item.batch operation from type any to OperationResponse #​23652
  • Add section for the current limitations with the SDK #​21650
  • Fix issue aad refresh token automatically getting refreshed #​22620

v3.17.1

3.17.1 (2022-09-12)
Bugs Fixed
  • Fix issue with unwanted runtime dependency on @azure/identity #​22968

v3.17.0

3.17.0 (2022-08-19)
Features Added
GA: Azure Cosmos DB Integrated Cache
  • Support DedicatedGatewayRequestOptions and MaxIntegratedCacheStaleness #​21240
  • Upgrade cosmos with azure core tracing #​22284
  • Removed old logging and implement Azure core logging coverage #​18723
Bugs Fixed
  • ParallelQueryExecutionContextBase breaks use of abortSignal #​18544
  • Fixes id encoding issues when using special characters fo RoutingGateway

v3.16.4

3.16.4 (2022-08-05)
Bugs Fixed
  • Reverts changes of PR 22548 to avoid possible regression when customers use id with special characters and their account is on ComputeGateway already. - See PR 22818

v3.16.3

3.16.3 (2022-07-13)
Bugs Fixed
  • Fixes issues with "id" encoding when using special characters that should be allowed in the "id" property of a document. #​22548

v3.16.2

3.16.2 (2022-06-24)
Bugs Fixed
  • Added support to run queries with group by over a column with null values. #​22345

v3.16.1

3.16.1 (2022-05-31)
Bugs Fixed

v3.16.0

3.16.0 (2022-05-23)
Features Added

v3.15.1

3.15.1 (2022-01-24)

Bugs Fixed
  • Fixed the paths mapped by the browser entry in package.json to be correct for the package's new output structure. This solves errors with bundling the package for browsers.

v3.15.0

3.15.0 (2021-11-22)

Features Added
  • GA Adds container.item(itemId).patch(). patch() is an alternative to replace() for item updates. https://github.com/Azure/azure-sdk-for-js/pull/16264/files#diff-7caca690c469e2025576523c0377ac71815f001024fde7c48b20cd24adaa6977R561
  • GA support for Bulk operation PATCH.
  • GA support for Batch operation PATCH.
  • Added the SasTokenProperties type and a createAuthorizationSasToken function to enable scoped access to Cosmos resources with SAS tokens. For an example that demonstrates creating a SAS token and using it to authenticate a CosmosClient, see the SasTokenAuth sample.
Other Changes
  • Made several changes to the sample programs to improve code quality and compatibility with Node 12, and upgraded the sample programs' dependencies.

v3.14.1

3.14.1 (2021-09-02)

Bugs Fixed

v3.14.0

3.14.0 (2021-09-01)

Features Added
  • PREVIEW Adds container.item(itemId).patch(). patch() is an alternative to replace() for item updates. https://github.com/Azure/azure-sdk-for-js/pull/16264/files#diff-7caca690c469e2025576523c0377ac71815f001024fde7c48b20cd24adaa6977R561
  • PREVIEW Adds support for Bulk operation PATCH.
  • PREVIEW Adds support for Batch operation PATCH.
Bugs Fixed
  • Fixes bug where Batch was passing the wrong header for batch requests with partition keys
  • Fixes 401s when using AAD auth. AAD credentials should now work and no longer cause 429s from @​azure/identity at high throughput.

v3.13.1

3.13.1 (2021-08-23)

Bugs Fixed
  • Fixed bugs in session token clearing logic. Session Not found (404, substatus 1002) was not being handled correctly by the session retry policy and would mistakenly retry the request with the same session token.

v3.13.0

3.13.0 (2021-08-10)

Features Added
  • Adds TransactionalBatch to items container.items.batch(operations)
Bugs Fixed
  • Fixed bulk requests which had operations without partitionKey specified.

v3.12.3

3.12.3 (2021-07-23)

Bugs Fixed
  • Fix bulk operations on containers with multiple partitions with nested partition keys

v3.12.2

3.12.2 (2021-07-21)

Features Added
  • Adopted target ES2017 to reduce bundle size.

v3.12.1

3.12.1 (2021-07-16)

Bugs Fixed
  • Returned default retryPolicy option fixedRetryIntervalInMilliseconds to its original default 0.

v3.12.0

3.12.0 (2021-07-06)

Features Added
  • With the dropping of support for Node.js versions that are no longer in LTS, the dependency on @types/node has been updated to version 12. Read our support policy for more details.
  • Added background refresher for endpoints, and new ConnectionPolicy options. Refreshing defaults to true, and the default refresh rate is every 5 minutes.
const client = new CosmosClient({
  endpoint,
  key: masterKey,
  connectionPolicy: {
    ...defaultConnectionPolicy,
    endpointRefreshRateInMs: 700,
    enableBackgroundEndpointRefreshing: true
  }
})
  • Added client.dispose() for closing the endpoint refresher verbosely. Necessary when destroying the CosmosClient inside existing processes like an express web server, or when you want to destroy the client and create a new one in the same process.
const client = new CosmosClient()
client.dispose() // cancels background endpoint refreshing

v3.11.5

3.11.5 (2021-06-10)

Features Added
Breaking Changes
Key Bugs Fixed
Fixed
  • BUGFIX: Adds another failover condition.

v3.11.4

3.11.4 (2021-06-10)

  • BUGFIX: Correctly failover to new regions when regional DNS has gone offline.

v3.11.3

3.11.3 (2021-05-21)

  • BUGFIX: Sanitize user endpoint URLs for AAD DataPlane RBAC token generation.

v3.11.2

3.11.2 (2021-05-11)

  • BUGFIX: Cache https client between requests.

v3.11.1

3.11.1 (2021-05-06)

  • BUGFIX: Import URL from Browser/Node shim rather than built-in module.

v3.11.0

3.11.0 (2021-04-21)

  • FEATURE: Internal client update. No user facing changes, but major version bump to be safe.

v3.10.6

3.10.6 (2021-04-14)

  • BUGFIX: Adds partitionKey parameter to container.conflicts.delete

v3.10.5

3.10.5 (2021-03-25)

  • BUGFIX: Pins node-abort-controller version as we depend on a type in v1.2.0.

v3.10.4

3.10.4 (2021-03-23)

  • FEATURE: Adds Bulk continueOnError option

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from dfed228 to 50aefac Compare March 26, 2021 13:25
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.10.4 Update dependency @azure/cosmos to v3.10.5 Mar 26, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch 2 times, most recently from 3eb3313 to 0300e50 Compare March 26, 2021 14:29
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 0300e50 to 1b5cd7a Compare April 20, 2021 16:23
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.10.5 Update dependency @azure/cosmos to v3.10.6 Apr 20, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 1b5cd7a to 097f36a Compare April 21, 2021 13:20
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.10.6 Update dependency @azure/cosmos to v3.11.0 Apr 22, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch 4 times, most recently from 96cb2e3 to f3597a5 Compare April 29, 2021 15:39
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from f3597a5 to d4b4c25 Compare May 7, 2021 16:17
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.11.0 Update dependency @azure/cosmos to v3.11.1 May 7, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch 2 times, most recently from 75a255e to 9a55977 Compare May 11, 2021 22:01
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.11.1 Update dependency @azure/cosmos to v3.11.2 May 11, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 9a55977 to 41eef71 Compare May 22, 2021 15:01
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.11.2 Update dependency @azure/cosmos to v3.11.3 May 22, 2021
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.11.3 Update dependency @azure/cosmos to v3.11.4 Jun 10, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch 2 times, most recently from 008332c to d6a085c Compare June 11, 2021 00:58
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.11.4 Update dependency @azure/cosmos to v3.11.5 Jun 11, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from d6a085c to d663fc8 Compare June 15, 2021 12:29
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from d663fc8 to a6de4ce Compare July 9, 2021 15:55
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.11.5 Update dependency @azure/cosmos to v3.12.0 Jul 9, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from a6de4ce to b627bc3 Compare July 20, 2021 00:03
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.12.0 Update dependency @azure/cosmos to v3.12.1 Jul 20, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from b627bc3 to c1ea861 Compare July 22, 2021 15:55
@renovate renovate bot changed the title Update dependency @azure/cosmos to v3.12.1 Update dependency @azure/cosmos to v3.12.2 Jul 22, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 1972331 to e3b2db2 Compare November 3, 2021 18:36
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from e3b2db2 to 21dd352 Compare December 9, 2021 19:45
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.14.1 chore(deps): update dependency @azure/cosmos to v3.15.0 Dec 9, 2021
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 21dd352 to c88f237 Compare February 7, 2022 17:31
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.15.0 chore(deps): update dependency @azure/cosmos to v3.15.1 Feb 7, 2022
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from c88f237 to 6a81079 Compare February 10, 2022 04:48
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch 2 times, most recently from fc153b9 to f704398 Compare May 2, 2022 16:35
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from f704398 to c155d6d Compare May 16, 2022 23:09
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.15.1 chore(deps): update dependency @azure/cosmos to v3.16.0 May 25, 2022
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch 2 times, most recently from 0b19278 to 9c20aef Compare May 31, 2022 22:19
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.16.0 chore(deps): update dependency @azure/cosmos to v3.16.1 May 31, 2022
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 9c20aef to 1bda5a2 Compare June 28, 2022 11:24
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.16.1 chore(deps): update dependency @azure/cosmos to v3.16.2 Jun 28, 2022
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 1bda5a2 to 4f8790b Compare July 15, 2022 02:45
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.16.2 chore(deps): update dependency @azure/cosmos to v3.16.3 Jul 15, 2022
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 4f8790b to b8597c1 Compare September 25, 2022 20:24
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.16.3 chore(deps): update dependency @azure/cosmos to v3.17.1 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from b8597c1 to 05e3857 Compare November 20, 2022 14:28
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.17.1 chore(deps): update dependency @azure/cosmos to v3.17.2 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from 05e3857 to 532da2a Compare March 12, 2023 19:19
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.17.2 chore(deps): update dependency @azure/cosmos to v3.17.3 Mar 12, 2023
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch 2 times, most recently from a376008 to d74a5ef Compare March 6, 2024 16:03
@renovate renovate bot force-pushed the renovate/azure-cosmos-3.x branch from d74a5ef to ab34bf1 Compare March 6, 2024 18:04
@renovate renovate bot changed the title chore(deps): update dependency @azure/cosmos to v3.17.3 chore(deps): update dependency @azure/cosmos to v3.17.3 - autoclosed Mar 6, 2024
@renovate renovate bot closed this Mar 6, 2024
@renovate renovate bot deleted the renovate/azure-cosmos-3.x branch March 6, 2024 19:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants