Граф коммитов

308 Коммитов

Автор SHA1 Сообщение Дата
Sarangan Rajamanickam 3bdeb5b757
Skip Semantic Test (#16557)
* Skip Semantic Test

* Adde comment
2021-07-26 22:17:56 +00:00
Maor Leger 5cd6362fbd
[core] - Align with latest OpenTelemetry implementations (#16347)
## What

- Remove `setTracer`
- Remove `NoOpTracer` and `NoOpSpan`
- Use Otel's APIs where possible (like when creating a no-op)
- Respect AZURE_TRACING_DISABLED environment variable
- Include test support for tracing utilizing OTel's trace API
- Avoid injecting invalid `tracerparent` header fields

## Why

- `setTracer` was added before OTel had their own implementation of a global tracer provider. For consistency with other libraries we should use the global tracer that was registered. It also leaves us out of the business of maintaining caches, global tracers, and other annoying things.
- These are no longer needed, since OTel has a recommended way to wrap a span in a NoOp. And, if no tracer provider was registered, a non-recording tracer  (NoOp) will be created. All managed by OTel
- Finally, AZURE_TRACING_DISABLED is one of the env vars our guidelines say we should support

Resolves #16088
Resolves #15730
Resolves #10205
2021-07-15 08:18:54 -07:00
Azure SDK Bot 2419310edd
Increment version for search releases (#16290)
* Increment package version after release of azure-search-documents

* Update version in perf tests

Co-authored-by: Sarangan Rajamanickam <sarajama@microsoft.com>
2021-07-07 17:43:03 -07:00
Sarangan Rajamanickam d5d8b9709a
July Release Search SDK Code Changes (#16227)
* July Release Search SDK Code Changes

* Changes Part II

* Update Changelog

* Minor update to changelog
2021-07-07 11:41:35 -07:00
bashiMoha dc6059810b
Dispaly links as list (#16117)
* displayed links as  a list rather than a single line

* appconfiguration\Readme:  displayed links as a list rather than a single line

* confidential-ledger-rest/README.md: display links as list

* container-registry/README.md: display links as list

* cosmos/README.md: display links as list

* iot-device-update/README.md: display links as list

* eventgrid/README.md: display links as list

* event-hubs/README.md: display links as list

* eventhubs-checkpointstore-blob/README.md: display links as list

* formrecognizer/README.md: display links as list

* identity/README.md: display links as list

* iot-modelsrepository/README.md: display links as list

* keyvault-admin/README.md: display links as list

* keyvault-certificates/README.md: display links as list

* keyvault-keys/README.md: display links as list

* keyvault-secrets/README.md: display links as list

* ai-metrics-advisor/README.md: display links as list

* mixedreality-authentication/README.md: display links as list

* monitor-query/README.md: display links as list

* purview-catalog-rest/README.md: display links as list

* purview-scanning-rest/README.md: display links as list

* quantum-jobs/README.md: display links as list

* search-documents/README.md: display links as list

* schema-registry/README.md: display links as list

* schema-registry-avro/README.md: display links as list

* service-bus/README.md: display links as list

* storage/storage-blob/README.md: display links as list

* storage-blob-changefeed/README.md: display links as list

* storage-file-datalake/README.md: display links as list

* storage-file-share/README.md: display links as list

* storage-queue/README.md: display links as list

* data-tables/README.md: display links as list

* ai-text-analytics/README.md: display links as list

* video-analyzer-edge/README.md: display links as list

* web-pubsub/README.md: display links as list

* web-pubsub-express/README.md: display links as list

* core-lro/README.md: display links as list

* changed from the word master to main

* changed the word master to main

* another update to the final reandme to change  the word master to main

* Update README.md

fixed a type in the link

* Update sdk/anomalydetector/ai-anomaly-detector/README.md

Co-authored-by: Deyaaeldeen Almahallawi <dealmaha@microsoft.com>

Co-authored-by: Deyaaeldeen Almahallawi <dealmaha@microsoft.com>
2021-07-06 12:30:32 -04:00
Sarangan Rajamanickam 20321ef20a
Convenience Method to create a synonymmap object (#16054)
* Convenience Method to create a synonymmap object

* Update sdk/search/search-documents/src/synonymMapHelper.ts

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

* Fix for PR Comments

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2021-06-29 13:09:31 -07:00
Ramya Rao 5a7c129972
Update engines, @types/node to Node.js v12 (#15996) 2021-06-28 15:54:47 -07:00
Ramya Rao b729674427
Update Node.js & browser support in README (#16011) 2021-06-25 16:00:09 -07:00
Maor Leger 5903b7cd3d
[core] - Bump core-http to 2.0.0 and core-lro to 2.0.0 (#15925)
## What

- Update core-http to 2.0.0
- Update core-lro to 2.0.0
- Update packages to use latest version

## Why

This will support our last breaking change for core-tracing, and allow everyone to be on the same minimum version. This will also allow us to target ES2017 across the board.
2021-06-24 12:59:13 -07:00
Will Temple c7f3a2a70b Replace master with main in homepage links. 2021-06-22 16:09:11 -07:00
Chidozie Ononiwu a64747cf6a Rename hardcoded master links to use main 2021-06-22 15:51:16 -07:00
Maor Leger d0232046bb
[Core] - Move core-tracing to @opentelemetry/api 0.20.0 (#15672)
## What

- Bump @opentelemetry/api to 0.20.0 in @azure/core-tracing
- Move all packages that are on core-http to the next core-tracing version 
- Remove version collision check from the tracer cache

## Why

This is part of our effort to move everyone to OTel 0.20.0 - but we have to stage it due to a transitive dependency and a 
breaking change in OTel. This PR updates core-tracing to use the latest OTel, fixes any breaking changes, and moves 
packages that we can move to the latest version of core-tracing.

Once core-rest-pipeline 1.1.0 is GA'd we'll be able to move the rest of the packages over to the latest core-tracing as well.

Removing the version collision came out of an offline discussion after these changes were reviewed - since it's a common 
source of pain and hasn't added much benefit (tracer conflicts incompatibility was never a problem) we decided to remove 
that logic and always grab a unique symbol per OT compatibility. 

## Callouts

The packages that are already on core-v2 will _not_ be upgraded at this time - we'll coordinate that with the GA of core-rest-pipeline 1.1.0
2021-06-18 15:57:58 -07:00
Deyaaeldeen Almahallawi d3f0285339
[tslib] Upgrade from 2.0 to 2.2 (#15702) 2021-06-11 16:09:45 -04:00
Sarangan Rajamanickam 1127eec774
Update Version in Search Documents SDK (#15630) 2021-06-09 07:59:55 -07:00
Azure SDK Bot 7db151256f
Increment version for search releases (#15222)
* Increment package version after release of azure-search-documents

* Update dependency version

Co-authored-by: Sarangan Rajamanickam <sarajama@microsoft.com>
2021-05-12 14:42:33 -07:00
Sarangan Rajamanickam bb436f862f
Version Update Change for search-documents May 21 (#15151)
* Version Update Change for search-documents May 21

* Update Version in Perf
2021-05-06 11:56:24 -07:00
Sarangan Rajamanickam 8ecb0eba50
Semantic Search Code Changes (#14857)
* Semantic Search Code Changes

* Fix Linter

* Fix Formatting

* Marked fields of AnswerResult as required

* Added Code Changes for Knowledge Store

* Code Changes for AnswerResult
2021-04-28 11:11:08 -07:00
KarishmaGhiya b45fa72681
update clean commands (#14693) 2021-04-07 18:31:38 +00:00
Sarangan Rajamanickam d31aa59523
Code changes to add muli api support (#14706)
* Code changes to add muli api support

* Format

* Add Version Check

* Format

* Move ApiVersion to options bag
2021-04-05 22:49:37 -07:00
Sarangan Rajamanickam bb074b39ee
Update Version value in Search SDK (#14694) 2021-04-02 17:17:33 -07:00
Sarangan Rajamanickam 61fcbd4b6f
Search Code Changes for April Release (#14620)
* Search Code Changes for April Release

* Updated Version, Changelog & Regened to latest SHA

* Update Perf Test Dependency
2021-04-02 13:57:06 -07:00
chradek cd0edbc366
upgrade core-auth dep to ^1.3.0 (#14586)
`@azure/core-auth` added the `NamedKeyCredential` and `AzureNamedKeyCredential` symbols in version 1.3.0. Currently only `@azure/core-amqp` and `@azure/event-hubs` references these directly and need to be using 1.3.0, but updating in all packages that depend on it to satisfy rush.
2021-03-29 23:17:43 +00:00
Richard Park f1054c3076
[tracing] updating to opentelemetry 1.0.0-rc.0 (#14208)
* Upgrading to opentelemetry 1.0.0 (rc.0)

Did a few things that made this MUCH easier.

Now that everyone is using the createSpan from @azure/core-tracing we
no longer need _every_ project to reference opentelemetry/api! That has
been removed as part of this PR.

Unfortunately, the leaky nature of JS means that packages still need to
worry about opentelemetry when they build their browser bundle for
testing. To make that simpler I've added a common function to dev-tool
that everyone can call in their rollup that will give them the correct
named exports. This is hooked up for everyone at this point, so the next
time something like this happens I should be able to control it
centrally.

Now for the API breaking changes that I had to fix:
- CanonicalCode is gone and is replaced with SpanStatusCode.
  SpanStatusCode has a much smaller set of codes (literally: ERROR, OK
  or UNSET) so that simplified most of the way we were handling setting
  a span status on error.
- There is a new field (`tracingContext`) that contains `Context`. You
  now pass a context, not a span, to indicate what your "parent" is.
  You'll see this where I've removed `SpanOptions.parentSpan`. Mostly
  it's a simple replacement.
2021-03-29 15:18:40 -07:00
Deyaaeldeen Almahallawi 1f06810067
Use TS ESLint's no-invalid-this instead (#14458)
Implements the approach described here: https://github.com/Azure/azure-sdk-for-js/pull/14406#issuecomment-805869359 to linting `this` references. Reminder to myself: look for typescript-eslint alternatives when the behavior of eslint is not satisfactory.
2021-03-25 19:19:59 +00:00
Sarangan Rajamanickam ebbf8b922f
Removed Testcases with refs to existing endpoint (#14426)
Minor change
2021-03-23 12:08:09 -07:00
Will Temple a22db68cc5
[dev-tool] `samples publish` command and changes to samples workflow (#13960)
* [dev-tool] Experimental samples publish command

* Updated template samples structure

* First generation of template samples

* Update to ts-node 9 and use transpilation mode for speed.

* Many improvements and fixes.

- Fixed several bugs with generation.
- Added environment variable analysis.
- Refactored modules for code organization.
- Added azsdk- JSDoc tags for weighting and ignoring samples.
- Made almost all illogical situations yield errors instead of warnings.

* Rework text analytics

* Fixed a bug in the README template saying something about the Template package

* Regenerate text analytics samples

* Consistency changes to dev-tool/register

* Updated TA and Template package.json

* Fixed a couple of file name rendering bugs in the template

* Added API ref link override and regenerated Template samples

* Format

* Fix broken link

* Made typescript version reflect dev-tool ts dependency

* Revert weird change to cosmosdb package.json

* Alpha sort template deps

* Added MIN_SUPPORTED_NODE_VERSION

* Tweaked default tsconfig.

* Use version 1.0.0 instead of 0.1.0

* Pull sample generation info types into their own module.

* Added resource creation link generation.

* Regenerate template samples

* Regenerate text analytics samples

* Regenerate text analytics samples

* Regenerate template samples

* Fix bug in TA samples
2021-03-22 19:05:13 -07:00
Deyaaeldeen Almahallawi 18b3f30602
Use @this to satisfy ESLint's no-invalid-this (#14406)
# Problem

`no-invalid-this` makes sure uses of `this` are valid (see [docs](https://eslint.org/docs/rules/no-invalid-this) and [implementation](8984c91372/lib/rules/utils/ast-utils.js (L900))). However, uses of `this` are rampant in our test suites because this is how mocha unit tests are structured, the Mocha context can be accessed only through `this`. 

# Fix

So instead of disabling `no-invalid-this` in our test suites, this PR tags functions that reference `this` with `@this` and that satisfies the rule requirements (see [docs](https://eslint.org/docs/rules/no-invalid-this)).

# Discussion

It could be argued that this work just replaces one comment annotation with another so we did not really solve the underlying problem. However, the inherent problem lies in how mocha itself works and there is nothing we can do other than probably migrating to another framework that is more sane/type-safe. One minor improvement we get is we now have slightly less syntactic overhead because we need to tag just the function instead of individual lines in its body that violate the rule.

# Trade-offs

Pros:
- function tags are less than line tags

Cons:
- whitelisting one more tag with the tsdoc linter that our devs need to learn about
- still having rampant tags everywhere

Fixes https://github.com/Azure/azure-sdk-for-js/issues/11404
2021-03-23 00:51:54 +00:00
Deyaaeldeen Almahallawi a26462540e
Upgrade Typescript version to 4.2 (#14402)
Upgrade to the next minor version. See the release notes here: https://www.typescriptlang.org/docs/handbook/release-notes/overview.html#typescript-42.
2021-03-22 21:10:07 +00:00
Deyaaeldeen Almahallawi 5bf75f6185
Update TypeScript version to use ~ (#14387)
I confirmed with the TypeScript team that patch releases should not introduce breaking changes. This PR uses tilde in TypeScript version we use so get the latest patch releases for v4.1.
2021-03-22 02:26:08 +00:00
chradek 2660692aff
upgrade karma from ^5.1.0 to ^6.2.0 (#14238)
* upgrade karma from ^5.1.0 to ^6.2.0

* rush update --full
2021-03-11 10:12:31 -08:00
Richard Park cf99c3efa9
[core-tracing] In-place change of the version for core-tracing from -beta to -preview and compatible type change (#14082)
- Making some changes to simplify the "duplicate" models that we're exporting to mirror the opentelemetry models (addresses feedback from @xirzec and @bterlson)
- Switch core-tracing back to the `-preview` version naming style. Changing it mid-stream like we did breaks internal tooling.
2021-03-03 22:31:15 +00:00
Sarangan Rajamanickam 2d64abe3be
Remove Samples and Readme References with apiKeys (#14072) 2021-03-02 21:28:06 -08:00
Ben Broderick Phillips 1d3632650c
Update live test yaml to use cloud and matrix configuration (#13886)
* Update live test templates to use matrix generation

* Update sdk live tests to use matrix generation, cloud config stages

* Fix live test matrix filter parity errors

* Remove matrix filters. Opt-in most tests to samples and min/max testing

* Fix post step template parameter in monitor live tests

* Filter dependency version for live tests that don't support it

* Only publish test results for browser and node tests
2021-03-01 19:25:57 -05:00
Jeremy Meng 3738fa358d
[template] Make README Logging section consistent (#14022)
* [template] Make README Logging section consistent

We might have introduced the inconsistency for some libraries while copying
content from other languages.

* Update other README files

Contents for messaging libraries (Event Hub/Service Bus) remain unchanges
because they are different in having additional information about `rhea`
logging.

* linking to logger
2021-03-01 09:42:22 -08:00
Richard Park 82c42a2512
[telemetry] Centralize (as much as is practical) the creation of spans to ease upgrades (#13887)
As part of prepping for the next release of OpenTelemetry we found some code patterns that were going to become a large maintenance burden for us, primarily around the parenting of spans. To make this easier I've removed as many duplicate implementation of createSpan and tried to centralize everything into core-tracing instead. 

This won't completely remove changes needed for a newer version of OpenTelemetry but it'll eliminate one of the bigger bottlenecks.
2021-02-25 21:36:47 -08:00
Sarangan Rajamanickam d2b586b3c7
Fix the links of API Reference Documentation (#13878)
* Fix the links of API Reference Documentation

* Update sdk/eventgrid/eventgrid/README.md

Co-authored-by: Ramya Rao <ramya.rao.a@outlook.com>

Co-authored-by: Ramya Rao <ramya.rao.a@outlook.com>
2021-02-19 21:22:38 +00:00
Azure SDK Bot cf6b8a923b
Increment version for search releases (#13752) 2021-02-16 14:12:08 -08:00
Sarangan Rajamanickam 7580a53403
Modify Changelog of Search Documents SDK (#13764) 2021-02-12 10:11:49 -08:00
Sarangan Rajamanickam e9338a5bc5
Modified change log for search documents (#13742)
* Modified change log

* Update sdk/search/search-documents/CHANGELOG.md

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2021-02-11 00:55:33 +00:00
Sarangan Rajamanickam 79c556abba
Revert search documents & Update Version and Changelog (#13727)
* Update Configuration Files

* Generated Code Changes

* Custom Code Changes

* API Review File Changes

* Update Version and Changelog

* Updated Changelog

* Added details about breaking changes

* Revert tokenizer to tokenizerName

* Fixed rename in samples too

* Update sdk/search/search-documents/CHANGELOG.md

Co-authored-by: Ramya Rao <ramya.rao.a@outlook.com>

Co-authored-by: Ramya Rao <ramya.rao.a@outlook.com>
2021-02-10 14:11:42 -08:00
Matt Ellis 57c3030ecf
[EventGrid] Prepare for v3.0.0-beta.3 Release (#13714)
* [EventGrid] Update core-auth reference

In b6040c5451 we took a dependency on
some new surface area in @azure/core-auth. That has now been released as
version 1.2.0, so we bump our minimum dependency to that version.

The other packages have been updated as well, to keep versions consistent.

* [EventGrid] Prepare for 3.0.0-beta.3 release
2021-02-09 18:05:12 -08:00
Sarangan Rajamanickam 917abead30
Add Document Key Retriever to Buffered Sender (#13478)
* Add Document Key Retriever to Buffered Sender

* Fix Lint Errors

* Update sdk/search/search-documents/src/searchIndexingBufferedSender.ts

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

* Minor changes

* Remove ts-ignore comment

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2021-01-30 08:03:01 -08:00
Sarangan Rajamanickam 64e6844090
Remove Interface Search Indexing Buffer (#13405)
* Remove Interface Soe Search Indexing Buffer

* Update sdk/search/search-documents/samples/typescript/src/bufferedSender/uploadDocuments/autoFlushSizeBased.ts

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

* Response to PR Comments

* Update Samples

* Minor fix

* Added await

* Minor Fix

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2021-01-27 15:49:44 -08:00
Deyaaeldeen Almahallawi f9d1c248b8
[Docs] Fix the double tagging issue (#13411)
* [Docs] Fix the double tagging issue

* fix triple tagging!
2021-01-26 21:06:05 -05:00
Sarangan Rajamanickam cd4ad88f85
Search documents migration (#12829)
* Modify the Configuration Markup Files

* Regenerated Changes

* Custom Code Changes

* Test Code and API Changes

* Updated Recordings Files

* Update Test Code
2021-01-22 21:02:03 -08:00
Jeff Fisher 40b027df46
Update karma test configuration for track2 packages (#13309)
This PR removes our dependency on the unmaintained package "karma-remap-istanbul" and replaces it with a smaller karma plugin ("karma-sourcemap-loader") that allows karma-coverage to load source maps from the disk correctly.

I tested and confirmed that the generated coverage data has the correct source TS files.
2021-01-22 19:42:51 +00:00
Deyaaeldeen Almahallawi 78e55c88a8
[Docs] Upgrade typedoc to v0.15.2 to match that used by docs team (#13250)
* [Docs] Upgrade typedoc to v0.15.2 to match that used by docs team

* standardize the docs script for cosmos, kv-admin, comm-common, and storage-internal-avro
2021-01-15 16:24:16 -05:00
Sarangan Rajamanickam b9800f6464
Treat any new lint regression as hard failure in CI (#13114) 2021-01-08 02:04:20 +00:00
Sarangan Rajamanickam ef1c2aa4d5
[Search] Fix the Linter Errors (#13060)
* Fix the Linter Errors

* Further Modifications

* Formatting Changes

* Response to PR Comments
2021-01-07 17:47:23 -08:00
Deyaaeldeen Almahallawi 494327fa57
replace @ignore with @hidden (#12963)
`@ignore` is a JSDoc construct which we no longer use. This PR replaces it with `TypeDoc`'s `@hidden` which [exhibits the same behavior](https://github.com/TypeStrong/typedoc/releases/tag/v0.12.0).
2021-01-05 04:17:33 +00:00
Deyaaeldeen Almahallawi 8ab8d4cbf7
[Docs] Add --excludeExternals to rushx docs command (#12987) 2020-12-23 14:18:07 -08:00
KarishmaGhiya 6ee8de43e1
[Code Coverage] Node Tests - Generate reports for live tests (#12968)
Resolves part of the issue - https://github.com/Azure/azure-sdk-for-js/issues/12935

To the reviewers, go to the links corresponding to your library to see the code coverage report. (Example here https://github.com/Azure/azure-sdk-for-js/pull/12968#issuecomment-749320030)
### Enables code coverage for the following packages
- [x] `/sdk/storage/storage-file-datalake` - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=660382&view=codecoverage-tab
- [x] `/sdk/storage/storage-blob` - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=655864&view=codecoverage-tab (Moved from https://github.com/Azure/azure-sdk-for-js/pull/12903)
- [x] `/sdk/search/search-documents` - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=663568&view=results
- [x] `/sdk/textanalytics/` - Live tests are failing hence cannot see CC - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=658221&view=logs&j=bbd7d436-e05d-51a8-99a8-0701dc9dffeb&t=c89e2f7b-6fd1-516c-25fe-9220efbf116c
- [x]  `/sdk/keyvault/keyvault-keys` https://dev.azure.com/azure-sdk/internal/_build/results?buildId=663575&view=results
- [x] `/sdk/keyvault/keyvault-secrets` https://dev.azure.com/azure-sdk/internal/_build/results?buildId=663579&view=results
- [x] `/sdk/keyvault/keyvault-certificates` https://dev.azure.com/azure-sdk/internal/_build/results?buildId=663580&view=results
- [x] `/sdk/template/`
- [x] `/sdk/appconfiguration/` - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=660325&view=codecoverage-tab
- [x] `communication-sms` - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=660326&view=codecoverage-tab
- [x] `communication-chat` - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=660327&view=codecoverage-tab
- [x] `communication-administration` - https://dev.azure.com/azure-sdk/internal/_build/results?buildId=660328&view=codecoverage-tab

#### Others
- [ ] `/sdk/tables/`  - The live test pipeline was failing due to compile issues - moved it to a different PR - https://github.com/Azure/azure-sdk-for-js/pull/12976
2020-12-22 08:28:48 +00:00
Deyaaeldeen Almahallawi 7e0bd75263
[Docs] Adding docs npm script (#12941)
This newly added command `docs` can help increase the quality of our documentation comments. It enables us to have a tight feedback loop on what is being generated as a documentation of our packages. I am pinning `typedoc` to v0.15.0 for now because this is the version being used for generating docs at `docs.microsoft.com`. This version should be updated when that team updates theirs.

Fixes https://github.com/Azure/azure-sdk-for-js/issues/12928
2020-12-17 22:03:10 +00:00
Deyaaeldeen Almahallawi 6b838b852d
Upgrade ESLint version to 7.15.0 (#12894)
All the heavy lifting for upgrading our linting packages has been already done here https://github.com/Azure/azure-sdk-for-js/pull/12770. This PR upgrades ESLint only and fixes https://github.com/Azure/azure-sdk-for-js/issues/9050.
2020-12-15 15:17:43 +00:00
Deyaaeldeen Almahallawi 79be172c74
Upgrade TypeScript compiler version to 4.1.2 (#12770)
* upgrade TS version and fix compilation issues

* upgrade the linting parser version and fix new linting issues

* fix cosmos sample

* address feedback

* fix linting issues in formrecognizer tests

* use unknown instead of any across our code

* address more issues

* cleanup package.json in core-http

* revert noisy linting changes caused by vanilla eslint rules not TS aware

* allow the poller to have results of type void

* fixing samples

* fix keyvault-certificates' sample
2020-12-14 17:03:55 -05:00
KarishmaGhiya e1a368ad14
Segregate search documents test folders to enable min-max tests (#12643) 2020-11-24 16:45:36 -08:00
Sarangan Rajamanickam 25464c79df
November release changes (#12342)
* November Release Changes

* Format
2020-11-06 15:05:03 -08:00
Sarangan Rajamanickam 61d3b59e56
Open up Buffered Sender Configurations (#12297)
* Open up Buffered Sender Configurations

* Response to PR Comments

* Update API File

* Added Jitter value

* PR Comments II

* Add jitterValue to the correct place

* Format

* Sync Retry Logic with core-https

* Changed Name to initialBatchActionCount

* Update API
2020-11-06 13:58:08 -08:00
Sarangan Rajamanickam 750902be0e
[Data plane][Azure Cognitive Search] Add encryptionKey property to indexer, datasource and skillset metadata (#12275)
* Result of Regeneration Command

* Changes to the custom layer

* API Changes

* Update Recordings
2020-11-04 10:13:43 -08:00
Deyaaeldeen Almahallawi ae4d38476c
bump core-http version to 1.2.0 across the board (#12151) 2020-10-30 15:21:24 -04:00
Derek Legenzoff 7f0d3a346f
Fixing typo in sample.env (#11952)
Updating `Cognitive Services` to `Cognitive Search` in sample.env
2020-10-26 09:48:25 -07:00
abc516 3b1a3fc99a
fix eslint errors for search packages (#11868) 2020-10-21 21:48:51 -07:00
Azure SDK Bot e0a27e75ea
Increment package version after release of azure-search-documents (#11648) 2020-10-13 14:25:53 -07:00
Sarangan Rajamanickam 74476b3ad9
Make BufferedSender an interface and Hide the Constructor (#11785) 2020-10-12 13:02:14 -07:00
Sarangan Rajamanickam 6cc6def03a
October release changes (#11618)
* Release related changes

* Formatting changes
2020-10-02 12:47:25 -07:00
Sarangan Rajamanickam b6b8037d08
Initial Commit for Advanced Batching (#11544)
* Initial Commit for Advanced Batching

* Formatting changes

* Additional Changes

* Formatting changes

* Additional Changes

* Formatting changes

* Response to PR Comments

* Formatting changes

* Update Message
2020-10-01 19:35:00 -07:00
Deyaaeldeen Almahallawi 1ca2c43d6a
ESLint configuration cleanup (#11528) 2020-09-28 20:30:21 -07:00
Sarangan Rajamanickam 8a9d8d35b1
Regeneration of search-documents SDK (#11533)
* Regenerated Search SDK Data MD

* Custom Code changes for previous auto generated Data MD changes

* Regenerated Search SDK Service MD

* Custom Code changes for previous auto generated Service MD changes
2020-09-28 13:37:52 -07:00
Sarangan Rajamanickam c6d071ae1c
Fix the CI failure in search-documents (#11518)
* Randomize Index Names

* Increment Wait Time
2020-09-28 13:30:38 -07:00
Ramya Rao fe06264fdb
[Search] Run lint:fix script (#11445) 2020-09-24 12:19:00 -07:00
Quentin Morel a779d0ae09
Update README.md (#11462)
A change was made here https://github.com/Azure/azure-sdk-for-js/pull/9553 but readme not updated. :)
2020-09-24 12:01:30 -07:00
Sarangan Rajamanickam 4a96e96a67
Add testcases for handling odata (#11321)
* Add testcases for handling odata

* Formatting code

* PR Comments

* Minor Formatting

* Update sdk/search/search-documents/src/odata.ts

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

* Update sdk/search/search-documents/src/odata.ts

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2020-09-18 20:14:58 -07:00
Sima Zhu add2f4fb1b
Replaced relative link with absolute links and remove locale (#11317)
Replaced relative link with absolute links and remove locale
2020-09-17 20:01:20 -07:00
Deyaaeldeen Almahallawi 09a68c7d8a
[Search] Prettying (#11096) 2020-09-09 09:39:45 -04:00
Sarangan Rajamanickam 74cc9f4a3a
Fix search CI issue (#10822)
* Delete existing indexers, etc

* Count Changes

* Updated Recordings

* Added assert fail
2020-08-25 21:37:20 -07:00
Sarangan Rajamanickam 95d7afbba6
Rename setupIndex to setup (#10593) 2020-08-12 14:05:39 -07:00
Sarangan Rajamanickam fc56be20c6
[search] Add live tests for index client (#10584)
* Add live tests for index client

* Updated/Added Service Recordings

* Minor Refactor
2020-08-12 11:39:17 -07:00
Sarangan Rajamanickam fa7dcc6480
[search] Add live tests for indexer client (#10557)
* Added Test Cases for Search Index Client

* New Recordings

* Additional Changes

* Another set of recordings

* Some more changes

* Refactorings based on PR Comments

* Formatting Changes
2020-08-11 17:53:29 -07:00
Deyaaeldeen Almahallawi 6531b9b85a
Verifying VS Code debugger with default configuration works on tests in our SDKs (#10145)
* update the CONTRIBUTING.md guide to point to the automatic debug configuration feature in vscode

* delete all custome vscode configs

* factoring out coverage scripts so that mocha with ts-node can work with vscode debugger
2020-08-11 14:24:30 -04:00
Sarangan Rajamanickam 50e2d1296b
Added Test cases for Search Client (#10530)
* Added Test cases for Search Client

* Added recordings

* Test with Harmony Flag

* Update sdk/search/search-documents/test/node/searchIndexClient.spec.ts

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

* Code changes for PR comments

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2020-08-10 14:56:35 -07:00
Jeremy Meng 0d36626e3d
Set docModel to true in api-extractor.json config (#10509)
The only effect is an extra json file is generated into ./temp folder
which is already in .gitignore list. This file is useful in doing api reviews.
2020-08-10 10:42:04 -07:00
Jacob Marshall f13a878c49
[search-documents] Fix ISO8601 date regex (#10488)
* [search-documents] Fix ISO8601 date regex (#10486)

* Add tests for dates with text before and after (#10486)
2020-08-09 21:13:56 -07:00
Jeremy Meng 0308ae2167
Bump core-http dependency version to v 1.1.6 (#10487) 2020-08-07 14:10:17 -07:00
Azure SDK Bot 07381bfb64
Increment package version after release of azure-search-documents (#10454) 2020-08-07 13:23:02 -07:00
Sarangan Rajamanickam c36ed0cf94
Gracefully exit if env variables are not set (#10496) 2020-08-07 12:29:02 -07:00
Sarangan Rajamanickam fe57aa7776
Fix parented tracing span in search API (#10445) 2020-08-04 22:29:58 -07:00
Ramya Rao 6557ded074
Update @opentelemetry/api to latest version (#10393)
* Update @opentelemetry/api to latest version
2020-08-04 14:28:54 -07:00
Deyaaeldeen Almahallawi c88451d95c
Standardize prettier configurations across the repo (#10416)
* Standardize prettier configurations across the repo

* update relative paths

* rushx format text analytics

* ignore api.md files

* adding ignore-path parameter to the check-format and format scripts in keyvault-admin
2020-08-04 16:31:27 -04:00
Sarangan Rajamanickam 6384f602b2
Fixed Search Readme (#10383)
* Fixed Search Readme

* Updated changelog
2020-07-31 13:30:13 -07:00
Daniel Rodríguez 857f355fd9
updated karma-mocha (#10303) 2020-07-28 13:21:10 -04:00
Daniel Rodríguez de585c8675
upgraded to karma 5.1.0 (#10190) 2020-07-27 12:06:12 -04:00
Deyaaeldeen Almahallawi 8c13a8a4da
[Search] formatting (#10264) 2020-07-27 10:18:47 -04:00
Azure SDK Bot 555cbe6c62
Increment package version after release of azure-search-documents (#10148) 2020-07-24 15:18:58 -07:00
Sarangan Rajamanickam f00564255d
Pass in the correct continuation token for search documents (#10146)
* Pass in the correct continuation token for search documents

* Update changelog
2020-07-20 16:14:30 -07:00
Will Temple 5de9f50001
Adding dev-tool to the repo (#7872)
* Azure SDK dev-tool first pass

* [dev-tool] dev-tool dev-samples and fixes to all commands

* Nested command structure

* Better argument parsing, type-checking, and recursive command structure. Added support for running a single sample.

* Added dev-tool README

* [ai-text-analytics] Update package.json to use new script.

* Removed some development cruft

* prettier + eslint

* Quick fix to ParsedOptions type

* WIP

* Command framework improvements

* Basic unit-tests for package resolution.

* One more test, assorted changes

* README update

* Migrated all packages with sample code to use dev-tool

* Added dummy integration-test stub

* Added dummy integration-test stub for eslint plugin

* Added dummy integration-test:browser stubs

* Added dev-tool dependency to packages using it

* Corrected build:samples step in package.json

* WIP

* [dev-tool] ts-to-js command

* [dev-tool] leaf command test

* Fixed more deeply nested samples due to shared code
2020-07-14 12:14:20 -07:00
Jeremy Meng 3157a3d2e8
[Test Recorder] Fix an issue where not all browser requests are recorded (#10013)
We use an async function to add a recorded request to an array then
save the array to files when recorder stops.  However we did not wait
for the async function to complete, which leads to recording missing
requests. This issue only happens in the browser case. In Node it is
done in synchronous way.

This change makes recorder to wait until all the recorded
requests are added before saving them.

All the tests have been updated to await for `recorder.stop()`.

Co-authored-by: Harsha Nalluru <sanallur@microsoft.com>
2020-07-13 11:22:32 -07:00
KarishmaGhiya 1d25f3eeb2
verification of links pipelines (#9216) 2020-07-10 17:04:09 -07:00
Azure SDK Bot 65cb85edce
Increment package version after release of azure-search-documents (#9908) 2020-07-07 13:12:20 -07:00
Sarangan Rajamanickam 8cc6c6f42e
Adding JS Samples (#9837)
* Adding JS Samples

* Dummy Commit

* Revert Dummy Commit
2020-07-01 19:45:26 -07:00
Sarangan Rajamanickam eac7fe9dd2
Added Typescript Samples for Search Documents (#9809) 2020-06-30 13:56:09 -07:00
Jeremy Meng e45c832303
Bump core-auth dependency version to 1.1.3 (#9754)
for the ES5 compatibility fix.
2020-06-29 09:48:09 -07:00
Sarangan Rajamanickam 7b56acfb11
Remove SkillSetCounter Py in ServiceCounters model (#9747) 2020-06-26 15:03:09 -07:00
Jeremy Meng 06fd608f63
Bump dependency core-http version to 1.1.4 (#9539)
* Bump dependency core-http version to 1.1.4

to ensure that all packages have the `x-ms-useragent` browser header key change
for telemetry.

* Make exception for storage
2020-06-26 09:49:29 -07:00
Sarangan Rajamanickam d0697b095c
Regeneration and Other changes (#9711)
* Regeneration and Other changes

* Test Build Fix

* Minor Regenerate Change
2020-06-25 22:11:17 -07:00
Jeremy Meng 57417e23e4
Ignore src/generated folders when running check-format/format (#9670) 2020-06-25 13:41:09 -07:00
Jeremy Meng 571a75bfda
Avoid passing unused credentials to generated client constructors (#9635) 2020-06-25 11:11:50 -07:00
Sarangan Rajamanickam ab6926b139
Change Readme sample (#9697) 2020-06-24 13:17:59 -07:00
Sarangan Rajamanickam 2877452ef1
Modified Readme file similar to .NET Readme (#9687)
* Modified Readme file similar to .NET Readme

* Minor change

* Minor changes
2020-06-24 11:36:05 -07:00
Sarangan Rajamanickam eaf51611fa
[search-documents] Add sentinel value to connection string (#9672)
* Add sentinel value to connection string

* Update sdk/search/search-documents/src/searchIndexerClient.ts

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2020-06-23 16:53:17 -07:00
Sarangan Rajamanickam 0fbfe0b333
Code changes to nest user defined fields into a document property (#9655)
* Code changes to nest user defined fields into a document property

* Code changes to address PR Comments
2020-06-23 15:24:51 -07:00
Chidozie Ononiwu d740741ae8
Reference tools repo version (#9577)
* Add initial Refs for repositiory

* Initial Changes to refs JS

* Switch template referencing to use extends

* Remove resources from archetype-sdk-integration.yml
2020-06-17 11:13:11 -07:00
Sarangan Rajamanickam a3c15853bf
Move text from method paramter to options bag (#9570) 2020-06-17 11:04:07 -07:00
Sarangan Rajamanickam 26a696af9a
Renames and Refactorings (#9553)
* Change analyzer-analyzerName in AnalyzeTextOptions

* Change tokenizer-tokenizerName to CustomAnalyzer

* Chg includeTotalResultCount-includeTotalCount

* Minor Comment Added
2020-06-16 16:23:09 -07:00
Mike Harder f38ed5cef3
Update runtime dependency "tslib" (#9322) 2020-06-10 16:57:57 -07:00
Mike Harder 0cc98eb03f
Update dev dependency "rollup-plugin-visualizer" (#9330) 2020-06-10 16:36:38 -07:00
Sarangan Rajamanickam c2a28c9a2b
Minor change in the sample (#9373)
* Minor change in the sample

* Additional changes
2020-06-08 14:31:31 -07:00
Azure SDK Bot 3f44cfe274
Increment package version after release of azure-search-documents (#9370) 2020-06-08 13:44:08 -07:00
Daniel Rodríguez a195ac041a
New aka.ms/azsdk links (#9034)
* Duplicated ThirdPartyNotices in eventhub

* no more https://azure.github.io/azure-sdk-for-js links

* other link fixes

* new aka.ms links

* docs/<service> to <service>/docs, as agreed upon over Teams

* Changed https://aka.ms/azure-sdk-preview1-js to https://aka.ms/azsdk/releases/July2019Preview

* removed the versions

* Update README.md

* lowercase july2019preview

* lowercase july2019preview
2020-06-08 07:13:04 -04:00
Sarangan Rajamanickam eefe6103a3
Modified changelog for the June Release (#9317)
* Modified changelog for the June Release

* Response to PR Comments

* Dummy Commit I

* Revert Dummy Commit
2020-06-05 16:00:32 -07:00
Sarangan Rajamanickam 71c59489cb
Delete - Seach API Changes (#9308)
* Delete - Seach API Changes

* Doc Comments
2020-06-04 16:04:29 -07:00
Sarangan Rajamanickam e924eafdff
Renames & Refactorings (#9266)
* Renames and other Refactorings

* Round II Changes

* Changes III

* Minor PR Feedback change

* Cng GetIndexStatisticsResult-SearchIndexStatistics

* Change ServiceStatistics- SearchServiceStatistics

* Additional modifications

* Some more changes

* Added getSearchClient back

* Change SimpleDataType->SearchFieldDataType

* change similarityALgorithm to similarity

* change vaultUri to vaultUrl

* Remove odata overrides
2020-06-03 15:40:26 -07:00
Jeff Fisher 7b0e5daab2
Make listIndexes pageable. (#9217) 2020-06-01 17:27:45 -07:00
Jeff Fisher ca526b689c
Update to TypeScript 3.9 (#9012)
* Update TS to 3.9
2020-06-01 13:25:21 -07:00
Mike Harder ece81b9e8e
Update dev dependency "cross-env" (#9160) 2020-05-29 12:53:49 -07:00
Mike Harder dde87adc8a
Update dev dependency "@rollup/plugin-node-resolve" (#9123) 2020-05-27 13:48:16 -07:00
Sarangan Rajamanickam 1677605c1f
Add OnlyIfUnchanged parameter to CreateUpdate & Delete operations (#9056) 2020-05-22 00:11:15 -07:00
Mike Harder cfcf14a669
Update dev dependency "sinon" (#9075) 2020-05-21 18:46:59 -07:00
Mike Harder 0097b10488
Pin @rollup/plugin-commonjs to 11.0.2 (#9045)
- Newer versions cause build breaks in our repo
2020-05-20 19:39:35 -07:00
Sarangan Rajamanickam 055092611a
Refactor SearchServiceClient into SearchIndexClient and SearchIndexerClient & Handle selected properties for List operations & Add delete methods with model as parameter (#9021)
* Refactor SearchServiceClient into SearchIndexClient and SearchIndexerClient

* Handle selected properties for List operations

* Add delete methods by model

* Response to PR Comments

* Minor Typo

* Dummy Commit I

* Dummy Commit II
2020-05-20 19:01:02 -07:00
Sarangan Rajamanickam 03ac69aa8e
Refactor SearchIndexClient to SearchClient (#9015)
* Config Change to rename SearchIndexClient to SearchClient

* Delete SearchIndexClient & SearchIndexClientContext files

* Regeneration and other refactorings

* Minor Refactorings

* Fix failing tests
2020-05-19 15:00:54 -07:00
Sarangan Rajamanickam e5f598603e
Code changes to add select to List Skillsets operation (#9010) 2020-05-19 12:14:01 -07:00
Jeremy Meng 4f5dd0e7b5
Serve the source map files during karma test run (#8922)
This is a follow up of #8839. Files do need to be served so browser
debugging tools can load them along side the tests. See
http://karma-runner.github.io/5.0/config/files.html for docs on files
options.
2020-05-14 13:36:14 -07:00
Jeremy Meng c8ec3009f9
Fix the object to rollup-replace plugin (#8909)
The replacement should be in the argument object, instead of nested in `values` property
2020-05-14 10:06:28 -07:00
Jeremy Meng 1e02861f3a
Include sourcemap file in karma files section (#8839)
* Include sourcemap file in karma files section

so we can debug TypeScript source code for browser tests. One still
needs to disable code coverage first though to have the source mapping
working.

We Have to set the .js.map files' type to be 'html' to prevent karma from
treating them as the default js files. See http://karma-runner.github.io/5.0/config/files.html for more details.
2020-05-12 10:46:24 -07:00
Jeff Fisher b9446b8c96
Update TypeScript to 3.8 (#8659)
* Update TS and fix tsconfig in cosmos samples
2020-05-06 17:22:19 -07:00
Azure SDK Bot 5d7dd52c5d
Increment package version after release of azure-search-documents (#8743) 2020-05-06 11:51:10 -07:00
Daniel Rodríguez fc2b5a618c
core-paging to ^1.1.1 (#8648)
* core-paging to ^1.1.1 and logger to ^1.0.1

* logger back to ^1.0.0
2020-05-06 09:54:12 -04:00
Daniel Rodríguez 7ee5955e32
Standardizing dotenv (#8647)
* KeyVault changes

* ai-text-analytics

* search-documents

* storage

* commentary on the sample.env

* other sample.env files

* feedback from Harsha
2020-05-05 19:03:29 -04:00
Sarangan Rajamanickam 3a552410b2
Update Changelog (#8705) 2020-05-05 13:29:25 -07:00
Daniel Jurek 4c73a29d83
Unify live test matrices (#8542)
* one matrix to live test them all
* clean up environment vars and test configurations
* working template logic for browser and sample testing
* disable samples testing for form recognizer until it's ready for nightly live runs
* use Node 10 for samples
2020-05-01 15:52:06 -07:00
Sarangan Rajamanickam 17f85a5dc4
Readme content of Azure Search Documents is unclear (#8582)
* Readme content of Azure Search Documents is unclear

* Minor change

* Adding some more information

* Updated based on PR Comments

* Minor change

* Minor spell change

* Update sdk/search/search-documents/README.md

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>

* nit

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2020-04-30 13:42:03 -07:00
Sarangan Rajamanickam 3b0a552363
SearchServiceClient should expose a getSearchIndexClient (#8561)
* SearchServiceClient should expose a getSearchIndexClient

* Update sdk/search/search-documents/README.md

Co-Authored-By: Jeff Fisher <xirzec@xirzec.com>

* Update sdk/search/search-documents/README.md

Co-Authored-By: Jeff Fisher <xirzec@xirzec.com>

* PR Comments

* Minor change

* Dummy Commit

* Dummy Commit II

Co-authored-by: Jeff Fisher <xirzec@xirzec.com>
2020-04-27 19:44:00 -07:00
Daniel Rodríguez 443e7ae80f
Reusing scripts for live resources & no more deploy buttons (#8398)
This PR is here to save us from the Deploy button rabbit hole and put us back in track with powershell.

The Deploy Button approach has considerable caveats. Some of them being:

The forms they generate don't provide a lot of tooling to explain how to fill these properties.
The forms they generate require considerable knowledge to feel its properties.
They appear to be simple at a first glance, but they require considerable documentation to make them viable for general users.
Instead of continuing to go the route of Deploy Buttons, we can re-use the PowerShell programs that have been made available in out TS/JS SDK just as well as they exist in the other languages' SDKs, and which have already been documented once at the root of the project, and only make reference to these tools in the test folders, where contributors will surely check. Other general consumers should be safe by ignoring these and simply following the available Azure documentation to create any resources for their own programs, without having to worry about the specific needs of our integration tests.

This PR does the same change on all of the other projects that have test-resources.json.

Once this is merged, the following issues will be solved:

Closes #7532 , since it will be OK to keep template parameters in the ARM templates.
Closes #7366 , since the new indications will suffice.
Closes #7365 , since the new indications will suffice.
Closes #7364 , since the new indications will suffice.
Closes #7363 , since the new indications will suffice.
Closes #6647 , since there will be no remaining pending tasks.

Co-authored-by: Ramya Rao <ramya.rao.a@outlook.com>
2020-04-24 13:25:30 -04:00
Jeremy Meng e251ff8a8e
Update contributing sections to link to CONTRIBUTING.md (#8486)
* Update contributing sections to link to CONTRIBUTING.md

* Update the contributing section for rest of libraries

* Remove old CONTRIBUTING.md files

README should point to the main CONTRIBUTING.md under repository root.

We did similar changes earlier (e.g., 73f7f90c4) however these seem leftover
that got missed.

* Link to storage specific contributing guide
2020-04-24 09:56:02 -07:00
Mike Harder 84b3b77380
Update all Linux images to ubuntu-18.04 (#8507) 2020-04-23 17:51:24 -07:00
Jeff Fisher 70fa6b3492
[search] Fix odata metadata policy (#8519)
* Fix odata policy for service requests
* Fix lint issues
2020-04-23 17:36:11 -07:00
Jeff Fisher 1b7428dffc
[core-tracing] Update to OpenTelemetry 0.6 (#7998)
* Migrate all packages to OpenTelemetry 0.6.1.
* Update inter-package dependencies to express the new requirements.
2020-04-23 15:39:57 -07:00
Sarangan Rajamanickam f6b36f9cbc
Code to change maximumPageLength to maxPageLength (#8498)
* Swagger Changes to change maximumPageLength to maxPageLanegth

* regenerated SDK with modified readme file
2020-04-23 13:41:56 -07:00
Ramya Rao 240c4e0c41
Avoid exporting types from core-auth that belong elsewhere (#8410) 2020-04-20 15:39:02 -07:00
Ramya Rao d42bfdf79e
Use OperationTracingOptions from core-tracing (#8389) 2020-04-16 15:59:07 -07:00
KarishmaGhiya baa6d4288a
pin api-extractor to 7.7.11 (#8400) 2020-04-16 12:27:12 -07:00
Jeff Fisher abd85ef55d
[search] Unblock live test CI and add initial test (#8365)
* Add integration test tasks to eslint plugin

* Fix GeographyPoint serialization

* Add test and get it working inside node

Since SearchServiceClient doesn't work in the browser, will have to investigate a way to run SearchIndexClient tests there.
2020-04-16 10:59:21 -07:00
Sarangan Rajamanickam b641800c0d
Search Service - Datasources & Service Statistics API (#8290)
* Code changes for Data sources API

* Code changes for service statistics API

* PR Comments
2020-04-09 12:43:30 -07:00
Jeff Fisher 2670e8def9
[search] Create pipeline for live tests (#8259)
* Add test-resources.json for search

* Add tests.yml
2020-04-08 12:03:41 -07:00
Sarangan Rajamanickam 1490b99116
Code changes for Indexer Operations in Search Service (#8225)
* Code changes for list indexers operation.

* Code changes for create indexer operation

* Code changes for Get Indexer operation

* Code changes for create/update indexer

* Code changes for Delete indexer operation

* Code changes for Get Indexer Status operation

* Code changes for reset index operation

* Code changes for run index operation

* Remove select & change indexer name in Readme file

* Adding fields to List Ops

* PR Comments
2020-04-07 16:41:54 -07:00
Azure SDK Bot 2002d9dd8f
Increment package version after release of azure-search-documents (#8229) 2020-04-06 16:40:02 -07:00
Jeff Fisher 99eb0cd807
[search] Update changelog for release (#8223)
* Update changelog
2020-04-06 12:12:08 -07:00
Jeff Fisher f269cfef99
[search] Rename package to search-documents (#8200) 2020-04-03 15:02:25 -07:00