openimsdk / chat

A business server that includes user registration and login, deployed together with Open-IM-Server, can be used to set up a chat product.
https://openim.io
GNU General Public License v3.0
81 stars 101 forks source link

feat(deps): bump the gomod-deps group with 11 updates #473

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the gomod-deps group with 11 updates:

Package From To
google.golang.org/grpc 1.62.0 1.62.1
google.golang.org/protobuf 1.32.0 1.33.0
gorm.io/driver/mysql 1.5.1 1.5.5
gorm.io/gorm 1.25.4 1.25.7
github.com/alibabacloud-go/tea 1.2.1 1.2.2
github.com/go-sql-driver/mysql 1.7.1 1.8.0
github.com/OpenIMSDK/protocol 0.0.21 0.0.56
github.com/OpenIMSDK/tools 0.0.37 0.0.45
github.com/livekit/protocol 1.10.1 1.11.0
github.com/xuri/excelize/v2 2.8.0 2.8.1
go.mongodb.org/mongo-driver 1.12.0 1.14.0

Updates google.golang.org/grpc from 1.62.0 to 1.62.1

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.62.1

Bug Fixes

  • xds: fix a bug that results in no matching virtual host found RPC errors due to a difference between the target and LDS resource names (#6997)
  • server: fixed stats handler data InPayload.Length for unary RPC calls (#6766)
  • grpc: the experimental RecvBufferPool DialOption and ServerOption are now active during unary RPCs with compression (#6766)
  • grpc: trim whitespaces in accept-encoding header before determining compressors
Commits


Updates google.golang.org/protobuf from 1.32.0 to 1.33.0

Updates gorm.io/driver/mysql from 1.5.1 to 1.5.5

Commits
  • d848c69 Fix set time field's precision to 0
  • e724f92 only trim paired single-quotes for column.DefaultValue (#143)
  • 739f97b feat: map mysql error 1451 to gorm error (#145)
  • b87f024 fix: migrator for mysql 5.6 (#141)
  • e05761b refactor: distinguish between Unique and UniqueIndex (#123)
  • 7cfeac9 ci: update go testing versions (#140)
  • a6570f0 fix: tidb error log (#136)
  • 2a61ba0 When adding a new column to a table, include a primary key if the field is ei...
  • 386f545 Update README.md (#126)
  • d04acd7 build(deps): bump actions/checkout from 3 to 4 (#133)
  • Additional commits viewable in compare view


Updates gorm.io/gorm from 1.25.4 to 1.25.7

Commits


Updates github.com/alibabacloud-go/tea from 1.2.1 to 1.2.2

Release notes

Sourced from github.com/alibabacloud-go/tea's releases.

Release version v1.2.2

What's Changed

Full Changelog: https://github.com/alibabacloud-go/tea/compare/v1.2.1...v1.2.2

Commits


Updates github.com/go-sql-driver/mysql from 1.7.1 to 1.8.0

Release notes

Sourced from github.com/go-sql-driver/mysql's releases.

v1.8.0

What's Changed

Major changes

  • Use SET NAMES charset COLLATE collation. by @​methane in go-sql-driver/mysql#1437

    • Older go-mysql-driver used collation_id in the handshake packet. But it caused collation mismatch in some situation.
    • If you don't specify charset nor collation, go-mysql-driver sends SET NAMES utf8mb4 for new connection. This uses server's default collation for utf8mb4.
    • If you specify charset, go-mysql-driver sends SET NAMES <charset>. This uses the server's default collation for <charset>.
    • If you specify collation and/or charset, go-mysql-driver sends SET NAMES charset COLLATE collation.
  • PathEscape dbname in DSN. by @​methane in go-sql-driver/mysql#1432

    • This is backward incompatible in rare case. Check your DSN.
  • Drop Go 1.13-17 support by @​methane in go-sql-driver/mysql#1420

    • Use Go 1.18+
  • Parse numbers on text protocol too by @​methane in go-sql-driver/mysql#1452

    • When text protocol is used, go-mysql-driver passed bare []byte to database/sql for avoid unnecessary allocation and conversion.
    • If user specified *any to Scan(), database/sql passed the []byte into the target variabe.
    • This confused users because most user doesn't know when text/binary protocol used.
    • go-mysql-driver 1.8 converts integer/float values into int64/double even in text protocol. This doesn't increase allocation compared to []byte and conversion cost is negilible.
  • New options start using the Functional Option Pattern to avoid increasing technical debt in the Config object. Future version may introduce Functional Option for existing options, but not for now.

Other changes

... (truncated)

Commits


Updates github.com/OpenIMSDK/protocol from 0.0.21 to 0.0.56

Release notes

Sourced from github.com/OpenIMSDK/protocol's releases.

v0.0.56

What's Changed

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.55...v0.0.56

v0.0.55

What's Changed

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.54...v0.0.55

v0.0.54

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.53...v0.0.54

v0.0.53

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.52...v0.0.53

v0.0.52

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.51...v0.0.52

v0.0.51

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.50...v0.0.51

v0.0.50

v0.0.49

What's Changed

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.48...v0.0.49

v0.0.48

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.47...v0.0.48

What's Changed

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.47...v0.0.48

v0.0.47

What's Changed

Full Changelog: https://github.com/openimsdk/protocol/compare/v0.0.46...v0.0.47

... (truncated)

Commits
  • db15b29 Merge pull request #66 from luhaoling/fix/background
  • 1e20678 fix: proto the msgV3.proto
  • dc24a9a fix: fix the SearchMessage.msgType to searchMessage.contentType
  • 09cafc0 Merge pull request #65 from luhaoling/main
  • 148eedd fix: fix the SingleMsgToUserPlatform
  • 6e6742b feat: add GetUserTokenReq token
  • bab90fc feat: add getUserToken rpc and add ex field in MsgInfo
  • 8e26a62 feat: group online status
  • c65feab feat: GetConversationNotReceiveMessageUserIDsReq
  • ddfe05c feat: setUserStatusReq
  • Additional commits viewable in compare view


Updates github.com/OpenIMSDK/tools from 0.0.37 to 0.0.45

Release notes

Sourced from github.com/OpenIMSDK/tools's releases.

v0.0.45

What's Changed

Full Changelog: https://github.com/openimsdk/tools/compare/v0.0.44...v0.0.45

v0.0.44

What's Changed

Full Changelog: https://github.com/openimsdk/tools/compare/v0.0.43...v0.0.44

v0.0.43

What's Changed

Full Changelog: https://github.com/openimsdk/tools/compare/v0.0.42...v0.0.43

v0.0.42

Full Changelog: https://github.com/openimsdk/tools/compare/v0.0.41...v0.0.42

v0.0.41

Full Changelog: https://github.com/openimsdk/tools/compare/v0.0.40...v0.0.41

v0.0.40

Full Changelog: https://github.com/openimsdk/tools/compare/v0.0.39...v0.0.40

v0.0.39

What's Changed

New Contributors

Full Changelog: https://github.com/openimsdk/tools/compare/v0.0.38...v0.0.39

v0.0.38

What's Changed

Full Changelog: https://github.com/openimsdk/tools/compare/v0.0.35...v0.0.38

Commits


Updates github.com/livekit/protocol from 1.10.1 to 1.11.0

Release notes

Sourced from github.com/livekit/protocol's releases.

@​livekit/protocol@​1.11.0

Minor Changes

  • Align package version with manually tagged golang module - #646 (@​lukasIO)

@​livekit/protocol@​1.10.4

Patch Changes

@​livekit/protocol@​1.10.3

Patch Changes

@​livekit/protocol@​1.10.2

Patch Changes

Changelog

Sourced from github.com/livekit/protocol's changelog.

1.11.0

Minor Changes

  • Align package version with manually tagged golang module - #646 (@​lukasIO)

1.10.4

1.10.3

1.10.2

Commits


Updates github.com/xuri/excelize/v2 from 2.8.0 to 2.8.1

Release notes

Sourced from github.com/xuri/excelize/v2's releases.

v2.8.1

We are pleased to announce the release of version 2.8.1. Featured are a handful of new areas of functionality and numerous bug fixes.

A summary of changes is available in the Release Notes. A full list of changes is available in the changelog.

Release Notes

The most notable changes in this release are:

Breaking Change

  • Upgrade requirements Go language version is 1.18 or later, for upgrade of dependency package golang.org/x/net
  • Change the data type for the HeaderFooterOptions structure fields AlignWithMargins and ScaleWithDoc as a pointer, resolve issue #1645
  • Remove unused exported data structure ShapeColor

Notable Features

  • Add new exported function SetCellUint, related issue #1681
  • Add new exported function GetPictureCells for get all picture cells, related issue #1218
  • Add new exported function GetConditionalStyle for get the conditional format style definition, related issue #1690
  • Add new exported function GetHeaderFooter for get the worksheet header and footer
  • Add new exported function AddSlicer for adding table and pivot table slicers
  • Add new exported function GetPivotTables for get pivot tables
  • Add new exported function DeletePivotTable for delete pivot table
  • Add a new Name field in the PivotTableOptions to support specify pivot table name
  • New support 7 formula functions: DBCS, SEARCH, SEARCHB, TEXT, TEXTAFTER, TEXTBEFORE and xlfn.ANCHORARRAY
  • Add export ChartLineType enumeration to specify the chart line type, related issue #1706
  • Add new Border field in the Chart data type to set the chart area border
  • Add new Type field in the ChartLine type to set the line type
  • Add new exported source relationship and namespace NameSpaceSpreadSheetXR10, ContentTypeSlicer, ContentTypeSlicerCache, and SourceRelationshipSlicer
  • Add new exported extended URI ExtURIPivotCacheDefinition
  • Allow dot character in the defined name, table name, or pivot table name
  • Keep all cells value in the table range when deleting table
  • Support format cell value with fraction number format code
  • Support delete image files from the workbook internally when deleting pictures to reduce generated workbook size and resolve potential security issues
  • Support set the height and width for the comment box, related issue #1688
  • Support update conditional formatting, data validations, defined names, drawing objects, formula reference and volatile dependencies on inserting/deleting columns/rows, related issues #1306 and #1615
  • Support 6 new kinds of conditional formatting types: text, blanks, no blanks, errors, no errors and time period
  • Support calculate formula with multiple dash arithmetic symbol
  • Support copy conditional format and data validation on duplicate row, related issue #1729
  • Support unset custom row height if the height value is -1 when using the SetRowHeight function
  • The SetRowHeight function will return an error if given an invalid row height value
  • The AddChart function support set the data labels position for the chart, related issue #1704
  • The AddChart function support set solid color or transparent fill for chart area, plot area, and maker, add a new field Fill in Chart, ChartPlotArea, and ChartMarker data type, related issue #1786
  • The AddChart function support set chart axis font family, size and strike style, related issue #1809
  • Add new field DataLabelPosition in the ChartSeries data type, support to sets the position of the chart series data label
  • Add new field BubbleSize in the Chart data type, support set the bubble size in all data series for the bubble chart or 3D bubble chart
  • Add new exported ChartDataLabelPositionType data type
  • The GetPictureCells and GetPictures function support get embedded cell images created by Kingsoft WPS™ Office, related issue #664
  • The SetConditionalFormat function support set conditional formatting with multiple cell ranges, related issue #1783

... (truncated)

Commits
  • 688808b This closes #1819, formula calculation engine support array formulas
  • 02b84a9 This closes #1820, converted styleFillVariants from slice to func (#1821)
  • ee2ef15 This closes #1815, cell value reading functions inherit the Options settings ...
  • 9cbe3b6 This closes #1807, calculation engine support date and formula type cell (#1810)
  • bba155e This closes #1805, support set chart axis font family, size and strike style ...
  • a258e3d Fix CalcCellValue does not return raw value when enable RawCellValue (#1803)
  • 99e91e1 This closes #1794, add new GetBaseColor function (#1798)
  • 9a68553 This closes #1792, support to update defined names reference when rename work...
  • e4497c4 ref #65, new formula function: DBCS (#1791)
  • 9b07898 This closes #1789, delete VML shape on delete comment (#1790)
  • Additional commits viewable in compare view


Updates go.mongodb.org/mongo-driver from 1.12.0 to 1.14.0

Release notes

Sourced from go.mongodb.org/mongo-driver's releases.

MongoDB Go Driver 1.14.0

The MongoDB Go Driver Team is pleased to release version 1.14.0 of the official Go driver.

Release Notes

This release bumps the minimum Go version from 1.13 to 1.18. It also brings several additional changes and improvements.

Notable Changes

  • In case of a heartbeat timeout, in-progress operations are preemptively canceled.
  • Support connecting with a "mongodb+srv://" URI that contains capital letters in the SRV hostname.

For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.13.2...1.14.0

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

MongoDB Go Driver 1.13.2

The MongoDB Go Driver Team is pleased to release version 1.13.2 of the official Go driver.

Release Notes

This release restores the behavior that an empty map or slice is decoded as nil, and fixes a bug of connecting via UNIX sockets like mongodb://%2Ftmp%2Fmongodb-27017.sock.

This release also stops propagating passwords in error messages.


For a full list of tickets included in this release, please see the links below:

Full Changelog: v1.13.1...1.13.2

Documentation for the Go driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. Questions and inquiries can be asked on the MongoDB Developer Community. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go driver is greatly appreciated!

MongoDB Go Driver 1.13.1

The MongoDB Go Driver Team is pleased to release version 1.13.1 of the official Go driver.

Release Notes

... (truncated)

Commits
  • 1c38449 Update version to v1.14.0
  • 9c6603d GODRIVER-2335 Preemptively cancel in progress operations when SDAM heartbeats...
  • 556e2f2 GODRIVER-3046 Fix FaaS Test Configuration (#1558)
  • 9afea90 GODRIVER-2886 Provide more detailed deprecation notes for BSON codecs. (#1551)
  • 414aa9f GODRIVER-3082 go mod tidy compilecheck package (#1557)
  • 5bd7ffb Bump golang.org/x/crypto from 0.0.0-20220622213112-05595931fe9d to 0.17.0 in ...
  • 0026f0f Bump golang.org/x/crypto from 0.0.0-20220622213112-05595931fe9d to 0.17.0 in ...
  • 2b1c4c7 Bump golang.org/x/crypto from 0.0.0-20220622213112-05595931fe9d to 0.17.0 in ...
  • 6e971fa Bump golang.org/x/crypto from 0.0.0-20220622213112-05595931fe9d to 0.17.0 in ...
  • 63ef4ad Bump golang.org/x/crypto from 0.0.0-20220622213112-05595931fe9d to 0.17.0 in ...
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 6 months ago

Superseded by #475.