@eik/core 2.1.18 → 2.1.19

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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## [2.1.19](https://github.com/eik-lib/core/compare/v2.1.18...v2.1.19) (2026-02-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * reducing log level on invalid hosts ([5d11684](https://github.com/eik-lib/core/commit/5d116840ac95899c2c487a8c7860055330547fa7))
7
+ * reducing log level on invalid hosts ([#539](https://github.com/eik-lib/core/issues/539)) ([1c3709d](https://github.com/eik-lib/core/commit/1c3709d84da3475a8f67a211c8b2161c7e165cfa))
8
+
1
9
  ## [2.1.18](https://github.com/eik-lib/core/compare/v2.1.17...v2.1.18) (2026-02-05)
2
10
 
3
11
 
@@ -75,7 +75,7 @@ const AliasDel = class AliasDel {
75
75
  const org = this._orgRegistry.get(url.hostname);
76
76
 
77
77
  if (!org) {
78
- this._log.info(
78
+ this._log.debug(
79
79
  `alias:del - Hostname does not match a configured organization - ${url.hostname}`,
80
80
  );
81
81
  const e = new HttpError.BadRequest();
@@ -75,7 +75,7 @@ const AliasGet = class AliasGet {
75
75
  const org = this._orgRegistry.get(url.hostname);
76
76
 
77
77
  if (!org) {
78
- this._log.info(
78
+ this._log.debug(
79
79
  `alias:get - Hostname does not match a configured organization - ${url.hostname}`,
80
80
  );
81
81
  const e = new HttpError.BadRequest();
@@ -68,7 +68,7 @@ const AliasGet = class AliasGet {
68
68
  const org = this._orgRegistry.get(url.hostname);
69
69
 
70
70
  if (!org) {
71
- this._log.info(
71
+ this._log.debug(
72
72
  `alias:get - Hostname does not match a configured organization - ${url.hostname}`,
73
73
  );
74
74
  const e = new HttpError.BadRequest();
@@ -159,7 +159,7 @@ const AliasPost = class AliasPost {
159
159
  const org = this._orgRegistry.get(url.hostname);
160
160
 
161
161
  if (!org) {
162
- this._log.info(
162
+ this._log.debug(
163
163
  `alias:post - Hostname does not match a configured organization - ${url.hostname}`,
164
164
  );
165
165
  const e = new HttpError.BadRequest();
@@ -159,7 +159,7 @@ const AliasPut = class AliasPut {
159
159
  const org = this._orgRegistry.get(url.hostname);
160
160
 
161
161
  if (!org) {
162
- this._log.info(
162
+ this._log.debug(
163
163
  `alias:put - Hostname does not match a configured organization - ${url.hostname}`,
164
164
  );
165
165
  const e = new HttpError.BadRequest();
@@ -83,7 +83,7 @@ const AuthPost = class AuthPost {
83
83
  const org = this._orgRegistry.get(url.hostname);
84
84
 
85
85
  if (!org) {
86
- this._log.info(
86
+ this._log.debug(
87
87
  `auth:post - Hostname does not match a configured organization - ${url.hostname}`,
88
88
  );
89
89
  const e = new HttpError.BadRequest();
@@ -66,7 +66,7 @@ const MapGet = class MapGet {
66
66
  const org = this._orgRegistry.get(url.hostname);
67
67
 
68
68
  if (!org) {
69
- this._log.info(
69
+ this._log.debug(
70
70
  `map:get - Hostname does not match a configured organization - ${url.hostname}`,
71
71
  );
72
72
  const e = new HttpError.BadRequest();
@@ -208,7 +208,7 @@ const MapPut = class MapPut {
208
208
  const org = this._orgRegistry.get(url.hostname);
209
209
 
210
210
  if (!org) {
211
- this._log.info(
211
+ this._log.debug(
212
212
  `map:put - Hostname does not match a configured organization - ${url.hostname}`,
213
213
  );
214
214
  const e = new HttpError.BadRequest();
@@ -71,7 +71,7 @@ const PkgGet = class PkgGet {
71
71
  const org = this._orgRegistry.get(url.hostname);
72
72
 
73
73
  if (!org) {
74
- this._log.info(
74
+ this._log.debug(
75
75
  `pkg:get - Hostname does not match a configured organization - ${url.hostname}`,
76
76
  );
77
77
  const e = new HttpError.BadRequest();
@@ -67,7 +67,7 @@ const PkgLog = class PkgLog {
67
67
  const org = this._orgRegistry.get(url.hostname);
68
68
 
69
69
  if (!org) {
70
- this._log.info(
70
+ this._log.debug(
71
71
  `pkg:log - Hostname does not match a configured organization - ${url.hostname}`,
72
72
  );
73
73
  const e = new HttpError.BadRequest();
@@ -174,7 +174,7 @@ const PkgPut = class PkgPut {
174
174
  const org = this._orgRegistry.get(url.hostname);
175
175
 
176
176
  if (!org) {
177
- this._log.info(
177
+ this._log.debug(
178
178
  `pkg:put - Hostname does not match a configured organization - ${url.hostname}`,
179
179
  );
180
180
  const e = new HttpError.BadRequest();
@@ -65,7 +65,7 @@ const VersionsGet = class VersionsGet {
65
65
  const org = this._orgRegistry.get(url.hostname);
66
66
 
67
67
  if (!org) {
68
- this._log.info(
68
+ this._log.debug(
69
69
  `pkg:latest - Hostname does not match a configured organization - ${url.hostname}`,
70
70
  );
71
71
  const e = new HttpError.BadRequest();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/core",
3
- "version": "2.1.18",
3
+ "version": "2.1.19",
4
4
  "description": "Core server package",
5
5
  "main": "lib/main.js",
6
6
  "types": "./types/main.d.ts",