Commit Graph

178 Commits

Author SHA1 Message Date
Kiran Challa 306c399310 Using Routing feature branch versions 2018-08-07 11:19:58 -07:00
Kiran Challa 48d1680846 upgraded dependencies 2018-08-07 11:06:38 -07:00
Kiran Challa cf3fcc5278 Updated to use Routing feature branch versions 2018-08-06 10:37:45 -07:00
ASP.NET CI 218bf4aaef Update dependencies.props
[auto-updated: dependencies]
2018-08-05 19:59:07 +00:00
James Newton-King 3b6da530b3
Update deps 2018-08-02 14:30:23 +12:00
dotnet-maestro-bot 4a7cd6e3e5 Use OSS package versions consistent with aspnet/benchmarks and Microsoft.AspNetcore.All 2.1.2 (#8190)
- update our own NuGet packages to align lower-level dependencies
- add metadata to BasicApi controllers
  - avoids analyzer failures when building with Microsoft.AspNetCore.All e.g. in benchmark runs
  - especially important in `PetController` because it's associated with `[ApiContoller]`
- use pooled `DbContext`s for MySql too
2018-08-01 12:51:09 -07:00
ASP.NET CI 913e28a92a Update dependencies.props
[auto-updated: dependencies]
2018-07-29 20:04:25 +00:00
Ryan Nowak 9c26fe6207
Merge branch 'master' into merge/release/2.2-to-master 2018-07-28 19:41:15 -07:00
Ryan Nowak fbae57cde1 React to the removal of EndpointConstraint 2018-07-28 19:03:16 -07:00
James Newton-King c01c7075be
Add EndpointMetadata to ActionDescriptor and hookup CORS (#8158) 2018-07-28 16:12:54 +12:00
Kiran Challa f06810f744 Updated dependencies.props 2018-07-25 11:50:23 -07:00
Kiran Challa 5628b5c496 Use feature branch versions of routing 2018-07-25 07:12:10 -07:00
Kiran Challa bf50387092 Upgraded dependencies.props 2018-07-25 06:31:58 -07:00
Kiran Challa bcd6e83591 Upgraded dependencies.props 2018-07-25 06:15:17 -07:00
Ryan Nowak b71d5da05e Fix test break due to 405 returned from routing 2018-07-24 22:15:32 -07:00
Kiran Challa 1b40c4388e Use routing feature branch versions 2018-07-24 10:12:41 -07:00
Kiran Challa 5580928209 Upgraded dependencies.props 2018-07-24 09:18:08 -07:00
Kiran Challa 9b217892ab Using routing feature branch versions to prevent cross repo breaking changes 2018-07-24 05:21:37 -07:00
Ryan Nowak 83d3ddb686 update deps 2018-07-23 08:06:05 -07:00
Ryan Nowak 196e3f109f React to Routing branding
This is a reaction PR for the branding changes in progress in Routing.

This can be merged after the changes to in to Routing.
2018-07-22 19:47:15 -07:00
ASP.NET CI 8170534275 Update dependencies.props
[auto-updated: dependencies]
2018-07-22 13:07:51 -07:00
ASP.NET CI 3c73a98357 Update dependencies.props
[auto-updated: dependencies]
2018-07-22 12:21:04 -07:00
Ryan Nowak 56a67b92a6 Merge remote-tracking branch 'origin/release/2.2' 2018-07-20 13:09:18 -07:00
Ryan Nowak 5c488bf09c make feature branch build 2018-07-20 12:57:43 -07:00
Kiran Challa 62e000401d Updated dependencies.props 2018-07-18 08:56:44 -07:00
Kiran Challa b0e46dc312 Temporarily reference feature branch versions of ROuting & Localization to prevent breaking changes 2018-07-17 12:26:45 -07:00
Kiran Challa c1fab727a0 Upgraded dependencies.props 2018-07-17 10:09:36 -07:00
Kiran Challa dd252c0ccc Updated dependencies.props to use feature branch versions 2018-07-17 05:24:51 -07:00
ASP.NET CI 11a9bafeb4 Update dependencies.props
[auto-updated: dependencies]
2018-07-15 20:06:06 +00:00
ASP.NET CI 4f42432853 Update dependencies.props
[auto-updated: dependencies]
2018-07-15 12:22:00 -07:00
ASP.NET CI 432e11f286 Update dependencies.props
[auto-updated: dependencies]
2018-07-08 20:03:13 +00:00
ASP.NET CI d2cfbd2671 Update dependencies.props
[auto-updated: dependencies]
2018-07-08 12:22:39 -07:00
ASP.NET CI da556a41b7 Update dependencies.props
[auto-updated: dependencies]
2018-07-03 16:21:36 +00:00
Nate McMaster 224017c762
Update CI and build tools for to use 2.2 versions 2018-06-29 11:33:02 -07:00
Kiran Challa 66cb3d50aa Upgraded dependencies.props 2018-06-29 04:48:28 -07:00
Kiran Challa 0295f6d6e3 Revert "Using Routing feature branch package"
This reverts commit 13585f711f.
2018-06-29 04:39:32 -07:00
Kiran Challa 13585f711f Using Routing feature branch package 2018-06-28 13:27:15 -07:00
ASP.NET CI f15457c026 Update dependencies.props
[auto-updated: dependencies]
2018-06-25 11:23:45 -07:00
Doug Bunting 53857d052f
Add BasicApi and BasicViews apps
- #7805
- make initial copy of apps from aspnet/Performance repo
  - add apps to solution
  - add Readme for the benchmark apps
- update BasicApi app to actually do authentication and authorization
  - bug in the ported app
- refactor `Main` methods and add `CreateWebHostBuilder(...)` methods
- change projects to understand `$(BenchmarksTargetFramework)`
  - use NuGet.org EF packages to avoid changing the Universe build graph
- use SQLite instead of LocalDb by default
  - remove unnecessary appsettings.json files and JSON configuration support
- add EF migrations
  - (greatly) reduce startup times compared to creating / deleting databases
- add MySql, PostgreSQL, and SqlServer support
  - load BasicApi data in a `DbContext.OnModelCreating(...)` override
    - no longer need seed.sql
  - generalize migrations to support multiple providers
  - use negative seeding indices to work around npgsql/Npgsql.EntityFrameworkCore.PostgreSQL#36
  - work around Pomelo lack of strong name (PomeloFoundation/Pomelo.EntityFrameworkCore.MySql#603)
  - use BenchmarksOnly* properties for EF dependencies
    - see also aspnet/Universe#1224
- drop databases (if SQLite) or migrations (otherwise) in `IApplicationLifetime.ApplicationStopping` handlers
- add functional tests
  - drop SQLite database at end of test run
- add benchmarks automation
  - add anonymous BasicApi action i.e. require no authorization
  - add non-antiforgery BasicViews actions

Address PR comments
- remove `AntiforgeryTestHelper` workarounds
- use `[ApiController]`
- use `ActionResult<Pet>`
- remove unused classes

nits:
- take VS suggestions in added files
- optionally display create and delete SQL scripts for per-database migrations
- merge `InsertData(...)` calls for consistency with most supported EF providers
  - SQLite is the only one that requires separate `INSERT`s and EF does the splitting
2018-06-22 16:41:17 -07:00
Ajay Bhargav Baaskaran 3d32b6da2f
Upgrade deps and unskip tests (#7936) 2018-06-19 14:58:40 -07:00
Pranav K 4634a97fae Use older shared runtime 2018-06-18 09:20:08 -07:00
Pranav K bc49a82d02
Use feature branch package of Localization 2018-06-15 11:12:57 -07:00
Pranav K a7bc5d6d40
Use feature branch build of Routing to fix build break 2018-06-15 10:34:11 -07:00
James Newton-King a7406d4497
Add MvcEndpointDataSource and functional tests (#7886) 2018-06-14 11:03:45 +12:00
Pranav K 6c2ef122f8 Add support for conventions in DefaultApiDescriptionProvider 2018-06-11 16:07:09 -07:00
Ryan Brandenburg b7064c576d Use templates for VSTS builds 2018-06-07 12:37:01 -07:00
ASP.NET CI 839223756b Update dependencies.props
[auto-updated: dependencies]
2018-06-03 19:22:37 +00:00
ASP.NET CI dacbb41478 Update dependencies.props
[auto-updated: dependencies]
2018-05-27 19:23:26 +00:00
ASP.NET CI 330b74f0ab Update dependencies.props
[auto-updated: dependencies]
2018-05-20 19:40:46 +00:00
Pranav K e1eaf6a6e0
Cleanup TestCommon 2018-05-18 10:45:57 -07:00