Skip to content

Commit db5c90d

Browse files
committed
Merge remote-tracking branch 'origin/main' into filewriter
2 parents 51eabca + d9da876 commit db5c90d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1617
-425
lines changed

.github/workflows/build-push-edge-debug.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,3 @@ jobs:
4545
push: true
4646
tags: parseable/parseable:edge-debug
4747
platforms: linux/amd64,linux/arm64
48-
cache-from: type=gha
49-
cache-to: type=gha,mode=max

.github/workflows/build-push-edge.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,3 @@ jobs:
4545
push: true
4646
tags: parseable/parseable:edge
4747
platforms: linux/amd64,linux/arm64
48-
cache-from: type=gha
49-
cache-to: type=gha,mode=max

Cargo.lock

+3-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parseable"
3-
version = "1.7.3"
3+
version = "1.7.5"
44
authors = ["Parseable Team <hi@parseable.com>"]
55
edition = "2021"
66
rust-version = "1.83.0"
@@ -128,9 +128,8 @@ sha1_smol = { version = "1.0", features = ["std"] }
128128
static-files = "0.2"
129129
ureq = "2.12"
130130
url = "2.5"
131-
vergen = { version = "9.0", features = ["build", "cargo", "rustc", "si"] }
132131
vergen-gitcl = { version = "1.0", features = ["build", "cargo", "rustc", "si"] }
133-
zip = { version = "2.2", default-features = false, features = ["deflate"] }
132+
zip = { version = "2.3", default-features = false, features = ["deflate"] }
134133
anyhow = "1.0"
135134

136135
[dev-dependencies]
@@ -139,8 +138,8 @@ arrow = "54.0.0"
139138
temp-dir = "0.1.14"
140139

141140
[package.metadata.parseable_ui]
142-
assets-url = "https://github.com/parseablehq/console/releases/download/v0.9.18/build.zip"
143-
assets-sha1 = "4516db38c8e556707b29b33569f9b1e53d5165f2"
141+
assets-url = "https://github.com/parseablehq/console/releases/download/v0.9.20/build.zip"
142+
assets-sha1 = "58eb74bdb6727b5df04d6f9f339cf370c0bf4eec"
144143

145144
[features]
146145
debug = []

Dockerfile

+3-10
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,23 @@
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

1616
# build stage
17-
FROM rust:1.84.0-bookworm AS builder
18-
17+
FROM rust:1.84.0-bookworm AS builder
1918

2019
LABEL org.opencontainers.image.title="Parseable"
2120
LABEL maintainer="Parseable Team <hi@parseable.io>"
2221
LABEL org.opencontainers.image.vendor="Parseable Inc"
2322
LABEL org.opencontainers.image.licenses="AGPL-3.0"
2423

2524
WORKDIR /parseable
26-
27-
# Cache dependencies
28-
COPY Cargo.toml Cargo.lock build.rs ./
29-
RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo build --release && rm -rf src
30-
31-
# Build the actual binary
32-
COPY src ./src
25+
COPY . .
3326
RUN cargo build --release
3427

3528
# final stage
3629
FROM gcr.io/distroless/cc-debian12:latest
3730

3831
WORKDIR /parseable
3932

40-
# Copy the static binary into the final image
33+
# Copy the static shell into base image.
4134
COPY --from=builder /parseable/target/release/parseable /usr/bin/parseable
4235

4336
CMD ["/usr/bin/parseable"]

helm-releases/parseable-1.7.5.tgz

50.3 KB
Binary file not shown.

helm/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: parseable
33
description: Helm chart for Parseable Server
44
type: application
5-
version: 1.7.3
6-
appVersion: "v1.7.3"
5+
version: 1.7.5
6+
appVersion: "v1.7.5"
77
icon: "https://raw.githubusercontent.com/parseablehq/.github/main/images/logo.svg"
88
maintainers:
99
- name: Parseable Team

helm/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parseable:
22
image:
33
repository: containers.parseable.com/parseable/parseable
4-
tag: "v1.7.3"
4+
tag: "v1.7.5"
55
pullPolicy: Always
66
## object store can be local-store, s3-store, blob-store or gcs-store.
77
store: local-store

0 commit comments

Comments
 (0)