Skip to content

Commit b8857e1

Browse files
authored
Merge pull request #460 from bcgov/release/v0.10.0
Release v0.10.0
2 parents 93936c3 + 6f8a3f6 commit b8857e1

9 files changed

Lines changed: 20 additions & 16 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG GIT_COMMIT
77
#
88
# Stage 1: Build the backend app
99
#
10-
FROM docker.io/node:24.14.0-alpine AS app-build
10+
FROM docker.io/node:24.15.0-alpine AS app-build
1111

1212
ARG APP_ROOT
1313
ENV NPM_CONFIG_FUND=false NPM_CONFIG_UPDATE_NOTIFIER=false
@@ -19,7 +19,7 @@ RUN npm ci && npm run build
1919
#
2020
# Stage 2: Build the frontend
2121
#
22-
FROM docker.io/node:24.14.0-alpine AS frontend-build
22+
FROM docker.io/node:24.15.0-alpine AS frontend-build
2323

2424
ARG APP_ROOT
2525
ENV NPM_CONFIG_FUND=false NPM_CONFIG_UPDATE_NOTIFIER=false
@@ -31,7 +31,7 @@ RUN npm ci && npm run build
3131
#
3232
# Stage 3: Production Dependencies & Minimal Identity
3333
#
34-
FROM docker.io/node:24.14.0-alpine AS prod-deps
34+
FROM docker.io/node:24.15.0-alpine AS prod-deps
3535

3636
ARG APP_ROOT APP_UID
3737
ENV NPM_CONFIG_FUND=false NPM_CONFIG_UPDATE_NOTIFIER=false

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ At this time, only the latest version of NR PermitConnect Navigator Service is s
1414

1515
| Version | Supported |
1616
| ------- | ------------------ |
17-
| 0.9.0 | :white_check_mark: |
18-
| < 0.9.x | :x: |
17+
| 0.10.0 | :white_check_mark: |
18+
| < 0.10.x | :x: |
1919

2020
## Reporting a Bug
2121

app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nr-permitting-navigator-service-app",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"license": "Apache-2.0",
55
"private": true,
66
"description": "Permit Connect Navigator Service",

charts/pcns/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: nr-permitconnect-navigator-service
33
# This is the chart version. This version number should be incremented each time you make changes
44
# to the chart and its templates, including the app version.
55
# Versions are expected to follow Semantic Versioning (https://semver.org/)
6-
version: 0.0.33
6+
version: 0.0.34
77
kubeVersion: ">= 1.13.0"
88
description: PermitConnect Navigator Service
99
# A chart can be either an 'application' or a 'library' chart.
@@ -38,6 +38,6 @@ maintainers:
3838
# incremented each time you make changes to the application. Versions are not expected to
3939
# follow Semantic Versioning. They should reflect the version the application is using.
4040
# It is recommended to use it with quotes.
41-
appVersion: "0.9.0"
41+
appVersion: "0.10.0"
4242
deprecated: false
4343
annotations: {}

charts/pcns/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# nr-permitconnect-navigator-service
22

3-
![Version: 0.0.33](https://img.shields.io/badge/Version-0.0.33-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.0](https://img.shields.io/badge/AppVersion-0.9.0-informational?style=flat-square)
3+
![Version: 0.0.34](https://img.shields.io/badge/Version-0.0.34-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.10.0](https://img.shields.io/badge/AppVersion-0.10.0-informational?style=flat-square)
44

55
PermitConnect Navigator Service
66

frontend/package-lock.json

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nr-permitting-navigator-service-frontend",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"license": "Apache-2.0",
55
"private": true,
66
"description": "",
@@ -79,6 +79,7 @@
7979
"eslint-plugin-vue": "^10.8.0",
8080
"globals": "^17.4.0",
8181
"happy-dom": "^20.8.4",
82+
"jiti": "2.6.1",
8283
"postcss": "^8.5.6",
8384
"prettier": "^3.8.1",
8485
"rimraf": "^6.1.3",

frontend/src/services/interceptors.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import axios from 'axios';
22

3-
import { AuthService, ConfigService } from './index';
3+
import AuthService from './authService';
4+
import ConfigService from './configService';
45

56
import type { AxiosInstance, AxiosRequestConfig, InternalAxiosRequestConfig } from 'axios';
67

0 commit comments

Comments
 (0)