Skip to content

Tags: LeonardAukea/cue

Tags

v0.4.3

Toggle v0.4.3's commit message
CI: update to the latest goreleaser version

It seems like our config is still valid,
as we aren't affected by anything recent outlined in
https://goreleaser.com/deprecations/ since v1.1.0.

I ran both v1.1.0 and v1.8.2 locally via

	goreleaser build --skip-validate

and on both versions the tool appears to work.
It seems safer to stick to the latest stable version.

Change-Id: I8a11bc3820fd9a28a09b2eb86dee7cae3bd3e74d
Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/536754
Unity-Result: CUEcueckoo <cueckoo@cuelang.org>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>
Reviewed-by: Paul Jolly <paul@myitcv.io>

v0.4.3-beta.2

Toggle v0.4.3-beta.2's commit message
tools/flow: fix test race

The test would sometimes not generate the panic as Value could race.

Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>
Change-Id: I215cbfec66c21229b8a4a968e141dec1b46ba507
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/535802
Unity-Result: CUEcueckoo <cueckoo@cuelang.org>
Reviewed-by: Paul Jolly <paul@myitcv.io>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>

v0.4.3-beta.1

Toggle v0.4.3-beta.1's commit message
pkg/tool/http: add tls settings

tls.verify can be used to disable server certificate validation.
tls.caCert can be used to provide a PEM encoded certificates to validate
the server certificate.

Closes cue-lang#1558

Signed-off-by: Jean-Philippe Braun <eon@patapon.info>
Change-Id: If8f0aa5d9f882675e84e2546faa510f7d3bcde1c
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/533845
Unity-Result: CUEcueckoo <cueckoo@cuelang.org>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>
Reviewed-by: Marcel van Lohuizen <mpvl@gmail.com>

v0.4.2

Toggle v0.4.2's commit message
tools/trim: prevent nil-pointer panic

Fixes cue-lang#1087

Change-Id: I471969c6f75361e39f706083eb23a0b005be92ad
Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/532314
Unity-Result: CUEcueckoo <cueckoo@cuelang.org>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>
Reviewed-by: Marcel van Lohuizen <mpvl@gmail.com>

v0.4.2-rc.1

Toggle v0.4.2-rc.1's commit message
tools/trim: prevent nil-pointer panic

Fixes cue-lang#1087

Change-Id: I471969c6f75361e39f706083eb23a0b005be92ad
Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/532314
Unity-Result: CUEcueckoo <cueckoo@cuelang.org>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>
Reviewed-by: Marcel van Lohuizen <mpvl@gmail.com>

v0.4.1

Toggle v0.4.1's commit message
internal/core/runtime: check non-existing builtin packages earlier

This used to be done during evaluation instead.

Fixes cue-lang#1457

Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>

Change-Id: Iaf9a1740ffe480a8c99bba0b0906bffdcc9908e7
Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/530899
Reviewed-by: Paul Jolly <paul@myitcv.io>

v0.4.1-rc.2

Toggle v0.4.1-rc.2's commit message
internal/core/adt: fix matching of "_" label

The introduction of the wildcards in the API introduced
a regression that caused the string label "_" (which has
the feature label 0), to be incorrectly singled out.

The logic has now changed to reflect this. Note that without
the changed logic, TestAllow in cue/types_test.go will fail.

This also fixes printing of Selectors. Again, here "_" was
incorrectly singled out and would convert a string label to
a hidden label. This only seems to affect debug output.

Fixes cue-lang#1454

Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>

Change-Id: If08166862a677738af47937710774f6af5448953
Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/530860
Reviewed-by: Marcel van Lohuizen <mpvl@gmail.com>

v0.4.1-rc.1

Toggle v0.4.1-rc.1's commit message
cue/cuecontext: allow concurrent use

This was currently only not allowed for imports.

Really import indices should be unique per context, but
even in that case, concurrency should be allowed.

Fixes cue-lang#1414

Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>

Change-Id: I944357c7b68cd242d19b323a1380c751a7fe49a5
Signed-off-by: Marcel van Lohuizen <mpvl@golang.org>
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/529629
Reviewed-by: Paul Jolly <paul@myitcv.io>

v0.4.1-beta.6

Toggle v0.4.1-beta.6's commit message
ci: configure GoReleaser to mark prereleases as such

For some reason this is not default behaviour.

Signed-off-by: Paul Jolly <paul@myitcv.io>
Change-Id: Ibfcc3cc44bc778b16cdf20d0ad205a0616a207a1
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/528610
Unity-Result: CUEcueckoo <cueckoo@cuelang.org>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>

v0.4.1-beta.5

Toggle v0.4.1-beta.5's commit message
ci: only trigger new version events after successful new version

Fixes cue-lang#1411

Signed-off-by: Paul Jolly <paul@myitcv.io>
Change-Id: I71937b542167f52fd37b9429e8e2f32120c47157
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/528606
Unity-Result: CUEcueckoo <cueckoo@cuelang.org>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>