Skip to content

Commit

Permalink
Merge pull request #570 from rbino/prepare-0.9.0-rc.0
Browse files Browse the repository at this point in the history
Prepare 0.9.0-rc.0
  • Loading branch information
davidebriani authored Jul 8, 2024
2 parents c2933ec + bf56b3d commit 0fa731c
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 15 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.0-dev] - Unreleased
## [0.9.0-rc.0] - 2024-07-08
### Added
- Allow generating admin JWT using `gen-edgehog-jwt`.
### Changed
- Change logo and brand images with the latest brand revision.
- BREAKING: The Admin API is now JSON-API compliant, which implies a slightly different format,
check out the newly added OpenAPI document.
- BREAKING: This release includes some breaking changes in the GraphQL API, make sure to check out
the GraphQL schema if you were using the APIs directly. Note that we _could_ add more breaking
changes before the final release.

## [0.8.0] - 2024-03-29
### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ written in [Elixir](https://github.com/elixir-lang/elixir). It is based on
It packs in convenient features such as OTA updates, device status information management,
geolocation and everything you need for IoT fleet management.

See also [Edgehog documentation](https://edgehog-device-manager.github.io/docs/snapshot/) for more
See also [Edgehog documentation](https://edgehog-device-manager.github.io/docs/0.9/) for more
information.

# Where do I find binaries?
Expand Down
2 changes: 1 addition & 1 deletion backend/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defmodule Edgehog.MixProject do
def project do
[
app: :edgehog,
version: "0.9.0-dev",
version: "0.9.0-rc.0",
elixir: "~> 1.17",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers(),
Expand Down
2 changes: 1 addition & 1 deletion doc/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defmodule Doc.MixProject do
def project do
[
app: :doc,
version: "0.9.0-dev",
version: "0.9.0-rc.0",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down
6 changes: 3 additions & 3 deletions doc/pages/admin/deploying_with_kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ spec:
value: <EDGEHOG-FORWARDER-PORT>
- name: EDGEHOG_FORWARDER_SECURE_SESSIONS
value: <EDGEHOG-FORWARDER-SECURE-SESSIONS>
image: edgehogdevicemanager/edgehog-backend:snapshot
image: edgehogdevicemanager/edgehog-backend:0.9.0-rc.0
imagePullPolicy: Always
name: edgehog-backend
ports:
Expand Down Expand Up @@ -414,7 +414,7 @@ spec:
- env:
- name: BACKEND_URL
value: <BACKEND-HOST>
image: edgehogdevicemanager/edgehog-frontend:snapshot
image: edgehogdevicemanager/edgehog-frontend:0.9.0-rc.0
imagePullPolicy: Always
name: edgehog-frontend
ports:
Expand Down Expand Up @@ -697,7 +697,7 @@ Values to be replaced
- `BACKEND-HOST`: the backend host.
- `DEVICE-FORWARDER-HOST`: the device forwarder host.
- `MAX-UPLOAD-SIZE`: the maximum upload size that you defined in the [Edgehog backend
deployment](https://edgehog-device-manager.github.io/docs/snapshot/deploying_with_kubernetes.html#deployments).
deployment](https://edgehog-device-manager.github.io/docs/0.9/deploying_with_kubernetes.html#deployments).
Note that NGINX accepts also size suffixes, so you can put, e.g., `4G` for 4 gigabytes. Also note
that, differently from the value in the Deployment, this is required because NGINX default is 1
megabyte.
Expand Down
4 changes: 2 additions & 2 deletions doc/versions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var versionNodes = [
{
version: "v0.9.0-dev",
url: "https://docs.edgehog.io/snapshot"
version: "v0.9.0-rc.0",
url: "https://docs.edgehog.io/0.9"
},
{
version: "v0.8.0",
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
- postgresql-data:/var/lib/postgresql/data

edgehog-backend:
image: edgehogdevicemanager/edgehog-backend:snapshot
image: edgehogdevicemanager/edgehog-backend:0.9.0-rc.0
build:
context: backend
env_file: .env
Expand Down Expand Up @@ -69,7 +69,7 @@ services:
- "traefik.http.services.edgehog-backend.loadbalancer.server.port=4000"

edgehog-frontend:
image: edgehogdevicemanager/edgehog-frontend:snapshot
image: edgehogdevicemanager/edgehog-frontend:0.9.0-rc.0
build:
context: frontend
environment:
Expand All @@ -83,7 +83,7 @@ services:
- "traefik.http.services.edgehog-frontend.loadbalancer.server.port=80"

edgehog-device-forwarder:
image: edgehogdevicemanager/edgehog-device-forwarder:snapshot
image: edgehogdevicemanager/edgehog-device-forwarder:0.1.0
environment:
RELEASE_NAME: edgehog-device-forwarder
SECRET_KEY_BASE: fXzwqLnU1V1bhfOwMRdm3tiGHRlfSpqmrw2aONac2QU4T9iwh3vjSIaweH1n0ZWg
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

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

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edgehog-device-manager-frontend",
"version": "0.9.0-dev",
"version": "0.9.0-rc.0",
"bugs": {
"url": "https://github.com/edgehog-device-manager/edgehog/issues"
},
Expand Down

0 comments on commit 0fa731c

Please sign in to comment.