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

wechaty dependency modules deep cleaning #1917

Closed
suntong opened this issue Feb 23, 2020 · 5 comments
Closed

wechaty dependency modules deep cleaning #1917

suntong opened this issue Feb 23, 2020 · 5 comments

Comments

@suntong
Copy link
Contributor

suntong commented Feb 23, 2020

1. Versions

  • What is your wechaty version?
    Answer: 0.30.23

  • What is your wechaty-puppet-XXX(padchat/puppeteer/) version?
    Answer: wechaty-puppet-puppeteer@0.18.3 / wechaty-puppet-mock@0.16.1

  • What is your node version? (run node --version)
    Answer: v12.9.1

  • What os are you using
    Answer: Ubuntu 18.04.2 LTS

2. Describe the issue

Following up from wechaty/puppet-mock#33,

rm -rf package-lock.json
rm -rf node_modules
npm install

# However, the problem is:

$ npm list > /dev/null
npm ERR! peer dep missing: eslint@^5.0.0, required by @typescript-eslint/eslint-plugin@1.13.0
npm ERR! peer dep missing: eslint@^5.0.0, required by @typescript-eslint/eslint-plugin-tslint@1.13.0
npm ERR! peer dep missing: eslint@^5.0.0, required by @typescript-eslint/parser@1.13.0

I.e.,

  • eslint is missing, but is it necessary as a local package? I have eslint installed as global package already.
  • if it is, then its version is way old.

Moreover, npm-check reports that,

$ npm-check
@chatie/eslint-config      ð  NOTUSED?  Still using @chatie/eslint-config?
                                        Depcheck did not find code similar to require('@chatie/eslint-config') or import from '@chatie/eslint-config'.
                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                        Use --skip-unused to skip this check.
                                        To remove this package: npm uninstall --save-dev @chatie/eslint-config

@chatie/git-scripts        ð  NOTUSED?  Still using @chatie/git-scripts?
                                        Depcheck did not find code similar to require('@chatie/git-scripts') or import from '@chatie/git-scripts'.
                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                        Use --skip-unused to skip this check.
                                        To remove this package: npm uninstall --save-dev @chatie/git-scripts

@chatie/tsconfig           ð  NOTUSED?  Still using @chatie/tsconfig?
                                        Depcheck did not find code similar to require('@chatie/tsconfig') or import from '@chatie/tsconfig'.
                                        Check your code before removing as depcheck isn't able to foresee all ways dependencies can be used.
                                        Use --skip-unused to skip this check.
                                        To remove this package: npm uninstall --save-dev @chatie/tsconfig

So now the question is, are the following modules really necessary for wechaty?

@chatie/eslint-config
@chatie/git-scripts
@chatie/tsconfig

6. Full Output Logs

Show Logs
$ npm list eslint 
wechaty-getting-started@0.1.19
+-- @chatie/eslint-config@0.8.1
| `-- UNMET PEER DEPENDENCY eslint@6.8.0 
`-- eslint@6.8.0 

npm ERR! peer dep missing: eslint@^5.0.0, required by @typescript-eslint/eslint-plugin@1.13.0
npm ERR! peer dep missing: eslint@^5.0.0, required by @typescript-eslint/eslint-plugin-tslint@1.13.0
npm ERR! peer dep missing: eslint@^5.0.0, required by @typescript-eslint/parser@1.13.0

[bug]

@huan
Copy link
Member

huan commented Feb 23, 2020

So now the question is, are the following modules really necessary for wechaty?

Short answer: NO.

Long version:

  1. For development: Yes, they are necessary.
  2. For production: No, they aren't.

You can run npm install --production to do not install all of them without any problem for running wechaty as a required module. (And you should do this on your server when you deploy your system)

@suntong
Copy link
Contributor Author

suntong commented Feb 23, 2020

Oh, thanks for the swift reply.

If using npm install --production, is there any way to silence the npm outdated & npm list complains?

@huan
Copy link
Member

huan commented Feb 23, 2020

- npm list > /dev/null
+ npm list > /dev/null 2>&1

@suntong
Copy link
Contributor Author

suntong commented Feb 23, 2020

OK then, as long as I know that they are not needed, I'm OK with the npm list complains then, as it is the npm design issue, not wechaty's. Thanks for your help @huan.

@suntong suntong closed this as completed Feb 23, 2020
huan added a commit that referenced this issue Feb 23, 2020
huan added a commit to Chatie/eslint-config that referenced this issue Feb 23, 2020
huan added a commit to huan/tstest that referenced this issue Feb 23, 2020
huan added a commit that referenced this issue Feb 23, 2020
@huan
Copy link
Member

huan commented Feb 23, 2020

Yes, everything is good, you are safe and those warning messages can be ignored without any problem.

However, I have just cleaned some modules. Now the npm outdated output is cleaner:

$npm outdated
Package                Current  Wanted  Latest  Location
@chatie/eslint-config    0.9.1   0.9.1   0.8.1  wechaty
wechaty-puppet-hostie   0.3.19  0.3.19   0.3.5  wechaty
wechaty-puppet-mock     0.17.5  0.17.5  0.16.1  wechaty

And the npm list output:

$ npm list > /dev/null
npm ERR! peer dep missing: tslint@^5.0.0, required by @typescript-eslint/eslint-plugin-tslint@2.20.0
npm ERR! peer dep missing: tslint@^5.0.0, required by tslint-eslint-rules@5.4.0
npm ERR! extraneous: path-key@3.1.1 /home/huan/chatie/wechaty/node_modules/cross-env/node_modules/path-key
npm ERR! extraneous: shebang-command@2.0.0 /home/huan/chatie/wechaty/node_modules/cross-env/node_modules/shebang-command
npm ERR! extraneous: which@2.0.2 /home/huan/chatie/wechaty/node_modules/cross-env/node_modules/which
npm ERR! extraneous: markdown-it@10.0.0 /home/huan/chatie/wechaty/node_modules/markdownlint-cli/node_modules/markdown-it
npm ERR! missing: markdown-it@10.0.0, required by markdownlint@0.19.0
npm ERR! extraneous: diff@3.5.0 /home/huan/chatie/wechaty/node_modules/tstest/node_modules/diff
npm ERR! missing: diff@^3.5.0, required by sinon@7.5.0

With Wechaty@0.31.22:

$ npm version
{ wechaty: '0.31.22',
  npm: '6.11.1',
  ares: '1.15.0',
  cldr: '34.0',
  http_parser: '2.8.0',
  icu: '63.2',
  modules: '64',
  napi: '3',
  nghttp2: '1.37.0',
  node: '10.15.2',
  openssl: '1.1.1c',
  tz: '2019a',
  unicode: '11.0',
  uv: '1.30.1',
  v8: '6.8.275.32-node.12',
  zlib: '1.2.11' }

su-chang added a commit to su-chang/wechaty that referenced this issue Feb 26, 2020
* update puppeteer puppet

* 0.31.18

* upgrade to wechaty-puppet@0.20

* 0.31.19

* upgrade puppet configs

* 0.31.20

* dep upgrade & clean (wechaty#1917)

* 0.31.21

* upgrade eslint-config (wechaty#1917)

* 0.31.22

* use green version of powered by wechaty badge

* 0.31.23

* use NODE_AUTH_TOKEN instead of NPM_TOKEN

* 0.31.24

* use bright green for badge

* 0.31.25

* restore pkg-jq

* 0.31.26

* Upgrade docker base image & node.js (wechaty#1920)

* 0.32.1

* fix scan status for padplus (wechaty/wechaty-puppet-padplus#161)

* 0.32.2

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>
huan added a commit that referenced this issue Mar 2, 2020
* 0.29.3

* Merge master (#18)

* update puppeteer puppet

* 0.31.18

* upgrade to wechaty-puppet@0.20

* 0.31.19

* upgrade puppet configs

* 0.31.20

* dep upgrade & clean (#1917)

* 0.31.21

* upgrade eslint-config (#1917)

* 0.31.22

* use green version of powered by wechaty badge

* 0.31.23

* use NODE_AUTH_TOKEN instead of NPM_TOKEN

* 0.31.24

* use bright green for badge

* 0.31.25

* restore pkg-jq

* 0.31.26

* Upgrade docker base image & node.js (#1920)

* 0.32.1

* fix scan status for padplus (wechaty/wechaty-puppet-padplus#161)

* 0.32.2

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>

* fix: new Image is forbidden.

* 0.32.3

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>
huan added a commit that referenced this issue Jun 30, 2020
* 0.29.3

* Merge master (#18)

* update puppeteer puppet

* 0.31.18

* upgrade to wechaty-puppet@0.20

* 0.31.19

* upgrade puppet configs

* 0.31.20

* dep upgrade & clean (#1917)

* 0.31.21

* upgrade eslint-config (#1917)

* 0.31.22

* use green version of powered by wechaty badge

* 0.31.23

* use NODE_AUTH_TOKEN instead of NPM_TOKEN

* 0.31.24

* use bright green for badge

* 0.31.25

* restore pkg-jq

* 0.31.26

* Upgrade docker base image & node.js (#1920)

* 0.32.1

* fix scan status for padplus (wechaty/wechaty-puppet-padplus#161)

* 0.32.2

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>

* fix: upgrade hostie@0.8.4

* 0.41.23

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>
huan added a commit that referenced this issue Jun 30, 2020
* 0.29.3

* Merge master (#18)

* update puppeteer puppet

* 0.31.18

* upgrade to wechaty-puppet@0.20

* 0.31.19

* upgrade puppet configs

* 0.31.20

* dep upgrade & clean (#1917)

* 0.31.21

* upgrade eslint-config (#1917)

* 0.31.22

* use green version of powered by wechaty badge

* 0.31.23

* use NODE_AUTH_TOKEN instead of NPM_TOKEN

* 0.31.24

* use bright green for badge

* 0.31.25

* restore pkg-jq

* 0.31.26

* Upgrade docker base image & node.js (#1920)

* 0.32.1

* fix scan status for padplus (wechaty/wechaty-puppet-padplus#161)

* 0.32.2

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>

* fix: upgrade hostie@0.8.4

* 0.41.23

* fix: upgrade hostie@0.8.5

* 0.41.24

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>
huan added a commit that referenced this issue Mar 19, 2021
* 0.29.3

* Merge master (#18)

* update puppeteer puppet

* 0.31.18

* upgrade to wechaty-puppet@0.20

* 0.31.19

* upgrade puppet configs

* 0.31.20

* dep upgrade & clean (#1917)

* 0.31.21

* upgrade eslint-config (#1917)

* 0.31.22

* use green version of powered by wechaty badge

* 0.31.23

* use NODE_AUTH_TOKEN instead of NPM_TOKEN

* 0.31.24

* use bright green for badge

* 0.31.25

* restore pkg-jq

* 0.31.26

* Upgrade docker base image & node.js (#1920)

* 0.32.1

* fix scan status for padplus (wechaty/wechaty-puppet-padplus#161)

* 0.32.2

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>

* merge master (#20)

* 0.45.3

* 0.45.4

* upgrade puppet to use async-map-like memory-card

* upgrade puppet

* 0.45.5

* build onbuild docker image

* 0.45.6

* test for onbuild home dir

* 0.45.7

* deploy wechaty/onbuld

* fix test for both wechaty & /bot

* 0.45.8

* publish to wechaty/wechatyh

* 0.45.9

* build with onbuld

* 0.45.10

* rename zixia/wechaty -> wechaty/wechaty

* 0.45.11

* fix typo

* 0.45.12

* fix onbuild npm run

* 0.45.13

* update official example

* Update README.md

* fix asscessory tests, and protect user class constructor from public to private

* Increase MaxListener for Wechaty

* 0.45.14

* add plugin uninstaller logic

* 0.45.15

* fix race condition for plugin uninstallation

* 0.45.16

* template clean

* 0.45.17

* upgrade puppet

* 0.46.0

* 0.46.1

* add new puppet for official account

* 0.46.2

* Wechaty is a Conversational SDK for Chatbot Makers

* fix bio

* 0.46.3

* clean log message

* 0.46.4

* upgrade hostie

* 0.45.6

* 0.46.5

* 0.47.0

* 0.47.1

* support onbuild:version

* 0.47.2

* use artifact image name

* 0.47.3

* clean version & tag

* 0.47.4

* 0.47.5

* fix hostie start bug

* 0.47.6

* clean

* 0.46.5

* 0.47.7

* add svg logos

* use wechaty.js.org host

* 0.47.7

* 0.47.8

* update

* 0.47.9

* use docker for changelog

* 0.47.10

* update changelog

* 0.47.11

* use wechaty.js.org/qrcode/ to replace wechaty.github.io/qrcode/

* 0.47.12

* Update README.md

* feat: add scoped wxwork puppet into puppet config (#2043)

* add scoped wxwork puppet into puppet config

* skip install scoped puppet

* 0.47.13

* add phone method in contact class (#2039)

* add phone method in contact class

* 0.47.13

* 0.47.14

* update wechaty-puppet version

* add jsdoc for contact.phone

* use puppet.dirtyPayload (wechaty/puppet-service#43)

* 0.47.15

* fix dirty exception

* 0.47.16

* TODO: implement the dirty logic (wechaty/puppet-service#43)

* 0.47.17

* TODO: implement the dirty logic (wechaty/puppet-service#43)

* 0.47.18

* implement the dirty logic (wechaty/puppet-service#43)

* 0.47.19

* clean

* 0.47.20

* remove deprecated methods (#2049)

* 0.47.21

* Upgrade to TypeScript 4.0!

* 0.47.22

* feat: add more methods into contact class (#2048)

* add more methods into contact class

* fix code with new wechaty-puppet

* 0.47.21

* 0.47.23

* throw a nice error message when we call user module before start wechaty

* 0.47.24

* 0.48.0 (#2050)

* bump hostie version to be the stable one (#2051)

* bump hostie version to be the stable one

* 0.48.1

* link images to wechaty.js.org

* update links

* 0.48.2

* update jsdocs

* 0.48.3

* add gitter puppet

* 0.48.4

* fix typo

* 0.48.5

* add location user module

* 0.47.25

* 0.48.6

* clean

* 0.48.7

* add telegram channel for wechaty

* 0.48.8

* add bibtex cite code

* 0.48.9

* add star history badge

* 0.48.10

* Split to trunks when making requests of room.findAll() and room.ready() (#2067)

* add pagination on room.findAll() and room.ready()

* 0.48.11

* fix #2073 (#2074)

* fix #2073

* 0.48.12

* 0.48.13

* Bump minor 49 (#2078)

* 0.49.0

* update hostie version to take advantage of the new stream grpc methods

* fix io client qrcode by encodeURIComponent

* 0.48.11

* upgrade deps

* 0.49.1

* upgrade puppet to v0.33

* 0.49.2

* 0.49.3

* 0.49.4

* fix typos

* 0.49.5

* clean

* Update README.md

* add credit link

* fix typo

* upgrade json-rpc-peer to v0.17

* 0.49.7

* 0.49.8

* Update Dockerfile (#2079)

按照 #1986 的方法用docker创建Hostie Token时,docker端报错。加入libxtst6库后可以完美运行。

* 0.50.0

* 0.50.1

* clean scan payload after login

* 0.50.2

* enable io sync message botie support

* 0.50.3

* use source for botie payload

* 0.50.4

* add whatsapp to official puppet names (wechaty/puppet-whatsapp#1)

* 0.50.5

* use a helper function for better FileBox instance check (wechaty/puppet-service#99)

* 0.50.6

* loost Puppet instance type checking (#2024)

* 0.50.7

* create looseInstanceOfClass (#2090) (#2091)

* create looseInstanceOfClass (#2090)

* 0.50.8

* 0.51.0

* 0.51.1

* fix file-box

* fix file-box

* 0.51.2

* rename from -> talker (#2094)

* 0.51.3

* add gitter & deprecate padplus

* strict typing check for typescript v4

* 0.51.4

* Update contact.ts (#2095)

fix: return payload friend

* rename from() to talker() from message

* 0.51.5

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* add wechaty-puppet-padlocal to the puppet config (#2102)

* 0.51.6

* 0.51.7

* remove padplus from smoke testing (#2087)

* 0.51.8

* add url link unit test

* 0.51.9

* add strict check

* clean

* 0.51.10

* Update room-invitation.ts (#2104)

topic() returns a Promise<string> instead of Promise<Contact>. The document is incorrect.

* add puppet event to emitter typing

* 0.51.11

* add puppet to wechaty event names

* Working on RxJS related deps

* 0.53.1

* Rename NODE_AUTH_TOKEN -> NPM_TOKEN

* Use Debian instead of Ubuntu for our Docker (#2114)

* 0.53.2

* Update Node.js v12 -> v14 (#2115)

* 0.53.3

* RPA SDK

* RPA SDK

* use cache to speed up github action

* use cache for node & npm

* 0.53.4

* node v15 not support grpc yet

* 0.53.5

* Update package.json

* Upgrade pkg-jq

* use better cache for gh actions

* 0.53.6

* 0.53.7

* Update README.md (#2118)

change puppet service provider link

* use naive hashFile

* 0.53.8

* fix typo

* 0.53.9

* rename wechaty-puppet-hostie -> wechaty-puppet-service (#2124)

* add deprecate warning message for WECHATY_HOSTIE_PORT (#2122)

* 0.55.1

* 0.56.0

* 0.56.1

* Changelog for v0.56

* compatible with wechaty-puppet-hostie module name (wechaty/puppet-service#118)

* 0.56.2

* use node v12 instead of v14 in docker image for maximum compatibility. (e.g. huggingface/tokenizers#603)

* 0.56.3

* 0.57.0

* default puppet: service (#2127)

* 0.57.1

* upgrade wechaty-puppet to v0.34

* 0.57.2

* change default puppet to puppet-service

* 0.57.3

* upgrade deps

* 0.57.4

* fix docker deploy for branches

* 0.57.5

* pass custom server host to io server (#2138)

* pass custom server host to io server

* fix test

* modify code according to comments

* 0.57.6

* support puppet lark (wechaty/puppet-lark#4)

* 0.57.7

* clean

* 0.57.8

* use npm-run-all

* 0.57.9

* specific puppet versions

* 0.57.10

* upgrade upppeteer version

* 0.57.11

Co-authored-by: Huan LI (李卓桓) <zixia@zixia.net>
Co-authored-by: Yuan Gao <wind.memory.cn@gmail.com>
Co-authored-by: 陶鑫 <i@yesxin.com>
Co-authored-by: lijiarui <ruiruibupt@gmail.com>
Co-authored-by: profthecopyright <54515051+profthecopyright@users.noreply.github.com>

* feat: modify friendshipAdd for support add room member be friends

* 0.57.14

* refactor

* fix: bump wechaty-puppet version

* fix: add warn message for using hello params in Friendship.add()

* 0.57.18

* fix: bump wechaty-puppet-service@0.17.0

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>
Co-authored-by: Yuan Gao <wind.memory.cn@gmail.com>
Co-authored-by: 陶鑫 <i@yesxin.com>
Co-authored-by: lijiarui <ruiruibupt@gmail.com>
Co-authored-by: profthecopyright <54515051+profthecopyright@users.noreply.github.com>
huan added a commit that referenced this issue Mar 19, 2021
* 0.29.3

* Merge master (#18)

* update puppeteer puppet

* 0.31.18

* upgrade to wechaty-puppet@0.20

* 0.31.19

* upgrade puppet configs

* 0.31.20

* dep upgrade & clean (#1917)

* 0.31.21

* upgrade eslint-config (#1917)

* 0.31.22

* use green version of powered by wechaty badge

* 0.31.23

* use NODE_AUTH_TOKEN instead of NPM_TOKEN

* 0.31.24

* use bright green for badge

* 0.31.25

* restore pkg-jq

* 0.31.26

* Upgrade docker base image & node.js (#1920)

* 0.32.1

* fix scan status for padplus (wechaty/wechaty-puppet-padplus#161)

* 0.32.2

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>

* merge master (#20)

* 0.45.3

* 0.45.4

* upgrade puppet to use async-map-like memory-card

* upgrade puppet

* 0.45.5

* build onbuild docker image

* 0.45.6

* test for onbuild home dir

* 0.45.7

* deploy wechaty/onbuld

* fix test for both wechaty & /bot

* 0.45.8

* publish to wechaty/wechatyh

* 0.45.9

* build with onbuld

* 0.45.10

* rename zixia/wechaty -> wechaty/wechaty

* 0.45.11

* fix typo

* 0.45.12

* fix onbuild npm run

* 0.45.13

* update official example

* Update README.md

* fix asscessory tests, and protect user class constructor from public to private

* Increase MaxListener for Wechaty

* 0.45.14

* add plugin uninstaller logic

* 0.45.15

* fix race condition for plugin uninstallation

* 0.45.16

* template clean

* 0.45.17

* upgrade puppet

* 0.46.0

* 0.46.1

* add new puppet for official account

* 0.46.2

* Wechaty is a Conversational SDK for Chatbot Makers

* fix bio

* 0.46.3

* clean log message

* 0.46.4

* upgrade hostie

* 0.45.6

* 0.46.5

* 0.47.0

* 0.47.1

* support onbuild:version

* 0.47.2

* use artifact image name

* 0.47.3

* clean version & tag

* 0.47.4

* 0.47.5

* fix hostie start bug

* 0.47.6

* clean

* 0.46.5

* 0.47.7

* add svg logos

* use wechaty.js.org host

* 0.47.7

* 0.47.8

* update

* 0.47.9

* use docker for changelog

* 0.47.10

* update changelog

* 0.47.11

* use wechaty.js.org/qrcode/ to replace wechaty.github.io/qrcode/

* 0.47.12

* Update README.md

* feat: add scoped wxwork puppet into puppet config (#2043)

* add scoped wxwork puppet into puppet config

* skip install scoped puppet

* 0.47.13

* add phone method in contact class (#2039)

* add phone method in contact class

* 0.47.13

* 0.47.14

* update wechaty-puppet version

* add jsdoc for contact.phone

* use puppet.dirtyPayload (wechaty/puppet-service#43)

* 0.47.15

* fix dirty exception

* 0.47.16

* TODO: implement the dirty logic (wechaty/puppet-service#43)

* 0.47.17

* TODO: implement the dirty logic (wechaty/puppet-service#43)

* 0.47.18

* implement the dirty logic (wechaty/puppet-service#43)

* 0.47.19

* clean

* 0.47.20

* remove deprecated methods (#2049)

* 0.47.21

* Upgrade to TypeScript 4.0!

* 0.47.22

* feat: add more methods into contact class (#2048)

* add more methods into contact class

* fix code with new wechaty-puppet

* 0.47.21

* 0.47.23

* throw a nice error message when we call user module before start wechaty

* 0.47.24

* 0.48.0 (#2050)

* bump hostie version to be the stable one (#2051)

* bump hostie version to be the stable one

* 0.48.1

* link images to wechaty.js.org

* update links

* 0.48.2

* update jsdocs

* 0.48.3

* add gitter puppet

* 0.48.4

* fix typo

* 0.48.5

* add location user module

* 0.47.25

* 0.48.6

* clean

* 0.48.7

* add telegram channel for wechaty

* 0.48.8

* add bibtex cite code

* 0.48.9

* add star history badge

* 0.48.10

* Split to trunks when making requests of room.findAll() and room.ready() (#2067)

* add pagination on room.findAll() and room.ready()

* 0.48.11

* fix #2073 (#2074)

* fix #2073

* 0.48.12

* 0.48.13

* Bump minor 49 (#2078)

* 0.49.0

* update hostie version to take advantage of the new stream grpc methods

* fix io client qrcode by encodeURIComponent

* 0.48.11

* upgrade deps

* 0.49.1

* upgrade puppet to v0.33

* 0.49.2

* 0.49.3

* 0.49.4

* fix typos

* 0.49.5

* clean

* Update README.md

* add credit link

* fix typo

* upgrade json-rpc-peer to v0.17

* 0.49.7

* 0.49.8

* Update Dockerfile (#2079)

按照 #1986 的方法用docker创建Hostie Token时,docker端报错。加入libxtst6库后可以完美运行。

* 0.50.0

* 0.50.1

* clean scan payload after login

* 0.50.2

* enable io sync message botie support

* 0.50.3

* use source for botie payload

* 0.50.4

* add whatsapp to official puppet names (wechaty/puppet-whatsapp#1)

* 0.50.5

* use a helper function for better FileBox instance check (wechaty/puppet-service#99)

* 0.50.6

* loost Puppet instance type checking (#2024)

* 0.50.7

* create looseInstanceOfClass (#2090) (#2091)

* create looseInstanceOfClass (#2090)

* 0.50.8

* 0.51.0

* 0.51.1

* fix file-box

* fix file-box

* 0.51.2

* rename from -> talker (#2094)

* 0.51.3

* add gitter & deprecate padplus

* strict typing check for typescript v4

* 0.51.4

* Update contact.ts (#2095)

fix: return payload friend

* rename from() to talker() from message

* 0.51.5

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* add wechaty-puppet-padlocal to the puppet config (#2102)

* 0.51.6

* 0.51.7

* remove padplus from smoke testing (#2087)

* 0.51.8

* add url link unit test

* 0.51.9

* add strict check

* clean

* 0.51.10

* Update room-invitation.ts (#2104)

topic() returns a Promise<string> instead of Promise<Contact>. The document is incorrect.

* add puppet event to emitter typing

* 0.51.11

* add puppet to wechaty event names

* Working on RxJS related deps

* 0.53.1

* Rename NODE_AUTH_TOKEN -> NPM_TOKEN

* Use Debian instead of Ubuntu for our Docker (#2114)

* 0.53.2

* Update Node.js v12 -> v14 (#2115)

* 0.53.3

* RPA SDK

* RPA SDK

* use cache to speed up github action

* use cache for node & npm

* 0.53.4

* node v15 not support grpc yet

* 0.53.5

* Update package.json

* Upgrade pkg-jq

* use better cache for gh actions

* 0.53.6

* 0.53.7

* Update README.md (#2118)

change puppet service provider link

* use naive hashFile

* 0.53.8

* fix typo

* 0.53.9

* rename wechaty-puppet-hostie -> wechaty-puppet-service (#2124)

* add deprecate warning message for WECHATY_HOSTIE_PORT (#2122)

* 0.55.1

* 0.56.0

* 0.56.1

* Changelog for v0.56

* compatible with wechaty-puppet-hostie module name (wechaty/puppet-service#118)

* 0.56.2

* use node v12 instead of v14 in docker image for maximum compatibility. (e.g. huggingface/tokenizers#603)

* 0.56.3

* 0.57.0

* default puppet: service (#2127)

* 0.57.1

* upgrade wechaty-puppet to v0.34

* 0.57.2

* change default puppet to puppet-service

* 0.57.3

* upgrade deps

* 0.57.4

* fix docker deploy for branches

* 0.57.5

* pass custom server host to io server (#2138)

* pass custom server host to io server

* fix test

* modify code according to comments

* 0.57.6

* support puppet lark (wechaty/puppet-lark#4)

* 0.57.7

* clean

* 0.57.8

* use npm-run-all

* 0.57.9

* specific puppet versions

* 0.57.10

* upgrade upppeteer version

* 0.57.11

Co-authored-by: Huan LI (李卓桓) <zixia@zixia.net>
Co-authored-by: Yuan Gao <wind.memory.cn@gmail.com>
Co-authored-by: 陶鑫 <i@yesxin.com>
Co-authored-by: lijiarui <ruiruibupt@gmail.com>
Co-authored-by: profthecopyright <54515051+profthecopyright@users.noreply.github.com>

* feat: modify friendshipAdd for support add room member be friends

* 0.57.14

* refactor

* fix: bump wechaty-puppet version

* fix: add warn message for using hello params in Friendship.add()

* 0.57.18

* fix: bump wechaty-puppet-service@0.17.0

Co-authored-by: Huan (李卓桓) <zixia@zixia.net>
Co-authored-by: Yuan Gao <wind.memory.cn@gmail.com>
Co-authored-by: 陶鑫 <i@yesxin.com>
Co-authored-by: lijiarui <ruiruibupt@gmail.com>
Co-authored-by: profthecopyright <54515051+profthecopyright@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants