Skip to content

Updated pre-release items #381

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

Merged
merged 2 commits into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [1.1.0] - 2022-05-25
### Added
- Run tests against ArangoDB 3.8 by @DiscoPYF in #347
- Use arangodb image 3.8.5.1 for 3.8 tests. by @DiscoPYF in #349
- Support for indexes api by @tjoubert in #350
- Support for additional AQL/Query endpoints by @tjoubert in #352
- Support for additional collection endpoints by @tjoubert in #356
- Add changelog file by @tjoubert in #369
- Support for analyzers by @tjoubert in #357
- Support for Views API by @tjoubert in #358
- Support for Oasis (ArangoDB Cloud) by @tjoubert in #364
- Simplify error handling in test fixture of Index API client by @DiscoPYF in #377
- Support basic Admin API by @tjoubert in #370
- Use constants to represent index types. by @DiscoPYF in #376
- Bulk operations support by @tjoubert in #354

### Changed
- Make header properties optional in cursor API client interface. by @DiscoPYF in #344
- Update CircleCI badge link by @Zyqsempai in #365
- Update CI config to run tests against ArangoDB 3.9 by @DiscoPYF in #361
- Amended changelog file by @tjoubert in #371
- Resolve build warnings caused by syntax issues in XML doc comments. by @DiscoPYF in #373
- Fix type of selectivity estimate in responses. by @DiscoPYF in #374
- Extract common index response properties into an interface. by @DiscoPYF in #378
- Updated ChangeLog by @tjoubert in #379

## 2022-05-24
### Added
- added support for ArangoDB Bulk Operations API features (#354)
Expand Down
7 changes: 4 additions & 3 deletions arangodb-net-standard/ArangoDBNetStandard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
<Description>A consistent, comprehensive, minimal interface to enable .NET applications to use the complete range of features exposed by the ArangoDB REST API.</Description>
<Summary>A consistent, comprehensive, minimal interface to enable .NET applications to use the complete range of features exposed by the ArangoDB REST API.</Summary>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Actify-Inc/arangodb-net-standard</PackageProjectUrl>
<RepositoryUrl>https://github.com/Actify-Inc/arangodb-net-standard</RepositoryUrl>
<PackageProjectUrl>https://github.com/ArangoDB-Community/arangodb-net-standard</PackageProjectUrl>
<RepositoryUrl>https://github.com/ArangoDB-Community/arangodb-net-standard</RepositoryUrl>
<PackageTags>arangodb-net-standard arangodb arango .net c# netstandard multimodel graph document database</PackageTags>
<Version>1.1.0</Version>
<Company>Actify, Inc</Company>
<Company>ArangoDB Community</Company>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Authors>ArangoDB Community</Authors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
2 changes: 1 addition & 1 deletion contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ For example, the following test method names could be used:

To create a new release, follow these steps:

1. Pull branch for release from actify-inc repo.
1. Pull branch for release from ArangoDB-Community repo.
2. Check the version number in ./arangodb-net-standard/ArangoDBNetStandard.csproj file
- if the version number is incorrect, create a separate commit to change the version number, push it and get it merged before proceeding.
3. Run `dotnet pack --configuration Release ./arangodb-net-standard/ArangoDBNetStandard.csproj`
Expand Down