Skip to content

Commit d141bbf

Browse files
chore(release): v9.0.0
1 parent d7a3aba commit d141bbf

File tree

2 files changed

+62
-46
lines changed

2 files changed

+62
-46
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# [v9.0.0](https://github.com/Itee/database/compare/v8.3.0...v9.0.0) (2026-01-23)
2+
3+
## ✨ New Features
4+
- [`54f687f`](https://github.com/Itee/database/commit/54f687f) (tasks) upgrade tasks to latest itee and gulp standards
5+
- [`10a0717`](https://github.com/Itee/database/commit/10a0717) (tests) remove the need to build backend file to run unit and benches tests
6+
7+
## 🐛 Bug Fixes
8+
- [`31380aa`](https://github.com/Itee/database/commit/31380aa) (gulpfile) fix broken import links
9+
- [`bbe5a04`](https://github.com/Itee/database/commit/bbe5a04) (gulpfile-refresh) use external script that do not require gulp to be loaded for refreshing it
10+
- [`72cba4d`](https://github.com/Itee/database/commit/72cba4d) (compute-unit-tests-task) fix default template for empty units
11+
- [`437ab92`](https://github.com/Itee/database/commit/437ab92) (tasks) fix frontend task run on empty test generation
12+
- [`c3fbe29`](https://github.com/Itee/database/commit/c3fbe29) (release) fix release task and update others to latest standards
13+
14+
## 💥 Breaking Changes
15+
- [`b61e07f`](https://github.com/Itee/database/commit/b61e07f) (node) drop nodejs v18 support and introduce nodejs v24
16+
117
# [v8.3.0](https://github.com/Itee/itee-database/compare/v8.2.2...v8.3.0) (2025-10-19)
218

319
## ✨ New Features

package.json

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
11
{
2-
"name": "itee-database",
3-
"version": "8.3.0",
4-
"description": "The abstract database side of the Itee solution for 3d web content, this package is design to be inherited and run on an Itee server.",
5-
"keywords": [
2+
"name": "itee-database",
3+
"version": "9.0.0",
4+
"description": "The abstract database side of the Itee solution for 3d web content, this package is design to be inherited and run on an Itee server.",
5+
"keywords": [
66
"itee",
77
"database",
88
"library"
99
],
10-
"author": {
10+
"author": {
1111
"name": "Itee (Tristan Valcke)",
12-
"url": "https://github.com/Itee"
12+
"url": "https://github.com/Itee"
1313
},
14-
"contributors": [],
15-
"license": "BSD-3-Clause",
16-
"private": false,
17-
"repository": {
14+
"contributors": [],
15+
"license": "BSD-3-Clause",
16+
"private": false,
17+
"repository": {
1818
"type": "git",
19-
"url": "https://github.com/Itee/database.git"
19+
"url": "https://github.com/Itee/database.git"
2020
},
21-
"type": "module",
22-
"main": "builds/database.cjs.js",
23-
"module": "builds/database.esm.js",
24-
"browser": "",
25-
"homepage": "https://github.com/Itee/database#readme",
26-
"man": "./docs/index.html",
27-
"bugs": {
21+
"type": "module",
22+
"main": "builds/database.cjs.js",
23+
"module": "builds/database.esm.js",
24+
"browser": "",
25+
"homepage": "https://github.com/Itee/database#readme",
26+
"man": "./docs/index.html",
27+
"bugs": {
2828
"url": "https://github.com/Itee/database/issues"
2929
},
30-
"engines": {
30+
"engines": {
3131
"node": ">=20"
3232
},
33-
"os": [
33+
"os": [
3434
"win32",
3535
"linux"
3636
],
37-
"cpu": [
37+
"cpu": [
3838
"x64",
3939
"ia32"
4040
],
41-
"scripts": {
42-
"default": "gulp --tasks",
43-
"refresh": "node ./node_modules/@itee/tasks/scripts/refresh.mjs",
44-
"help": "gulp help",
45-
"patch": "gulp patch",
46-
"clean": "gulp clean",
47-
"lint": "gulp lint",
48-
"doc": "gulp doc",
49-
"build": "gulp build",
50-
"tests:run": "gulp run-tests",
51-
"tests:bundling": "gulp check-bundling",
41+
"scripts": {
42+
"default": "gulp --tasks",
43+
"refresh": "node ./node_modules/@itee/tasks/scripts/refresh.mjs",
44+
"help": "gulp help",
45+
"patch": "gulp patch",
46+
"clean": "gulp clean",
47+
"lint": "gulp lint",
48+
"doc": "gulp doc",
49+
"build": "gulp build",
50+
"tests:run": "gulp run-tests",
51+
"tests:bundling": "gulp check-bundling",
5252
"tests:bundling:build-import": "gulp check-bundling-from-esm-build-import",
5353
"tests:bundling:files-import": "gulp check-bundling-from-esm-files-import",
5454
"tests:bundling:files-direct": "gulp check-bundling-from-esm-files-direct",
55-
"tests:benches:compute": "gulp compute-benchmarks",
56-
"tests:benches:run": "gulp run-benchmarks",
57-
"tests:benches:run:back": "gulp run-benchmarks-for-backend",
58-
"tests:benches:run:front": "gulp run-benchmarks-for-frontend",
59-
"tests:units:compute": "gulp compute-unit-tests",
60-
"tests:units:run": "gulp run-unit-tests",
61-
"tests:units:run:back": "gulp run-unit-tests-for-backend",
62-
"tests:units:run:front": "gulp run-unit-tests-for-frontend",
63-
"release": "gulp release",
64-
"semantic-release": "semantic-release --dry-run --no-ci"
55+
"tests:benches:compute": "gulp compute-benchmarks",
56+
"tests:benches:run": "gulp run-benchmarks",
57+
"tests:benches:run:back": "gulp run-benchmarks-for-backend",
58+
"tests:benches:run:front": "gulp run-benchmarks-for-frontend",
59+
"tests:units:compute": "gulp compute-unit-tests",
60+
"tests:units:run": "gulp run-unit-tests",
61+
"tests:units:run:back": "gulp run-unit-tests-for-backend",
62+
"tests:units:run:front": "gulp run-unit-tests-for-frontend",
63+
"release": "gulp release",
64+
"semantic-release": "semantic-release --dry-run --no-ci"
6565
},
66-
"dependencies": {
67-
"itee-core": "^2.0.0",
68-
"itee-utils": "^6.0.6",
66+
"dependencies": {
67+
"itee-core": "^2.0.0",
68+
"itee-utils": "^6.0.6",
6969
"itee-validators": "^6.1.3",
70-
"uuid": "^13.0.0"
70+
"uuid": "^13.0.0"
7171
},
7272
"devDependencies": {
7373
"@itee/tasks": "^1.4.4"

0 commit comments

Comments
 (0)