@basaltkit/express 1.0.0 → 1.1.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Machize Contributors
3
+ Copyright (c) 2026 Basalt Contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/dist/index.js CHANGED
@@ -84,6 +84,7 @@ function expressPlugin(options = {}) {
84
84
  container.singleton(EXPRESS, () => {
85
85
  const app = options.app ?? express();
86
86
  app.use(express.json());
87
+ app.use(express.urlencoded({ extended: false }));
87
88
  return app;
88
89
  });
89
90
  container.singleton(HTTP_SERVER, () => collector);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basaltkit/express",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Express adapter for Basalt: run the same typed routes, enrichers and guards on Express that you would on Fastify or Hono.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,7 +15,7 @@
15
15
  ],
16
16
  "dependencies": {
17
17
  "@basaltkit/core": "^1.0.0",
18
- "@basaltkit/http": "^1.0.0"
18
+ "@basaltkit/http": "^1.5.0"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "express": "^4.19.0 || ^5.0.0"