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

[Azure Search] Fixing some long-lived bugs in the data plane SDK #4036

Merged
merged 3 commits into from
Feb 6, 2018

Commits on Jan 25, 2018

  1. [Azure Search] Restoring build script and bumping data plane SDK version

    The version bump is in preparation for a series of bug fixes that have been
    pending for a long time. The build script change was taken from the old
    abandoned vs17Dev branch.
    brjohnstmsft committed Jan 25, 2018
    Configuration menu
    Copy the full SHA
    6dca924 View commit details
    Browse the repository at this point in the history
  2. [Azure Search] Fix for data plane SDK issue: 3309

    The FieldBuilder class in the Search .NET SDK now ignores properties marked
    with JsonIgnore.
    updixit authored and brjohnstmsft committed Jan 25, 2018
    Configuration menu
    Copy the full SHA
    aeb8ff3 View commit details
    Browse the repository at this point in the history
  3. [Azure Search] GetClient propagates SearchServiceClient's HttpClientH…

    …andler
    
    Fixes an issue whereby setting the HttpClientHandler when creating a
    SearchServiceClient has no effect on the SearchIndexClient returned by
    Indexes.GetClient. This would break scenarios such as enabling GZip
    compression, for example.
    
    Now the HttpClientHandler propagates, but the DelegatingHandlers don't since
    they can't be cloned and are mutated by the ServiceClient base class
    constructor.
    brjohnstmsft committed Jan 25, 2018
    Configuration menu
    Copy the full SHA
    57c468b View commit details
    Browse the repository at this point in the history