8000 +semver: breaking bump to version 17.0.0 by TomPallister · Pull Request #1392 · ThreeMammals/Ocelot · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

+semver: breaking bump to version 17.0.0 #1392

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 36 commits into from
Dec 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
708b575
upgrade csproj to net5.0
TomPallister Nov 20, 2020
7254d4d
+semver: breaking upgrade base build image to net5.0
TomPallister Nov 20, 2020
1c6bfc3
add make and build tools to image
TomPallister Nov 20, 2020
a9eec31
fix code broken after net5.0 upgrade
TomPallister Nov 20, 2020
7f49bf5
wip
TomPallister Nov 20, 2020
c1776fb
fix warnings
TomPallister Nov 23, 2020
f16cdd8
fix tests and line endings
TomPallister Nov 23, 2020
4b23e0c
line endings
TomPallister Nov 23, 2020
0fab351
move to dotnet tools for cake
TomPallister Nov 23, 2020
1185576
wip
TomPallister Nov 23, 2020
a5a1606
upgrade dotnet test and coverages packages
TomPallister Nov 23, 2020
71a1053
build works on windows
TomPallister Nov 23, 2020
ef69429
mono complete
TomPallister Nov 24, 2020
730c940
wip
TomPallister Nov 24, 2020
7e2b312
Merge branch 'feat/net5upgrade' of github.com:ThreeMammals/Ocelot int…
TomPallister Nov 24, 2020
f413102
wip
TomPallister Nov 25, 2020
6e1dc3f
wip
TomPallister Nov 25, 2020
3a8d55f
Merge branch 'feat/net5upgrade' of github.com:ThreeMammals/Ocelot int…
TomPallister Nov 25, 2020
94ce022
wip
TomPallister Nov 26, 2020
de0f4f9
build finally working....MAGIC
TomPallister Nov 26, 2020
03c8cd6
works on linux
TomPallister Nov 26, 2020
bdefa2d
dont need .config
TomPallister Nov 26, 2020
a39b5fd
dont need .config
TomPallister Nov 26, 2020
9bc5ad1
dont need this
TomPallister Nov 26, 2020
fdad2bb
update circle build image
TomPallister Nov 26, 2020
b356539
update nuget packages and graphql example
TomPallister Nov 27, 2020
ebf8532
removed rafty and updated more packages
TomPallister Nov 27, 2020
6eed692
more package updates
TomPallister Nov 27, 2020
3255162
wip tests failing
TomPallister Nov 27, 2020
17b0555
tests passing
TomPallister Nov 30, 2020
f62ed72
all packages upgraded and tests passing
TomPallister Dec 1, 2020
ab3533b
bring back develop
TomPallister Dec 1, 2020
ede71c4
updated release process
TomPallister Dec 1, 2020
b2dd70f
release process note
TomPallister Dec 1, 2020
b46feda
rename authorisation to authorization
TomPallister Dec 1, 2020
3ef6abd
+semver: breaking bump to version 17.0.0
TomPallister Dec 11, 2020
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
17 changes: 12 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,43 @@
version: 2.1
version: 2.1
orbs:
queue: eddiewebb/queue@1.5.0
jobs:
build:
docker:
- image: mijitt0m/ocelot-build:0.0.1
- image: mijitt0m/ocelot-build:0.0.3
steps:
- checkout
- run: make build
release:
docker:
- image: mijitt0m/ocelot-build:0.0.1
- image: mijitt0m/ocelot-build:0.0.3
steps:
- checkout
- run: make release
workflows:
version: 2
master:
jobs:
jobs:
- queue/block_workflow:
time: "20"
only-on-branch: master
- release:
- release:
requires:
- queue/block_workflow
filters:
branches:
only: master
develop:
jobs:
- build:
filters:
branches:
only: develop
pr:
jobs:
- build:
filters:
branches:
ignore:
- master
- develop
6 changes: 4 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*/*/bin
*/*/obj
*/*/bin
*/*/obj
artifacts/
TestResults/
45 changes: 23 additions & 22 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
NAME ?= ocelot

build:
./build.sh

build_and_run_tests:
./build.sh --target=RunTests

release:
./build.sh --target=Release

run_acceptance_tests:
./build.sh --target=RunAcceptanceTests

run_benchmarks:
./build.sh --target=RunBenchmarkTests

run_unit_tests:
./build.sh --target=RunUnitTests

release_notes:
./build.sh --target=ReleaseNotes
NAME ?= ocelot

build:
./build.sh

build_and_run_tests:
./build.sh --target=RunTests

release:
./build.sh --target=Release

run_acceptance_tests:
./build.sh --target=RunAcceptanceTests

run_benchmarks:
./build.sh --target=RunBenchmarkTests

run_unit_tests:
./build.sh --target=RunUnitTests

release_notes:
./build.sh --target=ReleaseNotes


7 changes: 0 additions & 7 deletions Ocelot.sln
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ocelot.Provider.Eureka", "s
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ocelot.Provider.Polly", "src\Ocelot.Provider.Polly\Ocelot.Provider.Polly.csproj", "{1F6E5DCF-8A2E-4E24-A25D-064362DE8D0E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ocelot.Provider.Rafty", "src\Ocelot.Provider.Rafty\Ocelot.Provider.Rafty.csproj", "{AC153C67-EF18-47E6-A230-F0D3CF5F0A98}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ocelot.Tracing.Butterfly", "src\Ocelot.Tracing.Butterfly\Ocelot.Tracing.Butterfly.csproj", "{6045E23D-669C-4F27-AF8E-8EEE6DB3557F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ocelot.Provider.Kubernetes", "src\Ocelot.Provider.Kubernetes\Ocelot.Provider.Kubernetes.csproj", "{72C8E528-B4F5-45CE-8A06-CD3787364856}"
Expand Down Expand Up @@ -138,10 +136,6 @@ Global
{1F6E5DCF-8A2E-4E24-A25D-064362DE8D0E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1F6E5DCF-8A2E-4E24-A25D-064362DE8D0E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1F6E5DCF-8A2E-4E24-A25D-064362DE8D0E}.Release|Any CPU.Build.0 = Release|Any CPU
{AC153C67-EF18-47E6-A230-F0D3CF5F0A98}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AC153C67-EF18-47E6-A230-F0D3CF5F0A98}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AC153C67-EF18-47E6-A230-F0D3CF5F0A98}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AC153C67-EF18-47E6-A230-F0D3CF5F0A98}.Release|Any CPU.Build.0 = Release|Any CPU
{6045E23D-669C-4F27-AF8E-8EEE6DB3557F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6045E23D-669C-4F27-AF8E-8EEE6DB3557F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6045E23D-669C-4F27-AF8E-8EEE6DB3557F}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -210,7 +204,6 @@ Global
{02F5AE4D-9C36-4E58-B7C6-012CBBDEFDE0} = {5CFB79B7-C9DC-45A4-9A75-625D92471702}
{9BBD3586-145C-4FA0-91C5-9ED58287D753} = {5CFB79B7-C9DC-45A4-9A75-625D92471702}
{1F6E5DCF-8A2E-4E24-A25D-064362DE8D0E} = {5CFB79B7-C9DC-45A4-9A75-625D92471702}
{AC153C67-EF18-47E6-A230-F0D3CF5F0A98} = {5CFB79B7-C9DC-45A4-9A75-625D92471702}
{6045E23D-669C-4F27-AF8E-8EEE6DB3557F} = {5CFB79B7-C9DC-45A4-9A75-625D92471702}
{72C8E528-B4F5-45CE-8A06-CD3787364856} = {5CFB79B7-C9DC-45A4-9A75-625D92471702}
{ED0B3A09-112B-4BA4-82D6-11569BC7A99B} = {ED066001-BAF7-4117-9884-DF591A56347D}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ A quick list of Ocelot's capabilities for more information see the [documentatio
* Kubernetes
* WebSockets
* Authentication
* Authorisation
* Authorization
* Rate Limiting
* Caching
* Retry policies / QoS
Expand Down Expand Up @@ -81,4 +81,4 @@ If you think this project is worth supporting financially please make a contribu

## Things that are currently annoying me

[![](https://codescene.io/projects/697/status.svg) Get more details at **codescene.io**.](https://codescene.io/projects/697/jobs/latest-successful/results)
[![](https://codescene.io/projects/697/status.svg) Get more details at **codescene.io**.](https://codescene.io/projects/697/jobs/latest-successful/results)
Loading
0