@echoes-of-order/eslint-config 1.121.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1093 -0
- package/configs/.gitkeep +1 -0
- package/configs/admin.js +203 -0
- package/configs/api-client.js +46 -0
- package/configs/backend.js +895 -0
- package/configs/domains.js +123 -0
- package/configs/frontend.js +30 -0
- package/configs/image-server.js +26 -0
- package/configs/ionos-proxy.js +372 -0
- package/configs/nestjs.js +156 -0
- package/configs/node.js +92 -0
- package/configs/react.js +111 -0
- package/configs/wiki.js +42 -0
- package/index.js +39 -0
- package/package.json +85 -0
- package/rules/.gitkeep +1 -0
- package/rules/__tests__/analyze-relation-usage.test.js.disabled +300 -0
- package/rules/__tests__/complexity.test.js.disabled +300 -0
- package/rules/__tests__/enforce-dto-factory-in-services.integration.test.js +226 -0
- package/rules/__tests__/enforce-dto-factory-in-services.test.js +177 -0
- package/rules/__tests__/enforce-entity-dto-create-no-id.integration.test.js +18 -0
- package/rules/__tests__/enforce-function-argument-count.test.js.disabled +300 -0
- package/rules/__tests__/enforce-repository-token-handling.test.js +58 -0
- package/rules/__tests__/english-only-code-strings.test.js.disabled +300 -0
- package/rules/__tests__/eslint-rules.integration.test.ts +350 -0
- package/rules/__tests__/integration-test-controller-response-dto.js +261 -0
- package/rules/__tests__/integration-test-dto-factory-in-services.js +260 -0
- package/rules/__tests__/integration-test-no-entity-type-casting.js +161 -0
- package/rules/__tests__/integration-test-typeorm-naming-conventions.js +501 -0
- package/rules/__tests__/test-config.js +33 -0
- package/rules/admin-controller-security.js +180 -0
- package/rules/analyze-relation-usage.js +687 -0
- package/rules/api-response-dto.js +174 -0
- package/rules/auth-guard-required.js +142 -0
- package/rules/backend-specific.js +36 -0
- package/rules/best-practices.js +421 -0
- package/rules/complexity.js +20 -0
- package/rules/controller-architecture.js +340 -0
- package/rules/controller-naming-conventions.js +190 -0
- package/rules/controller-readonly-restriction.js +148 -0
- package/rules/controller-swagger-complete.js +312 -0
- package/rules/controller-swagger-docs.js +119 -0
- package/rules/controller-swagger-english.js +320 -0
- package/rules/coordinate-naming.js +132 -0
- package/rules/custom-mui-button.js +135 -0
- package/rules/dead-code-detection-backend.js +50 -0
- package/rules/dead-code-detection-frontend.js +48 -0
- package/rules/dead-code-detection.js +71 -0
- package/rules/debug-controller-response-dto.js +79 -0
- package/rules/deprecate.js +8 -0
- package/rules/dto-annotation-property-consistency.js +111 -0
- package/rules/dto-entity-mapping-completeness.js +688 -0
- package/rules/dto-entity-swagger-separation.js +265 -0
- package/rules/dto-entity-type-consistency.js +352 -0
- package/rules/dto-entity-type-matching.js +519 -0
- package/rules/dto-naming-convention.js +98 -0
- package/rules/dto-visibility-modifiers.js +159 -0
- package/rules/enforce-api-versioning.js +122 -0
- package/rules/enforce-app-module-registration.js +179 -0
- package/rules/enforce-basecontroller.js +152 -0
- package/rules/enforce-body-request-dto.js +141 -0
- package/rules/enforce-controller-response-dto.js +349 -0
- package/rules/enforce-custom-error-classes.js +242 -0
- package/rules/enforce-database-transaction-safety.js +179 -0
- package/rules/enforce-dto-constructor.js +95 -0
- package/rules/enforce-dto-create-parameter-types.js +170 -0
- package/rules/enforce-dto-create-pattern.js +274 -0
- package/rules/enforce-dto-entity-creation.js +164 -0
- package/rules/enforce-dto-factory-in-services.js +188 -0
- package/rules/enforce-dto-from-entity-method.js +47 -0
- package/rules/enforce-dto-from-entity.js +314 -0
- package/rules/enforce-dto-naming-conventions.js +212 -0
- package/rules/enforce-dto-naming.js +176 -0
- package/rules/enforce-dto-usage-simple.js +114 -0
- package/rules/enforce-dto-usage.js +407 -0
- package/rules/enforce-eager-translation-loading.js +178 -0
- package/rules/enforce-entity-creation-pattern.js +137 -0
- package/rules/enforce-entity-dto-convert-method.js +157 -0
- package/rules/enforce-entity-dto-create-no-id.js +117 -0
- package/rules/enforce-entity-dto-extends-base.js +141 -0
- package/rules/enforce-entity-dto-from-request-dto-structure.js +113 -0
- package/rules/enforce-entity-dto-fromentity-complex.js +69 -0
- package/rules/enforce-entity-dto-fromentity-simple.js +69 -0
- package/rules/enforce-entity-dto-fromrequestdto-structure.js +262 -0
- package/rules/enforce-entity-dto-methods-restriction.js +159 -0
- package/rules/enforce-entity-dto-no-request-dto.js +102 -0
- package/rules/enforce-entity-dto-optional-auto-fields.js +101 -0
- package/rules/enforce-entity-dto-required-methods.js +248 -0
- package/rules/enforce-entity-factory-pattern.js +180 -0
- package/rules/enforce-entity-instantiation-in-toentity.js +125 -0
- package/rules/enforce-enum-for-playable-entities.js +95 -0
- package/rules/enforce-error-handling.js +257 -0
- package/rules/enforce-explicit-dto-types.js +118 -0
- package/rules/enforce-from-request-dto-usage.js +62 -0
- package/rules/enforce-generic-entity-dto.js +71 -0
- package/rules/enforce-inject-decorator.js +133 -0
- package/rules/enforce-lazy-type-loading.js +170 -0
- package/rules/enforce-module-existence.js +157 -0
- package/rules/enforce-nonentity-dto-create.js +107 -0
- package/rules/enforce-playable-entity-naming.js +108 -0
- package/rules/enforce-repository-token-handling.js +92 -0
- package/rules/enforce-request-dto-no-entity-dto.js +201 -0
- package/rules/enforce-request-dto-required-fields.js +217 -0
- package/rules/enforce-result-pattern.js +45 -0
- package/rules/enforce-service-relation-loading.js +116 -0
- package/rules/enforce-test-coverage.js +96 -0
- package/rules/enforce-toentity-conditional-assignment.js +132 -0
- package/rules/enforce-translations-required.js +203 -0
- package/rules/enforce-typeorm-naming-conventions.js +366 -0
- package/rules/enforce-vite-health-metrics.js +240 -0
- package/rules/entity-required-properties.js +321 -0
- package/rules/entity-to-dto-test.js +73 -0
- package/rules/enum-database-validation.js +149 -0
- package/rules/errors.js +190 -0
- package/rules/es6.js +204 -0
- package/rules/eslint-plugin-no-comments.js +44 -0
- package/rules/filename-class-name-match.js +62 -0
- package/rules/forbid-fromentity-outside-entity-folder.js +237 -0
- package/rules/function-params-newline.js +111 -0
- package/rules/imports.js +264 -0
- package/rules/jest.js +13 -0
- package/rules/jsx.js +16 -0
- package/rules/max-classes-per-file.js +49 -0
- package/rules/multiline-formatting.js +146 -0
- package/rules/no-blank-lines-between-decorators-and-properties.js +95 -0
- package/rules/no-comments.js +62 -0
- package/rules/no-dto-constructors.js +126 -0
- package/rules/no-dto-default-values.js +220 -0
- package/rules/no-dto-duplicates.js +127 -0
- package/rules/no-dto-in-entity.js +99 -0
- package/rules/no-dynamic-import-in-types.js +71 -0
- package/rules/no-dynamic-imports-in-controllers.js +95 -0
- package/rules/no-entity-imports-in-controllers.js +101 -0
- package/rules/no-entity-in-swagger-docs.js +139 -0
- package/rules/no-entity-type-casting.js +104 -0
- package/rules/no-fetch.js +77 -0
- package/rules/no-import-meta-env.js +151 -0
- package/rules/no-inline-styles.js +5 -0
- package/rules/no-magic-values.js +85 -0
- package/rules/no-partial-type.js +168 -0
- package/rules/no-relative-imports.js +31 -0
- package/rules/no-tsyringe.js +181 -0
- package/rules/no-type-assertion.js +175 -0
- package/rules/no-undefined-entity-properties.js +121 -0
- package/rules/node.js +44 -0
- package/rules/perfectionist.js +50 -0
- package/rules/performance-minimal.js +155 -0
- package/rules/performance.js +44 -0
- package/rules/pino-logger-format.js +200 -0
- package/rules/prefer-dto-classes.js +112 -0
- package/rules/prefer-dto-create-method.js +225 -0
- package/rules/promises.js +17 -0
- package/rules/react-hooks.js +15 -0
- package/rules/react.js +28 -0
- package/rules/regexp.js +70 -0
- package/rules/require-dto-response.js +81 -0
- package/rules/require-valid-relations.js +388 -0
- package/rules/result-pattern.js +162 -0
- package/rules/security.js +37 -0
- package/rules/service-architecture.js +148 -0
- package/rules/sonarjs.js +26 -0
- package/rules/strict.js +7 -0
- package/rules/style.js +611 -0
- package/rules/stylistic.js +93 -0
- package/rules/typeorm-column-type-validation.js +224 -0
- package/rules/typescript-advanced.js +113 -0
- package/rules/typescript-core.js +111 -0
- package/rules/typescript.js +146 -0
- package/rules/unicorn.js +168 -0
- package/rules/variables.js +51 -0
- package/rules/websocket-architecture.js +115 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1093 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the @echoes-of-order/eslint-config package will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.120.6] - 2025-10-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
* New rules for service transform pattern, function params newline, and multiline formatting
|
|
12
|
+
* Rules for request DTO, entity DTO structure, and required fields check
|
|
13
|
+
* Comprehensive Entity DTO method enforcement rules
|
|
14
|
+
* Rules to enforce non-entity DTO create, prevent partial types, and custom error classes
|
|
15
|
+
* Translation rules to enforce translations
|
|
16
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules
|
|
17
|
+
* Typeorm naming rules to enforce naming conventions
|
|
18
|
+
* Integration tests for new rules and updated test fixtures
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
* Updated existing rules for entity DTO, service transform pattern, and DTO factory
|
|
22
|
+
* Improved code quality and readability in various rules and tests
|
|
23
|
+
* Refactored entity DTO rules to improve performance and validation
|
|
24
|
+
* Updated config to fix linting rules and improve code quality
|
|
25
|
+
* Updated package json and scripts
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
* Fixed default values check and improved code quality
|
|
29
|
+
* Fixed entity DTO structure rule and improved code quality
|
|
30
|
+
* Fixed getEntityDtoProperties to skip decorator content
|
|
31
|
+
* Fixed circular DTO tests and improved validation checks
|
|
32
|
+
* Fixed integration tests and updated test fixtures
|
|
33
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
34
|
+
|
|
35
|
+
### Removed
|
|
36
|
+
* Removed unused .npmrc file
|
|
37
|
+
* Removed PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, and TEST_FIXTURES_CIRCULAR_PREVENTION.md documents
|
|
38
|
+
* Removed redundant tests and updated package scripts
|
|
39
|
+
|
|
40
|
+
### Security
|
|
41
|
+
* Enhanced security by improving code quality and fixing linting issues
|
|
42
|
+
|
|
43
|
+
**Breaking Changes:** None
|
|
44
|
+
|
|
45
|
+
## [1.120.5] - 2025-10-26
|
|
46
|
+
|
|
47
|
+
### Added
|
|
48
|
+
* New rules for service transform pattern, function params newline, and multiline formatting
|
|
49
|
+
* Rules for request DTO, entity DTO, and DTO factory pattern
|
|
50
|
+
* Comprehensive Entity DTO method enforcement rules
|
|
51
|
+
* Translation rules to enforce translations
|
|
52
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules
|
|
53
|
+
* Typeorm naming rules to enforce naming conventions
|
|
54
|
+
* Integration tests for new rules and improved test coverage
|
|
55
|
+
* Entity DTO tests and fixtures to enhance integration tests
|
|
56
|
+
|
|
57
|
+
### Changed
|
|
58
|
+
* Updated existing rules for entity DTO, including enforce entity DTO structure and required fields check
|
|
59
|
+
* Improved code quality and readability in various rules and tests
|
|
60
|
+
* Refactored entity DTO rules to improve performance and adjust package scripts
|
|
61
|
+
* Updated config to fix linting rules and improve code quality
|
|
62
|
+
* Updated naming rules to enforce typeorm conventions
|
|
63
|
+
|
|
64
|
+
### Fixed
|
|
65
|
+
* Default values check and improved code quality in eslint-config
|
|
66
|
+
* Entity DTO structure enforcement and improved code quality
|
|
67
|
+
* getEntityDtoProperties to skip decorator content
|
|
68
|
+
* Integration tests and test fixtures to improve test coverage and validation
|
|
69
|
+
* Circular DTO tests and validation checks
|
|
70
|
+
* Inject decorator rule to enforce inject decorator and fix linting issues
|
|
71
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
72
|
+
|
|
73
|
+
### Removed
|
|
74
|
+
* Unused .npmrc file
|
|
75
|
+
* Docs, including PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, and TEST_FIXTURES_CIRCULAR_PREVENTION.md
|
|
76
|
+
* Redundant tests to enhance performance
|
|
77
|
+
|
|
78
|
+
### Security
|
|
79
|
+
* Enhanced security by improving code quality and fixing linting issues in various rules and tests
|
|
80
|
+
|
|
81
|
+
## [1.120.4] - 2025-10-25
|
|
82
|
+
|
|
83
|
+
### Added
|
|
84
|
+
* Entity DTO rules to enforce DTO factory pattern, restrict entity DTO methods, and add fromRequestDto structure rule
|
|
85
|
+
* Comprehensive Entity DTO method enforcement rules
|
|
86
|
+
* Rules to enforce non-entity DTO create and prevent partial types
|
|
87
|
+
* Rules to enforce custom error classes, DTO create pattern, and DTO factory in services
|
|
88
|
+
* Translation rules to enforce translations
|
|
89
|
+
* DTO factory rules to enforce DTO factory in services and add no-fetch rule
|
|
90
|
+
* Typeorm naming rules to enforce naming conventions
|
|
91
|
+
* Integration tests for entity DTO rules and typeorm naming conventions
|
|
92
|
+
|
|
93
|
+
### Changed
|
|
94
|
+
* Updated eslint-config to improve code quality and enhance security
|
|
95
|
+
* Refactored entity DTO rules to improve code quality and enhance performance
|
|
96
|
+
* Updated naming rules to enforce typeorm conventions and improve code readability
|
|
97
|
+
* Improved validation checks and test coverage for entity DTO rules
|
|
98
|
+
|
|
99
|
+
### Fixed
|
|
100
|
+
* Fixed linting issues and improved code coverage for entity DTO rules
|
|
101
|
+
* Fixed circular DTO tests and improved validation checks
|
|
102
|
+
* Fixed integration tests and updated test fixtures
|
|
103
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
104
|
+
|
|
105
|
+
### Removed
|
|
106
|
+
* Removed unused .npmrc file
|
|
107
|
+
* Removed docs (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
108
|
+
* Removed redundant test and adjusted package scripts
|
|
109
|
+
|
|
110
|
+
### Security
|
|
111
|
+
* Enhanced security by updating eslint-config and improving code quality
|
|
112
|
+
|
|
113
|
+
**Breaking Changes:** None
|
|
114
|
+
|
|
115
|
+
## [1.120.3] - 2025-10-25
|
|
116
|
+
|
|
117
|
+
### Added
|
|
118
|
+
* Entity DTO rules to enforce structure, required fields, and DTO factory pattern
|
|
119
|
+
* Comprehensive Entity DTO method enforcement rules
|
|
120
|
+
* Rules to enforce non-entity DTO create, prevent partial types, and custom error classes
|
|
121
|
+
* Translation rules to enforce translations
|
|
122
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules
|
|
123
|
+
* Typeorm naming rules to enforce naming conventions
|
|
124
|
+
* Integration tests and test fixtures for improved test coverage
|
|
125
|
+
|
|
126
|
+
### Changed
|
|
127
|
+
* Updated eslint-config to improve code quality and security
|
|
128
|
+
* Refactored entity DTO rules to improve validation and performance
|
|
129
|
+
* Updated naming rules to enforce typeorm conventions and improve code readability
|
|
130
|
+
* Improved code quality and security through various config updates
|
|
131
|
+
|
|
132
|
+
### Fixed
|
|
133
|
+
* Fixed getEntityDtoProperties to skip decorator content
|
|
134
|
+
* Fixed linting issues and integration tests
|
|
135
|
+
* Fixed circular DTO tests and improved validation checks
|
|
136
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
137
|
+
* Fixed decorator rule to enforce inject decorator
|
|
138
|
+
|
|
139
|
+
### Removed
|
|
140
|
+
* Removed unused .npmrc file
|
|
141
|
+
* Removed PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, and TEST_FIXTURES_CIRCULAR_PREVENTION.md documents
|
|
142
|
+
|
|
143
|
+
### Security
|
|
144
|
+
* Enhanced security through improved code quality and config updates
|
|
145
|
+
|
|
146
|
+
**Breaking Changes:** None
|
|
147
|
+
|
|
148
|
+
## [1.120.2] - 2025-10-25
|
|
149
|
+
|
|
150
|
+
### Added
|
|
151
|
+
* Comprehensive Entity DTO method enforcement rules
|
|
152
|
+
* Entity DTO rules to enforce DTO factory pattern, restrict entity DTO methods, and add fromRequestDto structure rule
|
|
153
|
+
* Optional auto fields rule and toEntity conditional assignment rule for Entity DTOs
|
|
154
|
+
* Rules to enforce non-entity DTO create and prevent partial types
|
|
155
|
+
* Rule to enforce entity DTO methods and improve code quality
|
|
156
|
+
* Rules to enforce custom error classes, DTO create pattern, and DTO factory in services
|
|
157
|
+
* Entity DTO create no ID rule and integration tests
|
|
158
|
+
* Translation rules to enforce translations and test fixtures
|
|
159
|
+
* DTO factory rules, including enforce-dto-factory-in-services rule and no-fetch rule
|
|
160
|
+
* Typeorm naming rules to enforce naming conventions
|
|
161
|
+
|
|
162
|
+
### Changed
|
|
163
|
+
* Improved getEntityDtoProperties to skip decorator content
|
|
164
|
+
* Updated entity DTO rules to enforce required methods and entity instantiation in toEntity
|
|
165
|
+
* Refactored naming rules to fix typeorm naming conventions and improve code readability
|
|
166
|
+
* Updated tests and test fixtures to improve validation and test coverage
|
|
167
|
+
* Improved code quality and security through various configuration updates
|
|
168
|
+
|
|
169
|
+
### Fixed
|
|
170
|
+
* Fixed linting issues and improved code coverage
|
|
171
|
+
* Fixed integration tests and updated test fixtures
|
|
172
|
+
* Fixed circular DTO tests and improved validation checks
|
|
173
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
174
|
+
* Fixed decorator rule to enforce inject decorator
|
|
175
|
+
|
|
176
|
+
### Removed
|
|
177
|
+
* Removed unused .npmrc file
|
|
178
|
+
* Removed PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, and TEST_FIXTURES_CIRCULAR_PREVENTION.md documents
|
|
179
|
+
|
|
180
|
+
### Security
|
|
181
|
+
* Enhanced security through configuration updates and improved code quality
|
|
182
|
+
|
|
183
|
+
**Breaking Changes:** None
|
|
184
|
+
|
|
185
|
+
## [1.120.1] - 2025-10-24
|
|
186
|
+
|
|
187
|
+
### Added
|
|
188
|
+
* New rules to enforce non-entity DTO creation and prevent partial types
|
|
189
|
+
* Rules to enforce entity DTO methods and improve code quality
|
|
190
|
+
* Custom error classes and DTO create pattern enforcement
|
|
191
|
+
* Entity DTO create no ID rule and integration tests
|
|
192
|
+
* Translation rules to enforce translations and test fixtures
|
|
193
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules
|
|
194
|
+
* Typeorm naming rules to enforce naming conventions
|
|
195
|
+
|
|
196
|
+
### Changed
|
|
197
|
+
* Updated eslint-config to fix linting rules and improve code quality
|
|
198
|
+
* Improved test coverage and integration tests
|
|
199
|
+
* Updated decorator rule to enforce inject decorator
|
|
200
|
+
* Refactored naming rules to improve code readability and enforce typeorm conventions
|
|
201
|
+
* Updated entity DTO rules to improve validation and performance
|
|
202
|
+
|
|
203
|
+
### Fixed
|
|
204
|
+
* Fixed linting issues and integration tests
|
|
205
|
+
* Fixed circular DTO tests and improved validation checks
|
|
206
|
+
* Fixed issues with enforce inject decorator
|
|
207
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
208
|
+
|
|
209
|
+
### Removed
|
|
210
|
+
* Removed unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
211
|
+
* Removed unused .npmrc file
|
|
212
|
+
|
|
213
|
+
### Security
|
|
214
|
+
* Enhanced security by improving code quality and fixing linting issues
|
|
215
|
+
|
|
216
|
+
## [1.120.0] - 2025-10-24
|
|
217
|
+
|
|
218
|
+
### Added
|
|
219
|
+
* New rules to enforce entity DTO methods, custom error classes, and DTO create pattern
|
|
220
|
+
* Rules to enforce DTO factory in services and entity DTO create no ID
|
|
221
|
+
* Translation rules to enforce translations
|
|
222
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules
|
|
223
|
+
* Typeorm naming rules to enforce naming conventions
|
|
224
|
+
* Entity DTO tests and fixtures to improve test coverage
|
|
225
|
+
* Integration tests for new rules and features
|
|
226
|
+
|
|
227
|
+
### Changed
|
|
228
|
+
* Updated eslint-config to improve code quality and security
|
|
229
|
+
* Refactored naming rules to improve code readability and enforce typeorm conventions
|
|
230
|
+
* Improved entity DTO rules and updated test fixtures and integration tests
|
|
231
|
+
* Updated package json and adjusted package scripts
|
|
232
|
+
|
|
233
|
+
### Fixed
|
|
234
|
+
* Fixed linting rules and issues, including circular DTO tests and validation checks
|
|
235
|
+
* Fixed integration tests and updated test fixtures to improve test coverage
|
|
236
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
237
|
+
* Fixed decorator rule to enforce inject decorator
|
|
238
|
+
|
|
239
|
+
### Removed
|
|
240
|
+
* Removed unused files, including PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, and TEST_FIXTURES_CIRCULAR_PREVENTION.md
|
|
241
|
+
* Removed unused .npmrc file
|
|
242
|
+
|
|
243
|
+
### Security
|
|
244
|
+
* Enhanced security by improving code quality and fixing linting issues
|
|
245
|
+
|
|
246
|
+
Note: No breaking changes were introduced in this version.
|
|
247
|
+
|
|
248
|
+
## [1.119.0] - 2025-10-24
|
|
249
|
+
|
|
250
|
+
### Added
|
|
251
|
+
* New rules to enforce custom error classes, DTO create pattern, and DTO factory in services
|
|
252
|
+
* Translation rules to enforce translations
|
|
253
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules
|
|
254
|
+
* Typeorm naming rules to enforce naming conventions
|
|
255
|
+
* Entity DTO rules and tests to improve validation and test coverage
|
|
256
|
+
* Integration tests to enhance test coverage and security
|
|
257
|
+
|
|
258
|
+
### Changed
|
|
259
|
+
* Updated ESLint config to improve code quality, fix linting rules, and enhance security
|
|
260
|
+
* Improved code readability by updating naming rules and enforcing typeorm conventions
|
|
261
|
+
* Refactored entity DTO rules to enhance performance and adjust package scripts
|
|
262
|
+
* Updated test fixtures and integration tests to improve test coverage and validation
|
|
263
|
+
|
|
264
|
+
### Fixed
|
|
265
|
+
* Fixed linting issues, integration tests, and circular DTO tests
|
|
266
|
+
* Updated decorator rule to enforce inject decorator and fixed related issues
|
|
267
|
+
* Improved validation checks and test coverage
|
|
268
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
269
|
+
|
|
270
|
+
### Removed
|
|
271
|
+
* Removed unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
272
|
+
* Removed unused .npmrc file
|
|
273
|
+
|
|
274
|
+
### Security
|
|
275
|
+
* Enhanced security by improving code quality, fixing linting rules, and enforcing secure coding practices
|
|
276
|
+
|
|
277
|
+
**No breaking changes were introduced in this release.**
|
|
278
|
+
|
|
279
|
+
## [1.118.0] - 2025-10-23
|
|
280
|
+
|
|
281
|
+
### Added
|
|
282
|
+
* Translation rules to enforce translations and added test fixtures
|
|
283
|
+
* DTO factory rules, including the enforce-dto-factory-in-services rule and the no-fetch rule
|
|
284
|
+
* Typeorm naming rules to enforce naming conventions
|
|
285
|
+
* Entity DTO rules to improve validation and added test fixtures
|
|
286
|
+
* Entity DTO tests to improve test coverage and enhance integration tests
|
|
287
|
+
|
|
288
|
+
### Changed
|
|
289
|
+
* Updated ESLint config to improve code quality and fix linting rules
|
|
290
|
+
* Refactored naming rules to improve code readability and enforce typeorm conventions
|
|
291
|
+
* Improved entity DTO rules to enhance performance and adjust package scripts
|
|
292
|
+
* Updated integration tests to fix test cases and improve test coverage
|
|
293
|
+
|
|
294
|
+
### Fixed
|
|
295
|
+
* Fixed integration tests and updated test fixtures to improve code coverage
|
|
296
|
+
* Fixed decorator rule to enforce inject decorator and fix linting issues
|
|
297
|
+
* Fixed circular DTO tests and improved validation checks to enhance test coverage
|
|
298
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
299
|
+
|
|
300
|
+
### Removed
|
|
301
|
+
* Removed unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
302
|
+
* Removed unused .npmrc file
|
|
303
|
+
|
|
304
|
+
### Security
|
|
305
|
+
* Enhanced security by improving code quality and fixing linting rules
|
|
306
|
+
|
|
307
|
+
**No breaking changes were introduced in this release.**
|
|
308
|
+
|
|
309
|
+
## [1.117.5] - 2025-10-23
|
|
310
|
+
|
|
311
|
+
### Added
|
|
312
|
+
* Translation rules to enforce translations and added test fixtures
|
|
313
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules, with updated test fixtures and integration tests
|
|
314
|
+
* Typeorm naming rules with integration tests to enforce naming conventions
|
|
315
|
+
* Entity DTO rules with updated tests, fixtures, and improved validation
|
|
316
|
+
* Entity DTO tests with test fixtures, updated package json, and enhanced integration tests
|
|
317
|
+
|
|
318
|
+
### Changed
|
|
319
|
+
* Updated decorator rule to enforce inject decorator and fixed linting issues
|
|
320
|
+
* Improved code quality and fixed linting rules through configuration updates
|
|
321
|
+
* Refactored naming rules to improve code readability and enforce typeorm conventions
|
|
322
|
+
* Improved entity DTO rules, updating test fixtures, modifying integration tests, and adjusting package scripts
|
|
323
|
+
|
|
324
|
+
### Fixed
|
|
325
|
+
* Integration tests and improved test coverage
|
|
326
|
+
* Circular DTO tests with improved validation checks and enhanced test coverage
|
|
327
|
+
* Linting issues and improved code quality
|
|
328
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
329
|
+
|
|
330
|
+
### Removed
|
|
331
|
+
* Unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
332
|
+
* Unused .npmrc file
|
|
333
|
+
|
|
334
|
+
### Security
|
|
335
|
+
* No security-related changes in this release
|
|
336
|
+
|
|
337
|
+
## [1.117.4] - 2025-10-23
|
|
338
|
+
|
|
339
|
+
### Added
|
|
340
|
+
* Translation rules to enforce translations and added test fixtures
|
|
341
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules, with updated test fixtures and integration tests
|
|
342
|
+
* Typeorm naming rules with integration tests to enforce naming conventions
|
|
343
|
+
* Entity DTO rules with updated tests, added fixtures, and improved validation
|
|
344
|
+
* Entity DTO tests with test fixtures, updated package json, and improved test coverage
|
|
345
|
+
|
|
346
|
+
### Changed
|
|
347
|
+
* Updated decorator rule to enforce inject decorator and fixed linting issues
|
|
348
|
+
* Improved code quality by updating config, fixing linting rules, and enhancing code readability
|
|
349
|
+
* Refactored naming rules to fix typeorm naming conventions and improve code readability
|
|
350
|
+
* Improved entity DTO rules, updated test fixtures, modified integration tests, and enhanced performance
|
|
351
|
+
|
|
352
|
+
### Fixed
|
|
353
|
+
* Fixed integration tests, improved test coverage, and updated test cases
|
|
354
|
+
* Fixed circular DTO tests, improved validation checks, and enhanced test coverage
|
|
355
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
356
|
+
* Fixed linting issues and improved code quality
|
|
357
|
+
|
|
358
|
+
### Removed
|
|
359
|
+
* Removed unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
360
|
+
* Removed unused .npmrc file
|
|
361
|
+
|
|
362
|
+
### Security
|
|
363
|
+
* No security-related changes in this release
|
|
364
|
+
|
|
365
|
+
## [1.117.3] - 2025-10-23
|
|
366
|
+
|
|
367
|
+
### Added
|
|
368
|
+
* Translation rules to enforce translations
|
|
369
|
+
* DTO factory rules, including `enforce-dto-factory-in-services` and `no-fetch` rules
|
|
370
|
+
* Typeorm naming rules to enforce naming conventions
|
|
371
|
+
* Entity DTO rules to improve validation
|
|
372
|
+
* Entity DTO tests with test fixtures and updated package json
|
|
373
|
+
* Integration tests for typeorm naming rules and entity DTOs
|
|
374
|
+
|
|
375
|
+
### Changed
|
|
376
|
+
* Updated decorator rule to enforce inject decorator
|
|
377
|
+
* Improved code quality and linting rules
|
|
378
|
+
* Updated naming rules to fix typeorm naming conventions and improve code readability
|
|
379
|
+
* Improved entity DTO rules and updated test fixtures and integration tests
|
|
380
|
+
* Updated package scripts for better performance
|
|
381
|
+
|
|
382
|
+
### Fixed
|
|
383
|
+
* Integration tests and improved code coverage
|
|
384
|
+
* Linting issues and test cases
|
|
385
|
+
* Circular DTO tests and improved validation checks
|
|
386
|
+
* Updated tests to fix issues and improve test coverage
|
|
387
|
+
|
|
388
|
+
### Removed
|
|
389
|
+
* Unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
390
|
+
* Unused .npmrc file
|
|
391
|
+
* Redundant tests to enhance performance
|
|
392
|
+
|
|
393
|
+
### Security
|
|
394
|
+
* No security-related changes in this release
|
|
395
|
+
|
|
396
|
+
Note: There are no breaking changes in this release.
|
|
397
|
+
|
|
398
|
+
## [1.117.2] - 2025-10-23
|
|
399
|
+
|
|
400
|
+
### Added
|
|
401
|
+
* Translation rules to enforce translations
|
|
402
|
+
* DTO factory rules, including `enforce-dto-factory-in-services` and `no-fetch` rules
|
|
403
|
+
* Typeorm naming rules to enforce naming conventions
|
|
404
|
+
* Entity DTO rules to improve validation
|
|
405
|
+
* Entity DTO tests with test fixtures to enhance integration tests
|
|
406
|
+
|
|
407
|
+
### Changed
|
|
408
|
+
* Updated decorator rule to enforce inject decorator
|
|
409
|
+
* Improved code quality and fixed linting issues in the configuration
|
|
410
|
+
* Updated naming rules to fix typeorm naming conventions and improve code readability
|
|
411
|
+
* Refactored entity DTO rules to update test fixtures, modify integration tests, and enhance performance
|
|
412
|
+
|
|
413
|
+
### Fixed
|
|
414
|
+
* Fixed test cases and improved test coverage in integration tests
|
|
415
|
+
* Fixed linting issues and updated existing rules
|
|
416
|
+
* Fixed circular DTO tests and improved validation checks
|
|
417
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
418
|
+
|
|
419
|
+
### Removed
|
|
420
|
+
* Unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
421
|
+
* Unused .npmrc file
|
|
422
|
+
|
|
423
|
+
### Security
|
|
424
|
+
* No security-related changes in this release.
|
|
425
|
+
|
|
426
|
+
Note: There are no breaking changes in this release.
|
|
427
|
+
|
|
428
|
+
## [1.117.1] - 2025-10-23
|
|
429
|
+
|
|
430
|
+
### Added
|
|
431
|
+
* Translation rules to enforce translations in eslint-config
|
|
432
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules
|
|
433
|
+
* Typeorm naming rules to enforce naming conventions
|
|
434
|
+
* Entity DTO rules to improve validation and test coverage
|
|
435
|
+
* Test fixtures and integration tests for various rules
|
|
436
|
+
|
|
437
|
+
### Changed
|
|
438
|
+
* Updated decorator rule to enforce inject decorator
|
|
439
|
+
* Improved code quality and fixed linting rules in eslint-config
|
|
440
|
+
* Updated naming rules to fix typeorm naming conventions and improve code readability
|
|
441
|
+
* Enhanced entity DTO rules to improve performance and adjust package scripts
|
|
442
|
+
|
|
443
|
+
### Fixed
|
|
444
|
+
* Linting issues in eslint-config
|
|
445
|
+
* Integration tests and test fixtures for various rules
|
|
446
|
+
* Circular DTO tests and validation checks
|
|
447
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
448
|
+
|
|
449
|
+
### Removed
|
|
450
|
+
* Unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
451
|
+
* Unused .npmrc file
|
|
452
|
+
|
|
453
|
+
### Security
|
|
454
|
+
* No security-related changes in this release
|
|
455
|
+
|
|
456
|
+
Note: No breaking changes were introduced in this release.
|
|
457
|
+
|
|
458
|
+
## [1.117.1] - 2025-10-23
|
|
459
|
+
|
|
460
|
+
### Added
|
|
461
|
+
* Translation rules to enforce translations in eslint-config
|
|
462
|
+
* DTO factory rules, including enforce-dto-factory-in-services and no-fetch rules
|
|
463
|
+
* Typeorm naming rules to enforce naming conventions
|
|
464
|
+
* Entity DTO rules to improve validation and test coverage
|
|
465
|
+
* Test fixtures and integration tests for various rules
|
|
466
|
+
|
|
467
|
+
### Changed
|
|
468
|
+
* Updated decorator rule to enforce inject decorator
|
|
469
|
+
* Improved code quality and fixed linting issues in eslint-config
|
|
470
|
+
* Updated naming rules to fix typeorm naming conventions and improve code readability
|
|
471
|
+
* Enhanced entity DTO rules to improve performance and adjust package scripts
|
|
472
|
+
|
|
473
|
+
### Fixed
|
|
474
|
+
* Linting issues in eslint-config
|
|
475
|
+
* Integration tests and test fixtures for various rules
|
|
476
|
+
* Circular DTO tests and validation checks
|
|
477
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
478
|
+
|
|
479
|
+
### Removed
|
|
480
|
+
* Unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
481
|
+
* Unused .npmrc file
|
|
482
|
+
|
|
483
|
+
### Security
|
|
484
|
+
* No security-related changes in this release
|
|
485
|
+
|
|
486
|
+
## [1.117.0] - 2025-10-23
|
|
487
|
+
|
|
488
|
+
### Added
|
|
489
|
+
* New rules for DTO factories, including `enforce-dto-factory-in-services` and `no-fetch` rules
|
|
490
|
+
* Typeorm naming rules with integration tests
|
|
491
|
+
* Entity DTO rules with updated tests and fixtures
|
|
492
|
+
* Entity DTO tests with updated package json and improved test coverage
|
|
493
|
+
|
|
494
|
+
### Changed
|
|
495
|
+
* Updated decorator rule to enforce inject decorator
|
|
496
|
+
* Improved code quality and fixed linting rules in eslint-config
|
|
497
|
+
* Updated naming rules to enforce typeorm conventions and improve code readability
|
|
498
|
+
* Updated entity DTO rules to improve performance and adjust package scripts
|
|
499
|
+
|
|
500
|
+
### Fixed
|
|
501
|
+
* Linting issues in eslint-config
|
|
502
|
+
* Integration tests and test fixtures
|
|
503
|
+
* Circular DTO tests with improved validation checks
|
|
504
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
505
|
+
|
|
506
|
+
### Removed
|
|
507
|
+
* Unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
508
|
+
* Unused .npmrc file
|
|
509
|
+
|
|
510
|
+
### Security
|
|
511
|
+
* No security fixes in this release
|
|
512
|
+
|
|
513
|
+
Note: There are no breaking changes in this release.
|
|
514
|
+
|
|
515
|
+
## [1.116.0] - 2025-10-17
|
|
516
|
+
|
|
517
|
+
### Added
|
|
518
|
+
* Entity DTO tests and fixtures to improve validation and test coverage
|
|
519
|
+
* TypeORM naming rules to enforce conventions and improve code readability
|
|
520
|
+
* Integration tests for entity DTO rules and typeorm naming conventions
|
|
521
|
+
|
|
522
|
+
### Changed
|
|
523
|
+
* Updated ESLint config to improve code quality and fix linting issues
|
|
524
|
+
* Improved entity DTO rules and updated test fixtures to enhance performance
|
|
525
|
+
* Modified integration tests and removed redundant tests
|
|
526
|
+
|
|
527
|
+
### Fixed
|
|
528
|
+
* Linting issues and improved code quality
|
|
529
|
+
* Circular DTO tests and validation checks
|
|
530
|
+
* Updated decorator rule to enforce inject decorator
|
|
531
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
532
|
+
|
|
533
|
+
### Removed
|
|
534
|
+
* Unused `.npmrc` file
|
|
535
|
+
* Documentation files (`PERFORMANCE_OPTIMIZATION.md`, `TEST_FIXES.md`, `TEST_FIXTURES_CIRCULAR_PREVENTION.md`)
|
|
536
|
+
|
|
537
|
+
### Security
|
|
538
|
+
* No security-related changes in this release
|
|
539
|
+
|
|
540
|
+
## [1.115.8] - 2025-10-16
|
|
541
|
+
|
|
542
|
+
### Added
|
|
543
|
+
* Entity DTO rules and tests to improve validation and integration testing
|
|
544
|
+
* TypeORM naming rules to enforce conventions and improve code readability
|
|
545
|
+
* Integration tests and test fixtures to enhance test coverage
|
|
546
|
+
|
|
547
|
+
### Changed
|
|
548
|
+
* Updated ESLint configuration to fix linting rules and improve code quality
|
|
549
|
+
* Improved code readability and performance by refactoring entity DTO rules and updating package scripts
|
|
550
|
+
* Updated naming rules to enforce TypeORM conventions
|
|
551
|
+
|
|
552
|
+
### Fixed
|
|
553
|
+
* Integration tests and circular DTO tests to improve validation checks and test coverage
|
|
554
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
555
|
+
* Updated tests and test fixtures to improve enforce inject decorator and validation checks
|
|
556
|
+
|
|
557
|
+
### Removed
|
|
558
|
+
* Unused `.npmrc` file
|
|
559
|
+
* Documentation files (`PERFORMANCE_OPTIMIZATION.md`, `TEST_FIXES.md`, `TEST_FIXTURES_CIRCULAR_PREVENTION.md`)
|
|
560
|
+
|
|
561
|
+
### Security
|
|
562
|
+
* No security-related changes in this release
|
|
563
|
+
|
|
564
|
+
Note: There are no breaking changes in this release.
|
|
565
|
+
|
|
566
|
+
## [1.115.7] - 2025-10-16
|
|
567
|
+
|
|
568
|
+
### Added
|
|
569
|
+
* Entity DTO tests and fixtures to improve validation and test coverage
|
|
570
|
+
* TypeORM naming rules and integration tests to enforce naming conventions
|
|
571
|
+
* Rules to enforce entity DTO conventions
|
|
572
|
+
|
|
573
|
+
### Changed
|
|
574
|
+
* ESLint config to improve code quality and fix linting rules
|
|
575
|
+
* Naming rules to improve code readability and enforce TypeORM conventions
|
|
576
|
+
* Entity DTO rules to enhance performance and adjust package scripts
|
|
577
|
+
|
|
578
|
+
### Fixed
|
|
579
|
+
* Integration tests and test fixtures to improve test coverage and validation checks
|
|
580
|
+
* Circular DTO tests to enhance test coverage
|
|
581
|
+
* Inject decorator enforcement to improve code quality
|
|
582
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
583
|
+
|
|
584
|
+
### Removed
|
|
585
|
+
* Unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
586
|
+
* Unused .npmrc file
|
|
587
|
+
|
|
588
|
+
### Security
|
|
589
|
+
* No security-related changes in this release
|
|
590
|
+
|
|
591
|
+
## [1.115.6] - 2025-10-16
|
|
592
|
+
|
|
593
|
+
### Added
|
|
594
|
+
* Entity DTO tests and fixtures to improve validation and test coverage
|
|
595
|
+
* TypeORM naming rules to enforce conventions and improve code readability
|
|
596
|
+
* Integration tests to enhance test coverage and validation checks
|
|
597
|
+
* Rules to enforce entity DTO conventions and improve validation
|
|
598
|
+
|
|
599
|
+
### Changed
|
|
600
|
+
* Updated ESLint config to improve code quality and fix linting rules
|
|
601
|
+
* Refactored naming rules to enforce TypeORM conventions and improve code readability
|
|
602
|
+
* Improved entity DTO rules to enhance performance and adjust package scripts
|
|
603
|
+
* Updated package JSON to improve test coverage and enhance integration tests
|
|
604
|
+
|
|
605
|
+
### Fixed
|
|
606
|
+
* Integration tests and test fixtures to fix circular DTO tests and improve validation checks
|
|
607
|
+
* TypeORM naming conventions to fix inconsistencies and improve code readability
|
|
608
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
609
|
+
* Updated tests to fix enforce inject decorator and improve validation
|
|
610
|
+
|
|
611
|
+
### Removed
|
|
612
|
+
* Unused documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md)
|
|
613
|
+
* Unused .npmrc file
|
|
614
|
+
* Redundant tests to improve performance and code quality
|
|
615
|
+
|
|
616
|
+
### Deprecated
|
|
617
|
+
* No deprecated changes in this release
|
|
618
|
+
|
|
619
|
+
### Security
|
|
620
|
+
* No security fixes in this release
|
|
621
|
+
|
|
622
|
+
**Breaking Changes:** None
|
|
623
|
+
|
|
624
|
+
## [1.115.5] - 2025-10-16
|
|
625
|
+
|
|
626
|
+
### Added
|
|
627
|
+
* Entity DTO tests and fixtures to improve validation and test coverage
|
|
628
|
+
* TypeORM naming rules to enforce conventions and improve code readability
|
|
629
|
+
* Integration tests to enhance test coverage and validation checks
|
|
630
|
+
|
|
631
|
+
### Changed
|
|
632
|
+
* Updated naming rules to enforce TypeORM conventions and improve code readability
|
|
633
|
+
* Improved entity DTO rules to enhance performance and adjust package scripts
|
|
634
|
+
* Updated test fixtures and modified integration tests to improve validation and test coverage
|
|
635
|
+
|
|
636
|
+
### Fixed
|
|
637
|
+
* Integration tests and circular DTO tests to improve validation checks
|
|
638
|
+
* TypeORM naming conventions to fix inconsistencies and improve code readability
|
|
639
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
640
|
+
|
|
641
|
+
### Removed
|
|
642
|
+
* Unused `.npmrc` file
|
|
643
|
+
* Documentation files (`PERFORMANCE_OPTIMIZATION.md`, `TEST_FIXES.md`, `TEST_FIXTURES_CIRCULAR_PREVENTION.md`)
|
|
644
|
+
|
|
645
|
+
### Security
|
|
646
|
+
* No security fixes in this release
|
|
647
|
+
|
|
648
|
+
## [1.115.4] - 2025-10-16
|
|
649
|
+
|
|
650
|
+
### Added
|
|
651
|
+
* Entity DTO tests and fixtures to improve test coverage and validation
|
|
652
|
+
* TypeORM naming rules and integration tests to enforce naming conventions
|
|
653
|
+
* Entity DTO rules to enhance validation and performance
|
|
654
|
+
|
|
655
|
+
### Changed
|
|
656
|
+
* Naming rules in eslint-config to improve code readability and enforce TypeORM conventions
|
|
657
|
+
* Entity DTO rules to update test fixtures, modify integration tests, and enhance performance
|
|
658
|
+
* Package scripts and package.json to support new features and tests
|
|
659
|
+
|
|
660
|
+
### Fixed
|
|
661
|
+
* Circular DTO tests and validation checks to prevent errors and improve test coverage
|
|
662
|
+
* TypeORM naming conventions to ensure consistency and accuracy
|
|
663
|
+
|
|
664
|
+
### Removed
|
|
665
|
+
* Unused .npmrc file to reduce clutter and improve maintainability
|
|
666
|
+
* Docs (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md) to simplify documentation and reduce redundancy
|
|
667
|
+
|
|
668
|
+
### Security
|
|
669
|
+
* No security-related changes in this release
|
|
670
|
+
|
|
671
|
+
## [1.115.3] - 2025-10-14
|
|
672
|
+
|
|
673
|
+
### Added
|
|
674
|
+
* Entity DTO tests and fixtures to improve test coverage and validation
|
|
675
|
+
* TypeORM naming rules to enforce conventions and improve code readability
|
|
676
|
+
* Integration tests to enhance overall test coverage
|
|
677
|
+
|
|
678
|
+
### Changed
|
|
679
|
+
* Updated naming rules in eslint-config to enforce TypeORM conventions and improve code readability
|
|
680
|
+
* Improved entity DTO rules and updated test fixtures to enhance performance and validation
|
|
681
|
+
* Updated package scripts and adjusted package json for better integration
|
|
682
|
+
|
|
683
|
+
### Fixed
|
|
684
|
+
* Activated circular DTO prevention rules for Entity DTOs to prevent potential issues
|
|
685
|
+
|
|
686
|
+
### Removed
|
|
687
|
+
* Unused .npmrc file to reduce clutter
|
|
688
|
+
* Documentation files (PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md) to maintain a concise documentation set
|
|
689
|
+
|
|
690
|
+
### Deprecated
|
|
691
|
+
* No deprecated changes in this release
|
|
692
|
+
|
|
693
|
+
### Security
|
|
694
|
+
* No security fixes in this release
|
|
695
|
+
|
|
696
|
+
**Breaking Changes:** None
|
|
697
|
+
|
|
698
|
+
## [1.115.2] - 2025-10-13
|
|
699
|
+
|
|
700
|
+
### Added
|
|
701
|
+
* Entity DTO tests and fixtures to improve test coverage and validation
|
|
702
|
+
* Typeorm naming rules to enforce conventions and improve code readability
|
|
703
|
+
* Integration tests to enhance overall test coverage
|
|
704
|
+
|
|
705
|
+
### Changed
|
|
706
|
+
* Entity DTO rules to improve validation and performance
|
|
707
|
+
* Naming rules to enforce TypeORM conventions
|
|
708
|
+
* Package scripts and test fixtures to enhance performance and testing
|
|
709
|
+
|
|
710
|
+
### Fixed
|
|
711
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
712
|
+
|
|
713
|
+
### Removed
|
|
714
|
+
* Unused `.npmrc` file
|
|
715
|
+
* Documentation files (`PERFORMANCE_OPTIMIZATION.md`, `TEST_FIXES.md`, `TEST_FIXTURES_CIRCULAR_PREVENTION.md`)
|
|
716
|
+
|
|
717
|
+
### Security
|
|
718
|
+
* No changes
|
|
719
|
+
|
|
720
|
+
## [1.115.1] - 2025-10-13
|
|
721
|
+
|
|
722
|
+
### Added
|
|
723
|
+
* Entity DTO tests and fixtures to improve test coverage and validation
|
|
724
|
+
* TypeORM naming rules to enforce naming conventions
|
|
725
|
+
* Entity DTO rules to enhance validation and integration tests
|
|
726
|
+
|
|
727
|
+
### Changed
|
|
728
|
+
* Improved entity DTO rules for better performance and validation
|
|
729
|
+
* Updated package scripts and adjusted package JSON for better test coverage
|
|
730
|
+
* Modified integration tests to enhance performance and validation
|
|
731
|
+
|
|
732
|
+
### Fixed
|
|
733
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
734
|
+
|
|
735
|
+
### Removed
|
|
736
|
+
* Unused `.npmrc` file
|
|
737
|
+
* Documentation files (`PERFORMANCE_OPTIMIZATION.md`, `TEST_FIXES.md`, `TEST_FIXTURES_CIRCULAR_PREVENTION.md`)
|
|
738
|
+
|
|
739
|
+
Note: No breaking changes, deprecations, or security fixes are included in this release.
|
|
740
|
+
|
|
741
|
+
## [1.115.0] - 2025-10-13
|
|
742
|
+
|
|
743
|
+
### Added
|
|
744
|
+
* Entity DTO rules enforcement, including updated tests, added fixtures, and improved validation
|
|
745
|
+
* Entity DTO tests, including test fixtures, updated package json, improved test coverage, and enhanced integration tests
|
|
746
|
+
|
|
747
|
+
### Changed
|
|
748
|
+
* Entity DTO rules have been improved, including updated test fixtures, modified integration tests, and enhanced performance
|
|
749
|
+
* Package scripts have been adjusted
|
|
750
|
+
|
|
751
|
+
### Fixed
|
|
752
|
+
* Circular DTO prevention rules for Entity DTOs have been activated
|
|
753
|
+
|
|
754
|
+
### Removed
|
|
755
|
+
* The following documentation files have been removed: PERFORMANCE_OPTIMIZATION.md, TEST_FIXES.md, TEST_FIXTURES_CIRCULAR_PREVENTION.md
|
|
756
|
+
* Unused .npmrc file has been removed
|
|
757
|
+
* Redundant tests have been removed
|
|
758
|
+
|
|
759
|
+
### Deprecated
|
|
760
|
+
* No deprecated changes in this release
|
|
761
|
+
|
|
762
|
+
### Security
|
|
763
|
+
* No security fixes in this release
|
|
764
|
+
|
|
765
|
+
**Breaking Changes:** None
|
|
766
|
+
|
|
767
|
+
## [1.114.1] - 2025-10-13
|
|
768
|
+
|
|
769
|
+
### Added
|
|
770
|
+
* Entity DTO tests and fixtures to improve test coverage and validation
|
|
771
|
+
* Integration tests to enhance overall test suite
|
|
772
|
+
|
|
773
|
+
### Changed
|
|
774
|
+
* Entity DTO rules for improved validation and performance
|
|
775
|
+
* Package scripts for better maintenance
|
|
776
|
+
* Updated various files in `eslint-config` for consistency and improvements
|
|
777
|
+
|
|
778
|
+
### Fixed
|
|
779
|
+
* Activated circular DTO prevention rules for Entity DTOs to prevent potential issues
|
|
780
|
+
* Removed redundant test to enhance performance
|
|
781
|
+
|
|
782
|
+
### Removed
|
|
783
|
+
* Unused `.npmrc` file to reduce clutter
|
|
784
|
+
|
|
785
|
+
## [1.114.0] - 2025-10-13
|
|
786
|
+
|
|
787
|
+
### Added
|
|
788
|
+
* Entity DTO tests, including test fixtures and improved integration tests, to enhance test coverage and performance
|
|
789
|
+
|
|
790
|
+
### Changed
|
|
791
|
+
* Improved entity DTO rules, including updates to test fixtures, integration tests, and package scripts, to enhance performance
|
|
792
|
+
* Updated various files in `eslint-config` to improve overall quality and consistency
|
|
793
|
+
|
|
794
|
+
### Fixed
|
|
795
|
+
* Activated circular DTO prevention rules for Entity DTOs in the config
|
|
796
|
+
|
|
797
|
+
### Removed
|
|
798
|
+
* Unused `.npmrc` file to reduce clutter and improve maintainability
|
|
799
|
+
|
|
800
|
+
Note: No breaking changes, deprecations, or security fixes are included in this release.
|
|
801
|
+
|
|
802
|
+
## [1.113.0] - 2025-10-13
|
|
803
|
+
|
|
804
|
+
### Changed
|
|
805
|
+
* Improved entity DTO rules in eslint-config, including updates to test fixtures and integration tests, resulting in enhanced performance
|
|
806
|
+
* Updated package scripts in eslint-config
|
|
807
|
+
* Modified multiple files in eslint-config for general updates
|
|
808
|
+
|
|
809
|
+
### Fixed
|
|
810
|
+
* Activated circular DTO prevention rules for Entity DTOs
|
|
811
|
+
|
|
812
|
+
### Removed
|
|
813
|
+
* Unused .npmrc file
|
|
814
|
+
|
|
815
|
+
Note: No breaking changes were identified in this release.
|
|
816
|
+
|
|
817
|
+
## [1.112.19] - 2025-10-13
|
|
818
|
+
|
|
819
|
+
### Changed
|
|
820
|
+
* Updated eslint-config in multiple files to improve code consistency and quality
|
|
821
|
+
### Fixed
|
|
822
|
+
* Activated circular DTO prevention rules for Entity DTOs to prevent potential issues
|
|
823
|
+
### Removed
|
|
824
|
+
* Unused .npmrc file to reduce clutter and improve project organization
|
|
825
|
+
|
|
826
|
+
Note: No breaking changes were introduced in this release.
|
|
827
|
+
|
|
828
|
+
## [1.112.18] - 2025-10-13
|
|
829
|
+
|
|
830
|
+
### Changed
|
|
831
|
+
* Updated eslint-config in multiple files to improve code consistency and quality
|
|
832
|
+
### Fixed
|
|
833
|
+
* Activated circular DTO prevention rules for Entity DTOs to prevent potential issues
|
|
834
|
+
### Removed
|
|
835
|
+
* Unused .npmrc file to reduce clutter and improve project organization
|
|
836
|
+
|
|
837
|
+
Note: No breaking changes, added, deprecated, or security fixes were identified in this release.
|
|
838
|
+
|
|
839
|
+
## [1.112.17] - 2025-10-13
|
|
840
|
+
|
|
841
|
+
### Changed
|
|
842
|
+
* Updated eslint-config in multiple files to improve code consistency and quality
|
|
843
|
+
### Fixed
|
|
844
|
+
* Activated circular DTO prevention rules for Entity DTOs to prevent potential errors
|
|
845
|
+
### Removed
|
|
846
|
+
* Unused .npmrc file to reduce clutter and improve project organization
|
|
847
|
+
|
|
848
|
+
Note: No breaking changes were introduced in this release.
|
|
849
|
+
|
|
850
|
+
## [1.112.16] - 2025-10-13
|
|
851
|
+
|
|
852
|
+
### Changed
|
|
853
|
+
* Updated eslint-config in multiple files to improve code consistency and quality
|
|
854
|
+
### Fixed
|
|
855
|
+
* Activated circular DTO prevention rules for Entity DTOs to prevent potential issues
|
|
856
|
+
### Removed
|
|
857
|
+
* Unused .npmrc file to reduce clutter and improve repository maintenance
|
|
858
|
+
|
|
859
|
+
## [1.112.15] - 2025-10-13
|
|
860
|
+
|
|
861
|
+
### Changed
|
|
862
|
+
* Updated eslint-config in multiple files to improve code consistency and quality
|
|
863
|
+
### Fixed
|
|
864
|
+
* Activated circular DTO prevention rules for Entity DTOs to prevent potential issues
|
|
865
|
+
### Removed
|
|
866
|
+
* Unused .npmrc file to reduce clutter and improve project organization
|
|
867
|
+
|
|
868
|
+
Note: No breaking changes were introduced in this release.
|
|
869
|
+
|
|
870
|
+
## [1.112.14] - 2025-10-13
|
|
871
|
+
|
|
872
|
+
### Chore
|
|
873
|
+
|
|
874
|
+
- **eslint-config**: update 1 file(s)
|
|
875
|
+
- **eslint-config**: update 1 file(s)
|
|
876
|
+
- **eslint-config**: update 902 file(s)
|
|
877
|
+
- **eslint-config**: update 899 file(s)
|
|
878
|
+
- **eslint-config**: update 1 file(s)
|
|
879
|
+
- **eslint-config**: update 1 file(s)
|
|
880
|
+
- **general**: remove unused .npmrc file
|
|
881
|
+
- **eslint-config**: update 1 file(s)
|
|
882
|
+
- **eslint-config**: update 18 file(s)
|
|
883
|
+
- **eslint-config**: update 18 file(s)
|
|
884
|
+
|
|
885
|
+
### Fixed
|
|
886
|
+
|
|
887
|
+
- **config**: activate circular DTO prevention rules for Entity DTOs
|
|
888
|
+
|
|
889
|
+
## [1.1.0] - 2024-12-XX
|
|
890
|
+
|
|
891
|
+
### Changed
|
|
892
|
+
- **Package Name**: Renamed from `@eoo/eslint-config` to `@echoes-of-order/eslint-config`
|
|
893
|
+
- **Repository**: Updated to reflect new organization structure
|
|
894
|
+
- **Documentation**: Updated README.md with new package name and current configurations
|
|
895
|
+
|
|
896
|
+
### Added
|
|
897
|
+
- **New Configurations**:
|
|
898
|
+
- `admin` - Admin Panel configuration with Material-UI integration
|
|
899
|
+
- `image-server` - Image Server configuration for NestJS applications
|
|
900
|
+
- `wiki` - Wiki configuration for content management
|
|
901
|
+
- `domains` - Domain management configuration
|
|
902
|
+
- `ionos-proxy` - Ionos Proxy configuration
|
|
903
|
+
|
|
904
|
+
### Removed
|
|
905
|
+
- **Veraltete Dateien**: Cleaned up development artifacts and temporary files
|
|
906
|
+
- **Test-Dateien**: Removed individual test files (now using Jest framework)
|
|
907
|
+
- **Analyse-Dateien**: Removed development analysis documents
|
|
908
|
+
|
|
909
|
+
### Fixed
|
|
910
|
+
- **Import-Pfade**: Updated all import statements to use new package name
|
|
911
|
+
- **Konfigurationen**: Ensured all configurations are properly exported
|
|
912
|
+
- **Dokumentation**: Updated installation and usage instructions
|
|
913
|
+
|
|
914
|
+
## [1.0.0] - 2024-01-XX
|
|
915
|
+
|
|
916
|
+
### Added
|
|
917
|
+
|
|
918
|
+
#### 🎉 Initial Release
|
|
919
|
+
- **Comprehensive ESLint Configuration Package** for Echoes of Order projects
|
|
920
|
+
- **Six Configuration Presets**:
|
|
921
|
+
- `backend` - Node.js/Express/TypeORM applications
|
|
922
|
+
- `frontend` - React/Vite applications
|
|
923
|
+
- `react` - Advanced React development
|
|
924
|
+
- `node` - Pure Node.js applications
|
|
925
|
+
- `apiClient` - Projects with API-Client integration
|
|
926
|
+
- `nestjs` - NestJS applications with security focus
|
|
927
|
+
|
|
928
|
+
#### 🔧 Custom Rules (50+ Rules)
|
|
929
|
+
- **DTO Pattern Enforcement**:
|
|
930
|
+
- `enforce-dto-usage` - Enforces DTO pattern over anonymous objects
|
|
931
|
+
- `enforce-dto-constructor` - Ensures proper DTO constructors
|
|
932
|
+
- `dto-entity-mapping-completeness` - Validates DTO-Entity mapping completeness
|
|
933
|
+
- `dto-visibility-modifiers` - Enforces proper DTO visibility modifiers
|
|
934
|
+
- `no-dto-constructors` - Prevents incorrect DTO constructors
|
|
935
|
+
|
|
936
|
+
- **Controller Architecture**:
|
|
937
|
+
- `enforce-basecontroller` - Enforces BaseController usage
|
|
938
|
+
- `controller-swagger-complete` - Ensures complete Swagger documentation
|
|
939
|
+
- `controller-swagger-english` - Enforces English-only Swagger docs
|
|
940
|
+
- `admin-controller-security` - Enforces security rules for admin controllers
|
|
941
|
+
- `auth-guard-required` - Ensures proper authentication guards
|
|
942
|
+
- `controller-naming-conventions` - Enforces controller naming standards
|
|
943
|
+
|
|
944
|
+
- **Architecture & Patterns**:
|
|
945
|
+
- `enforce-result-pattern` - Enforces Result<T> pattern for error handling
|
|
946
|
+
- `enforce-service-dto` - Enforces service layer DTO usage
|
|
947
|
+
- `websocket-architecture` - Validates WebSocket implementation patterns
|
|
948
|
+
- `enforce-api-versioning` - Ensures proper API versioning
|
|
949
|
+
- `enforce-error-handling` - Enforces consistent error handling
|
|
950
|
+
|
|
951
|
+
- **Health & Metrics**:
|
|
952
|
+
- `enforce-vite-health-metrics` - Ensures Vite configs have health/metrics endpoints
|
|
953
|
+
- Validates required packages: `@godaddy/terminus`, `prom-client`
|
|
954
|
+
- Validates required services: `HealthMetricsService`, `MetricsService`
|
|
955
|
+
- Validates required endpoints: `/health`, `/health/live`, `/health/ready`, `/metrics`
|
|
956
|
+
|
|
957
|
+
- **Code Quality**:
|
|
958
|
+
- `english-only-code-strings` - Enforces English-only code strings
|
|
959
|
+
- `no-comments` - Prohibits comments in code (self-documenting code principle)
|
|
960
|
+
- `coordinate-naming` - Enforces proper variable naming conventions
|
|
961
|
+
- `no-import-meta-env` - Prohibits direct environment variable access
|
|
962
|
+
- `no-type-assertion` - Restricts unsafe type assertions
|
|
963
|
+
|
|
964
|
+
- **Entity & Database**:
|
|
965
|
+
- `entity-required-properties` - Validates required entity properties
|
|
966
|
+
- `analyze-relation-usage` - Analyzes TypeORM relation usage
|
|
967
|
+
- `no-entity-imports-in-controllers` - Prevents direct entity imports in controllers
|
|
968
|
+
- `enforce-database-transaction-safety` - Ensures safe database transactions
|
|
969
|
+
|
|
970
|
+
#### 🎯 Framework-Specific Rules
|
|
971
|
+
- **React/Frontend**:
|
|
972
|
+
- React hooks validation
|
|
973
|
+
- JSX accessibility rules
|
|
974
|
+
- No inline styles enforcement
|
|
975
|
+
- Import/export optimization
|
|
976
|
+
|
|
977
|
+
- **TypeORM/Database**:
|
|
978
|
+
- Entity relationship validation
|
|
979
|
+
- Repository pattern enforcement
|
|
980
|
+
- Transaction safety rules
|
|
981
|
+
|
|
982
|
+
- **Express/Backend**:
|
|
983
|
+
- Controller architecture rules
|
|
984
|
+
- Middleware validation
|
|
985
|
+
- API documentation requirements
|
|
986
|
+
|
|
987
|
+
#### 📦 Package Features
|
|
988
|
+
- **ESLint 9.x compatibility** with flat config format
|
|
989
|
+
- **TypeScript strict mode** support
|
|
990
|
+
- **Comprehensive peer dependencies** management
|
|
991
|
+
- **Jest testing framework** integration
|
|
992
|
+
- **Automatic code formatting** with Stylistic plugins
|
|
993
|
+
- **Import sorting** with Perfectionist plugin
|
|
994
|
+
|
|
995
|
+
#### 🔒 Security & Best Practices
|
|
996
|
+
- **Environment variable protection** - Prevents direct process.env usage
|
|
997
|
+
- **Fetch API restrictions** - Enforces API client usage
|
|
998
|
+
- **Admin controller security** rules
|
|
999
|
+
- **Authentication guard enforcement**
|
|
1000
|
+
- **English-only code strings** for internationalization
|
|
1001
|
+
|
|
1002
|
+
#### 📊 Testing & Coverage
|
|
1003
|
+
- **50+ ESLint rule tests** included
|
|
1004
|
+
- **Jest configuration** for rule testing
|
|
1005
|
+
- **Integration tests** for configuration presets
|
|
1006
|
+
- **Coverage reporting** setup
|
|
1007
|
+
|
|
1008
|
+
#### 📚 Documentation
|
|
1009
|
+
- **Comprehensive README** with usage examples
|
|
1010
|
+
- **Migration guide** for existing projects
|
|
1011
|
+
- **Configuration examples** for all presets
|
|
1012
|
+
- **Custom rule documentation**
|
|
1013
|
+
|
|
1014
|
+
#### 🎨 Code Style Enforcement
|
|
1015
|
+
- **No comments policy** - Self-documenting code approach
|
|
1016
|
+
- **Consistent naming conventions**
|
|
1017
|
+
- **Import/export organization**
|
|
1018
|
+
- **TypeScript strict rules**
|
|
1019
|
+
- **React component optimization**
|
|
1020
|
+
|
|
1021
|
+
### Features by Configuration
|
|
1022
|
+
|
|
1023
|
+
#### Backend Configuration
|
|
1024
|
+
- ✅ TypeScript strict rules
|
|
1025
|
+
- ✅ DTO pattern enforcement
|
|
1026
|
+
- ✅ Controller architecture rules
|
|
1027
|
+
- ✅ Entity validation
|
|
1028
|
+
- ✅ Swagger documentation rules
|
|
1029
|
+
- ✅ Database transaction safety
|
|
1030
|
+
- ✅ No comments policy
|
|
1031
|
+
- ✅ Result pattern enforcement
|
|
1032
|
+
- ✅ Health metrics validation
|
|
1033
|
+
|
|
1034
|
+
#### Frontend Configuration
|
|
1035
|
+
- ✅ React hooks rules
|
|
1036
|
+
- ✅ JSX accessibility
|
|
1037
|
+
- ✅ No inline styles
|
|
1038
|
+
- ✅ Vite health metrics enforcement
|
|
1039
|
+
- ✅ Import/export optimization
|
|
1040
|
+
- ✅ Environment variable protection
|
|
1041
|
+
|
|
1042
|
+
#### React Configuration
|
|
1043
|
+
- ✅ All frontend rules
|
|
1044
|
+
- ✅ React component optimization
|
|
1045
|
+
- ✅ Performance rules
|
|
1046
|
+
- ✅ Hook dependencies enforcement
|
|
1047
|
+
- ✅ JSX best practices
|
|
1048
|
+
|
|
1049
|
+
#### Node Configuration
|
|
1050
|
+
- ✅ All backend rules
|
|
1051
|
+
- ✅ Node.js specific adjustments
|
|
1052
|
+
- ✅ Module import/export rules
|
|
1053
|
+
- ✅ Pure Node.js optimizations
|
|
1054
|
+
|
|
1055
|
+
### Migration Path
|
|
1056
|
+
- **Seamless migration** from project-specific configs
|
|
1057
|
+
- **Backward compatibility** with existing codebases
|
|
1058
|
+
- **Step-by-step migration guide**
|
|
1059
|
+
- **Project-specific customization** support
|
|
1060
|
+
|
|
1061
|
+
### Repository Structure
|
|
1062
|
+
```
|
|
1063
|
+
eslint-config-eoo/
|
|
1064
|
+
├── configs/ # Configuration presets
|
|
1065
|
+
├── rules/ # 50+ custom ESLint rules
|
|
1066
|
+
├── __tests__/ # Comprehensive test suite
|
|
1067
|
+
├── index.js # Main entry point
|
|
1068
|
+
├── MIGRATION.md # Migration guide
|
|
1069
|
+
└── README.md # Documentation
|
|
1070
|
+
```
|
|
1071
|
+
|
|
1072
|
+
### Versioning Strategy
|
|
1073
|
+
- **Semantic versioning** for rule changes
|
|
1074
|
+
- **Major versions** for breaking changes
|
|
1075
|
+
- **Minor versions** for new rules
|
|
1076
|
+
- **Patch versions** for bug fixes
|
|
1077
|
+
|
|
1078
|
+
---
|
|
1079
|
+
|
|
1080
|
+
## Future Releases
|
|
1081
|
+
|
|
1082
|
+
### Planned Features
|
|
1083
|
+
- [ ] Additional React performance rules
|
|
1084
|
+
- [ ] GraphQL-specific rules
|
|
1085
|
+
- [ ] Docker configuration validation
|
|
1086
|
+
- [ ] CI/CD integration helpers
|
|
1087
|
+
- [ ] Automated migration tools
|
|
1088
|
+
|
|
1089
|
+
### Breaking Changes Policy
|
|
1090
|
+
- Breaking changes will be clearly documented
|
|
1091
|
+
- Migration guides provided for major versions
|
|
1092
|
+
- Deprecation warnings for removed rules
|
|
1093
|
+
- Backward compatibility when possible
|