create-mastra 1.11.0-alpha.9 → 1.12.0-alpha.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 +8 -0
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# create-mastra
|
|
2
2
|
|
|
3
|
+
## 1.12.0-alpha.0
|
|
4
|
+
|
|
5
|
+
## 1.11.0
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- Fixed observability setup so multi-organization users can choose the target organization without reopening an extra prompt during project provisioning. ([#17214](https://github.com/mastra-ai/mastra/pull/17214))
|
|
10
|
+
|
|
3
11
|
## 1.11.0-alpha.9
|
|
4
12
|
|
|
5
13
|
## 1.11.0-alpha.8
|
package/dist/index.js
CHANGED
|
@@ -11036,7 +11036,7 @@ var hasRequiredFs;
|
|
|
11036
11036
|
function requireFs () {
|
|
11037
11037
|
if (hasRequiredFs) return fs;
|
|
11038
11038
|
hasRequiredFs = 1;
|
|
11039
|
-
(function (exports
|
|
11039
|
+
(function (exports) {
|
|
11040
11040
|
// This is adapted from https://github.com/normalize/mz
|
|
11041
11041
|
// Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
|
|
11042
11042
|
const u = requireUniversalify().fromCallback;
|
|
@@ -11091,16 +11091,16 @@ function requireFs () {
|
|
|
11091
11091
|
});
|
|
11092
11092
|
|
|
11093
11093
|
// Export cloned fs:
|
|
11094
|
-
Object.assign(exports
|
|
11094
|
+
Object.assign(exports, fs);
|
|
11095
11095
|
|
|
11096
11096
|
// Universalify async methods:
|
|
11097
11097
|
api.forEach(method => {
|
|
11098
|
-
exports
|
|
11098
|
+
exports[method] = u(fs[method]);
|
|
11099
11099
|
});
|
|
11100
11100
|
|
|
11101
11101
|
// We differ from mz/fs in that we still ship the old, broken, fs.exists()
|
|
11102
11102
|
// since we are a drop-in replacement for the native module
|
|
11103
|
-
exports
|
|
11103
|
+
exports.exists = function (filename, callback) {
|
|
11104
11104
|
if (typeof callback === 'function') {
|
|
11105
11105
|
return fs.exists(filename, callback)
|
|
11106
11106
|
}
|
|
@@ -11111,7 +11111,7 @@ function requireFs () {
|
|
|
11111
11111
|
|
|
11112
11112
|
// fs.read(), fs.write(), fs.readv(), & fs.writev() need special treatment due to multiple callback args
|
|
11113
11113
|
|
|
11114
|
-
exports
|
|
11114
|
+
exports.read = function (fd, buffer, offset, length, position, callback) {
|
|
11115
11115
|
if (typeof callback === 'function') {
|
|
11116
11116
|
return fs.read(fd, buffer, offset, length, position, callback)
|
|
11117
11117
|
}
|
|
@@ -11128,7 +11128,7 @@ function requireFs () {
|
|
|
11128
11128
|
// OR
|
|
11129
11129
|
// fs.write(fd, string[, position[, encoding]], callback)
|
|
11130
11130
|
// We need to handle both cases, so we use ...args
|
|
11131
|
-
exports
|
|
11131
|
+
exports.write = function (fd, buffer, ...args) {
|
|
11132
11132
|
if (typeof args[args.length - 1] === 'function') {
|
|
11133
11133
|
return fs.write(fd, buffer, ...args)
|
|
11134
11134
|
}
|
|
@@ -11144,7 +11144,7 @@ function requireFs () {
|
|
|
11144
11144
|
// Function signature is
|
|
11145
11145
|
// s.readv(fd, buffers[, position], callback)
|
|
11146
11146
|
// We need to handle the optional arg, so we use ...args
|
|
11147
|
-
exports
|
|
11147
|
+
exports.readv = function (fd, buffers, ...args) {
|
|
11148
11148
|
if (typeof args[args.length - 1] === 'function') {
|
|
11149
11149
|
return fs.readv(fd, buffers, ...args)
|
|
11150
11150
|
}
|
|
@@ -11160,7 +11160,7 @@ function requireFs () {
|
|
|
11160
11160
|
// Function signature is
|
|
11161
11161
|
// s.writev(fd, buffers[, position], callback)
|
|
11162
11162
|
// We need to handle the optional arg, so we use ...args
|
|
11163
|
-
exports
|
|
11163
|
+
exports.writev = function (fd, buffers, ...args) {
|
|
11164
11164
|
if (typeof args[args.length - 1] === 'function') {
|
|
11165
11165
|
return fs.writev(fd, buffers, ...args)
|
|
11166
11166
|
}
|
|
@@ -11175,7 +11175,7 @@ function requireFs () {
|
|
|
11175
11175
|
|
|
11176
11176
|
// fs.realpath.native sometimes not available if fs is monkey-patched
|
|
11177
11177
|
if (typeof fs.realpath.native === 'function') {
|
|
11178
|
-
exports
|
|
11178
|
+
exports.realpath.native = u(fs.realpath.native);
|
|
11179
11179
|
} else {
|
|
11180
11180
|
process.emitWarning(
|
|
11181
11181
|
'fs.realpath.native is not a function. Is fs being monkey-patched?',
|
|
@@ -15773,7 +15773,7 @@ var PinoLogger = class _PinoLogger extends MastraLogger {
|
|
|
15773
15773
|
};
|
|
15774
15774
|
|
|
15775
15775
|
var package_default = {
|
|
15776
|
-
version: "1.
|
|
15776
|
+
version: "1.12.0-alpha.0"};
|
|
15777
15777
|
var logger = createLogger(false);
|
|
15778
15778
|
function createLogger(debug = false) {
|
|
15779
15779
|
return new PinoLogger({
|