@feasibleone/blong 1.10.0 → 1.11.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 +14 -0
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.11.0](https://github.com/feasibleone/blong/compare/blong-v1.10.1...blong-v1.11.0) (2026-03-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* allow config override during start, improve types ([58c3840](https://github.com/feasibleone/blong/commit/58c3840b1543ce2d963c0bbdcb1a0712feface7c))
|
|
9
|
+
|
|
10
|
+
## [1.10.1](https://github.com/feasibleone/blong/compare/blong-v1.10.0...blong-v1.10.1) (2026-03-06)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* update fastify version to 5.8.1 and adjust exports path in package.json ([b2a7078](https://github.com/feasibleone/blong/commit/b2a7078db1d5eafd36f8a64ce98a30210e0a80be))
|
|
16
|
+
|
|
3
17
|
## [1.10.0](https://github.com/feasibleone/blong/compare/blong-v1.9.6...blong-v1.10.0) (2026-03-06)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feasibleone/blong",
|
|
3
|
+
"version": "1.11.0",
|
|
3
4
|
"description": "API and DRY focused RAD framework https://feasibleone.github.io/blong-docs",
|
|
4
5
|
"keywords": [
|
|
5
6
|
"blong",
|
|
@@ -9,10 +10,16 @@
|
|
|
9
10
|
"repository": {
|
|
10
11
|
"url": "git+https://github.com/feasibleone/blong.git"
|
|
11
12
|
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": "./dist/types.js",
|
|
16
|
+
"./dev": "./types.ts",
|
|
17
|
+
"./types": "./types.ts"
|
|
18
|
+
},
|
|
12
19
|
"dependencies": {
|
|
13
|
-
"typebox": "^1.1.5",
|
|
14
20
|
"openapi-types": "^12.1.3",
|
|
15
21
|
"pino": "^10.3.1",
|
|
22
|
+
"typebox": "^1.1.5",
|
|
16
23
|
"ut-function.merge": "^1.5.6"
|
|
17
24
|
},
|
|
18
25
|
"devDependencies": {
|
|
@@ -20,9 +27,9 @@
|
|
|
20
27
|
"@keycloak/keycloak-admin-client": "^26.5.4",
|
|
21
28
|
"@kubernetes/client-node": "^1.4.0",
|
|
22
29
|
"@rushstack/eslint-config": "^4.6.4",
|
|
30
|
+
"@rushstack/heft": "^1.2.6",
|
|
23
31
|
"@rushstack/heft-lint-plugin": "^1.2.6",
|
|
24
32
|
"@rushstack/heft-typescript-plugin": "^1.3.1",
|
|
25
|
-
"@rushstack/heft": "^1.2.6",
|
|
26
33
|
"@slack/types": "^2.20.0",
|
|
27
34
|
"@slack/webhook": "^7.0.7",
|
|
28
35
|
"@types/request": "^2.48.13",
|
|
@@ -37,12 +44,6 @@
|
|
|
37
44
|
"tarn": "^3.0.2",
|
|
38
45
|
"typescript": "^5.9.3"
|
|
39
46
|
},
|
|
40
|
-
"exports": {
|
|
41
|
-
".": "./types.ts",
|
|
42
|
-
"./types": "./types.ts"
|
|
43
|
-
},
|
|
44
|
-
"type": "module",
|
|
45
|
-
"version": "1.10.0",
|
|
46
47
|
"scripts": {
|
|
47
48
|
"build": "heft build --clean;dts-bundle-generator --config dts-gen.config.json",
|
|
48
49
|
"ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance"
|