Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all apollo server non-major dependencies #98

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 25, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
apollo-server (source) 3.12.0 -> 3.13.0 age adoption passing confidence
supertest 6.2.2 -> 6.3.4 age adoption passing confidence
supertest 6.3.3 -> 6.3.4 age adoption passing confidence
ts-node (source) 10.4.0 -> 10.9.2 age adoption passing confidence
ts-node (source) 10.9.1 -> 10.9.2 age adoption passing confidence
typescript (source) 4.7.4 -> 4.9.5 age adoption passing confidence

Release Notes

apollographql/apollo-server (apollo-server)

v3.13.0

Compare Source

v3.12.1

Compare Source

ladjs/supertest (supertest)

v6.3.4

Compare Source

v6.3.3

Compare Source

v6.3.2

Compare Source

v6.3.1

Compare Source

v6.3.0

Compare Source

  • fix: lint package.json, added files array 20adbc1
  • Merge pull request #​793 from lamweili/feat/http2 22b89b6
  • Merge pull request #​795 from lamweili/code-coverage a225e95
  • Merge pull request #​794 from lamweili/migrate-cov fa129dc
  • test(#​767): 100% code coverage 9c5bd92
  • ci: migrated code coverage from coveralls to codecov 46e6feb
  • feat: supports http2 da57804
  • Merge pull request #​767 from alexandre-abrioux/expect-stacktrace e064b5a
  • Merge pull request #​774 from jmccure/update-promise-example-readme ba4b43b
  • Merge pull request #​792 from lamweili/refactor/test b8c2e29
  • ci: added ci da1e842
  • refactor(test): do not hardcode any ports, use ephemeral ports 8847310
  • refactor(test): do not have both s and server, renamed to server for consistency c1c4402
  • test: 100% test coverage 8bf4c14
  • refactor(TestAgent): removed the host param when creating Test object 1c8930d
  • feat(TestAgent): decoupled TestAgent and superagent's Agent to support more than ca, key, cert 5e23869
  • fix(TestAgent): attach cookies to agent after plugin is used 6d9b9cb
  • Update promise example to work with Mocha 5862fe6
  • fix: add stacktrace to failed expect function call 3dba4e9
  • test: add failing test b24da85

v6.2.4

Compare Source

v6.2.3

Compare Source

  • chore: bump deps 6329e2d
  • Merge pull request #​759 from francescobarbera/master e6d371c
  • docs: add an example for complex object in multipart upload 729e818
TypeStrong/ts-node (ts-node)

v10.9.2: Fix tsconfig.json file not found

Compare Source

Fixed

v10.9.1

Compare Source

Fixed

  • Workaround nodejs bug introduced in 18.6.0 (#​1838) @​cspotcode
    • Only affects projects on node >=18.6.0 using --esm
    • Older versions of node and projects without --esm are unaffected

https://github.com/TypeStrong/ts-node/milestone/18?closed=1

v10.9.0

Compare Source

Added

  • --project accepts path to a directory containing a tsconfig.json (#​1829, #​1830) @​cspotcode
    • previously it required an explicit filename
  • Added helpful error message when swc version is too old to support our configuration (#​1802) @​cspotcode
  • Added experimentalTsImportSpecifiers option which allows using voluntary .ts file extensions in import specifiers (undocumented except for API docs) (#​1815) @​cspotcode

Fixed

https://github.com/TypeStrong/ts-node/milestone/16?closed=1

v10.8.2

Compare Source

Fixed

  • Revert "Use file URL for source map paths" (#​1821) @​cspotcode
    • Fixes #​1790: ts-node 10.8.1 regression where nyc code coverage reports had incorrect paths
    • Fixes #​1797: ts-node 10.8.1 regression where breakpoints did not hit in VSCode debugging
  • Allow JSON imports in node 16.15 and up (#​1792) @​queengooborg
    • JSON imports were already supported in v17.5 and up
    • this change extends support to >=16.15.0,<17.0.0
    • These version ranges match vanilla node's support for JSON imports

https://github.com/TypeStrong/ts-node/milestone/15?closed=1

v10.8.1

Compare Source

Fixed

https://github.com/TypeStrong/ts-node/milestone/14

v10.8.0

Compare Source

Questions about this release? Ask in the official discussion thread: #​1767

Added

  • Added support for module=NodeNext, module=Node16, .mts, .cts, .mjs, and .cjs file extensions (#​1414, #​1694, #​1744, #​1745, #​1727, #​1717, #​1753, #​1757) @​cspotcode
  • Added ability to include file extensions in CommonJS imports (#​1727, #​1753) @​cspotcode
    • Enables consistency with ESM, where file extensions are often mandatory
  • Resolves from emitted to source file extensions (#​1727, #​1753) @​cspotcode
    • Must enable experimentalResolver, will be enabled by default in a future version (docs)
    • Typechecker requires importing the emitted file extension; ts-node resolves correctly to the source file. E.g. import "./foo.js" will execute foo.ts See also: TypeScript issue #​37582
    • If typechecking is disabled, you can also use source file extensions. E.g. import "./foo.ts"
  • Added experimentalSpecifierResolution (#​1727, #​1753) @​cspotcode
    • the same as Node's --experimental-specifier-resolution (Node docs)
    • can also be specified in tsconfig.json for convenience, to avoid the CLI flag
    • allows omitting file extensions in ESM imports, plus a few other CommonJS-style conveniences
  • Adds diagnostics property to TSError, with array of TypeScript diagnostic objects from the compiler (API docs) (#​1705, #​1706) @​paulbrimicombe

Changed

Fixed

Docs

https://github.com/TypeStrong/ts-node/milestone/12

v10.7.0

Compare Source

Questions about this release? Ask in the official discussion thread: #​1680

Added

  • Adds --esm flag, option, and ts-node-esm binary (#​1258, #​1655)
    • Enables full esm support; no need for --loader nor NODE_OPTIONS
    • Use shebang #!/usr/bin/env ts-node-esm, run ts-node --esm, or add to your tsconfig.json: "ts-node": {"esm": true}

Changed

Fixed

  • Fixed bug where "compiler", "transpiler", and swc backend would not resolve relative to the tsconfig.json that declared them (#​1662, #​1655)
    • Enables reusable tsconfig.json shared via node module to include necessary dependencies

https://github.com/TypeStrong/ts-node/milestone/11

v10.6.0

Compare Source

Questions about this release? Ask in the official discussion thread: #​1666

Added

  • Adds workaround for extensionless entrypoints with ESM loader (#​1649, #​1654)
    • You can now combine tools such as mocha with --loader ts-node/esm, where previously node would throw [ERR_UNKNOWN_FILE_EXTENSION]
    • node has a bug where combining --loader with an extensionless entrypoint causes this error nodejs/node#33226
    • Some tools, for example mocha, have an extensionless entrypoint. (source, source)
    • Combining NODE_OPTIONS=--loader ts-node/esm with these tools causes this error. mochajs/mocha#4645
    • node intends to fix this bug in a future release: nodejs/node#41711
    • In the interim, we have implemented a workaround in ts-node.
  • Adds support for target "ES2022" in moduleTypes overrides (#​1650)

Fixed

  • Fixed bug where --swc and other third-party transpilers did not respect moduleTypes overrides (#​1651, #​1652, #​1660)
  • Fixed bug where node flags were not preserved correctly in process.execArgv (#​1657, #​1658)
    • This affected child_process.fork(), since it uses process.execArgv to create a similar child runtime.
    • With this fix, child_process.fork() will preserve both node flags and ts-node hooks.
  • Fixed compatibility TypeScript 4.7's API changes (#​1647, #​1648)

https://github.com/TypeStrong/ts-node/milestone/9

v10.5.0

Compare Source

Questions about this release? Ask in the official discussion thread: #​1634

Added

  • Eliminate "Emit Skipped" errors (#​693, #​1345, #​1629)
    • Avoids all "Emit Skipped" errors by performing a fallback transpileOnly-style transformation.
    • Does not affect typechecking. Type errors are still detected and thrown.
    • Fallback has the same limitations as isolatedModules. This will only affect rare cases such as using const enums with preserveConstEnums disabled.
    • Fixes #​693
  • Graduate swc transpiler out of experimental; add swc: true convenience option (docs) (#​1487, #​1536, #​1613, #​1627)
    • "swc": true or --swc will use swc for faster execution
    • This feature is no longer marked "experimental." Thank you to everyone who filed bugs!
  • swc transpiler attempts to load @swc/core or @swc/wasm dependencies from your project before falling-back to global installations (#​1613, #​1627)
    • global fallback only occurs when using a global installation of ts-node
  • Add support for TypeScript's traceResolution output (docs) (#​1128, #​1491) @​TheUnlocked
  • Support import assertions in ESM loader (docs) (#​1557, #​1558, #​1559, #​1573) @​Pokute, @​geigerzaehler
    • Allows importing JSON files from ESM with the requisite flag (docs)
  • ts-node -vvv also logs absolute paths to ts-node and typescript, to make it more obvious when you're accidentally using globally-installed versions (#​1323, #​1620)
  • Add swc target "es2022" (#​1535, #​1540)
    • When you have target es2022 in tsconfig, will use swc's es2022 target

Changed

  • Initialize TypeScript compiler before starting REPL prompt (#​1498) @​TheUnlocked
    • Improves responsiveness for first line of REPL input
  • Use v8-compile-cache-lib to load typescript
  • Support both --camelCase and --hyphen-case for all CLI flags; update documentation to use --camelCase (#​1598, #​1599)
    • Not a breaking change; CLI continues to accept both forms
  • Make TSError diagnosticText property non-enumerable to prevent it from being logged below the stack (#​1632)

Fixed

Docs

Misc

  • Adds experimental experimentalResolverFeatures option, but it does not do anything yet (#​1514, #​1614)

https://github.com/TypeStrong/ts-node/milestone/4

Microsoft/TypeScript (typescript)

v4.9.5: TypeScript 4.9.5

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

Changes:

v4.9.4: TypeScript 4.9.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Changes:

This list of changes was auto generated.

v4.9.3: TypeScript 4.9

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

Changes:

See More
  • 3d2b401 Fix assertion functions accessed via wildcard imports (#​51324)
  • 64d0d5a fix(51301): Fixing an unused import at the end of a line removes the newline (#​51320)
  • 754eeb2 Update CodeQL workflow and configuration, fix found bugs (#​51263)
  • d8aad26 Update package-lock.json
  • d4f26c8 fix(51245): Class with parameter decorator in arrow function causes "convert to default export" refactoring failure (#​51256)
  • 16faf45 Update package-lock.json
  • 8b1ecdb fix(50654): "Move to a new file" breaks the declaration of referenced variable (#​50681)
  • 170a17f Dom update 2022-10-25 (#​51300)
  • 9c4e14d Remove "No type information for this code" from baseline (#​51311)
  • 88d25b4 fix(50068): Refactors trigger debug failure when JSX text has a ' and a tag on the same line. (#​51299)
  • 8bee69a Update package-lock.json
  • 702de1e Fix early call to return/throw on generator (#​51294)
  • 2c12b14 Add a GH Action to file a new issue if we go a week without seeing a typescript-error-deltas issue (#​51271)
  • 6af270d Update package-lock.json
  • 2cc4c16 Update package-lock.json
  • 6093491 Fix apparent typo in getStringMappingType (#​51248)
  • 61c2609 Update package-lock.json
  • ef69116 Generate shortest rootDirs module specifier instead of first possible (#​51244)
  • bbb42f4 Fix typo in canWatchDirectoryOrFile found by CodeQL (#​51262)
  • a56b254 Include 'this' type parameter in isRelatedTo fast path (#​51230)
  • 3abd351 Fix super property transform in async arrow in method (#​51240)
  • eed0511 Update package-lock.json
  • 2625c1f Make the init config category order predictable (#​51247)
  • 1ca99b3 fix(50551): Destructuring assignment with var bypasses "variable is used before being assigned" check (2454) (#​50560)
  • 3f28fa1 Update package-lock.json
  • 906ebe4 Revert structuredTypeRelatedTo change and fix isUnitLikeType (#​51076)
  • 8ac4652 change type (#​51231)
  • 245a02c fix(51222): Go-to-definition on return statements should jump to the containing function declaration (#​51227)
  • 2dff34e markAliasReferenced should include ExportValue as well (#​51219)
  • 5ef2634 Update package-lock.json
  • d0f0e35 Remove old tslint comments (#​51220)
  • 85d405a Fixed a false positive "await has no effect on the type" diagnostic with mixed generic union (#​50833)
  • 1f8959f fix: avoid downleveled dynamic import closing over specifier expression (#​49663)
  • 11066b2 Rename internal functions to narrowTypeBySwitchOnTypeOf and narrowTypeByInKeyword (#​51215)
  • 4c9afe8 Update package-lock.json
  • f25bcb7 fix(49196): add jsdoc snippet for interface member functions (#​51135)
  • 7406ee9 fix(51170): Completing an unimplemented property overwrites rest of line (#​51175)
  • a1d82fc Remove some unnecessary code discovered by rollup (#​51204)
  • 0481773 LEGO: Merge pull request 51200
  • 98c19cb LEGO: Merge pull request 51190
  • 13c9b05 Update package-lock.json
  • 673475e Update package-lock.json
  • f6cf510 Add more tracing to node16/nodenext resolution (#​51168)
  • 83c5581 Update package-lock.json
  • be5f0fe Add an extra regression test for awaited unresolvable recursive union (#​51167)
  • 2cb7e77 fix(50416): correctly names disabled export refactors (#​50663) [ #​50416 ]
  • 2bcfed0 feat(37440): Provide a quick-fix for non-exported types (#​51038)
  • a24201c Remove VSDevMode.ps1 and createPlaygroundBuild (#​51166)
  • 2da62a7 fix(51112): omit parameter names that precede the type (#​51142)
  • cf1b6b7 feat(51163): show QF to fill in the missing properties for the mapped type. (#​51165)
  • bdcc240 Remove bug-causing carve-out in conditional type instantiation that hopefully is no longer required (#​51151)
  • 37317a2 Check nested weak types in intersections on target side of relation (#​51140)
  • 9f49f9c Update package-lock.json
  • 4f54e7e Fix isExhaustiveSwitchStatement to better handle circularities (#​51095)
  • 503604c Overloads shouldn't gain @​deprecated tags of other overloads in quick info (#​50904)
  • e14a229 Update package-lock.json
  • 67256e5 Remove unused declarations array in extractSymbol's TargetRange (#​51091)
  • 9c87ded fix(51100): ensure tsserver shuts down when parent process is killed (#​51107)
  • c01ae01 Fix nightly publish oops in Gulpfile (#​51131)
  • a7d10f1 Update package-lock.json
  • d0bfd8c fix(51072): ts.preProcessFile finds import in template string after conditional expression with template strings (#​51082)
  • ad56b5c Convert scripts/Gulpfile to checked mjs/cjs so they can run without compilation (#​50988)
  • dbeae5d fix(51017): Make lineText in the references response opt-out (#​51081)
  • d06a592 Properly defer resolution of mapped types with generic as clauses (#​51050)
  • 42b1049 Update package-lock.json
  • 5f3e6cc Plugin probe location is higher priority than peer node_modules (#​51079) [ #​34616 ]
  • 2648f6a Plugins in project were adding up after every config file reload (#​51087)
  • c18791c Fix incorrect options type to WatchOptions (#​51064)
  • b0795e9 Update package-lock.json
  • 43c6fd4 Covert some of the config testing to baselines for easy validation (#​51063)
  • fc5e72b Remove unused defaultWatchFileKind method since useFsE

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/integration-testing-all-apollo-server-minor-patch branch from 75ec9b8 to 93610db Compare August 14, 2023 23:23
@renovate renovate bot force-pushed the renovate/integration-testing-all-apollo-server-minor-patch branch from 93610db to d54d004 Compare August 24, 2023 22:50
@renovate renovate bot force-pushed the renovate/integration-testing-all-apollo-server-minor-patch branch from d54d004 to f55aeea Compare September 19, 2023 10:13
@renovate renovate bot force-pushed the renovate/integration-testing-all-apollo-server-minor-patch branch from f55aeea to 10c20e5 Compare November 14, 2023 02:10
@renovate renovate bot force-pushed the renovate/integration-testing-all-apollo-server-minor-patch branch from 10c20e5 to 6254087 Compare January 1, 2024 11:38
@renovate renovate bot requested a review from a team as a code owner January 1, 2024 11:38
@renovate renovate bot force-pushed the renovate/integration-testing-all-apollo-server-minor-patch branch from 6254087 to 023b630 Compare January 14, 2024 19:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant