Compare commits

..

2 Commits

Author SHA1 Message Date
39aa63bdb3 v2.0.31
Some checks failed
Default (tags) / security (push) Successful in 33s
Default (tags) / test (push) Failing after 1m21s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-02-27 10:18:18 +00:00
c1aa4eae5e fix(deps): bump devDependencies and fix README license path 2026-02-27 10:18:18 +00:00
6 changed files with 9934 additions and 8 deletions

View File

@@ -1,5 +1,13 @@
# Changelog # Changelog
## 2026-02-27 - 2.0.31 - fix(deps)
bump devDependencies and fix README license path
- Bump @git.zone/tsbundle from ^2.8.3 to ^2.9.0
- Bump @types/node from ^25.2.0 to ^25.3.2
- Update documented dependency set/version to v2.0.30 in readme.hints.md
- Fix README license file path from LICENSE to license in readme.md
## 2026-02-02 - 2.0.30 - fix(config) ## 2026-02-02 - 2.0.30 - fix(config)
update npmextra configuration and improve README: rename package keys, add release registry config, clarify waitUntilPresent timeout and notification/persistence behavior update npmextra configuration and improve README: rename package keys, add release registry config, clarify waitUntilPresent timeout and notification/persistence behavior

View File

@@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartstate", "name": "@push.rocks/smartstate",
"version": "2.0.30", "version": "2.0.31",
"private": false, "private": false,
"description": "A package for handling and managing state in applications.", "description": "A package for handling and managing state in applications.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -15,11 +15,11 @@
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^4.1.2", "@git.zone/tsbuild": "^4.1.2",
"@git.zone/tsbundle": "^2.8.3", "@git.zone/tsbundle": "^2.9.0",
"@git.zone/tsrun": "^2.0.1", "@git.zone/tsrun": "^2.0.1",
"@git.zone/tstest": "^3.1.8", "@git.zone/tstest": "^3.1.8",
"@push.rocks/tapbundle": "^6.0.3", "@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^25.2.0" "@types/node": "^25.3.2"
}, },
"dependencies": { "dependencies": {
"@push.rocks/lik": "^6.2.2", "@push.rocks/lik": "^6.2.2",

9918
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -51,10 +51,10 @@
6. Made notifyChange() async to support proper hash comparison 6. Made notifyChange() async to support proper hash comparison
7. Updated select() to filter undefined states 7. Updated select() to filter undefined states
## Dependency Versions (v2.0.28) ## Dependency Versions (v2.0.30)
- @git.zone/tsbuild: ^4.1.2 - @git.zone/tsbuild: ^4.1.2
- @git.zone/tsbundle: ^2.8.3 - @git.zone/tsbundle: ^2.9.0
- @git.zone/tsrun: ^2.0.1 - @git.zone/tsrun: ^2.0.1
- @git.zone/tstest: ^3.1.8 - @git.zone/tstest: ^3.1.8
- @push.rocks/smartjson: ^6.0.0 - @push.rocks/smartjson: ^6.0.0
- @types/node: ^25.2.0 - @types/node: ^25.3.2

View File

@@ -311,7 +311,7 @@ await loginAction.trigger({ username: 'john', email: 'john@example.com' });
## License and Legal Information ## License and Legal Information
This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [LICENSE](./LICENSE) file. This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [license](./license) file.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file. **Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartstate', name: '@push.rocks/smartstate',
version: '2.0.30', version: '2.0.31',
description: 'A package for handling and managing state in applications.' description: 'A package for handling and managing state in applications.'
} }