Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
### 2026.08.14

#### @stdext/crypto 0.1.1 (patch)

- fix(crypto): Fixed errors due to changes in deno types

#### @stdext/json 0.1.1 (patch)

- feat(json): Added JSON Schema
- fix(json): Added exports and format types
- chore(json): fix lint

#### @stdext/types 0.1.1 (patch)

- feat(types): added new constructor type helper and added examples to existing
type helpers

#### @stdext/validation 0.1.0 (minor)

- feat(validation): Added tests and jsdoc - thanks AI
- feat(validation): Implemented a basic validator implementing StandardSchemaV1,
StandardJSONSchemaV1 and JSONSchema
- feat(validation): added validation namespace, and standard compliant validator
- chore(validation): Added jsdoc and improved readme - thanks AI

### 2024.12.29a

#### @stdext/assert 0.1.0 (minor)
Expand Down
2 changes: 1 addition & 1 deletion crypto/deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.0",
"version": "0.1.1",
"name": "@stdext/crypto",
"exports": {
"./hash": "./hash.ts",
Expand Down
2 changes: 1 addition & 1 deletion json/deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.0",
"version": "0.1.1",
"name": "@stdext/json",
"exports": {
".": "./mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion types/deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.0",
"version": "0.1.1",
"name": "@stdext/types",
"exports": {
".": "./mod.ts"
Expand Down
Loading