utilitas 1995.3.2 → 1995.3.4

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/lib/manifest.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  const manifest = {
2
2
  "name": "utilitas",
3
3
  "description": "Just another common utility for JavaScript.",
4
- "version": "1995.3.2",
4
+ "version": "1995.3.4",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/utilitas",
7
7
  "main": "index.mjs",
@@ -20,23 +20,23 @@ const manifest = {
20
20
  },
21
21
  "dependencies": {
22
22
  "file-type": "^19.0.0",
23
- "mathjs": "^12.4.0",
23
+ "mathjs": "^12.4.1",
24
24
  "uuid": "^9.0.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@ffmpeg-installer/ffmpeg": "^1.1.0",
28
28
  "@ffprobe-installer/ffprobe": "^2.1.2",
29
- "@google-cloud/aiplatform": "^3.14.0",
29
+ "@google-cloud/aiplatform": "^3.15.0",
30
30
  "@google-cloud/speech": "^6.3.0",
31
31
  "@google-cloud/storage": "^7.8.0",
32
32
  "@google-cloud/text-to-speech": "^5.1.0",
33
33
  "@google-cloud/vertexai": "^0.5.0",
34
34
  "@google-cloud/vision": "^4.1.0",
35
- "@google/generative-ai": "^0.2.1",
35
+ "@google/generative-ai": "^0.3.0",
36
36
  "@mozilla/readability": "^0.5.0",
37
- "@ngrok/ngrok": "^1.1.1",
38
- "@sentry/node": "^7.106.0",
39
- "@sentry/profiling-node": "^7.106.0",
37
+ "@ngrok/ngrok": "^1.2.0",
38
+ "@sentry/node": "^7.107.0",
39
+ "@sentry/profiling-node": "^7.107.0",
40
40
  "acme-client": "^5.3.0",
41
41
  "browserify-fs": "^1.0.0",
42
42
  "buffer": "^6.0.3",
@@ -54,8 +54,8 @@ const manifest = {
54
54
  "node-mailjet": "^6.0.5",
55
55
  "node-polyfill-webpack-plugin": "^3.0.0",
56
56
  "office-text-extractor": "^3.0.2",
57
- "ollama": "^0.4.9",
58
- "openai": "^4.28.4",
57
+ "ollama": "^0.5.0",
58
+ "openai": "^4.29.1",
59
59
  "pdfjs-dist": "^4.0.379",
60
60
  "pg": "^8.11.3",
61
61
  "pgvector": "^0.1.8",
@@ -64,13 +64,13 @@ const manifest = {
64
64
  "telegraf": "^4.16.3",
65
65
  "telesignsdk": "^2.2.3",
66
66
  "tesseract.js": "^5.0.5",
67
- "twilio": "^4.23.0",
67
+ "twilio": "^5.0.1",
68
68
  "url": "github:Leask/node-url",
69
69
  "webpack-cli": "^5.1.4",
70
70
  "whisper-node": "^1.1.1",
71
- "wrangler": "^3.32.0",
71
+ "wrangler": "^3.34.2",
72
72
  "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz",
73
- "youtube-transcript": "^1.0.6"
73
+ "youtube-transcript": "^1.1.0"
74
74
  }
75
75
  };
76
76
 
package/lib/sentinel.mjs CHANGED
@@ -16,13 +16,15 @@ const init = async (options) => {
16
16
  ...sentry.autoDiscoverNodePerformanceMonitoringIntegrations(),
17
17
  ...options?.integrations || [],
18
18
  ];
19
- try {
20
- // https://docs.sentry.io/platforms/node/profiling/
21
- const { nodeProfilingIntegration } = await need(
22
- '@sentry/profiling-node', { raw: true }
23
- );
24
- integrations.push(nodeProfilingIntegration());
25
- } catch (e) { log('Sentry Profiling is not available.'); }
19
+ // Disabled for now due to the following issue:
20
+ // https://github.com/getsentry/profiling-node/issues/171
21
+ // try {
22
+ // // https://docs.sentry.io/platforms/node/profiling/
23
+ // const { nodeProfilingIntegration } = await need(
24
+ // '@sentry/profiling-node', { raw: true }
25
+ // );
26
+ // integrations.push(nodeProfilingIntegration());
27
+ // } catch (e) { log('Sentry Profiling is not available.'); }
26
28
  sentry.init({
27
29
  tracesSampleRate: 1.0, profilesSampleRate: 1.0,
28
30
  debug: globalThis.debug, ...options || {}, integrations,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "utilitas",
3
3
  "description": "Just another common utility for JavaScript.",
4
- "version": "1995.3.2",
4
+ "version": "1995.3.4",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/utilitas",
7
7
  "main": "index.mjs",
@@ -31,23 +31,23 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "file-type": "^19.0.0",
34
- "mathjs": "^12.4.0",
34
+ "mathjs": "^12.4.1",
35
35
  "uuid": "^9.0.1"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@ffmpeg-installer/ffmpeg": "^1.1.0",
39
39
  "@ffprobe-installer/ffprobe": "^2.1.2",
40
- "@google-cloud/aiplatform": "^3.14.0",
40
+ "@google-cloud/aiplatform": "^3.15.0",
41
41
  "@google-cloud/speech": "^6.3.0",
42
42
  "@google-cloud/storage": "^7.8.0",
43
43
  "@google-cloud/text-to-speech": "^5.1.0",
44
44
  "@google-cloud/vertexai": "^0.5.0",
45
45
  "@google-cloud/vision": "^4.1.0",
46
- "@google/generative-ai": "^0.2.1",
46
+ "@google/generative-ai": "^0.3.0",
47
47
  "@mozilla/readability": "^0.5.0",
48
- "@ngrok/ngrok": "^1.1.1",
49
- "@sentry/node": "^7.106.0",
50
- "@sentry/profiling-node": "^7.106.0",
48
+ "@ngrok/ngrok": "^1.2.0",
49
+ "@sentry/node": "^7.107.0",
50
+ "@sentry/profiling-node": "^7.107.0",
51
51
  "acme-client": "^5.3.0",
52
52
  "browserify-fs": "^1.0.0",
53
53
  "buffer": "^6.0.3",
@@ -65,8 +65,8 @@
65
65
  "node-mailjet": "^6.0.5",
66
66
  "node-polyfill-webpack-plugin": "^3.0.0",
67
67
  "office-text-extractor": "^3.0.2",
68
- "ollama": "^0.4.9",
69
- "openai": "^4.28.4",
68
+ "ollama": "^0.5.0",
69
+ "openai": "^4.29.1",
70
70
  "pdfjs-dist": "^4.0.379",
71
71
  "pg": "^8.11.3",
72
72
  "pgvector": "^0.1.8",
@@ -75,12 +75,12 @@
75
75
  "telegraf": "^4.16.3",
76
76
  "telesignsdk": "^2.2.3",
77
77
  "tesseract.js": "^5.0.5",
78
- "twilio": "^4.23.0",
78
+ "twilio": "^5.0.1",
79
79
  "url": "github:Leask/node-url",
80
80
  "webpack-cli": "^5.1.4",
81
81
  "whisper-node": "^1.1.1",
82
- "wrangler": "^3.32.0",
82
+ "wrangler": "^3.34.2",
83
83
  "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz",
84
- "youtube-transcript": "^1.0.6"
84
+ "youtube-transcript": "^1.1.0"
85
85
  }
86
86
  }