@common-stack/generate-plugin 5.0.6-alpha.2 → 5.0.6-alpha.3
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
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.6-alpha.3](https://github.com/cdmbase/common-stack/compare/v5.0.6-alpha.2...v5.0.6-alpha.3) (2024-08-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
9
|
+
|
|
6
10
|
## [5.0.6-alpha.2](https://github.com/cdmbase/common-stack/compare/v5.0.6-alpha.1...v5.0.6-alpha.2) (2024-08-16)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { createServer } from "http";
|
|
2
2
|
import express from "express";
|
|
3
|
-
import { gql } from
|
|
4
|
-
import {
|
|
5
|
-
import { ApolloServerPluginDrainHttpServer, } from '@apollo/server/plugin/drainHttpServer';
|
|
3
|
+
import { ApolloServer, gql } from "apollo-server-express";
|
|
4
|
+
import { ApolloServerPluginDrainHttpServer } from "apollo-server-core";
|
|
6
5
|
import { PubSub } from "graphql-subscriptions";
|
|
7
6
|
import { makeExecutableSchema } from "@graphql-tools/schema";
|
|
8
7
|
import { WebSocketServer } from "ws";
|
|
@@ -100,8 +100,15 @@
|
|
|
100
100
|
"@remix-run/node": "^2.8.1",
|
|
101
101
|
"@sentry/node": "~7.24.2",
|
|
102
102
|
"apollo-datasource": "^3.3.1",
|
|
103
|
+
"apollo-datasource-rest": "^3.3.1",
|
|
103
104
|
"apollo-errors": "^1.9.0",
|
|
105
|
+
"apollo-server-cache-memcached": "^3.3.1",
|
|
104
106
|
"apollo-server-cache-redis": "^3.3.1",
|
|
107
|
+
"apollo-server-caching": "^3.3.0",
|
|
108
|
+
"apollo-server-core": "^3.11.1",
|
|
109
|
+
"apollo-server-errors": "^3.3.1",
|
|
110
|
+
"apollo-server-express": "^3.11.1",
|
|
111
|
+
"apollo-server-plugin-response-cache": "^3.8.1",
|
|
105
112
|
"app-root-path": "^3.0.0",
|
|
106
113
|
"body-parser": "^1.19.0",
|
|
107
114
|
"cors": "^2.8.5",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/generate-plugin",
|
|
3
|
-
"version": "5.0.6-alpha.
|
|
3
|
+
"version": "5.0.6-alpha.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./lib/index.mjs",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"generators": "./generators.json",
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "6f2ee2fc446895ae8da7f8e6f923dc8f8e9975a5"
|
|
28
28
|
}
|