Authentication module for Guild.xyz Public API

Overview

Authentication module for Guild.xyz Public API | WIP

Background

One of the most common problems with digital signature-based authentication systems is the replay attack. We have developed a new authentication method against this vulnerability, which both ensures the integrity of the request independent of TLS encapsulation (HTTPS) and protects against replay based attacks. This ensures protection from the signature service (Wallet client) all the way to the API.

Example

const guildAuth = require("@agoraxyz/guildauth");

//If you initialize guildAuth without a mnemonic, it will automatically generate a private key
const auth = new guildAuth();

//Or you can initialize with mnemonic
const auth = new guildAuth("neglect twenty arena spatial thunder mixed citizen over awful glad rally stomach");

//Get current address
console.log(auth.getAddress());
// 0x502d5f2DfE608D5135e649F1d76466E977158BB3

//Get current mnemonic
console.log(auth.getMnemonic());
// neglect twenty arena spatial thunder mixed citizen over awful glad rally stomach

//Prepare request without payload
console.log(await auth.prepareRequest());
// {"payload":{},"validation":{"address":"0xea66400591bf2485907749f71615128238f7ef0a","addressSignedMessage":"0xddc0d710043a232b430a3678d76367489b8f6c329e27e81795e75efb4744289034fdc4f7284e37b791609b0e1d76bf9a1837db2a3adf158e31a37ac6c91656511c","nonce":"0x26bb7d4c941aec37b239dbf6850e149faace8df740809c8f989c270f2a543c51","random":"wrETMso/e9YiMloSSeEusgMuoaVirTuIPfkzYGkDv7w=","timestamp":"1646265565126"}}

//Prepare request with payload
console.log(await auth.prepareRequest({ guildId: 1234}));
// {"payload":{"guildId":1234},"validation":{"address":"0xea66400591bf2485907749f71615128238f7ef0a","addressSignedMessage":"0x544855fc7c34b2411d74b45395ae59e87b6be10c15598a12446f3b0b0daf25f501ad8532a6420f9c8288724df2e03c14068786260a2eaaa9938e31318034fe1b1b","hash":"0xd24a3714283ef2c42428e247e76d4afe6bb6f4c73b10131978b877bc78238aa9","nonce":"0x3c3b72ba441b2740682d8974d96df2f61f3b9d49235d97ff6d5fd50373b2429c","random":"vrCxwqgt0ml9bF9z3Pxg9j9te1v0VU/9Yx9oFkfm84k=","timestamp":"1646267441728"}}

//Generate random wallet (https://docs.ethers.io/v5/api/signer/#Wallet-createRandom)
const wallet = auth.createRandomWallet();

//Generate random mnemonic
console.log(auth.createRandomMnemonic());
// letter sphere minimum tissue armed thumb wolf catalog theory mass arctic notice

Authentication flowchart

Authflow

Comments
  • Update types.ts, amount -> minAmount

    Update types.ts, amount -> minAmount

    I wonder if this is what needs to be done? Seems like amount doesn't work when updating or creating roles 🤔 but when getting the roles, minAmount is returned

    opened by backmeupplz 3
  • Rename sort parameter & add order and search params to `guild.getByAddress`

    Rename sort parameter & add order and search params to `guild.getByAddress`

    • [x] The guild.getAll method calls the API with an sort query param, which is invalid. It should call the API with the order param instead
    • [x] guild.getByAddress should also support order and search params, so we could use it on our frontend too
    opened by BrickheadJohnny 1
  • Fix API not working because all fields are empty string ('') bug

    Fix API not working because all fields are empty string ('') bug

    Problem

    image

    How I fixed

    1. remove stringify from prepareBodyWithSign return
    2. change prepareBodyWithSign return type to PreparedBody Promise
    3. add await to all prepareBodyWithSign usage
    opened by Chomtana 1
  • [Snyk] Upgrade @typescript-eslint/eslint-plugin from 5.14.0 to 5.46.1

    [Snyk] Upgrade @typescript-eslint/eslint-plugin from 5.14.0 to 5.46.1

    Snyk has created this PR to upgrade @typescript-eslint/eslint-plugin from 5.14.0 to 5.46.1.

    :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


    • The recommended version is 666 versions ahead of your current version.
    • The recommended version was released 21 days ago, on 2022-12-12.
    Release notes
    Package name: @typescript-eslint/eslint-plugin
    • 5.46.1 - 2022-12-12

      5.46.1 (2022-12-12)

      Note: Version bump only for package @ typescript-eslint/typescript-eslint

    • 5.46.1-alpha.3 - 2022-12-12
    • 5.46.1-alpha.2 - 2022-12-12
    • 5.46.1-alpha.1 - 2022-12-08
    • 5.46.1-alpha.0 - 2022-12-08
    • 5.46.0 - 2022-12-08

      5.46.0 (2022-12-08)

      Bug Fixes

      • eslint-plugin: [ban-types] update message to suggest object instead of Record<string, unknown> (#6079) (d91a5fc)

      Features

      • eslint-plugin: [prefer-nullish-coalescing] logic and test for strict null checks (#6174) (8a91cbd)
    • 5.45.2-alpha.6 - 2022-12-08
    • 5.45.2-alpha.5 - 2022-12-07
    • 5.45.2-alpha.4 - 2022-12-07
    • 5.45.2-alpha.2 - 2022-12-07
    • 5.45.2-alpha.1 - 2022-12-07
    • 5.45.2-alpha.0 - 2022-12-05
    • 5.45.1 - 2022-12-05

      5.45.1 (2022-12-05)

      Bug Fixes

      • eslint-plugin: [keyword-spacing] unexpected space before/after in import type (#6095) (98caa92)
      • eslint-plugin: [no-shadow] add call and method signatures to ignoreFunctionTypeParameterNameValueShadow (#6129) (9d58b6b)
      • eslint-plugin: [prefer-optional-chain] collect MetaProperty type (#6083) (d7114d3)
      • eslint-plugin: [sort-type-constituents, sort-type-union-intersection-members] handle some required parentheses cases in the fixer (#6118) (5d49d5d)
      • parser: remove the jsx option requirement for automatic jsx pragma resolution (#6134) (e777f5e)
    • 5.45.1-alpha.19 - 2022-12-05
    • 5.45.1-alpha.18 - 2022-12-05
    • 5.45.1-alpha.17 - 2022-12-04
    • 5.45.1-alpha.16 - 2022-12-04
    • 5.45.1-alpha.15 - 2022-12-03
    • 5.45.1-alpha.14 - 2022-12-03
    • 5.45.1-alpha.13 - 2022-12-03
    • 5.45.1-alpha.12 - 2022-12-03
    • 5.45.1-alpha.11 - 2022-12-03
    • 5.45.1-alpha.10 - 2022-12-02
    • 5.45.1-alpha.9 - 2022-12-02
    • 5.45.1-alpha.8 - 2022-12-02
    • 5.45.1-alpha.7 - 2022-12-02
    • 5.45.1-alpha.6 - 2022-12-02
    • 5.45.1-alpha.5 - 2022-12-02
    • 5.45.1-alpha.4 - 2022-12-01
    • 5.45.1-alpha.3 - 2022-11-30
    • 5.45.1-alpha.2 - 2022-11-30
    • 5.45.1-alpha.1 - 2022-11-29
    • 5.45.1-alpha.0 - 2022-11-28
    • 5.45.0 - 2022-11-28

      5.45.0 (2022-11-28)

      Bug Fixes

      • eslint-plugin: [array-type] --fix flag removes parentheses from type (#5997) (42b33af)
      • eslint-plugin: [keyword-spacing] prevent crash on no options (#6073) (1f19998)
      • eslint-plugin: [member-ordering] support private fields (#5859) (f02761a)
      • eslint-plugin: [prefer-readonly] report if a member's property is reassigned (#6043) (6e079eb)
      • scope-manager: add support for TS4.9 satisfies expression (#6059) (44027db)
      • typescript-estree: stub out ts.SatisfiesExpression on old TS versions (#6076) (1302b30)

      Features

      • eslint-plugin: [member-ordering] add a required option for required vs. optional member ordering (#5965) (2abadc6)
      • support Auto Accessor syntax (#5926) (becd1f8)
    • 5.44.1-alpha.16 - 2022-11-28
    • 5.44.1-alpha.15 - 2022-11-28
    • 5.44.1-alpha.14 - 2022-11-26
    • 5.44.1-alpha.13 - 2022-11-26
    • 5.44.1-alpha.12 - 2022-11-25
    • 5.44.1-alpha.11 - 2022-11-25
    • 5.44.1-alpha.10 - 2022-11-25
    • 5.44.1-alpha.9 - 2022-11-24
    • 5.44.1-alpha.8 - 2022-11-24
    • 5.44.1-alpha.7 - 2022-11-24
    • 5.44.1-alpha.6 - 2022-11-24
    • 5.44.1-alpha.5 - 2022-11-23
    • 5.44.1-alpha.4 - 2022-11-23
    • 5.44.1-alpha.3 - 2022-11-23
    • 5.44.1-alpha.2 - 2022-11-23
    • 5.44.1-alpha.1 - 2022-11-22
    • 5.44.1-alpha.0 - 2022-11-21
    • 5.44.0 - 2022-11-21

      5.44.0 (2022-11-21)

      Bug Fixes

      • eslint-plugin: [no-empty-interface] disable autofix for declaration merging with class (#5920) (a4f85b8)
      • eslint-plugin: [no-unnecessary-condition] handle index signature type (#5912) (5baad08)
      • eslint-plugin: [prefer-optional-chain] handle binary expressions in negated or (#5992) (2778ff0)
      • typescript-estree: don't consider a cached program unless it's specified in the current parserOptions.project config (#5999) (530e0e6)

      Features

      • eslint-plugin: [adjacent-overload-signatures] check BlockStatement nodes (#5998) (97d3e56)
      • eslint-plugin: [keyword-spacing] Support spacing in import-type syntax (#5977) (6a735e1)
      • support parsing satisfies operators (#5717) (20d7cae)
      • update to TypeScript 4.9 (#5716) (4d744ea)
    • 5.43.1-alpha.25 - 2022-11-21
    • 5.43.1-alpha.24 - 2022-11-21
    • 5.43.1-alpha.23 - 2022-11-20
    • 5.43.1-alpha.22 - 2022-11-18
    • 5.43.1-alpha.21 - 2022-11-18
    • 5.43.1-alpha.20 - 2022-11-18
    • 5.43.1-alpha.19 - 2022-11-18
    • 5.43.1-alpha.18 - 2022-11-18
    • 5.43.1-alpha.17 - 2022-11-18
    • 5.43.1-alpha.16 - 2022-11-17
    • 5.43.1-alpha.15 - 2022-11-17
    • 5.43.1-alpha.14 - 2022-11-17
    • 5.43.1-alpha.13 - 2022-11-17
    • 5.43.1-alpha.12 - 2022-11-16
    • 5.43.1-alpha.11 - 2022-11-16
    • 5.43.1-alpha.10 - 2022-11-16
    • 5.43.1-alpha.9 - 2022-11-16
    • 5.43.1-alpha.8 - 2022-11-16
    • 5.43.1-alpha.7 - 2022-11-16
    • 5.43.1-alpha.6 - 2022-11-16
    • 5.43.1-alpha.5 - 2022-11-16
    • 5.43.1-alpha.4 - 2022-11-16
    • 5.43.1-alpha.3 - 2022-11-16
    • 5.43.1-alpha.2 - 2022-11-15
    • 5.43.1-alpha.1 - 2022-11-15
    • 5.43.1-alpha.0 - 2022-11-14
    • 5.43.0 - 2022-11-14

      5.43.0 (2022-11-14)

      Bug Fixes

      • eslint-plugin: [no-shadow] handle false positives on generics and parameters (#5902) (769e8c8)
      • eslint-plugin: [promise-function-async] handle keyword token (#5907) (f25a94f)

      Features

      • eslint-plugin: [consistent-type-imports] support fixing to inline types (#5050) (75dcdf1)
      • eslint-plugin: [naming-convention] add support for "override" and "async" modifiers (#5310) (#5610) (c759da1)
      • eslint-plugin: [prefer-optional-chain] support suggesting !foo || !foo.bar as a valid match for the rule (#5594) (923d486)
    • 5.42.2-alpha.10 - 2022-11-14
    • 5.42.2-alpha.9 - 2022-11-14
    • 5.42.2-alpha.8 - 2022-11-13
    • 5.42.2-alpha.7 - 2022-11-12
    • 5.42.2-alpha.6 - 2022-11-12
    • 5.42.2-alpha.5 - 2022-11-11
    • 5.42.2-alpha.4 - 2022-11-11
    • 5.42.2-alpha.3 - 2022-11-10
    • 5.42.2-alpha.2 - 2022-11-07
    • 5.42.2-alpha.1 - 2022-11-07
    • 5.42.2-alpha.0 - 2022-11-07
    • 5.42.1 - 2022-11-07

      5.42.1 (2022-11-07)

      Bug Fixes

      • ast-spec: correct misnamed ExportNamedDeclaration AST type (#5913) (e88f4fa)
      • eslint-plugin: isTypeReadonly stack overflow (#5875) (#5876) (2d9a33c)
    • 5.42.1-alpha.6 - 2022-11-07
    • 5.42.1-alpha.5 - 2022-11-03
    • 5.42.1-alpha.4 - 2022-11-02
    • 5.42.1-alpha.3 - 2022-11-02
    • 5.42.1-alpha.2 - 2022-11-02
    • 5.42.1-alpha.1 - 2022-11-02
    • 5.42.1-alpha.0 - 2022-10-31
    • 5.42.0 - 2022-10-31
    • 5.41.1-alpha.18 - 2022-10-31
    • 5.41.1-alpha.17 - 2022-10-31
    • 5.41.1-alpha.16 - 2022-10-31
    • 5.41.1-alpha.15 - 2022-10-31
    • 5.41.1-alpha.14 - 2022-10-30
    • 5.41.1-alpha.13 - 2022-10-29
    • 5.41.1-alpha.12 - 2022-10-29
    • 5.41.1-alpha.11 - 2022-10-27
    • 5.41.1-alpha.10 - 2022-10-27
    • 5.41.1-alpha.9 - 2022-10-26
    • 5.41.1-alpha.8 - 2022-10-26
    • 5.41.1-alpha.7 - 2022-10-26
    • 5.41.1-alpha.6 - 2022-10-25
    • 5.41.1-alpha.5 - 2022-10-25
    • 5.41.1-alpha.4 - 2022-10-25
    • 5.41.1-alpha.3 - 2022-10-25
    • 5.41.1-alpha.2 - 2022-10-24
    • 5.41.1-alpha.1 - 2022-10-24
    • 5.41.1-alpha.0 - 2022-10-24
    • 5.41.0 - 2022-10-24
    • 5.40.2-alpha.6 - 2022-10-24
    • 5.40.2-alpha.5 - 2022-10-24
    • 5.40.2-alpha.4 - 2022-10-24
    • 5.40.2-alpha.3 - 2022-10-24
    • 5.40.2-alpha.2 - 2022-10-22
    • 5.40.2-alpha.1 - 2022-10-19
    • 5.40.2-alpha.0 - 2022-10-17
    • 5.40.1 - 2022-10-17
    • 5.40.1-alpha.19 - 2022-10-16
    • 5.40.1-alpha.18 - 2022-10-15
    • 5.40.1-alpha.16 - 2022-10-14
    • 5.40.1-alpha.15 - 2022-10-13
    • 5.40.1-alpha.14 - 2022-10-13
    • 5.40.1-alpha.13 - 2022-10-13
    • 5.40.1-alpha.12 - 2022-10-13
    • 5.40.1-alpha.11 - 2022-10-13
    • 5.40.1-alpha.10 - 2022-10-13
    • 5.40.1-alpha.9 - 2022-10-13
    • 5.40.1-alpha.8 - 2022-10-13
    • 5.40.1-alpha.7 - 2022-10-12
    • 5.40.1-alpha.6 - 2022-10-12
    • 5.40.1-alpha.5 - 2022-10-11
    • 5.40.1-alpha.4 - 2022-10-10
    • 5.40.1-alpha.3 - 2022-10-11
    • 5.40.1-alpha.2 - 2022-10-10
    • 5.40.1-alpha.1 - 2022-10-10
    • 5.40.1-alpha.0 - 2022-10-10
    • 5.40.0 - 2022-10-10
    • 5.39.1-alpha.33 - 2022-10-10
    • 5.39.1-alpha.32 - 2022-10-10
    • 5.39.1-alpha.29 - 2022-10-10
    • 5.39.1-alpha.28 - 2022-10-09
    • 5.39.1-alpha.27 - 2022-10-09
    • 5.39.1-alpha.26 - 2022-10-09
    • 5.39.1-alpha.25 - 2022-10-09
    • 5.39.1-alpha.24 - 2022-10-07
    • 5.39.1-alpha.23 - 2022-10-07
    • 5.39.1-alpha.22 - 2022-10-07
    • 5.39.1-alpha.21 - 2022-10-06
    • 5.39.1-alpha.20 - 2022-10-05
    • 5.39.1-alpha.17 - 2022-10-05
    • 5.39.1-alpha.16 - 2022-10-04
    • 5.39.1-alpha.15 - 2022-10-04
    • 5.39.1-alpha.14 - 2022-10-04
    • 5.39.1-alpha.13 - 2022-10-04
    • 5.39.1-alpha.10 - 2022-10-04
    • 5.39.1-alpha.9 - 2022-10-04
    • 5.39.1-alpha.8 - 2022-10-04
    • 5.39.1-alpha.7 - 2022-10-04
    • 5.39.1-alpha.6 - 2022-10-04
    • 5.39.1-alpha.5 - 2022-10-04
    • 5.39.1-alpha.4 - 2022-10-04
    • 5.39.1-alpha.3 - 2022-10-04
    • 5.39.1-alpha.2 - 2022-10-04
    • 5.39.1-alpha.1 - 2022-10-04
    • 5.39.1-alpha.0 - 2022-10-03
    • 5.39.0 - 2022-10-03
    • 5.38.2-alpha.5 - 2022-10-03
    • 5.38.2-alpha.4 - 2022-10-02
    • 5.38.2-alpha.3 - 2022-10-02
    • 5.38.2-alpha.2 - 2022-10-02
    • 5.38.2-alpha.1 - 2022-10-01
    • 5.38.2-alpha.0 - 2022-09-26
    • 5.38.1 - 2022-09-26
    • 5.38.1-alpha.8 - 2022-09-26
    • 5.38.1-alpha.7 - 2022-09-24
    • 5.38.1-alpha.6 - 2022-09-24
    • 5.38.1-alpha.4 - 2022-09-24
    • 5.38.1-alpha.3 - 2022-09-24
    • 5.38.1-alpha.2 - 2022-09-24
    • 5.38.1-alpha.1 - 2022-09-23
    • 5.38.1-alpha.0 - 2022-09-19
    • 5.38.0 - 2022-09-19
    • 5.37.1-alpha.21 - 2022-09-19
    • 5.37.1-alpha.20 - 2022-09-19
    • 5.37.1-alpha.19 - 2022-09-19
    • 5.37.1-alpha.18 - 2022-09-19
    • 5.37.1-alpha.17 - 2022-09-19
    • 5.37.1-alpha.16 - 2022-09-19
    • 5.37.1-alpha.15 - 2022-09-19
    • 5.37.1-alpha.14 - 2022-09-16
    • 5.37.1-alpha.13 - 2022-09-15
    • 5.37.1-alpha.12 - 2022-09-15
    • 5.37.1-alpha.11 - 2022-09-15
    • 5.37.1-alpha.10 - 2022-09-15
    • 5.37.1-alpha.8 - 2022-09-15
    • 5.37.1-alpha.7 - 2022-09-14
    • 5.37.1-alpha.6 - 2022-09-13
    • 5.37.1-alpha.5 - 2022-09-13
    • 5.37.1-alpha.4 - 2022-09-13
    • 5.37.1-alpha.3 - 2022-09-13
    • 5.37.1-alpha.2 - 2022-09-13
    • 5.37.1-alpha.0 - 2022-09-12
    • 5.37.0 - 2022-09-12
    • 5.36.3-alpha.7 - 2022-09-12
    • 5.36.3-alpha.6 - 2022-09-12
    • 5.36.3-alpha.5 - 2022-09-11
    • 5.36.3-alpha.4 - 2022-09-11
    • 5.36.3-alpha.3 - 2022-09-08
    • 5.36.3-alpha.2 - 2022-09-07
    • 5.36.3-alpha.1 - 2022-09-06
    • 5.36.3-alpha.0 - 2022-09-05
    • 5.36.2 - 2022-09-05
    • 5.36.2-alpha.8 - 2022-09-05
    • 5.36.2-alpha.7 - 2022-09-04
    • 5.36.2-alpha.6 - 2022-09-04
    • 5.36.2-alpha.5 - 2022-09-04
    • 5.36.2-alpha.4 - 2022-09-02
    • 5.36.2-alpha.3 - 2022-09-01
    • 5.36.2-alpha.2 - 2022-09-01
    • 5.36.2-alpha.1 - 2022-09-01
    • 5.36.2-alpha.0 - 2022-08-30
    • 5.36.1 - 2022-08-30
    • 5.36.1-alpha.1 - 2022-08-30
    • 5.36.1-alpha.0 - 2022-08-30
    • 5.36.0 - 2022-08-30
    • 5.35.2-alpha.8 - 2022-08-29
    • 5.35.2-alpha.7 - 2022-08-29
    • 5.35.2-alpha.6 - 2022-08-29
    • 5.35.2-alpha.5 - 2022-08-29
    • 5.35.2-alpha.4 - 2022-08-29
    • 5.35.2-alpha.3 - 2022-08-26
    • 5.35.2-alpha.2 - 2022-08-25
    • 5.35.2-alpha.1 - 2022-08-25
    • 5.35.2-alpha.0 - 2022-08-24
    • 5.35.1 - 2022-08-24
    • 5.35.1-alpha.0 - 2022-08-24
    • 5.35.0 - 2022-08-24
    • 5.34.1-alpha.10 - 2022-08-24
    • 5.34.1-alpha.9 - 2022-08-24
    • 5.34.1-alpha.8 - 2022-08-24
    • 5.34.1-alpha.7 - 2022-08-24
    • 5.34.1-alpha.6 - 2022-08-24
    • 5.34.1-alpha.5 - 2022-08-23
    • 5.34.1-alpha.4 - 2022-08-23
    • 5.34.1-alpha.3 - 2022-08-23
    • 5.34.1-alpha.2 - 2022-08-23
    • 5.34.1-alpha.1 - 2022-08-23
    • 5.34.1-alpha.0 - 2022-08-22
    • 5.34.0 - 2022-08-22
    • 5.33.2-alpha.19 - 2022-08-21
    • 5.33.2-alpha.18 - 2022-08-21
    • 5.33.2-alpha.17 - 2022-08-21
    • 5.33.2-alpha.16 - 2022-08-18
    • 5.33.2-alpha.15 - 2022-08-18
    • 5.33.2-alpha.13 - 2022-08-18
    • 5.33.2-alpha.12 - 2022-08-18
    • 5.33.2-alpha.11 - 2022-08-17
    • 5.33.2-alpha.10 - 2022-08-17
    • 5.33.2-alpha.9 - 2022-08-17
    • 5.33.2-alpha.8 - 2022-08-17
    • 5.33.2-alpha.7 - 2022-08-17
    • 5.33.2-alpha.5 - 2022-08-17
    • 5.33.2-alpha.4 - 2022-08-17
    • 5.33.2-alpha.3 - 2022-08-17
    • 5.33.2-alpha.2 - 2022-08-17
    • 5.33.2-alpha.1 - 2022-08-16
    • 5.33.2-alpha.0 - 2022-08-15
    • 5.33.1 - 2022-08-15
    • 5.33.1-alpha.11 - 2022-08-15
    • 5.33.1-alpha.10 - 2022-08-15
    • 5.33.1-alpha.9 - 2022-08-15
    • 5.33.1-alpha.8 - 2022-08-15
    • 5.33.1-alpha.7 - 2022-08-12
    • 5.33.1-alpha.6 - 2022-08-11
    • 5.33.1-alpha.5 - 2022-08-11
    • 5.33.1-alpha.4 - 2022-08-10
    • 5.33.1-alpha.3 - 2022-08-10
    • 5.33.1-alpha.2 - 2022-08-10
    • 5.33.1-alpha.0 - 2022-08-08
    • 5.33.0 - 2022-08-08
    • 5.32.1-alpha.12 - 2022-08-07
    • 5.32.1-alpha.11 - 2022-08-07
    • 5.32.1-alpha.10 - 2022-08-07
    • 5.32.1-alpha.9 - 2022-08-07
    • 5.32.1-alpha.8 - 2022-08-07
    • 5.32.1-alpha.7 - 2022-08-07
    • 5.32.1-alpha.6 - 2022-08-07
    • 5.32.1-alpha.5 - 2022-08-07
    • 5.32.1-alpha.4 - 2022-08-07
    • 5.32.1-alpha.3 - 2022-08-07
    • 5.32.1-alpha.2 - 2022-08-07
    • 5.32.1-alpha.1 - 2022-08-06
    • 5.32.1-alpha.0 - 2022-08-01
    • 5.32.0 - 2022-08-01
    • 5.31.1-alpha.10 - 2022-08-01
    • 5.31.1-alpha.9 - 2022-07-29
    • 5.31.1-alpha.8 - 2022-07-28
    • 5.31.1-alpha.7 - 2022-07-27
    • 5.31.1-alpha.6 - 2022-07-27
    • 5.31.1-alpha.5 - 2022-07-27
    • 5.31.1-alpha.4 - 2022-07-27
    • 5.31.1-alpha.2 - 2022-07-27
    • 5.31.1-alpha.1 - 2022-07-27
    • 5.31.1-alpha.0 - 2022-07-25
    • 5.31.0 - 2022-07-25
    • 5.30.8-alpha.13 - 2022-07-25
    • 5.30.8-alpha.12 - 2022-07-23
    • 5.30.8-alpha.11 - 2022-07-23
    • 5.30.8-alpha.10 - 2022-07-22
    • 5.30.8-alpha.9 - 2022-07-22
    • 5.30.8-alpha.8 - 2022-07-22
    • 5.30.8-alpha.7 - 2022-07-22
    • 5.30.8-alpha.6 - 2022-07-22
    • 5.30.8-alpha.5 - 2022-07-22
    • 5.30.8-alpha.4 - 2022-07-22
    • 5.30.8-alpha.3 - 2022-07-22
    • 5.30.8-alpha.2 - 2022-07-18
    • 5.30.8-alpha.1 - 2022-07-18
    • 5.30.8-alpha.0 - 2022-07-18
    • 5.30.7 - 2022-07-18
    • 5.30.7-alpha.8 - 2022-07-18
    • 5.30.7-alpha.7 - 2022-07-18
    • 5.30.7-alpha.6 - 2022-07-18
    • 5.30.7-alpha.5 - 2022-07-18
    • 5.30.7-alpha.4 - 2022-07-18
    • 5.30.7-alpha.3 - 2022-07-15
    • 5.30.7-alpha.2 - 2022-07-15
    • 5.30.7-alpha.1 - 2022-07-15
    • 5.30.7-alpha.0 - 2022-07-11
    • 5.30.6 - 2022-07-11
    • 5.30.6-alpha.6 - 2022-07-06
    • 5.30.6-alpha.5 - 2022-07-05
    • 5.30.6-alpha.4 - 2022-07-05
    • 5.30.6-alpha.3 - 2022-07-05
    • 5.30.6-alpha.2 - 2022-07-05
    • 5.30.6-alpha.1 - 2022-07-05
    • 5.30.6-alpha.0 - 2022-07-04
    • 5.30.5 - 2022-07-04
    • 5.30.5-alpha.8 - 2022-07-04
    • 5.30.5-alpha.7 - 2022-07-04
    • 5.30.5-alpha.6 - 2022-07-04
    • 5.30.5-alpha.4 - 2022-07-04
    • 5.30.5-alpha.3 - 2022-07-04
    • 5.30.5-alpha.2 - 2022-07-03
    • 5.30.5-alpha.1 - 2022-07-03
    • 5.30.5-alpha.0 - 2022-07-03
    • 5.30.4 - 2022-07-03
    • 5.30.4-alpha.1 - 2022-07-02
    • 5.30.4-alpha.0 - 2022-07-01
    • 5.30.3 - 2022-07-01
    • 5.30.3-alpha.0 - 2022-07-01
    • 5.30.2 - 2022-07-01
    • 5.30.2-alpha.0 - 2022-07-01
    • 5.30.1 - 2022-07-01
    • 5.30.1-alpha.9 - 2022-07-01
    • 5.30.1-alpha.8 - 2022-07-01
    • 5.30.1-alpha.7 - 2022-07-01
    • 5.30.1-alpha.6 - 2022-06-30
    • 5.30.1-alpha.5 - 2022-06-29
    • 5.30.1-alpha.4 - 2022-06-27
    • 5.30.1-alpha.3 - 2022-06-27
    • 5.30.1-alpha.2 - 2022-06-27
    • 5.30.1-alpha.1 - 2022-06-27
    • 5.30.0 - 2022-06-27
    • 5.29.1-alpha.16 - 2022-06-27
    • 5.29.1-alpha.15 - 2022-06-27
    • 5.29.1-alpha.14 - 2022-06-26
    • 5.29.1-alpha.13 - 2022-06-26
    • 5.29.1-alpha.12 - 2022-06-25
    • 5.29.1-alpha.11 - 2022-06-23
    • 5.29.1-alpha.10 - 2022-06-23
    • 5.29.1-alpha.9 - 2022-06-20
    • 5.29.1-alpha.8 - 2022-06-20
    • 5.29.1-alpha.7 - 2022-06-20
    • 5.29.1-alpha.6 - 2022-06-20
    • 5.29.1-alpha.5 - 2022-06-20
    • 5.29.1-alpha.4 - 2022-06-20
    • 5.29.1-alpha.3 - 2022-06-20
    • 5.29.1-alpha.1 - 2022-06-20
    • 5.29.1-alpha.0 - 2022-06-20
    • 5.29.0 - 2022-06-20
    • 5.28.1-alpha.8 - 2022-06-20
    • 5.28.1-alpha.7 - 2022-06-19
    • 5.28.1-alpha.6 - 2022-06-18
    • 5.28.1-alpha.5 - 2022-06-13
    • 5.28.1-alpha.4 - 2022-06-13
    • 5.28.1-alpha.3 - 2022-06-13
    • 5.28.1-alpha.2 - 2022-06-13
    • 5.28.1-alpha.1 - 2022-06-13
    • 5.28.1-alpha.0 - 2022-06-13
    • 5.28.0 - 2022-06-13
    • 5.27.2-alpha.16 - 2022-06-13
    • 5.27.2-alpha.15 - 2022-06-13
    • 5.27.2-alpha.14 - 2022-06-12
    • 5.27.2-alpha.13 - 2022-06-12
    • 5.27.2-alpha.12 - 2022-06-10
    • 5.27.2-alpha.11 - 2022-06-10
    • 5.27.2-alpha.10 - 2022-06-10
    • 5.27.2-alpha.9 - 2022-06-10
    • 5.27.2-alpha.8 - 2022-06-10
    • 5.27.2-alpha.7 - 2022-06-10
    • 5.27.2-alpha.6 - 2022-06-08
    • 5.27.2-alpha.5 - 2022-06-08
    • 5.27.2-alpha.4 - 2022-06-08
    • 5.27.2-alpha.3 - 2022-06-06
    • 5.27.2-alpha.2 - 2022-06-06
    • 5.27.2-alpha.1 - 2022-06-06
    • 5.27.2-alpha.0 - 2022-06-06
    • 5.27.1 - 2022-06-06
    • 5.27.1-alpha.17 - 2022-06-06
    • 5.27.1-alpha.16 - 2022-06-04
    • 5.27.1-alpha.15 - 2022-06-04
    • 5.27.1-alpha.14 - 2022-06-04
    • 5.27.1-alpha.13 - 2022-06-01
    • 5.27.1-alpha.12 - 2022-06-01
    • 5.27.1-alpha.11 - 2022-06-01
    • 5.27.1-alpha.10 - 2022-06-01
    • 5.27.1-alpha.9 - 2022-06-01
    • 5.27.1-alpha.8 - 2022-06-01
    • 5.27.1-alpha.7 - 2022-06-01
    • 5.27.1-alpha.6 - 2022-06-01
    • 5.27.1-alpha.5 - 2022-05-31
    • 5.27.1-alpha.4 - 2022-05-31
    • 5.27.1-alpha.3 - 2022-05-31
    • 5.27.1-alpha.2 - 2022-05-30
    • 5.27.1-alpha.1 - 2022-05-30
    • 5.27.1-alpha.0 - 2022-05-30
    • 5.27.0 - 2022-05-30
    • 5.26.1-alpha.42 - 2022-05-30
    • 5.26.1-alpha.41 - 2022-05-30
    • 5.26.1-alpha.40 - 2022-05-30
    • 5.26.1-alpha.39 - 2022-05-29
    • 5.26.1-alpha.38 - 2022-05-29
    • 5.26.1-alpha.37 - 2022-05-29
    • 5.26.1-alpha.36 - 2022-05-29
    • 5.26.1-alpha.35 - 2022-05-28
    • 5.26.1-alpha.34 - 2022-05-28
    • 5.26.1-alpha.33 - 2022-05-26
    • 5.26.1-alpha.32 - 2022-05-26
    • 5.26.1-alpha.31 - 2022-05-26
    • 5.26.1-alpha.30 - 2022-05-26
    • 5.26.1-alpha.29 - 2022-05-26
    • 5.26.1-alpha.28 - 2022-05-25
    • 5.26.1-alpha.27 - 2022-05-25
    • 5.26.1-alpha.26 - 2022-05-25
    • 5.26.1-alpha.25 - 2022-05-25
    • 5.26.1-alpha.23 - 2022-05-25
    • 5.26.1-alpha.22 - 2022-05-24
    • 5.26.1-alpha.21 - 2022-05-24
    • 5.26.1-alpha.20 - 2022-05-24
    • 5.26.1-alpha.19 - 2022-05-24
    • 5.26.1-alpha.18 - 2022-05-24
    • 5.26.1-alpha.17 - 2022-05-24
    • 5.26.1-alpha.16 - 2022-05-24
    • 5.26.1-alpha.15 - 2022-05-24
    • 5.26.1-alpha.14 - 2022-05-24
    • 5.26.1-alpha.13 - 2022-05-24
    • 5.26.1-alpha.12 - 2022-05-24
    • 5.26.1-alpha.11 - 2022-05-24
    • 5.26.1-alpha.10 - 2022-05-24
    • 5.26.1-alpha.9 - 2022-05-24
    • 5.26.1-alpha.8 - 2022-05-24
    • 5.26.1-alpha.7 - 2022-05-24
    • 5.26.1-alpha.6 - 2022-05-24
    • 5.26.1-alpha.5 - 2022-05-24
    • 5.26.1-alpha.4 - 2022-05-24
    • 5.26.1-alpha.3 - 2022-05-23
    • 5.26.1-alpha.2 - 2022-05-23
    • 5.26.1-alpha.1 - 2022-05-23
    • 5.26.1-alpha.0 - 2022-05-23
    • 5.26.0 - 2022-05-23
    • 5.25.1-alpha.19 - 2022-05-23
    • 5.25.1-alpha.18 - 2022-05-23
    • 5.25.1-alpha.15 - 2022-05-23
    • 5.25.1-alpha.13 - 2022-05-23
    • 5.25.1-alpha.12 - 2022-05-22
    • 5.25.1-alpha.11 - 2022-05-21
    • 5.25.1-alpha.10 - 2022-05-20
    • 5.25.1-alpha.9 - 2022-05-20
    • 5.25.1-alpha.8 - 2022-05-20
    • 5.25.1-alpha.7 - 2022-05-20
    • 5.25.1-alpha.6 - 2022-05-19
    • 5.25.1-alpha.5 - 2022-05-19
    • 5.25.1-alpha.4 - 2022-05-18
    • 5.25.1-alpha.2 - 2022-05-17
    • 5.25.1-alpha.1 - 2022-05-17
    • 5.25.1-alpha.0 - 2022-05-17
    • 5.25.0 - 2022-05-17
    • 5.24.1-alpha.14 - 2022-05-17
    • 5.24.1-alpha.13 - 2022-05-17
    • 5.24.1-alpha.12 - 2022-05-17
    • 5.24.1-alpha.11 - 2022-05-16
    • 5.24.1-alpha.10 - 2022-05-16
    • 5.24.1-alpha.9 - 2022-05-16
    • 5.24.1-alpha.8 - 2022-05-16
    • 5.24.1-alpha.7 - 2022-05-16
    • 5.24.1-alpha.5 - 2022-05-16
    • 5.24.1-alpha.4 - 2022-05-16
    • 5.24.1-alpha.3 - 2022-05-16
    • 5.24.1-alpha.2 - 2022-05-16
    • 5.24.1-alpha.1 - 2022-05-16
    • 5.24.1-alpha.0 - 2022-05-16
    • 5.24.0 - 2022-05-16
    • 5.23.1-alpha.25 - 2022-05-16
    • 5.23.1-alpha.24 - 2022-05-16
    • 5.23.1-alpha.23 - 2022-05-16
    • 5.23.1-alpha.22 - 2022-05-15
    • 5.23.1-alpha.21 - 2022-05-14
    • 5.23.1-alpha.20 - 2022-05-14
    • 5.23.1-alpha.19 - 2022-05-13
    • 5.23.1-alpha.18 - 2022-05-10
    • 5.23.1-alpha.17 - 2022-05-10
    • 5.23.1-alpha.15 - 2022-05-10
    • 5.23.1-alpha.14 - 2022-05-10
    • 5.23.1-alpha.13 - 2022-05-10
    • 5.23.1-alpha.12 - 2022-05-10
    • 5.23.1-alpha.11 - 2022-05-10
    • 5.23.1-alpha.10 - 2022-05-10
    • 5.23.1-alpha.8 - 2022-05-09
    • 5.23.1-alpha.6 - 2022-05-09
    • 5.23.1-alpha.4 - 2022-05-09
    • 5.23.1-alpha.1 - 2022-05-09
    • 5.23.1-alpha.0 - 2022-05-09
    • 5.23.0 - 2022-05-09
    • 5.22.1-alpha.14 - 2022-05-09
    • 5.22.1-alpha.13 - 2022-05-09
    • 5.22.1-alpha.11 - 2022-05-09
    • 5.22.1-alpha.10 - 2022-05-06
    • 5.22.1-alpha.9 - 2022-05-06
    • 5.22.1-alpha.8 - 2022-05-06
    • 5.22.1-alpha.7 - 2022-05-03
    • 5.22.1-alpha.6 - 2022-05-03
    • 5.22.1-alpha.5 - 2022-05-02
    • 5.22.1-alpha.4 - 2022-05-02
    • 5.22.1-alpha.2 - 2022-05-02
    • 5.22.1-alpha.1 - 2022-05-02
    • 5.22.1-alpha.0 - 2022-05-02
    • 5.22.0 - 2022-05-02
    • 5.21.1-alpha.11 - 2022-05-02
    • 5.21.1-alpha.10 - 2022-05-02
    • 5.21.1-alpha.9 - 2022-05-02
    • 5.21.1-alpha.8 - 2022-05-01
    • 5.21.1-alpha.7 - 2022-04-29
    • 5.21.1-alpha.6 - 2022-04-29
    • 5.21.1-alpha.4 - 2022-04-27
    • 5.21.1-alpha.3 - 2022-04-26
    • 5.21.1-alpha.2 - 2022-04-25
    • 5.21.1-alpha.1 - 2022-04-25
    • 5.21.1-alpha.0 - 2022-04-25
    • 5.21.0 - 2022-04-25
    • 5.20.1-alpha.16 - 2022-04-25
    • 5.20.1-alpha.15 - 2022-04-25
    • 5.20.1-alpha.14 - 2022-04-25
    • 5.20.1-alpha.12 - 2022-04-25
    • 5.20.1-alpha.11 - 2022-04-25
    • 5.20.1-alpha.10 - 2022-04-24
    • 5.20.1-alpha.9 - 2022-04-23
    • 5.20.1-alpha.8 - 2022-04-22
    • 5.20.1-alpha.7 - 2022-04-22
    • 5.20.1-alpha.6 - 2022-04-22
    • 5.20.1-alpha.5 - 2022-04-19
    • 5.20.1-alpha.4 - 2022-04-18
    • 5.20.1-alpha.2 - 2022-04-18
    • 5.20.1-alpha.1 - 2022-04-18
    • 5.20.1-alpha.0 - 2022-04-18
    • 5.20.0 - 2022-04-18
    • 5.19.1-alpha.15 - 2022-04-16
    • 5.19.1-alpha.14 - 2022-04-15
    • 5.19.1-alpha.13 - 2022-04-14
    • 5.19.1-alpha.12 - 2022-04-12
    • 5.19.1-alpha.11 - 2022-04-12
    • 5.19.1-alpha.10 - 2022-04-11
    • 5.19.1-alpha.9 - 2022-04-11
    • 5.19.1-alpha.8 - 2022-04-11
    • 5.19.1-alpha.7 - 2022-04-11
    • 5.19.1-alpha.6 - 2022-04-11
    • 5.19.1-alpha.4 - 2022-04-11
    • 5.19.1-alpha.3 - 2022-04-11
    • 5.19.1-alpha.2 - 2022-04-11
    • 5.19.1-alpha.1 - 2022-04-11
    • 5.19.1-alpha.0 - 2022-04-11
    • 5.19.0 - 2022-04-11
    • 5.18.1-alpha.11 - 2022-04-11
    • 5.18.1-alpha.10 - 2022-04-09
    • 5.18.1-alpha.9 - 2022-04-08
    • 5.18.1-alpha.8 - 2022-04-08
    • 5.18.1-alpha.7 - 2022-04-08
    • 5.18.1-alpha.6 - 2022-04-08
    • 5.18.1-alpha.5 - 2022-04-08
    • 5.18.1-alpha.4 - 2022-04-05
    • 5.18.1-alpha.3 - 2022-04-05
    • 5.18.1-alpha.2 - 2022-04-05
    • 5.18.1-alpha.1 - 2022-04-05
    • 5.18.1-alpha.0 - 2022-04-04
    • 5.18.0 - 2022-04-04
    • 5.17.1-alpha.10 - 2022-04-03
    • 5.17.1-alpha.9 - 2022-03-31
    • 5.17.1-alpha.8 - 2022-03-31
    • 5.17.1-alpha.7 - 2022-03-31
    • 5.17.1-alpha.6 - 2022-03-31
    • 5.17.1-alpha.4 - 2022-03-31
    • 5.17.1-alpha.3 - 2022-03-31
    • 5.17.1-alpha.2 - 2022-03-30
    • 5.17.1-alpha.1 - 2022-03-30
    • 5.17.1-alpha.0 - 2022-03-28
    • 5.17.0 - 2022-03-28
    • 5.16.1-alpha.20 - 2022-03-28
    • 5.16.1-alpha.19 - 2022-03-27
    • 5.16.1-alpha.18 - 2022-03-27
    • 5.16.1-alpha.17 - 2022-03-27
    • 5.16.1-alpha.16 - 2022-03-27
    • 5.16.1-alpha.15 - 2022-03-27
    • 5.16.1-alpha.14 - 2022-03-27
    • 5.16.1-alpha.13 - 2022-03-27
    • 5.16.1-alpha.12 - 2022-03-27
    • 5.16.1-alpha.11 - 2022-03-26
    • 5.16.1-alpha.10 - 2022-03-22
    • 5.16.1-alpha.9 - 2022-03-22
    • 5.16.1-alpha.8 - 2022-03-22
    • 5.16.1-alpha.7 - 2022-03-22
    • 5.16.1-alpha.6 - 2022-03-22
    • 5.16.1-alpha.5 - 2022-03-22
    • 5.16.1-alpha.4 - 2022-03-22
    • 5.16.1-alpha.3 - 2022-03-22
    • 5.16.1-alpha.2 - 2022-03-22
    • 5.16.1-alpha.1 - 2022-03-22
    • 5.16.1-alpha.0 - 2022-03-21
    • 5.16.0 - 2022-03-21
    • 5.15.1-alpha.6 - 2022-03-21
    • 5.15.1-alpha.5 - 2022-03-20
    • 5.15.1-alpha.4 - 2022-03-18
    • 5.15.1-alpha.3 - 2022-03-18
    • 5.15.1-alpha.2 - 2022-03-18
    • 5.15.1-alpha.1 - 2022-03-18
    • 5.15.1-alpha.0 - 2022-03-14
    • 5.15.0 - 2022-03-14
    • 5.14.1-alpha.22 - 2022-03-14
    • 5.14.1-alpha.21 - 2022-03-14
    • 5.14.1-alpha.20 - 2022-03-14
    • 5.14.1-alpha.18 - 2022-03-14
    • 5.14.1-alpha.17 - 2022-03-14
    • 5.14.1-alpha.16 - 2022-03-14
    • 5.14.1-alpha.15 - 2022-03-11
    • 5.14.1-alpha.14 - 2022-03-11
    • 5.14.1-alpha.13 - 2022-03-10
    • 5.14.1-alpha.12 - 2022-03-09
    • 5.14.1-alpha.11 - 2022-03-09
    • 5.14.1-alpha.10 - 2022-03-09
    • 5.14.1-alpha.9 - 2022-03-09
    • 5.14.1-alpha.7 - 2022-03-08
    • 5.14.1-alpha.6 - 2022-03-07
    • 5.14.1-alpha.4 - 2022-03-07
    • 5.14.1-alpha.3 - 2022-03-07
    • 5.14.1-alpha.2 - 2022-03-07
    • 5.14.1-alpha.1 - 2022-03-07
    • 5.14.1-alpha.0 - 2022-03-07
    • 5.14.0 - 2022-03-07
    from @typescript-eslint/eslint-plugin GitHub release notes
    Commit messages
    Package name: @typescript-eslint/eslint-plugin
    • c943b84 chore: publish v5.46.1
    • 88cd9ca chore: more aggressively clean local dev caches (#6197)
    • 0c6bea6 chore: group nx renovate PRs together (#6198)
    • 47241bb docs: overhaul branding and add new logo (#6147)
    • 32f12b2 chore: update sponsors (#6183)
    • 1e1573a chore: publish v5.46.0
    • 0167d91 chore: add working-directory input to prepare-install action (#6181)
    • bcad11b docs: add Rule Deprecations page (#6156)
    • b2b8ce2 chore(deps): update dessant/lock-threads action to v4 (#6175)
    • 92d07df chore: remove versions table from simple bug report form (#6170)
    • dbc8671 docs: add FAQ entry about running ESLint on transpiled code (#6155)
    • d91a5fc fix(eslint-plugin): [ban-types] update message to suggest `object` instead of `Record<string, unknown>` (#6079)
    • 8a91cbd feat(eslint-plugin): [prefer-nullish-coalescing] logic and test for strict null checks (#6174)
    • 2d0a883 chore: publish v5.45.1
    • 26c4b46 docs(eslint-plugin): [member-ordering] remove invalid private-abstract-* mention (#6164)
    • 768e2a1 chore: update sponsors (#6166)
    • 2288b35 chore(eslint-plugin): valid typescript error code in eslint-recommended (#6165)
    • 02d9bca chore: add yarn 3 resources to gitignore
    • 891a77e docs: mention main/canary url in README.md (#6154)
    • 46c14cd chore: use short form for nx project names (#6160)
    • e458b5a chore(deps): update dependency lerna to v6.1.0 (#6157)
    • opened by snyk-bot 0
  • [Snyk] Upgrade @typescript-eslint/parser from 5.14.0 to 5.46.1

    [Snyk] Upgrade @typescript-eslint/parser from 5.14.0 to 5.46.1

    Snyk has created this PR to upgrade @typescript-eslint/parser from 5.14.0 to 5.46.1.

    :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


    • The recommended version is 679 versions ahead of your current version.
    • The recommended version was released 21 days ago, on 2022-12-12.
    Release notes
    Package name: @typescript-eslint/parser
    • 5.46.1 - 2022-12-12

      5.46.1 (2022-12-12)

      Note: Version bump only for package @ typescript-eslint/typescript-eslint

    • 5.46.1-alpha.3 - 2022-12-12
    • 5.46.1-alpha.2 - 2022-12-12
    • 5.46.1-alpha.1 - 2022-12-08
    • 5.46.1-alpha.0 - 2022-12-08
    • 5.46.0 - 2022-12-08

      5.46.0 (2022-12-08)

      Bug Fixes

      • eslint-plugin: [ban-types] update message to suggest object instead of Record<string, unknown> (#6079) (d91a5fc)

      Features

      • eslint-plugin: [prefer-nullish-coalescing] logic and test for strict null checks (#6174) (8a91cbd)
    • 5.45.2-alpha.6 - 2022-12-08
    • 5.45.2-alpha.5 - 2022-12-07
    • 5.45.2-alpha.4 - 2022-12-07
    • 5.45.2-alpha.2 - 2022-12-07
    • 5.45.2-alpha.1 - 2022-12-07
    • 5.45.2-alpha.0 - 2022-12-05
    • 5.45.1 - 2022-12-05

      5.45.1 (2022-12-05)

      Bug Fixes

      • eslint-plugin: [keyword-spacing] unexpected space before/after in import type (#6095) (98caa92)
      • eslint-plugin: [no-shadow] add call and method signatures to ignoreFunctionTypeParameterNameValueShadow (#6129) (9d58b6b)
      • eslint-plugin: [prefer-optional-chain] collect MetaProperty type (#6083) (d7114d3)
      • eslint-plugin: [sort-type-constituents, sort-type-union-intersection-members] handle some required parentheses cases in the fixer (#6118) (5d49d5d)
      • parser: remove the jsx option requirement for automatic jsx pragma resolution (#6134) (e777f5e)
    • 5.45.1-alpha.19 - 2022-12-05
    • 5.45.1-alpha.18 - 2022-12-05
    • 5.45.1-alpha.17 - 2022-12-04
    • 5.45.1-alpha.16 - 2022-12-04
    • 5.45.1-alpha.15 - 2022-12-03
    • 5.45.1-alpha.14 - 2022-12-03
    • 5.45.1-alpha.13 - 2022-12-03
    • 5.45.1-alpha.12 - 2022-12-03
    • 5.45.1-alpha.11 - 2022-12-03
    • 5.45.1-alpha.10 - 2022-12-02
    • 5.45.1-alpha.9 - 2022-12-02
    • 5.45.1-alpha.8 - 2022-12-02
    • 5.45.1-alpha.7 - 2022-12-02
    • 5.45.1-alpha.6 - 2022-12-02
    • 5.45.1-alpha.5 - 2022-12-02
    • 5.45.1-alpha.4 - 2022-12-01
    • 5.45.1-alpha.3 - 2022-11-30
    • 5.45.1-alpha.2 - 2022-11-30
    • 5.45.1-alpha.1 - 2022-11-29
    • 5.45.1-alpha.0 - 2022-11-28
    • 5.45.0 - 2022-11-28

      5.45.0 (2022-11-28)

      Bug Fixes

      • eslint-plugin: [array-type] --fix flag removes parentheses from type (#5997) (42b33af)
      • eslint-plugin: [keyword-spacing] prevent crash on no options (#6073) (1f19998)
      • eslint-plugin: [member-ordering] support private fields (#5859) (f02761a)
      • eslint-plugin: [prefer-readonly] report if a member's property is reassigned (#6043) (6e079eb)
      • scope-manager: add support for TS4.9 satisfies expression (#6059) (44027db)
      • typescript-estree: stub out ts.SatisfiesExpression on old TS versions (#6076) (1302b30)

      Features

      • eslint-plugin: [member-ordering] add a required option for required vs. optional member ordering (#5965) (2abadc6)
      • support Auto Accessor syntax (#5926) (becd1f8)
    • 5.44.1-alpha.16 - 2022-11-28
    • 5.44.1-alpha.15 - 2022-11-28
    • 5.44.1-alpha.14 - 2022-11-26
    • 5.44.1-alpha.13 - 2022-11-26
    • 5.44.1-alpha.12 - 2022-11-25
    • 5.44.1-alpha.11 - 2022-11-25
    • 5.44.1-alpha.10 - 2022-11-25
    • 5.44.1-alpha.9 - 2022-11-24
    • 5.44.1-alpha.8 - 2022-11-24
    • 5.44.1-alpha.7 - 2022-11-24
    • 5.44.1-alpha.6 - 2022-11-24
    • 5.44.1-alpha.5 - 2022-11-23
    • 5.44.1-alpha.4 - 2022-11-23
    • 5.44.1-alpha.3 - 2022-11-23
    • 5.44.1-alpha.2 - 2022-11-23
    • 5.44.1-alpha.1 - 2022-11-22
    • 5.44.1-alpha.0 - 2022-11-21
    • 5.44.0 - 2022-11-21

      5.44.0 (2022-11-21)

      Bug Fixes

      • eslint-plugin: [no-empty-interface] disable autofix for declaration merging with class (#5920) (a4f85b8)
      • eslint-plugin: [no-unnecessary-condition] handle index signature type (#5912) (5baad08)
      • eslint-plugin: [prefer-optional-chain] handle binary expressions in negated or (#5992) (2778ff0)
      • typescript-estree: don't consider a cached program unless it's specified in the current parserOptions.project config (#5999) (530e0e6)

      Features

      • eslint-plugin: [adjacent-overload-signatures] check BlockStatement nodes (#5998) (97d3e56)
      • eslint-plugin: [keyword-spacing] Support spacing in import-type syntax (#5977) (6a735e1)
      • support parsing satisfies operators (#5717) (20d7cae)
      • update to TypeScript 4.9 (#5716) (4d744ea)
    • 5.43.1-alpha.25 - 2022-11-21
    • 5.43.1-alpha.24 - 2022-11-21
    • 5.43.1-alpha.23 - 2022-11-20
    • 5.43.1-alpha.22 - 2022-11-18
    • 5.43.1-alpha.21 - 2022-11-18
    • 5.43.1-alpha.20 - 2022-11-18
    • 5.43.1-alpha.19 - 2022-11-18
    • 5.43.1-alpha.18 - 2022-11-18
    • 5.43.1-alpha.17 - 2022-11-18
    • 5.43.1-alpha.16 - 2022-11-17
    • 5.43.1-alpha.15 - 2022-11-17
    • 5.43.1-alpha.14 - 2022-11-17
    • 5.43.1-alpha.13 - 2022-11-17
    • 5.43.1-alpha.12 - 2022-11-16
    • 5.43.1-alpha.11 - 2022-11-16
    • 5.43.1-alpha.10 - 2022-11-16
    • 5.43.1-alpha.9 - 2022-11-16
    • 5.43.1-alpha.8 - 2022-11-16
    • 5.43.1-alpha.7 - 2022-11-16
    • 5.43.1-alpha.6 - 2022-11-16
    • 5.43.1-alpha.5 - 2022-11-16
    • 5.43.1-alpha.4 - 2022-11-16
    • 5.43.1-alpha.3 - 2022-11-16
    • 5.43.1-alpha.2 - 2022-11-15
    • 5.43.1-alpha.1 - 2022-11-15
    • 5.43.1-alpha.0 - 2022-11-14
    • 5.43.0 - 2022-11-14

      5.43.0 (2022-11-14)

      Bug Fixes

      • eslint-plugin: [no-shadow] handle false positives on generics and parameters (#5902) (769e8c8)
      • eslint-plugin: [promise-function-async] handle keyword token (#5907) (f25a94f)

      Features

      • eslint-plugin: [consistent-type-imports] support fixing to inline types (#5050) (75dcdf1)
      • eslint-plugin: [naming-convention] add support for "override" and "async" modifiers (#5310) (#5610) (c759da1)
      • eslint-plugin: [prefer-optional-chain] support suggesting !foo || !foo.bar as a valid match for the rule (#5594) (923d486)
    • 5.42.2-alpha.10 - 2022-11-14
    • 5.42.2-alpha.9 - 2022-11-14
    • 5.42.2-alpha.8 - 2022-11-13
    • 5.42.2-alpha.7 - 2022-11-12
    • 5.42.2-alpha.6 - 2022-11-12
    • 5.42.2-alpha.5 - 2022-11-11
    • 5.42.2-alpha.4 - 2022-11-11
    • 5.42.2-alpha.3 - 2022-11-10
    • 5.42.2-alpha.2 - 2022-11-07
    • 5.42.2-alpha.1 - 2022-11-07
    • 5.42.2-alpha.0 - 2022-11-07
    • 5.42.1 - 2022-11-07

      5.42.1 (2022-11-07)

      Bug Fixes

      • ast-spec: correct misnamed ExportNamedDeclaration AST type (#5913) (e88f4fa)
      • eslint-plugin: isTypeReadonly stack overflow (#5875) (#5876) (2d9a33c)
    • 5.42.1-alpha.6 - 2022-11-07
    • 5.42.1-alpha.5 - 2022-11-03
    • 5.42.1-alpha.4 - 2022-11-02
    • 5.42.1-alpha.3 - 2022-11-02
    • 5.42.1-alpha.2 - 2022-11-02
    • 5.42.1-alpha.1 - 2022-11-02
    • 5.42.1-alpha.0 - 2022-10-31
    • 5.42.0 - 2022-10-31
    • 5.41.1-alpha.18 - 2022-10-31
    • 5.41.1-alpha.17 - 2022-10-31
    • 5.41.1-alpha.16 - 2022-10-31
    • 5.41.1-alpha.15 - 2022-10-31
    • 5.41.1-alpha.14 - 2022-10-30
    • 5.41.1-alpha.13 - 2022-10-29
    • 5.41.1-alpha.12 - 2022-10-29
    • 5.41.1-alpha.11 - 2022-10-27
    • 5.41.1-alpha.10 - 2022-10-27
    • 5.41.1-alpha.9 - 2022-10-26
    • 5.41.1-alpha.8 - 2022-10-26
    • 5.41.1-alpha.7 - 2022-10-26
    • 5.41.1-alpha.6 - 2022-10-25
    • 5.41.1-alpha.5 - 2022-10-25
    • 5.41.1-alpha.4 - 2022-10-25
    • 5.41.1-alpha.3 - 2022-10-25
    • 5.41.1-alpha.2 - 2022-10-24
    • 5.41.1-alpha.1 - 2022-10-24
    • 5.41.1-alpha.0 - 2022-10-24
    • 5.41.0 - 2022-10-24
    • 5.40.2-alpha.6 - 2022-10-24
    • 5.40.2-alpha.5 - 2022-10-24
    • 5.40.2-alpha.4 - 2022-10-24
    • 5.40.2-alpha.3 - 2022-10-24
    • 5.40.2-alpha.2 - 2022-10-22
    • 5.40.2-alpha.1 - 2022-10-19
    • 5.40.2-alpha.0 - 2022-10-17
    • 5.40.1 - 2022-10-17
    • 5.40.1-alpha.19 - 2022-10-16
    • 5.40.1-alpha.18 - 2022-10-15
    • 5.40.1-alpha.16 - 2022-10-14
    • 5.40.1-alpha.15 - 2022-10-13
    • 5.40.1-alpha.14 - 2022-10-13
    • 5.40.1-alpha.13 - 2022-10-13
    • 5.40.1-alpha.12 - 2022-10-13
    • 5.40.1-alpha.11 - 2022-10-13
    • 5.40.1-alpha.10 - 2022-10-13
    • 5.40.1-alpha.9 - 2022-10-13
    • 5.40.1-alpha.8 - 2022-10-13
    • 5.40.1-alpha.7 - 2022-10-12
    • 5.40.1-alpha.6 - 2022-10-12
    • 5.40.1-alpha.5 - 2022-10-11
    • 5.40.1-alpha.4 - 2022-10-10
    • 5.40.1-alpha.3 - 2022-10-11
    • 5.40.1-alpha.2 - 2022-10-10
    • 5.40.1-alpha.1 - 2022-10-10
    • 5.40.1-alpha.0 - 2022-10-10
    • 5.40.0 - 2022-10-10
    • 5.39.1-alpha.33 - 2022-10-10
    • 5.39.1-alpha.32 - 2022-10-10
    • 5.39.1-alpha.29 - 2022-10-10
    • 5.39.1-alpha.28 - 2022-10-09
    • 5.39.1-alpha.27 - 2022-10-09
    • 5.39.1-alpha.26 - 2022-10-09
    • 5.39.1-alpha.25 - 2022-10-09
    • 5.39.1-alpha.24 - 2022-10-07
    • 5.39.1-alpha.23 - 2022-10-07
    • 5.39.1-alpha.22 - 2022-10-07
    • 5.39.1-alpha.21 - 2022-10-06
    • 5.39.1-alpha.20 - 2022-10-05
    • 5.39.1-alpha.18 - 2022-10-05
    • 5.39.1-alpha.17 - 2022-10-05
    • 5.39.1-alpha.16 - 2022-10-04
    • 5.39.1-alpha.15 - 2022-10-04
    • 5.39.1-alpha.14 - 2022-10-04
    • 5.39.1-alpha.13 - 2022-10-04
    • 5.39.1-alpha.12 - 2022-10-04
    • 5.39.1-alpha.11 - 2022-10-04
    • 5.39.1-alpha.10 - 2022-10-04
    • 5.39.1-alpha.9 - 2022-10-04
    • 5.39.1-alpha.8 - 2022-10-04
    • 5.39.1-alpha.7 - 2022-10-04
    • 5.39.1-alpha.6 - 2022-10-04
    • 5.39.1-alpha.5 - 2022-10-04
    • 5.39.1-alpha.4 - 2022-10-04
    • 5.39.1-alpha.3 - 2022-10-04
    • 5.39.1-alpha.2 - 2022-10-04
    • 5.39.1-alpha.1 - 2022-10-04
    • 5.39.1-alpha.0 - 2022-10-03
    • 5.39.0 - 2022-10-03
    • 5.38.2-alpha.5 - 2022-10-03
    • 5.38.2-alpha.4 - 2022-10-02
    • 5.38.2-alpha.3 - 2022-10-02
    • 5.38.2-alpha.2 - 2022-10-02
    • 5.38.2-alpha.1 - 2022-10-01
    • 5.38.2-alpha.0 - 2022-09-26
    • 5.38.1 - 2022-09-26
    • 5.38.1-alpha.8 - 2022-09-26
    • 5.38.1-alpha.7 - 2022-09-24
    • 5.38.1-alpha.6 - 2022-09-24
    • 5.38.1-alpha.5 - 2022-09-24
    • 5.38.1-alpha.4 - 2022-09-24
    • 5.38.1-alpha.3 - 2022-09-24
    • 5.38.1-alpha.2 - 2022-09-24
    • 5.38.1-alpha.1 - 2022-09-23
    • 5.38.1-alpha.0 - 2022-09-19
    • 5.38.0 - 2022-09-19
    • 5.37.1-alpha.21 - 2022-09-19
    • 5.37.1-alpha.20 - 2022-09-19
    • 5.37.1-alpha.19 - 2022-09-19
    • 5.37.1-alpha.18 - 2022-09-19
    • 5.37.1-alpha.17 - 2022-09-19
    • 5.37.1-alpha.16 - 2022-09-19
    • 5.37.1-alpha.15 - 2022-09-19
    • 5.37.1-alpha.14 - 2022-09-16
    • 5.37.1-alpha.13 - 2022-09-15
    • 5.37.1-alpha.12 - 2022-09-15
    • 5.37.1-alpha.11 - 2022-09-15
    • 5.37.1-alpha.10 - 2022-09-15
    • 5.37.1-alpha.8 - 2022-09-15
    • 5.37.1-alpha.7 - 2022-09-14
    • 5.37.1-alpha.6 - 2022-09-13
    • 5.37.1-alpha.5 - 2022-09-13
    • 5.37.1-alpha.4 - 2022-09-13
    • 5.37.1-alpha.3 - 2022-09-13
    • 5.37.1-alpha.2 - 2022-09-13
    • 5.37.1-alpha.1 - 2022-09-13
    • 5.37.1-alpha.0 - 2022-09-12
    • 5.37.0 - 2022-09-12
    • 5.36.3-alpha.7 - 2022-09-12
    • 5.36.3-alpha.6 - 2022-09-12
    • 5.36.3-alpha.5 - 2022-09-11
    • 5.36.3-alpha.4 - 2022-09-11
    • 5.36.3-alpha.3 - 2022-09-08
    • 5.36.3-alpha.2 - 2022-09-07
    • 5.36.3-alpha.1 - 2022-09-06
    • 5.36.3-alpha.0 - 2022-09-05
    • 5.36.2 - 2022-09-05
    • 5.36.2-alpha.8 - 2022-09-05
    • 5.36.2-alpha.7 - 2022-09-04
    • 5.36.2-alpha.6 - 2022-09-04
    • 5.36.2-alpha.5 - 2022-09-04
    • 5.36.2-alpha.4 - 2022-09-02
    • 5.36.2-alpha.3 - 2022-09-01
    • 5.36.2-alpha.2 - 2022-09-01
    • 5.36.2-alpha.1 - 2022-09-01
    • 5.36.2-alpha.0 - 2022-08-30
    • 5.36.1 - 2022-08-30
    • 5.36.1-alpha.1 - 2022-08-30
    • 5.36.1-alpha.0 - 2022-08-30
    • 5.36.0 - 2022-08-30
    • 5.35.2-alpha.8 - 2022-08-29
    • 5.35.2-alpha.7 - 2022-08-29
    • 5.35.2-alpha.6 - 2022-08-29
    • 5.35.2-alpha.5 - 2022-08-29
    • 5.35.2-alpha.4 - 2022-08-29
    • 5.35.2-alpha.3 - 2022-08-26
    • 5.35.2-alpha.2 - 2022-08-25
    • 5.35.2-alpha.1 - 2022-08-25
    • 5.35.2-alpha.0 - 2022-08-24
    • 5.35.1 - 2022-08-24
    • 5.35.1-alpha.0 - 2022-08-24
    • 5.35.0 - 2022-08-24
    • 5.34.1-alpha.10 - 2022-08-24
    • 5.34.1-alpha.9 - 2022-08-24
    • 5.34.1-alpha.8 - 2022-08-24
    • 5.34.1-alpha.7 - 2022-08-24
    • 5.34.1-alpha.6 - 2022-08-24
    • 5.34.1-alpha.5 - 2022-08-23
    • 5.34.1-alpha.4 - 2022-08-23
    • 5.34.1-alpha.3 - 2022-08-23
    • 5.34.1-alpha.2 - 2022-08-23
    • 5.34.1-alpha.1 - 2022-08-23
    • 5.34.1-alpha.0 - 2022-08-22
    • 5.34.0 - 2022-08-22
    • 5.33.2-alpha.19 - 2022-08-21
    • 5.33.2-alpha.18 - 2022-08-21
    • 5.33.2-alpha.17 - 2022-08-21
    • 5.33.2-alpha.16 - 2022-08-18
    • 5.33.2-alpha.15 - 2022-08-18
    • 5.33.2-alpha.13 - 2022-08-18
    • 5.33.2-alpha.12 - 2022-08-18
    • 5.33.2-alpha.11 - 2022-08-17
    • 5.33.2-alpha.10 - 2022-08-17
    • 5.33.2-alpha.9 - 2022-08-17
    • 5.33.2-alpha.8 - 2022-08-17
    • 5.33.2-alpha.7 - 2022-08-17
    • 5.33.2-alpha.5 - 2022-08-17
    • 5.33.2-alpha.4 - 2022-08-17
    • 5.33.2-alpha.3 - 2022-08-17
    • 5.33.2-alpha.2 - 2022-08-17
    • 5.33.2-alpha.1 - 2022-08-16
    • 5.33.2-alpha.0 - 2022-08-15
    • 5.33.1 - 2022-08-15
    • 5.33.1-alpha.11 - 2022-08-15
    • 5.33.1-alpha.10 - 2022-08-15
    • 5.33.1-alpha.9 - 2022-08-15
    • 5.33.1-alpha.8 - 2022-08-15
    • 5.33.1-alpha.7 - 2022-08-12
    • 5.33.1-alpha.6 - 2022-08-11
    • 5.33.1-alpha.5 - 2022-08-11
    • 5.33.1-alpha.4 - 2022-08-10
    • 5.33.1-alpha.3 - 2022-08-10
    • 5.33.1-alpha.2 - 2022-08-10
    • 5.33.1-alpha.0 - 2022-08-08
    • 5.33.0 - 2022-08-08
    • 5.32.1-alpha.12 - 2022-08-07
    • 5.32.1-alpha.11 - 2022-08-07
    • 5.32.1-alpha.10 - 2022-08-07
    • 5.32.1-alpha.9 - 2022-08-07
    • 5.32.1-alpha.8 - 2022-08-07
    • 5.32.1-alpha.7 - 2022-08-07
    • 5.32.1-alpha.6 - 2022-08-07
    • 5.32.1-alpha.5 - 2022-08-07
    • 5.32.1-alpha.4 - 2022-08-07
    • 5.32.1-alpha.3 - 2022-08-07
    • 5.32.1-alpha.2 - 2022-08-07
    • 5.32.1-alpha.1 - 2022-08-06
    • 5.32.1-alpha.0 - 2022-08-01
    • 5.32.0 - 2022-08-01
    • 5.31.1-alpha.10 - 2022-08-01
    • 5.31.1-alpha.9 - 2022-07-29
    • 5.31.1-alpha.8 - 2022-07-28
    • 5.31.1-alpha.7 - 2022-07-27
    • 5.31.1-alpha.6 - 2022-07-27
    • 5.31.1-alpha.5 - 2022-07-27
    • 5.31.1-alpha.4 - 2022-07-27
    • 5.31.1-alpha.2 - 2022-07-27
    • 5.31.1-alpha.1 - 2022-07-27
    • 5.31.1-alpha.0 - 2022-07-25
    • 5.31.0 - 2022-07-25
    • 5.30.8-alpha.13 - 2022-07-25
    • 5.30.8-alpha.12 - 2022-07-23
    • 5.30.8-alpha.11 - 2022-07-23
    • 5.30.8-alpha.10 - 2022-07-22
    • 5.30.8-alpha.9 - 2022-07-22
    • 5.30.8-alpha.8 - 2022-07-22
    • 5.30.8-alpha.7 - 2022-07-22
    • 5.30.8-alpha.6 - 2022-07-22
    • 5.30.8-alpha.5 - 2022-07-22
    • 5.30.8-alpha.4 - 2022-07-22
    • 5.30.8-alpha.3 - 2022-07-22
    • 5.30.8-alpha.2 - 2022-07-18
    • 5.30.8-alpha.1 - 2022-07-18
    • 5.30.8-alpha.0 - 2022-07-18
    • 5.30.7 - 2022-07-18
    • 5.30.7-alpha.8 - 2022-07-18
    • 5.30.7-alpha.7 - 2022-07-18
    • 5.30.7-alpha.6 - 2022-07-18
    • 5.30.7-alpha.5 - 2022-07-18
    • 5.30.7-alpha.4 - 2022-07-18
    • 5.30.7-alpha.3 - 2022-07-15
    • 5.30.7-alpha.2 - 2022-07-15
    • 5.30.7-alpha.1 - 2022-07-15
    • 5.30.7-alpha.0 - 2022-07-11
    • 5.30.6 - 2022-07-11
    • 5.30.6-alpha.6 - 2022-07-06
    • 5.30.6-alpha.5 - 2022-07-05
    • 5.30.6-alpha.4 - 2022-07-05
    • 5.30.6-alpha.3 - 2022-07-05
    • 5.30.6-alpha.2 - 2022-07-05
    • 5.30.6-alpha.1 - 2022-07-05
    • 5.30.6-alpha.0 - 2022-07-04
    • 5.30.5 - 2022-07-04
    • 5.30.5-alpha.8 - 2022-07-04
    • 5.30.5-alpha.7 - 2022-07-04
    • 5.30.5-alpha.6 - 2022-07-04
    • 5.30.5-alpha.4 - 2022-07-04
    • 5.30.5-alpha.3 - 2022-07-04
    • 5.30.5-alpha.2 - 2022-07-03
    • 5.30.5-alpha.1 - 2022-07-03
    • 5.30.5-alpha.0 - 2022-07-03
    • 5.30.4 - 2022-07-03
    • 5.30.4-alpha.1 - 2022-07-02
    • 5.30.4-alpha.0 - 2022-07-01
    • 5.30.3 - 2022-07-01
    • 5.30.3-alpha.0 - 2022-07-01
    • 5.30.2 - 2022-07-01
    • 5.30.2-alpha.0 - 2022-07-01
    • 5.30.1 - 2022-07-01
    • 5.30.1-alpha.9 - 2022-07-01
    • 5.30.1-alpha.8 - 2022-07-01
    • 5.30.1-alpha.7 - 2022-07-01
    • 5.30.1-alpha.6 - 2022-06-30
    • 5.30.1-alpha.5 - 2022-06-29
    • 5.30.1-alpha.4 - 2022-06-27
    • 5.30.1-alpha.3 - 2022-06-27
    • 5.30.1-alpha.2 - 2022-06-27
    • 5.30.1-alpha.1 - 2022-06-27
    • 5.30.0 - 2022-06-27
    • 5.29.1-alpha.16 - 2022-06-27
    • 5.29.1-alpha.15 - 2022-06-27
    • 5.29.1-alpha.14 - 2022-06-26
    • 5.29.1-alpha.13 - 2022-06-26
    • 5.29.1-alpha.12 - 2022-06-25
    • 5.29.1-alpha.11 - 2022-06-23
    • 5.29.1-alpha.10 - 2022-06-23
    • 5.29.1-alpha.9 - 2022-06-20
    • 5.29.1-alpha.8 - 2022-06-20
    • 5.29.1-alpha.7 - 2022-06-20
    • 5.29.1-alpha.6 - 2022-06-20
    • 5.29.1-alpha.5 - 2022-06-20
    • 5.29.1-alpha.4 - 2022-06-20
    • 5.29.1-alpha.3 - 2022-06-20
    • 5.29.1-alpha.2 - 2022-06-20
    • 5.29.1-alpha.1 - 2022-06-20
    • 5.29.1-alpha.0 - 2022-06-20
    • 5.29.0 - 2022-06-20
    • 5.28.1-alpha.8 - 2022-06-20
    • 5.28.1-alpha.7 - 2022-06-19
    • 5.28.1-alpha.6 - 2022-06-18
    • 5.28.1-alpha.5 - 2022-06-13
    • 5.28.1-alpha.4 - 2022-06-13
    • 5.28.1-alpha.3 - 2022-06-13
    • 5.28.1-alpha.2 - 2022-06-13
    • 5.28.1-alpha.1 - 2022-06-13
    • 5.28.1-alpha.0 - 2022-06-13
    • 5.28.0 - 2022-06-13
    • 5.27.2-alpha.16 - 2022-06-13
    • 5.27.2-alpha.15 - 2022-06-13
    • 5.27.2-alpha.14 - 2022-06-12
    • 5.27.2-alpha.13 - 2022-06-12
    • 5.27.2-alpha.12 - 2022-06-10
    • 5.27.2-alpha.11 - 2022-06-10
    • 5.27.2-alpha.10 - 2022-06-10
    • 5.27.2-alpha.9 - 2022-06-10
    • 5.27.2-alpha.8 - 2022-06-10
    • 5.27.2-alpha.7 - 2022-06-10
    • 5.27.2-alpha.6 - 2022-06-08
    • 5.27.2-alpha.5 - 2022-06-08
    • 5.27.2-alpha.4 - 2022-06-08
    • 5.27.2-alpha.3 - 2022-06-06
    • 5.27.2-alpha.2 - 2022-06-06
    • 5.27.2-alpha.1 - 2022-06-06
    • 5.27.2-alpha.0 - 2022-06-06
    • 5.27.1 - 2022-06-06
    • 5.27.1-alpha.17 - 2022-06-06
    • 5.27.1-alpha.16 - 2022-06-04
    • 5.27.1-alpha.15 - 2022-06-04
    • 5.27.1-alpha.14 - 2022-06-04
    • 5.27.1-alpha.13 - 2022-06-01
    • 5.27.1-alpha.12 - 2022-06-01
    • 5.27.1-alpha.11 - 2022-06-01
    • 5.27.1-alpha.10 - 2022-06-01
    • 5.27.1-alpha.9 - 2022-06-01
    • 5.27.1-alpha.8 - 2022-06-01
    • 5.27.1-alpha.7 - 2022-06-01
    • 5.27.1-alpha.6 - 2022-06-01
    • 5.27.1-alpha.5 - 2022-05-31
    • 5.27.1-alpha.4 - 2022-05-31
    • 5.27.1-alpha.3 - 2022-05-31
    • 5.27.1-alpha.2 - 2022-05-30
    • 5.27.1-alpha.1 - 2022-05-30
    • 5.27.1-alpha.0 - 2022-05-30
    • 5.27.0 - 2022-05-30
    • 5.26.1-alpha.42 - 2022-05-30
    • 5.26.1-alpha.41 - 2022-05-30
    • 5.26.1-alpha.40 - 2022-05-30
    • 5.26.1-alpha.39 - 2022-05-29
    • 5.26.1-alpha.38 - 2022-05-29
    • 5.26.1-alpha.37 - 2022-05-29
    • 5.26.1-alpha.36 - 2022-05-29
    • 5.26.1-alpha.35 - 2022-05-28
    • 5.26.1-alpha.34 - 2022-05-28
    • 5.26.1-alpha.33 - 2022-05-26
    • 5.26.1-alpha.32 - 2022-05-26
    • 5.26.1-alpha.31 - 2022-05-26
    • 5.26.1-alpha.30 - 2022-05-26
    • 5.26.1-alpha.29 - 2022-05-26
    • 5.26.1-alpha.28 - 2022-05-25
    • 5.26.1-alpha.27 - 2022-05-25
    • 5.26.1-alpha.26 - 2022-05-25
    • 5.26.1-alpha.25 - 2022-05-25
    • 5.26.1-alpha.23 - 2022-05-25
    • 5.26.1-alpha.22 - 2022-05-24
    • 5.26.1-alpha.21 - 2022-05-24
    • 5.26.1-alpha.20 - 2022-05-24
    • 5.26.1-alpha.19 - 2022-05-24
    • 5.26.1-alpha.18 - 2022-05-24
    • 5.26.1-alpha.17 - 2022-05-24
    • 5.26.1-alpha.16 - 2022-05-24
    • 5.26.1-alpha.15 - 2022-05-24
    • 5.26.1-alpha.14 - 2022-05-24
    • 5.26.1-alpha.13 - 2022-05-24
    • 5.26.1-alpha.12 - 2022-05-24
    • 5.26.1-alpha.11 - 2022-05-24
    • 5.26.1-alpha.10 - 2022-05-24
    • 5.26.1-alpha.9 - 2022-05-24
    • 5.26.1-alpha.8 - 2022-05-24
    • 5.26.1-alpha.7 - 2022-05-24
    • 5.26.1-alpha.6 - 2022-05-24
    • 5.26.1-alpha.5 - 2022-05-24
    • 5.26.1-alpha.4 - 2022-05-24
    • 5.26.1-alpha.3 - 2022-05-23
    • 5.26.1-alpha.2 - 2022-05-23
    • 5.26.1-alpha.1 - 2022-05-23
    • 5.26.1-alpha.0 - 2022-05-23
    • 5.26.0 - 2022-05-23
    • 5.25.1-alpha.19 - 2022-05-23
    • 5.25.1-alpha.18 - 2022-05-23
    • 5.25.1-alpha.15 - 2022-05-23
    • 5.25.1-alpha.14 - 2022-05-23
    • 5.25.1-alpha.13 - 2022-05-23
    • 5.25.1-alpha.12 - 2022-05-22
    • 5.25.1-alpha.11 - 2022-05-21
    • 5.25.1-alpha.10 - 2022-05-20
    • 5.25.1-alpha.9 - 2022-05-20
    • 5.25.1-alpha.8 - 2022-05-20
    • 5.25.1-alpha.7 - 2022-05-20
    • 5.25.1-alpha.6 - 2022-05-19
    • 5.25.1-alpha.5 - 2022-05-19
    • 5.25.1-alpha.4 - 2022-05-18
    • 5.25.1-alpha.2 - 2022-05-17
    • 5.25.1-alpha.1 - 2022-05-17
    • 5.25.1-alpha.0 - 2022-05-17
    • 5.25.0 - 2022-05-17
    • 5.24.1-alpha.14 - 2022-05-17
    • 5.24.1-alpha.13 - 2022-05-17
    • 5.24.1-alpha.12 - 2022-05-17
    • 5.24.1-alpha.11 - 2022-05-16
    • 5.24.1-alpha.10 - 2022-05-16
    • 5.24.1-alpha.9 - 2022-05-16
    • 5.24.1-alpha.8 - 2022-05-16
    • 5.24.1-alpha.7 - 2022-05-16
    • 5.24.1-alpha.6 - 2022-05-16
    • 5.24.1-alpha.5 - 2022-05-16
    • 5.24.1-alpha.4 - 2022-05-16
    • 5.24.1-alpha.3 - 2022-05-16
    • 5.24.1-alpha.2 - 2022-05-16
    • 5.24.1-alpha.1 - 2022-05-16
    • 5.24.1-alpha.0 - 2022-05-16
    • 5.24.0 - 2022-05-16
    • 5.23.1-alpha.25 - 2022-05-16
    • 5.23.1-alpha.24 - 2022-05-16
    • 5.23.1-alpha.23 - 2022-05-16
    • 5.23.1-alpha.22 - 2022-05-15
    • 5.23.1-alpha.21 - 2022-05-14
    • 5.23.1-alpha.20 - 2022-05-14
    • 5.23.1-alpha.19 - 2022-05-13
    • 5.23.1-alpha.18 - 2022-05-10
    • 5.23.1-alpha.17 - 2022-05-10
    • 5.23.1-alpha.15 - 2022-05-10
    • 5.23.1-alpha.14 - 2022-05-10
    • 5.23.1-alpha.13 - 2022-05-10
    • 5.23.1-alpha.12 - 2022-05-10
    • 5.23.1-alpha.11 - 2022-05-10
    • 5.23.1-alpha.10 - 2022-05-10
    • 5.23.1-alpha.8 - 2022-05-09
    • 5.23.1-alpha.7 - 2022-05-09
    • 5.23.1-alpha.6 - 2022-05-09
    • 5.23.1-alpha.4 - 2022-05-09
    • 5.23.1-alpha.3 - 2022-05-09
    • 5.23.1-alpha.1 - 2022-05-09
    • 5.23.1-alpha.0 - 2022-05-09
    • 5.23.0 - 2022-05-09
    • 5.22.1-alpha.14 - 2022-05-09
    • 5.22.1-alpha.13 - 2022-05-09
    • 5.22.1-alpha.11 - 2022-05-09
    • 5.22.1-alpha.10 - 2022-05-06
    • 5.22.1-alpha.9 - 2022-05-06
    • 5.22.1-alpha.8 - 2022-05-06
    • 5.22.1-alpha.7 - 2022-05-03
    • 5.22.1-alpha.6 - 2022-05-03
    • 5.22.1-alpha.5 - 2022-05-02
    • 5.22.1-alpha.4 - 2022-05-02
    • 5.22.1-alpha.2 - 2022-05-02
    • 5.22.1-alpha.1 - 2022-05-02
    • 5.22.1-alpha.0 - 2022-05-02
    • 5.22.0 - 2022-05-02
    • 5.21.1-alpha.11 - 2022-05-02
    • 5.21.1-alpha.10 - 2022-05-02
    • 5.21.1-alpha.9 - 2022-05-02
    • 5.21.1-alpha.8 - 2022-05-01
    • 5.21.1-alpha.7 - 2022-04-29
    • 5.21.1-alpha.6 - 2022-04-29
    • 5.21.1-alpha.4 - 2022-04-27
    • 5.21.1-alpha.3 - 2022-04-26
    • 5.21.1-alpha.2 - 2022-04-25
    • 5.21.1-alpha.1 - 2022-04-25
    • 5.21.1-alpha.0 - 2022-04-25
    • 5.21.0 - 2022-04-25
    • 5.20.1-alpha.16 - 2022-04-25
    • 5.20.1-alpha.15 - 2022-04-25
    • 5.20.1-alpha.14 - 2022-04-25
    • 5.20.1-alpha.12 - 2022-04-25
    • 5.20.1-alpha.11 - 2022-04-25
    • 5.20.1-alpha.10 - 2022-04-24
    • 5.20.1-alpha.9 - 2022-04-23
    • 5.20.1-alpha.8 - 2022-04-22
    • 5.20.1-alpha.7 - 2022-04-22
    • 5.20.1-alpha.6 - 2022-04-22
    • 5.20.1-alpha.5 - 2022-04-19
    • 5.20.1-alpha.4 - 2022-04-18
    • 5.20.1-alpha.2 - 2022-04-18
    • 5.20.1-alpha.1 - 2022-04-18
    • 5.20.1-alpha.0 - 2022-04-18
    • 5.20.0 - 2022-04-18
    • 5.19.1-alpha.15 - 2022-04-16
    • 5.19.1-alpha.14 - 2022-04-15
    • 5.19.1-alpha.13 - 2022-04-14
    • 5.19.1-alpha.12 - 2022-04-12
    • 5.19.1-alpha.11 - 2022-04-12
    • 5.19.1-alpha.10 - 2022-04-11
    • 5.19.1-alpha.9 - 2022-04-11
    • 5.19.1-alpha.8 - 2022-04-11
    • 5.19.1-alpha.7 - 2022-04-11
    • 5.19.1-alpha.6 - 2022-04-11
    • 5.19.1-alpha.4 - 2022-04-11
    • 5.19.1-alpha.3 - 2022-04-11
    • 5.19.1-alpha.2 - 2022-04-11
    • 5.19.1-alpha.1 - 2022-04-11
    • 5.19.1-alpha.0 - 2022-04-11
    • 5.19.0 - 2022-04-11
    • 5.18.1-alpha.11 - 2022-04-11
    • 5.18.1-alpha.10 - 2022-04-09
    • 5.18.1-alpha.9 - 2022-04-08
    • 5.18.1-alpha.8 - 2022-04-08
    • 5.18.1-alpha.7 - 2022-04-08
    • 5.18.1-alpha.6 - 2022-04-08
    • 5.18.1-alpha.5 - 2022-04-08
    • 5.18.1-alpha.4 - 2022-04-05
    • 5.18.1-alpha.3 - 2022-04-05
    • 5.18.1-alpha.2 - 2022-04-05
    • 5.18.1-alpha.1 - 2022-04-05
    • 5.18.1-alpha.0 - 2022-04-04
    • 5.18.0 - 2022-04-04
    • 5.17.1-alpha.10 - 2022-04-03
    • 5.17.1-alpha.9 - 2022-03-31
    • 5.17.1-alpha.8 - 2022-03-31
    • 5.17.1-alpha.7 - 2022-03-31
    • 5.17.1-alpha.6 - 2022-03-31
    • 5.17.1-alpha.5 - 2022-03-31
    • 5.17.1-alpha.4 - 2022-03-31
    • 5.17.1-alpha.3 - 2022-03-31
    • 5.17.1-alpha.2 - 2022-03-30
    • 5.17.1-alpha.1 - 2022-03-30
    • 5.17.1-alpha.0 - 2022-03-28
    • 5.17.0 - 2022-03-28
    • 5.16.1-alpha.20 - 2022-03-28
    • 5.16.1-alpha.19 - 2022-03-27
    • 5.16.1-alpha.18 - 2022-03-27
    • 5.16.1-alpha.17 - 2022-03-27
    • 5.16.1-alpha.16 - 2022-03-27
    • 5.16.1-alpha.15 - 2022-03-27
    • 5.16.1-alpha.14 - 2022-03-27
    • 5.16.1-alpha.13 - 2022-03-27
    • 5.16.1-alpha.12 - 2022-03-27
    • 5.16.1-alpha.11 - 2022-03-26
    • 5.16.1-alpha.10 - 2022-03-22
    • 5.16.1-alpha.9 - 2022-03-22
    • 5.16.1-alpha.8 - 2022-03-22
    • 5.16.1-alpha.7 - 2022-03-22
    • 5.16.1-alpha.6 - 2022-03-22
    • 5.16.1-alpha.5 - 2022-03-22
    • 5.16.1-alpha.4 - 2022-03-22
    • 5.16.1-alpha.3 - 2022-03-22
    • 5.16.1-alpha.2 - 2022-03-22
    • 5.16.1-alpha.1 - 2022-03-22
    • 5.16.1-alpha.0 - 2022-03-21
    • 5.16.0 - 2022-03-21
    • 5.15.1-alpha.6 - 2022-03-21
    • 5.15.1-alpha.5 - 2022-03-20
    • 5.15.1-alpha.4 - 2022-03-18
    • 5.15.1-alpha.3 - 2022-03-18
    • 5.15.1-alpha.2 - 2022-03-18
    • 5.15.1-alpha.1 - 2022-03-18
    • 5.15.1-alpha.0 - 2022-03-14
    • 5.15.0 - 2022-03-14
    • 5.14.1-alpha.22 - 2022-03-14
    • 5.14.1-alpha.21 - 2022-03-14
    • 5.14.1-alpha.20 - 2022-03-14
    • 5.14.1-alpha.19 - 2022-03-14
    • 5.14.1-alpha.18 - 2022-03-14
    • 5.14.1-alpha.17 - 2022-03-14
    • 5.14.1-alpha.16 - 2022-03-14
    • 5.14.1-alpha.15 - 2022-03-11
    • 5.14.1-alpha.14 - 2022-03-11
    • 5.14.1-alpha.13 - 2022-03-10
    • 5.14.1-alpha.12 - 2022-03-09
    • 5.14.1-alpha.11 - 2022-03-09
    • 5.14.1-alpha.10 - 2022-03-09
    • 5.14.1-alpha.9 - 2022-03-09
    • 5.14.1-alpha.7 - 2022-03-08
    • 5.14.1-alpha.6 - 2022-03-07
    • 5.14.1-alpha.5 - 2022-03-07
    • 5.14.1-alpha.4 - 2022-03-07
    • 5.14.1-alpha.3 - 2022-03-07
    • 5.14.1-alpha.2 - 2022-03-07
    • 5.14.1-alpha.1 - 2022-03-07
    • 5.14.1-alpha.0 - 2022-03-07
    • 5.14.0 - 2022-03-07
    from @typescript-eslint/parser GitHub release notes
    Commit messages
    Package name: @typescript-eslint/parser
    • c943b84 chore: publish v5.46.1
    • 88cd9ca chore: more aggressively clean local dev caches (#6197)
    • 0c6bea6 chore: group nx renovate PRs together (#6198)
    • 47241bb docs: overhaul branding and add new logo (#6147)
    • 32f12b2 chore: update sponsors (#6183)
    • 1e1573a chore: publish v5.46.0
    • 0167d91 chore: add working-directory input to prepare-install action (#6181)
    • bcad11b docs: add Rule Deprecations page (#6156)
    • b2b8ce2 chore(deps): update dessant/lock-threads action to v4 (#6175)
    • 92d07df chore: remove versions table from simple bug report form (#6170)
    • dbc8671 docs: add FAQ entry about running ESLint on transpiled code (#6155)
    • d91a5fc fix(eslint-plugin): [ban-types] update message to suggest `object` instead of `Record<string, unknown>` (#6079)
    • 8a91cbd feat(eslint-plugin): [prefer-nullish-coalescing] logic and test for strict null checks (#6174)
    • 2d0a883 chore: publish v5.45.1
    • 26c4b46 docs(eslint-plugin): [member-ordering] remove invalid private-abstract-* mention (#6164)
    • 768e2a1 chore: update sponsors (#6166)
    • 2288b35 chore(eslint-plugin): valid typescript error code in eslint-recommended (#6165)
    • opened by snyk-bot 0
  • [Snyk] Security upgrade nodemon from 2.0.15 to 2.0.17

    [Snyk] Security upgrade nodemon from 2.0.15 to 2.0.17

    Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of this project.

    Changes included in this PR

    • Changes to the following files to upgrade the vulnerable dependencies to a fixed version:
      • package.json
    ⚠️ Warning
    Failed to update the package-lock.json, please update manually before merging.
    

    Vulnerabilities that will be fixed

    With an upgrade:

    Severity | Priority Score (*) | Issue | Breaking Change | Exploit Maturity :-------------------------:|-------------------------|:-------------------------|:-------------------------|:------------------------- medium severity | 484/1000
    Why? Has a fix available, CVSS 5.4 | Open Redirect
    SNYK-JS-GOT-2932019 | No | No Known Exploit

    (*) Note that the real score may have changed since the PR was raised.

    Commit messages
    Package name: nodemon The new version differs by 18 commits.
    • 27e91c3 fix: update packge-lock
    • 0144e4f fix: bump update-notifier to v6.0.0 (#2029)
    • c870342 chore: update supporters
    • 5c0b472 chore: add supporter
    • e26aaa9 fix: support windows by using path.delimiter
    • 9d1afd7 docs: add syntax highlighting to sample-nodemon.md (#1982) (#2004)
    • de5d32a docs: Unified Node.js capitalization (#1986)
    • e890927 docs: add note to faq with example showing how to watch any file extension (#1931)
    • bc4547b chore: update sponsors
    • 07159c5 chore: add supporters
    • cd100da chore: update supporters
    • 6a34922 chore: supporters
    • e5d6067 chore: updating supporters
    • 242f9f7 Merge branch 'main' of github.com:remy/nodemon
    • 141e58c chore: update supporters
    • 53422af ci(release): workflow uses 'npm' cache (#1933)
    • 581c641 ci(node.js): workflow uses 'npm' cache (#1934)
    • cb1c8b9 docs: Fix typo in faq.md (#1950)

    See the full diff

    Check the changes in this PR to ensure they won't cause issues with your project.


    Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.

    For more information: 🧐 View latest project report

    🛠 Adjust project settings

    📚 Read more about Snyk's upgrade and patch logic


    Learn how to fix vulnerabilities with free interactive lessons:

    🦉 Open Redirect

    opened by snyk-bot 0
  • [Snyk] Upgrade axios from 0.26.1 to 0.27.2

    [Snyk] Upgrade axios from 0.26.1 to 0.27.2

    This PR was automatically created by Snyk using the credentials of a real user.


    Snyk has created this PR to upgrade axios from 0.26.1 to 0.27.2.

    merge advice :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


    • The recommended version is 3 versions ahead of your current version.
    • The recommended version was released 21 days ago, on 2022-04-27.
    Release notes
    Package name: axios
    • 0.27.2 - 2022-04-27

      0.27.2 (April 27, 2022)

      Fixes and Functionality:

      • Fixed FormData posting in browser environment by reverting #3785 (#4640)
      • Enhanced protocol parsing implementation (#4639)
      • Fixed bundle size
    • 0.27.1 - 2022-04-26

      0.27.1 (April 26, 2022)

      Fixes and Functionality:

      • Removed import of url module in browser build due to huge size overhead and builds being broken (#4594)
      • Bumped follow-redirects to ^1.14.9 (#4615)
    • 0.27.0 - 2022-04-25

      0.27.0 (April 25, 2022)

      Breaking changes:

      • New toFormData helper function that allows the implementor to pass an object and allow axios to convert it to FormData (#3757)
      • Removed functionality that removed the the Content-Type request header when passing FormData (#3785)
      • (*) Refactored error handling implementing AxiosError as a constructor, this is a large change to error handling on the whole (#3645)
      • Separated responsibility for FormData instantiation between transformRequest and toFormData (#4470)
      • (*) Improved and fixed multiple issues with FormData support (#4448)

      QOL and DevX improvements:

      • Added a multipart/form-data testing playground allowing contributors to debug changes easily (#4465)

      Fixes and Functionality:

      • Refactored project file structure to avoid circular imports (#4515) & (#4516)
      • Bumped follow-redirects to ^1.14.9 (#4562)

      Internal and Tests:

      • Updated dev dependencies to latest version

      Documentation:

      • Fixing incorrect link in changelog (#4551)

      Notes:

      • (*) Please read these pull requests before updating, these changes are very impactful and far reaching.
    • 0.26.1 - 2022-03-09

      0.26.1 (March 9, 2022)

      Fixes and Functionality:

      • Refactored project file structure to avoid circular imports (#4220)
    from axios GitHub release notes

    Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

    For more information:

    🧐 View latest project report

    🛠 Adjust upgrade PR settings

    🔕 Ignore this dependency or unsubscribe from future upgrade PRs

    opened by D3vl0per 0
  • Add an option to the guild.join method to select platform

    Add an option to the guild.join method to select platform

    Currently, only the guildId can be passed to the guild.join method, as seen here: https://github.com/agoraxyz/guild-sdk/blob/66120a1bcbb6bc1b257e1dde490fd4d10328fa65/src/client.ts#L156-L175

    However, this won't return the inviteLink and alreadyJoined properties as specified by the type JoinResponse: https://github.com/agoraxyz/guild-sdk/blob/66120a1bcbb6bc1b257e1dde490fd4d10328fa65/src/types.ts#L8-L11

    Can platform and platformUserId be added to guild.join? For example, this is a valid payload:

    {
      guildId: 481
      platform: "DISCORD"
      platformUserId: "965726448839163915"
    }
    
    opened by KevinLu 3
  • GetGuildByIdResponse type doesn't have `admins` property

    GetGuildByIdResponse type doesn't have `admins` property

    Despite /v1/guild/:id returning an admins property in the response, this property does not exist on type GetGuildByIdResponse.

    Example: GET https://api.guild.xyz/v1/guild/our-guild

    Response:

    {
       admins: [
         0: {id: 45, address: "0xaf17d2da0ccfc4382ba48554be601f28903d3eda", isOwner: false}
         1: {id: 113, address: "0x6c6541cc3ec6bfc2d7b0ca48ccb0225cbbea9b59", isOwner: true}
         2: {id: 12284, address: "0xa65eef5d0566ef2ed242d8719111e3116333278d", isOwner: false}
      ],
      createdAt: "2022-02-14T20:33:40.876+00:00",
      description: "",
      hideFromExplorer: false,
      id: 1985,
      ...
    }
    
    opened by KevinLu 0
Owner
Agora.xyz
Building essentials for internet communities.
Agora.xyz
Farcaster.xyz bot for casting random color names

fc-bot-color-names A Farcaster bot that sends random color names to the network, using data from meodai/color-names. The bot is currently registered t

Matt DesLauriers 6 Aug 5, 2022
A simple Multi Guild Modmail Bot coded in v13 using the enmap Database Working on any host, like repl.it or vps! Its fast and working bug free + Security options!

Multiguild-Modmail A simple Multi Guild Modmail Bot coded in v13 using the enmap Database Working on any host, like repl.it or vps! Its fast and worki

Tomato6966 54 Oct 20, 2022
Simple Minecraft Guild Bridge Made Using TypeScript DiscordX and Mineflayer.

Create a discord bot with TypeScript and Decorators! Content Demo Installation Use global command only Use CommonJS Remove rest api server Demo CodeSa

null 2 Aug 10, 2022
General multipurpose bot for the Overextended Discord guild.

OxBot Both Development and Production require use of Docker Developmment Setting up Create a .env file with the following structure structure found in

Overextended 4 Jul 30, 2022
A Single Guild Welcome Bot Made with ♥ By Ahad#3257

welcome-bot A Single Guild Welcome Bot Made with ♥ By Ahad#3257 How to Use? Open config.json and enter your bot's token there. Make sure to turn on GU

Ahad 11 Dec 30, 2022
This is a multi guild verifecation system for new users that join the server.

This is a multi guild verification system for new users that join the server. You can use this to prevent raiders, bad people and many more!

LunarCodes 19 Dec 5, 2022
Whatsapp bot using Bailey multi device module, using nodejs and open source, I accept ideas from public

Allen Bot-Wa Keep copyright, Created by lolhuman | Please read carefully Content Description Example Highlights TODO Installation FAQ Contributing Con

Pais 35 Dec 3, 2022
🎥 ⬇️ 📦 - Public Video URLs.

WatchVideoByLink WatchVideoByLink is a web-app that allows you to watch, download and organize public video URLs. Why WatchVideoByLink? | Installation

Mohamed Bakoush 142 Dec 12, 2022
2021 ekimde yaptığım ekip veya public botu az incele anlarsın

Richard Ekip Botu V2 Bot 2 Guard, Database, Moderation ve Register sistemlerinden oluşuyor. Ekip veya Public hiç hatırlamıyorum düzenle istediğin gibi

The Sarsılmaz 10 Apr 11, 2022
Mikasa Açkerman's source code, public repo.

I dont know how to fucking make bots, dont ask me! Ne bakıyorsun lan, simit var ekmek var poğaça var ne bakıyon? To use that source code you need to d

thumbsup 6 Dec 24, 2022
dscbots.js is a Node.js module that allows you to interact with the Discord API without any complications.

Credits Goodsie - Helping me with the websocketmanager About dscbots.js is a Node.js module that allows you to interact with the Discord API without a

Scarlot Spy 0 Nov 29, 2022
A module that helps you to create minigames with whatsapp-web.js.

wa-minigames A module that helps you to create minigames with whatsapp-web.js. Installation npm install whatsapp-web.js npm install wa-minigames Examp

Alon Schwartzblat 5 May 13, 2022
Enhanced Collector Module for Discord.js

djs-extended-collectors NOT: You can write your suggestions on Discord. Async Collectors is coming soon. Why djs-extended-collectors? TypeScript Suppo

Davut Özgür Süküti 9 Dec 15, 2022
Simple WhatsApp MD BOT. Get a API key from ZEN API

ALIEN ALFA-MD Contact Me: ❗❗FORK THIS BEFORE PROCEEDING Use This Button To Fork Now Scan QR Code For Session Change Session In Github ⚠️ Session Chang

TOXIC ALIEN 46 Dec 28, 2022
Rule YouTube, Soundcloud and Vimeo player with one API

Polyplayer Polyplayer allows you to rule YouTube's, Soundcloud's and Vimeo's player using one API. Features Playing, pausing, stopping Seek to absolut

Marius 41 Sep 24, 2022
HTML5

One file. Any browser. Same UI. Author: John Dyer http://j.hn/ Website: http://mediaelementjs.com/ License: MIT Meaning: Use everywhere, keep copyrigh

MediaElement.js 8k Dec 27, 2022
A Javascript library for working with Audio. It provides a consistent API for loading and playing audio on different browsers and devices. Currently supports WebAudio, HTML5 Audio, Cordova / PhoneGap, and a Flash fallback.

SoundJS SoundJS is a library to make working with audio on the web easier. It provides a consistent API for playing audio in different browsers, inclu

CreateJS 4.3k Dec 31, 2022
HTML5

One file. Any browser. Same UI. Author: John Dyer http://j.hn/ Website: http://mediaelementjs.com/ License: MIT Meaning: Use everywhere, keep copyrigh

MediaElement.js 8k Jan 8, 2023
A Node JS Express/Serverless demo application that creates a slideshow video using the Pexels image library and Shotstack video editing API.

Shotstack Pexels Slideshow Video Demo This project demonstrates how to use the Shotstack cloud video editing API to create a video using an HTML form

Shotstack 25 Dec 9, 2022