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

feat(crate): introduce crate concept. #138

Merged
merged 16 commits into from
Mar 7, 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
25 changes: 25 additions & 0 deletions .nancy-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,28 @@ CVE-2020-26160
# vault server indirect dependencies - false positive
CVE-2019-5736
# end
# kubernetes indirect dependencies - false positive
CVE-2020-8558
CVE-2019-11248
CVE-2019-11247
CVE-2019-11243
CVE-2021-25741
CVE-2019-9946
CVE-2020-8552
CVE-2019-11253
CVE-2020-8559
CVE-2021-25735
CVE-2019-11250
CVE-2019-11254
CVE-2019-11249
CVE-2019-11246
CVE-2019-100210
CVE-2020-8555
CVE-2019-11251
CVE-2019-1002101
CVE-2020-8563
CVE-2020-8557
CVE-2019-11244
CVE-2019-1002100
CVE-2018-1002102
# end
39 changes: 33 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

### Not released yet

BREAKING-CHANGES:

* FIPS artifacts are disabled by default on GitHub Actions CI but still can be
built locally.
* `harp-artifacts` containing all harp binaries will not be produced anymore.

FEATURES:

* cli/lint:
* Provide command to Lint YAML/JSON content for `Bundle`, `BundleTemplate`, `RuleSet` and `BundlePatch`. [#138](https://github.com/elastic/harp/pull/138)

* sdk/api:
* `Bundle`, `BundleTemplate`, `RuleSet` and `BundlePatch` JSON schema are published. [#138](https://github.com/elastic/harp/pull/138)

* sdk/crate:
* A crate is an OCI Compatible image which can be pushed to OCI compliant
registries.
* `crate push` is used to prepare a `crate` with a `sealed container` and
optionally an archive - [OCI Push](samples/oci-crate/) [#138](https://github.com/elastic/harp/pull/138)
* This is used to publish the sealed container and the templates used to
render the final configuration.

DIST:

* docker:
* Multi-architecture docker images are produced.

## 0.2.8

### 2022-02-27
Expand All @@ -14,9 +41,9 @@ FEATURES:
computers. [#134](https://github.com/elastic/harp/pull/134)

* cli/transform:
* `compress`/`decompress` commands for various algorithms. [#117](github.com/elastic/harp/pull/117)
* `hash`/`multihash` command for various hashing algorithms. [#117](github.com/elastic/harp/pull/117)
* `encode`/`decode` command for various encoding strategies [#117](github.com/elastic/harp/pull/117)
* `compress`/`decompress` commands for various algorithms. [#117](https://github.com/elastic/harp/pull/117)
* `hash`/`multihash` command for various hashing algorithms. [#117](https://github.com/elastic/harp/pull/117)
* `encode`/`decode` command for various encoding strategies [#117](https://github.com/elastic/harp/pull/117)

* bundle/ruleset:
* enable `rego` language for RuleSet constraint engine. [#134](https://github.com/elastic/harp/pull/134)
Expand All @@ -26,9 +53,9 @@ FEATURES:
arbitrary data during pipeline execution. [#134](https://github.com/elastic/harp/pull/134)

* sdk/value:
* `encoding` reader / writer factory. [#117](github.com/elastic/harp/pull/117)
* `compression` reader/writer factory. [#117](github.com/elastic/harp/pull/117)
* `hash` writer factory. [#117](github.com/elastic/harp/pull/117)
* `encoding` reader / writer factory. [#117](https://github.com/elastic/harp/pull/117)
* `compression` reader/writer factory. [#117](https://github.com/elastic/harp/pull/117)
* `hash` writer factory. [#117](https://github.com/elastic/harp/pull/117)

CHANGES:

Expand Down
5 changes: 2 additions & 3 deletions api/gen/go/cso/v1/secret.pb.go

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

5 changes: 2 additions & 3 deletions api/gen/go/cso/v1/validator_api.pb.go

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

18 changes: 0 additions & 18 deletions api/gen/go/cso/v1/validator_api_grpc.pb.go

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

5 changes: 2 additions & 3 deletions api/gen/go/harp/bundle/v1/bundle.pb.go

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

5 changes: 2 additions & 3 deletions api/gen/go/harp/bundle/v1/bundle_api.pb.go

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

18 changes: 0 additions & 18 deletions api/gen/go/harp/bundle/v1/bundle_api_grpc.pb.go

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

5 changes: 2 additions & 3 deletions api/gen/go/harp/bundle/v1/patch.pb.go

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

5 changes: 2 additions & 3 deletions api/gen/go/harp/bundle/v1/ruleset.pb.go

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

5 changes: 2 additions & 3 deletions api/gen/go/harp/bundle/v1/template.pb.go

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

5 changes: 2 additions & 3 deletions api/gen/go/harp/container/v1/container.pb.go

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

Loading