Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.2.1"}
{".":"0.3.0"}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.0](https://github.com/MapColonies/jobnik-manager/compare/v0.2.1...v0.3.0) (2026-06-25)


### Features

* upgraded eslint config to v8 ([#244](https://github.com/MapColonies/jobnik-manager/issues/244)) ([f22f2a3](https://github.com/MapColonies/jobnik-manager/commit/f22f2a3f704c8ebda18004ee3412bb2536687453))

## [0.2.1](https://github.com/MapColonies/jobnik-manager/compare/v0.2.0...v0.2.1) (2026-06-01)


Expand Down
9 changes: 2 additions & 7 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import tsBaseConfig, { namingConventions } from '@map-colonies/eslint-config/ts-base';
import { config } from '@map-colonies/eslint-config/helpers';
import { defineConfig } from '@map-colonies/eslint-config/helpers';
import vitestConfig from '@map-colonies/eslint-config/vitest';

const AllowedSqlOperators = {
Expand All @@ -19,13 +19,8 @@ const customConfig = {
'@typescript-eslint/naming-convention': namingConvention,
'no-console': 'error',
},
languageOptions: {
parserOptions: {
project: './tsconfig.json',
},
},
};

export default config(vitestConfig, tsBaseConfig, customConfig, {
export default defineConfig(vitestConfig, tsBaseConfig, customConfig, {
ignores: ['src/db/prisma/generated', 'src/common/generated', 'vitest.config.mts'],
});
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: jobnik-manager
description: A Helm chart for jobnik-manager service
type: application
version: 0.2.1
appVersion: 0.2.1
version: 0.3.0
appVersion: 0.3.0
dependencies:
- name: mclabels
version: 1.0.1
Expand Down
2 changes: 1 addition & 1 deletion openapi3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.3
info:
title: Job Manager Service - API v1
description: Job Manager Service API version 1
version: 0.2.1
version: 0.3.0
license:
name: MIT
url: https://opensource.org/licenses/MIT
Expand Down
Loading
Loading