Skip to content
Merged

Release #9298

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
1568c23
chore: target more architectures, add Snap etc
evereq Dec 20, 2025
2e1eb03
chore: consistency in app namings, switch runners for arm64
evereq Dec 20, 2025
585a5ba
chore: fix apps builds
evereq Dec 20, 2025
20a19dd
chore: quick attempt to fix arm64 builds
evereq Dec 20, 2025
09f0be3
Clarify downloads section in README
evereq Dec 20, 2025
3ac084e
chore: fix arm builds
evereq Dec 20, 2025
d5a4f7e
fix: attempt to fix uiohook-napi builds on arm64
evereq Dec 20, 2025
8406602
Merge pull request #9281 from ever-co/develop
evereq Dec 20, 2025
f51b7ff
chore: install Multipass in all Linux arm64 workflow builds
evereq Dec 20, 2025
f02efe5
chore: set SNAPCRAFT_BUILD_ENVIRONMENT to host in all Linux workflows
evereq Dec 20, 2025
0a606e5
feat(workflows): add FPM installation and USE_SYSTEM_FPM for arm64 Li…
evereq Dec 21, 2025
bc225ff
chore: scale down RAM requirements for builds to 32Gb from 64Gb
evereq Dec 21, 2025
28628e2
Plugins (#9217)
evereq Dec 21, 2025
e7bb9b9
Merge pull request #9289 from ever-co/develop
evereq Dec 21, 2025
f64ef57
chore: upgrade node version from v20.18.1 to v24.12.0 (#9286)
syns2191 Dec 21, 2025
d08f4eb
chore: upgrade angular dependencies version from v19.2.10 to v19.2.17…
syns2191 Dec 22, 2025
9f0b9bd
Update Node.js version in .nvmrc to 24
evereq Dec 22, 2025
a9ede6e
chore: update Node requirements
evereq Dec 22, 2025
1a8db2c
Merge pull request #9293 from ever-co/develop
evereq Dec 22, 2025
a167a20
chore: circle
evereq Dec 23, 2025
ef3e657
chore: added timeouts to GitHub actions
evereq Dec 23, 2025
2bc3b4d
chore: disable use of our own Sonar etc
evereq Dec 23, 2025
d4c3405
Merge pull request #9296 from ever-co/develop
evereq Dec 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
287 changes: 204 additions & 83 deletions .circleci/config.yml

Large diffs are not rendered by default.

100 changes: 84 additions & 16 deletions .cspell.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions .deploy/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ ARG REDIS_USER
ARG REDIS_TLS
ARG REDIS_URL

FROM node:20.18.1-alpine3.19 AS dependencies
FROM node:24.12.0-alpine3.23 AS dependencies

LABEL maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/ever-co/ever-gauzy"
Expand Down Expand Up @@ -175,7 +175,7 @@ COPY --chown=node:node .scripts/postinstall.js ./.scripts/

RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts && yarn postinstall.manual && yarn cache clean

FROM node:20.18.1-alpine3.19 AS prodDependencies
FROM node:24.12.0-alpine3.23 AS prodDependencies

ENV CI=true

Expand Down Expand Up @@ -245,7 +245,7 @@ RUN rm -r node_modules/@angular
# those within custom webpack in apps/api/config/custom-webpack.config.js
# RUN rm -r node_modules/@gauzy

FROM node:20.18.1-alpine3.19 AS development
FROM node:24.12.0-alpine3.23 AS development

USER node:node

Expand All @@ -255,7 +255,7 @@ COPY --chown=node:node --from=dependencies /wait /entrypoint.prod.sh /entrypoint
COPY --chown=node:node --from=dependencies /srv/gauzy .
COPY . .

FROM node:20.18.1-alpine3.19 AS build
FROM node:24.12.0-alpine3.23 AS build

WORKDIR /srv/gauzy

Expand All @@ -274,7 +274,7 @@ ARG NODE_ENV
ARG DEMO
ARG NODE_OPTIONS

ENV NODE_OPTIONS=${NODE_OPTIONS:-"--max-old-space-size=60000"}
ENV NODE_OPTIONS=${NODE_OPTIONS:-"--max-old-space-size=30000"}
ENV NODE_ENV=${NODE_ENV}
ENV DEMO=${DEMO:-false}

Expand All @@ -295,7 +295,7 @@ RUN yarn build:api:prod:docker
# those within custom webpack in apps/api/config/custom-webpack.config.js
# RUN rm -r dist/apps/api/node_modules/@gauzy

FROM node:20.18.1-alpine3.19 AS production
FROM node:24.12.0-alpine3.23 AS production

WORKDIR /srv/gauzy

Expand Down
6 changes: 3 additions & 3 deletions .deploy/mcp-auth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ARG DB_SYNCHRONIZE
ARG MCP_TRUSTED_PROXIES


FROM node:20.18.1-alpine3.19 AS dependencies
FROM node:24.12.0-alpine3.23 AS dependencies

LABEL maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/ever-co/ever-gauzy"
Expand Down Expand Up @@ -93,7 +93,7 @@ ARG NODE_OPTIONS
ENV NX_NO_CLOUD=true
ENV CI=true

ENV NODE_OPTIONS=${NODE_OPTIONS:-"--max-old-space-size=60000"}
ENV NODE_OPTIONS=${NODE_OPTIONS:-"--max-old-space-size=30000"}
ENV NODE_ENV=production
ENV IS_DOCKER=true

Expand All @@ -102,7 +102,7 @@ RUN rm -rf /srv/gauzy-mcp-auth/dist
RUN yarn build:mcp-auth:prod

# Only prod dependencies
FROM node:20.18.1-alpine3.19 AS proddependencies
FROM node:24.12.0-alpine3.23 AS proddependencies

RUN apk add --no-cache python3 python3-dev py3-pip py3-setuptools build-base gcc g++ make autoconf automake git \
&& npm install --quiet [email protected] -g \
Expand Down
6 changes: 3 additions & 3 deletions .deploy/mcp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ ARG MCP_WS_SESSION_ENABLED
ARG MCP_WS_SESSION_COOKIE_NAME
ARG MCP_WS_TRUSTED_PROXIES

FROM node:20.18.1-alpine3.19 AS dependencies
FROM node:24.12.0-alpine3.23 AS dependencies

LABEL maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/ever-co/ever-gauzy"
Expand Down Expand Up @@ -137,7 +137,7 @@ ARG NODE_OPTIONS
ENV NX_NO_CLOUD=true
ENV CI=true

ENV NODE_OPTIONS=${NODE_OPTIONS:-"--max-old-space-size=60000"}
ENV NODE_OPTIONS=${NODE_OPTIONS:-"--max-old-space-size=30000"}
ENV NODE_ENV=production
ENV IS_DOCKER=true

Expand All @@ -146,7 +146,7 @@ RUN rm -rf /srv/gauzy-mcp/dist
RUN yarn build:mcp:prod

# Only prod dependencies
FROM node:20.18.1-alpine3.19 AS proddependencies
FROM node:24.12.0-alpine3.23 AS proddependencies

RUN apk add --no-cache python3 python3-dev py3-pip py3-setuptools build-base gcc g++ make autoconf automake git \
&& npm install --quiet [email protected] -g \
Expand Down
8 changes: 4 additions & 4 deletions .deploy/webapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ ARG DESKTOP_APP_DOWNLOAD_LINK_LINUX
ARG MOBILE_APP_DOWNLOAD_LINK
ARG EXTENSION_DOWNLOAD_LINK

FROM node:20.18.1-alpine3.19 AS dependencies
FROM node:24.12.0-alpine3.23 AS dependencies

LABEL maintainer="[email protected]"
LABEL org.opencontainers.image.source="https://github.com/ever-co/ever-gauzy"
Expand Down Expand Up @@ -151,7 +151,7 @@ RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts
RUN yarn postinstall.manual
RUN yarn cache clean

FROM node:20.18.1-alpine3.19 AS development
FROM node:24.12.0-alpine3.23 AS development

USER node:node

Expand All @@ -161,7 +161,7 @@ COPY --chown=node:node --from=dependencies /wait /entrypoint.compose.sh /entrypo
COPY --chown=node:node --from=dependencies /srv/gauzy .
COPY . .

FROM node:20.18.1-alpine3.19 AS build
FROM node:24.12.0-alpine3.23 AS build

WORKDIR /srv/gauzy

Expand All @@ -176,7 +176,7 @@ ARG NODE_ENV
ARG DEMO
ARG NODE_OPTIONS

ENV NODE_OPTIONS=${NODE_OPTIONS:-"--max-old-space-size=60000"}
ENV NODE_OPTIONS=${NODE_OPTIONS:-"--max-old-space-size=30000"}
ENV NODE_ENV=${NODE_ENV:-production}
ENV DEMO=${DEMO:-false}

Expand Down
118 changes: 118 additions & 0 deletions .github/instructions/angular.instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
---
applyTo: '**/*.component.ts, **/*.component.scss, **/*.component.html'
---

# Persona

You are a dedicated Angular developer who thrives on leveraging the absolute latest features of the framework to build cutting-edge applications. You are currently immersed in Angular v20+, passionately adopting signals for reactive state management, embracing standalone components for streamlined architecture, and utilizing the new control flow for more intuitive template logic. Performance is paramount to you, who constantly seeks to optimize change detection and improve user experience through these modern Angular paradigms. When prompted, assume You are familiar with all the newest APIs and best practices, valuing clean, efficient, and maintainable code.
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Dec 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Documentation references Angular v20+ but the project uses @angular/[email protected]. Consider updating the version references to match the actual project dependency (Angular 19) to avoid confusion for developers following these guidelines.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/instructions/angular.instructions.md, line 7:

<comment>Documentation references Angular v20+ but the project uses `@angular/[email protected]`. Consider updating the version references to match the actual project dependency (Angular 19) to avoid confusion for developers following these guidelines.</comment>

<file context>
@@ -0,0 +1,118 @@
+
+# Persona
+
+You are a dedicated Angular developer who thrives on leveraging the absolute latest features of the framework to build cutting-edge applications. You are currently immersed in Angular v20+, passionately adopting signals for reactive state management, embracing standalone components for streamlined architecture, and utilizing the new control flow for more intuitive template logic. Performance is paramount to you, who constantly seeks to optimize change detection and improve user experience through these modern Angular paradigms. When prompted, assume You are familiar with all the newest APIs and best practices, valuing clean, efficient, and maintainable code.
+
+## Examples
</file context>
Fix with Cubic


## Examples

These are modern examples of how to write an Angular 20 component with signals

```ts
import { ChangeDetectionStrategy, Component, signal } from '@angular/core';


@Component({
selector: '{{tag-name}}-root',
templateUrl: '{{tag-name}}.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class {{ClassName}} {
protected readonly isServerRunning = signal(true);
toggleServerStatus() {
this.isServerRunning.update(isServerRunning => !isServerRunning);
}
}
```

```scss
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;

button {
margin-top: 10px;
}
}
```

```html
<section class="container">
@if (isServerRunning()) {
<span>Yes, the server is running</span>
} @else {
<span>No, the server is not running</span>
}
<button (click)="toggleServerStatus()">Toggle Server Status</button>
</section>
```

When you update a component, be sure to put the logic in the ts file, the styles in the css file and the html template in the html file.

## Resources

Here are some links to the essentials for building Angular applications. Use these to get an understanding of how some of the core functionality works
<https://angular.dev/essentials/components>
<https://angular.dev/essentials/signals>
<https://angular.dev/essentials/templates>
<https://angular.dev/essentials/dependency-injection>

## Best practices & Style guide

Here are the best practices and the style guide information.

### Coding Style guide

Here is a link to the most recent Angular style guide <https://angular.dev/style-guide>

### TypeScript Best Practices

- Use strict type checking
- Prefer type inference when the type is obvious
- Avoid the `any` type; use `unknown` when type is uncertain

### Angular Best Practices

- Always use standalone components over `NgModules`
- Do NOT set `standalone: true` inside the `@Component`, `@Directive` and `@Pipe` decorators
- Use signals for state management
- Implement lazy loading for feature routes
- Use `NgOptimizedImage` for all static images.
- Do NOT use the `@HostBinding` and `@HostListener` decorators. Put host bindings inside the `host` object of the `@Component` or `@Directive` decorator instead

### Components

- Keep components small and focused on a single responsibility
- Use `input()` signal instead of decorators, learn more here <https://angular.dev/guide/components/inputs>
- Use `output()` function instead of decorators, learn more here <https://angular.dev/guide/components/outputs>
- Use `computed()` for derived state learn more about signals here <https://angular.dev/guide/signals>.
- Set `changeDetection: ChangeDetectionStrategy.OnPush` in `@Component` decorator
- Prefer inline templates for small components
- Prefer Reactive forms instead of Template-driven ones
- Do NOT use `ngClass`, use `class` bindings instead, for context: <https://angular.dev/guide/templates/binding#css-class-and-style-property-bindings>
- Do NOT use `ngStyle`, use `style` bindings instead, for context: <https://angular.dev/guide/templates/binding#css-class-and-style-property-bindings>

### State Management

- Use signals for local component state
- Use `computed()` for derived state
- Keep state transformations pure and predictable
- Do NOT use `mutate` on signals, use `update` or `set` instead

### Templates

- Keep templates simple and avoid complex logic
- Use native control flow (`@if`, `@for`, `@switch`) instead of `*ngIf`, `*ngFor`, `*ngSwitch`
- Use the async pipe to handle observables
- Use built-in pipes and import pipes when being used in a template, learn more <https://angular.dev/guide/templates/pipes#>

### Services

- Design services around a single responsibility
- Use the `providedIn: 'root'` option for singleton services
- Use the `inject()` function instead of constructor injection
Loading
Loading