Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.24.0 #2010

Merged
merged 24 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7319503
refactor(*): move folders to align with core - feature structure (#1975)
sleidig Aug 23, 2023
669e912
feat(matching): enable matching view to also handle group matchings w…
sleidig Aug 24, 2023
73ca892
build(*): updates dependencies + fix storybook build (#1982)
sleidig Aug 24, 2023
b67daa6
ci: removed storybook `storyStoreV7` disable (#1989)
TheSlimvReal Aug 25, 2023
796eea9
fix: removed migration for configurable enums (#1986)
TheSlimvReal Aug 25, 2023
29a5896
fix: date filter has all option (#1988)
christophscheuing Sep 4, 2023
46533d1
fix(forms): display label for photo fields (#1987)
sleidig Sep 6, 2023
d5ddd29
fix(core): correctly check permissions for menu items to details page…
sleidig Sep 8, 2023
d16c9ab
feat(core): configurable styles for whole platform (#1953)
TheSlimvReal Sep 8, 2023
b71fc07
fix(core): correctly display selected dropdown value when using keybo…
christophscheuing Sep 8, 2023
56b42a6
fix(core): better error logging in KeycloakAuthService
sleidig Sep 14, 2023
1f66bf5
build(deps): bump @cypress/request and cypress (#1996)
dependabot[bot] Sep 14, 2023
d72eebe
fix(core): correctly load custom favicon (#1998)
sleidig Sep 14, 2023
80de1aa
refactor(core): avoid @use of @angular/material in scss files
sleidig Sep 14, 2023
fcf81c2
build(deps): update all dependencies
sleidig Sep 14, 2023
fc082a6
test(storybook): correctly export preview config
sleidig Sep 14, 2023
1f9cc78
test(storybook): fix broken story
sleidig Sep 14, 2023
c279d57
test(storybook): group entity property stories according to datatype
sleidig Sep 14, 2023
9355532
fix: range background color in date picker (#2009)
TheSlimvReal Sep 20, 2023
c90e7fd
fix(filters): "false" option of boolean filters includes undefined (#…
sleidig Sep 20, 2023
d7776fd
fix(*): correctly allow date ranges where start date is in future (#2…
sleidig Sep 21, 2023
4bf13b3
feat(core): display calculated percentage ratio between to properties…
christophscheuing Sep 21, 2023
30ae95f
fix(i18n): update translations
sleidig Sep 21, 2023
5e38b68
fix: build/Dockerfile to reduce vulnerabilities (#2003)
TheSlimvReal Sep 21, 2023
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
  •  
  •  
  •  
6 changes: 1 addition & 5 deletions .storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
module.exports = {
stories: ["../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
addons: [
"@storybook/addon-links",
"@storybook/addon-essentials",
"@storybook/addon-interactions",
],
addons: ["@storybook/addon-essentials"],
framework: {
name: "@storybook/angular",
options: {
Expand Down
4 changes: 3 additions & 1 deletion .storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ environment.production = false;
environment.session_type = SessionType.mock;
environment.demo_mode = false;

export const preview: Preview = {
const preview: Preview = {
parameters: {
actions: { argTypesRegex: "^on[A-Z].*" },
options: {
Expand All @@ -24,3 +24,5 @@ export const preview: Preview = {
},
},
};

export default preview;
3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@
"builder": "@storybook/angular:build-storybook",
"options": {
"browserTarget": "ndb-core:build",
"compodoc": false
"compodoc": false,
"enableProdMode": false
}
},
"lint": {
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN if [ "$SENTRY_AUTH_TOKEN" != "" ] ; then \

### PROD image

FROM nginx:1.25.1-alpine
FROM nginx:1.25.2-alpine
COPY ./build/default.conf /etc/nginx/templates/default.conf
COPY --from=builder /app/dist/ /usr/share/nginx/html
# The port on which the app will run in the Docker container
Expand Down
Loading