Skip to content

Commit

Permalink
release: version v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drmorr0 committed Nov 20, 2024
1 parent 386744a commit 21b5fe5
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 13 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.

Breaking changes are annotated with the ⚠️ symbol.

## [2.0.0] - 2024-11-20

### 🚀 Features

- Variable simulation speed
- Code validation for 'status' field
- Show validation results in xray
- ⚠️ Update to versioned exported trace format

### 🐛 Bug Fixes

- Print object kind in tracer log
- ⚠️ Tracer no longer accidentally deletes objects on restart
- Pod lifecycle data stored using GVK+namespaced name
- Remove `exclude_daemonsets`
- Fix various panics and display bugs in `skctl xray`

### ☸️ Kubernetes

- Update tracer permissions to read-only
- Don't set node-selector for sk-tracer in kustomize files

## [1.1.1] - 2024-10-09

### 🐛 Bug Fixes
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
]

[workspace.package]
version = "1.1.1"
version = "2.0.0"
authors = ["Applied Computing Research Labs"]
documentation = "https://appliedcomputing.io/simkube/"
license-file = "LICENSE"
Expand All @@ -23,9 +23,9 @@ rust-version = "1.79"
debug = false

[workspace.dependencies]
sk-api = { version = "1.1.1", path = "sk-api" }
sk-core = { version = "1.1.1", path = "sk-core" }
sk-store = { version = "1.1.1", path = "sk-store" }
sk-api = { version = "2.0.0", path = "sk-api" }
sk-core = { version = "2.0.0", path = "sk-core" }
sk-store = { version = "2.0.0", path = "sk-store" }

anyhow = { version = "1.0.93", features = ["backtrace"] }
async-recursion = "1.1.1"
Expand Down
2 changes: 1 addition & 1 deletion k8s/kustomize/prod/sk-tracer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ spec:
value: "1"
- name: POD_OWNER
value: sk-tracer-depl
image: quay.io/appliedcomputing/sk-tracer:v1.1.1
image: quay.io/appliedcomputing/sk-tracer:v2.0.0
name: sk-tracer
ports:
- containerPort: 7777
Expand Down
2 changes: 1 addition & 1 deletion k8s/kustomize/sim/sk-ctrl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ spec:
fieldPath: metadata.namespace
- name: POD_OWNER
value: sk-ctrl-depl
image: quay.io/appliedcomputing/sk-ctrl:v1.1.1
image: quay.io/appliedcomputing/sk-ctrl:v2.0.0
name: sk-ctrl
nodeSelector:
type: kind-worker
Expand Down

0 comments on commit 21b5fe5

Please sign in to comment.