chore(release): 1.17.4
All checks were successful
/ build (map[dockerfile:./services/files/Dockerfile name:files]) (push) Successful in 12s
/ build (map[dockerfile:./services/tasks/Dockerfile name:tasks]) (push) Successful in 13s
/ build (map[dockerfile:./services/app/Dockerfile name:app]) (push) Successful in 11s
/ build (map[dockerfile:./services/hasura/Dockerfile name:hasura]) (push) Successful in 12s
/ build (map[dockerfile:./services/web/Dockerfile name:web]) (push) Successful in 12s
/ build (map[dockerfile:./services/watchers/Dockerfile name:watchers]) (push) Successful in 12s
/ build (map[dockerfile:./services/api/Dockerfile name:api]) (push) Successful in 12s
/ deploy (push) Successful in 8s

This commit is contained in:
devthejo 2026-03-23 11:25:12 +01:00
parent 01ad4d809c
commit 34b0a388b8
No known key found for this signature in database
GPG key ID: 00CCA7A92B1D5351
10 changed files with 20 additions and 13 deletions

View file

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
## [1.17.4](https://codeberg.org/alerte-secours/alerte-secours/compare/v1.17.3...v1.17.4) (2026-03-23)
### Bug Fixes
* useful places treshold cache fallback + cron variabilisation ([01ad4d8](https://codeberg.org/alerte-secours/alerte-secours/commit/01ad4d809c2445041e10ee1f9cfa75c5eee9ae9e))
## [1.17.3](https://codeberg.org/alerte-secours/alerte-secours/compare/v1.17.2...v1.17.3) (2026-03-23)

View file

@ -83,8 +83,8 @@ android {
applicationId 'com.alertesecours'
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 247
versionName "1.17.3"
versionCode 248
versionName "1.17.4"
multiDexEnabled true
testBuildType System.getProperty('testBuildType', 'debug')
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'

View file

@ -25,7 +25,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.17.3</string>
<string>1.17.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
@ -48,7 +48,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>247</string>
<string>248</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationQueriesSchemes</key>

View file

@ -1,6 +1,6 @@
{
"name": "alerte-secours",
"version": "1.17.3",
"version": "1.17.4",
"main": "index.js",
"scripts": {
"start": "expo start --dev-client --private-key-path ./keys/private-key.pem",
@ -56,8 +56,8 @@
"useful-places:build": "yarn --cwd scripts/useful-places build"
},
"customExpoVersioning": {
"versionCode": 247,
"buildNumber": 247
"versionCode": 248,
"buildNumber": 248
},
"_moduleAliases": {
"~": "src"

View file

@ -1,6 +1,6 @@
{
"name": "alerte-secours",
"version": "1.17.3",
"version": "1.17.4",
"description": "Alerte-Secours - Le Réflexe qui Sauve",
"keywords": [
"alerte",

View file

@ -1,6 +1,6 @@
{
"name": "@as/api",
"version": "1.17.3",
"version": "1.17.4",
"description": "",
"scripts": {
"start": "node dist/index.js start",

View file

@ -1,5 +1,5 @@
{
"name": "@as/hasura",
"version": "1.17.3",
"version": "1.17.4",
"license": "MIT"
}

View file

@ -1,6 +1,6 @@
{
"name": "@as/tasks",
"version": "1.17.3",
"version": "1.17.4",
"scripts": {
"build": "node src/index.js build && NODE_OPTIONS=--openssl-legacy-provider ncc build src/index.js --source-map",
"dev": "nodemon --inspect --exitcrash --exec node --trace-warnings src/index.js dev",

View file

@ -1,6 +1,6 @@
{
"name": "@as/watchers",
"version": "1.17.3",
"version": "1.17.4",
"description": "",
"scripts": {
"build": "node src/index.js build && NODE_OPTIONS=--openssl-legacy-provider ncc build src/index.js --source-map",

View file

@ -1,6 +1,6 @@
{
"name": "@as/web",
"version": "1.17.3",
"version": "1.17.4",
"private": true,
"scripts": {
"dev": "PORT=${WEB_PORT:-4203} NODE_OPTIONS=--openssl-legacy-provider yarn run start",