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

migrate from dep to Go modules #319

Merged
merged 31 commits into from
Mar 20, 2020
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
13cb7f5
Refactor towards go modules
QuentinBisson Jan 16, 2020
d676c01
Replace kubernetes dependencies to 1.16
QuentinBisson Jan 16, 2020
44f978e
save work
tfussell Jan 28, 2020
346a50e
save work
tfussell Jan 28, 2020
ba943d6
save work
tfussell Jan 28, 2020
70c9173
Merge remote-tracking branch 'origin/master' into go-modules
tfussell Jan 28, 2020
486a518
pin client-go version
tfussell Jan 28, 2020
856d5ad
Merge remote-tracking branch 'origin/master' into go-modules
tfussell Feb 8, 2020
cf1870a
Merge remote-tracking branch 'origin/master' into go-modules
tfussell Mar 3, 2020
b861702
use architect orb
tfussell Mar 3, 2020
46262a1
use go-test instead
tfussell Mar 3, 2020
18ec025
tidy
tfussell Mar 3, 2020
79fda94
order imports
tfussell Mar 3, 2020
dd8f3d4
restore build and deploy steps
tfussell Mar 3, 2020
3a1cc60
remove gitignore
tfussell Mar 3, 2020
8b60ac3
Merge remote-tracking branch 'origin/master' into go-modules
tfussell Mar 3, 2020
0c8d5ac
Merge branch 'master' into go-modules
tfussell Mar 3, 2020
f34ce4c
Merge branch 'master' into go-modules
tfussell Mar 5, 2020
6978353
Merge remote-tracking branch 'origin/master' into go-modules
tfussell Mar 9, 2020
70c3c7d
update changelog
tfussell Mar 9, 2020
e5ee7e9
update vendor deps
xh3b4sd Mar 20, 2020
790ed3d
Merge branch 'master' into go-modules
xh3b4sd Mar 20, 2020
153f682
Update CHANGELOG.md
xh3b4sd Mar 20, 2020
2bc3145
update circle config
xh3b4sd Mar 20, 2020
24890ce
Merge branch 'go-modules' of https://github.com/giantswarm/apiextensi…
xh3b4sd Mar 20, 2020
270a10d
Merge branch 'master' into go-modules
xh3b4sd Mar 20, 2020
c32c59a
update circle config
xh3b4sd Mar 20, 2020
896aeac
Merge branch 'go-modules' of https://github.com/giantswarm/apiextensi…
xh3b4sd Mar 20, 2020
b523586
Merge branch 'master' into go-modules
xh3b4sd Mar 20, 2020
6c0a530
Merge branch 'master' into go-modules
xh3b4sd Mar 20, 2020
37de81e
add changelog
xh3b4sd Mar 20, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ orbs:
workflows:
workflow:
jobs:
- architect/go-test-legacy:
name: test
- architect/go-test:
name: go-test-apiextensions
- architect/go-architect-legacy:
name: build
name: go-build-apiextensions
command: build
requires:
- test
- go-test-apiextensions
- architect/go-architect-legacy:
name: deploy
name: go-deploy-apiextensions
command: deploy
requires:
- build
- go-build-apiextensions
filters:
branches:
only: master
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Switch from dep to Go modules.

## [0.1.0] - 2020-03-05

### Added
Expand Down
Loading