You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These were previously being rendered via esdoc (which uses marked's
autolink rendering) as `mailto:` links. There are some
[suggestions](https://gist.github.com/alexpeattie/4729247) about how one
might disable or avoid autolinking but in this case the package
identifiers are in backticks, producing weird behaviour similar to
markedjs/marked#1327.
Assuming the fix attached to this latter issue applied in this case,
then a dependency upgrade of `marked` within `esdoc` might solve the
problem, but there are [maintenance
issues](esdoc/esdoc#543) there.
Until that arrives, this is a workaround to avoiding the weird `mailto:`
links on this page.
Copy file name to clipboardExpand all lines: docs/manual/upgrade-to-v5.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Sequelize now ship official typings [#10287](https://github.com/sequelize/sequel
26
26
27
27
### Pooling
28
28
29
-
With v5 Sequelize now use `sequelize-pool` which is a modernized fork of `generic-pool@2.5`. You no longer need to call `sequelize.close` to shutdown pool, this helps with lambda executions. [#8468](https://github.com/sequelize/sequelize/issues/8468)
29
+
With v5 Sequelize now use `sequelize-pool` which is a modernized fork of <code>generic-pool@2.5</code>. You no longer need to call `sequelize.close` to shutdown pool, this helps with lambda executions. [#8468](https://github.com/sequelize/sequelize/issues/8468)
30
30
31
31
### Model
32
32
@@ -231,7 +231,7 @@ dialectOptions: {
231
231
- fix(types): additional options for db.query and add missing retry [#10512](https://github.com/sequelize/sequelize/pull/10512)
232
232
- fix(query): don't prepare options & sql for every retry [#10498](https://github.com/sequelize/sequelize/pull/10498)
233
233
- feat: expose Sequelize.BaseError
234
-
- feat: upgrade to tedious@6.0.0 [#10494](https://github.com/sequelize/sequelize/pull/10494)
234
+
- feat: upgrade to <code>tedious@6.0.0</code>[#10494](https://github.com/sequelize/sequelize/pull/10494)
235
235
- feat(sqlite/query-generator): support restart identity for truncate-table [#10522](https://github.com/sequelize/sequelize/pull/10522)
236
236
- feat(data-types): handle numbers passed as objects [#10492](https://github.com/sequelize/sequelize/pull/10492)
237
237
- feat(types): enabled string association [#10481](https://github.com/sequelize/sequelize/pull/10481)
0 commit comments