Skip to content

Commit 4cbcd68

Browse files
committed
fix(docs): fix package id links in docs
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.
1 parent 7a90df5 commit 4cbcd68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/manual/upgrade-to-v5.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Sequelize now ship official typings [#10287](https://github.com/sequelize/sequel
2626

2727
### Pooling
2828

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&#64;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)
3030

3131
### Model
3232

@@ -231,7 +231,7 @@ dialectOptions: {
231231
- fix(types): additional options for db.query and add missing retry [#10512](https://github.com/sequelize/sequelize/pull/10512)
232232
- fix(query): don't prepare options & sql for every retry [#10498](https://github.com/sequelize/sequelize/pull/10498)
233233
- 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&#64;6.0.0</code> [#10494](https://github.com/sequelize/sequelize/pull/10494)
235235
- feat(sqlite/query-generator): support restart identity for truncate-table [#10522](https://github.com/sequelize/sequelize/pull/10522)
236236
- feat(data-types): handle numbers passed as objects [#10492](https://github.com/sequelize/sequelize/pull/10492)
237237
- feat(types): enabled string association [#10481](https://github.com/sequelize/sequelize/pull/10481)

0 commit comments

Comments
 (0)