Skip to content

Commit cbd44c7

Browse files
committed
Merge branch 'master' into feat/build
2 parents 782c783 + 8217a54 commit cbd44c7

29 files changed

Lines changed: 381 additions & 167 deletions

.devcontainer/devcontainer.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Place Service Test Container",
3+
4+
"dockerComposeFile": "../docker-compose.yml",
5+
"service": "test",
6+
7+
"workspaceFolder": "/workspace",
8+
9+
"extensions": [
10+
"crystal-lang-tools.crystal-lang"
11+
]
12+
}

.github/workflows/pull-request.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Pull Request
2+
3+
on:
4+
pull_request_target:
5+
6+
jobs:
7+
placeos:
8+
name: PlaceOS PR Actions
9+
uses: PlaceOS/.github/.github/workflows/pull-request.yml@main
10+
with:
11+
title: ${{ github.event.pull_request.title }}
12+
opened: ${{ github.event.action == 'opened' || github.event.action == 'reopened' }}

.github/workflows/todos.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: TODOs → GitHub Issues
2+
on: push
3+
jobs:
4+
todo-issues:
5+
name:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: alstr/[email protected]
10+
with:
11+
AUTO_ASSIGN: true # Assign issue to whoever wrote the todo
12+
BEFORE: 9c18cf9

.github/workflows/validate-pr.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,94 @@
1+
## v4.3.1 (2022-05-25)
2+
3+
### Fix
4+
5+
- **edge**: use correct api-key param and update key validation ([#181](https://github.com/PlaceOS/core/pull/181))
6+
7+
## v4.3.0 (2022-05-16)
8+
9+
### Feat
10+
11+
- **cloning**: use deployed_commit_hash to indicate current commit ([#179](https://github.com/PlaceOS/core/pull/179))
12+
13+
## v4.2.4 (2022-05-04)
14+
15+
### Fix
16+
17+
- **edge**: resolve `crystal not found` error ([#178](https://github.com/PlaceOS/core/pull/178))
18+
19+
## v4.2.3 (2022-05-03)
20+
21+
### Fix
22+
23+
- **telemetry**: ensure `Instrument` in scope
24+
25+
## v4.2.2 (2022-05-03)
26+
27+
### Fix
28+
29+
- update `placeos-log-backend`
30+
31+
## v4.2.1 (2022-04-28)
32+
33+
### Fix
34+
35+
- **telemetry**: seperate telemetry file
36+
37+
## v4.2.0 (2022-04-27)
38+
39+
### Feat
40+
41+
- **logging**: configure OpenTelemetry
42+
43+
## v4.1.0 (2022-04-26)
44+
45+
### Feat
46+
47+
- **logging**: add configuration by LOG_LEVEL env var
48+
49+
## v4.0.8 (2022-04-06)
50+
51+
### Fix
52+
53+
- **process_manager/common**: should propagate RemoteExceptions ([#175](https://github.com/PlaceOS/core/pull/175))
54+
55+
## v4.0.7 (2022-03-28)
56+
57+
### Fix
58+
59+
- **api**: add error codes to coming from RemoteExceptions ([#172](https://github.com/PlaceOS/core/pull/172))
60+
61+
## v4.0.6 (2022-03-21)
62+
63+
### Fix
64+
65+
- possible race condition in spawn ([#171](https://github.com/PlaceOS/core/pull/171))
66+
67+
## v4.0.5 (2022-03-03)
68+
69+
### Fix
70+
71+
- **edge**: update require
72+
73+
## v4.0.4 (2022-03-03)
74+
75+
### Refactor
76+
77+
- **module_manager**: move process manager lookup by path to ModuleManager
78+
- use `Log.with_context` with args
79+
80+
## v4.0.3 (2022-03-03)
81+
82+
### Refactor
83+
84+
- **module_manager**: remove `ext`, `require "uri/json"`
85+
86+
## v4.0.2 (2022-03-02)
87+
88+
### Fix
89+
90+
- better module stopped errors ([#163](https://github.com/PlaceOS/core/pull/163))
91+
192
## v4.0.1 (2022-03-01)
293

394
### Fix

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# One of `core` | `edge`
22
ARG TARGET=core
3-
ARG CRYSTAL_VERSION=1.3.2
3+
ARG CRYSTAL_VERSION=1.4.1
44

55
FROM crystallang/crystal:${CRYSTAL_VERSION}-alpine as build
66

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ x-rethinkdb-client-env: &rethinkdb-client-env
2424

2525
services:
2626
test: # Module coordinator
27-
image: placeos/service-spec-runner:${CRYSTAL_VERSION:-1.2.1}
27+
image: placeos/service-spec-runner:${CRYSTAL_VERSION:-1.4.1}
2828
volumes:
2929
- ${PWD}/bin:/app/bin
3030
- ${PWD}/lib:/app/lib

0 commit comments

Comments
 (0)