Skip to content
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.

Update dependency me.ahoo.cosid:cosid-bom to v1.19.2 #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
me.ahoo.cosid:cosid-bom 1.10.0 -> 1.19.2 age adoption passing confidence

Release Notes

Ahoo-Wang/CosId

v1.19.2

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.19.1...v1.19.2

v1.19.1

What's Changed

New Contributors

Full Changelog: Ahoo-Wang/CosId@v1.19.0...v1.19.1

v1.19.0

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.18.9...v1.19.0

v1.18.9

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.18.8...v1.18.9

v1.18.8

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.18.6...v1.18.8

v1.18.6

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.18.5...v1.18.6

v1.18.5

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.18.3...v1.18.5

v1.18.3

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.18.2...v1.18.3

v1.18.2

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.18.1...v1.18.2

v1.18.1

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.18.0...v1.18.1

v1.18.0

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.17.0...v1.18.0

v1.17.0

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.16.11...v1.17.0

v1.16.11

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.16.10...v1.16.11

v1.16.10

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.16.9...v1.16.10

v1.16.9

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.16.8...v1.16.9

v1.16.8

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.16.6...v1.16.8

v1.16.6

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.16.5...v1.16.6

v1.16.5

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.16.2...v1.16.5

v1.16.2

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.16.0...v1.16.2

v1.16.0

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.15.2...v1.16.0

v1.15.2

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.15.0...v1.15.2

v1.15.0

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.14.9...v1.15.0

v1.14.9

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.14.8...v1.14.9

v1.14.8

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.14.6...v1.14.8

v1.14.6

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.14.5...v1.14.6

v1.14.5

What's Changed

  • Refactor MachineStateStorage AutoConfiguration
  • Remove MachineProperties.StateStorage.enabled
  • Fix some expired documents

Full Changelog: Ahoo-Wang/CosId@v1.14.4...v1.14.5

v1.14.4

What's Changed

  • Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v5.0.10 by @​renovate in https://github.com/Ahoo-Wang/CosId/pull/146
  • Refactor: CosIdIntervalShardingAlgorithm to support more date type:
    • java.time.Instant
    • java.time.LocalDate
    • java.time.OffsetDateTime
    • java.time.ZonedDateTime
    • java.time.LocalDateTime
    • java.time.YearMonth
    • java.sql.Date
    • java.sql.Timestamp
  • Improve code coverage: Test Snowflake Algorithm Modulo Uniformity
  • Split CosIdGenerator machine ID configuration
  • Refactor guardRemote log level to DEBUG
  • fix https://github.com/Ahoo-Wang/CosId/issues/133

Full Changelog: Ahoo-Wang/CosId@v1.14.3...v1.14.4

v1.14.3

What's Changed

  • Refactor log readability
  • Refactor RadixCosIdStateParser

Full Changelog: Ahoo-Wang/CosId@v1.14.2...v1.14.3

v1.14.2

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.14.1...v1.14.2

v1.14.1

What's Changed

  • add Radix36CosIdGenerator to support case-insensitive storage.
  • fix #​135

Radix62CosIdGenerator

        //0TEXPEbg0001001
        String id = radix62CosIdGenerator.generateAsString(); 
        //CosIdState{timestamp=1660526325024, machineId=1, sequence=1}
        CosIdState cosIdState = radix62CosIdGenerator.getStateParser().asState(id);

Radix36CosIdGenerator

        //0L6U2PAD600010001
        String id = radix36CosIdGenerator.generateAsString(); 
        //CosIdState{timestamp=1660526664378, machineId=1, sequence=1}
        CosIdState cosIdState = radix36CosIdGenerator.getStateParser().asState(id);

Full Changelog: Ahoo-Wang/CosId@v1.14.0...v1.14.1

v1.14.0

What's Changed

  • New distributed ID algorithm: CosIdGenerator by @​Ahoo-Wang in https://github.com/Ahoo-Wang/CosId/pull/136
    • Global trend increasing.
    • Local monotonically increasing.
    • High performance: 15,570,085 ops/s (generateAsString), three times that of UUID.randomUUID().
    • Reverse parsing ID State (timestamp,machineId,sequence)
    • Easy to expand.
    • Small footprint: 15 Chars.

CosIdGenerator

  • Refactor : Add sequenceResetThreshold to optimize the problem of uneven sharding of snowflake algorithm in the case of low system throughput.

Full Changelog: Ahoo-Wang/CosId@v1.13.1...v1.14.0

v1.13.1

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.13.0...v1.13.1

v1.13.0

What's Changed

Backward Incompatible Changes

cosid:
  namespace: ${spring.application.name}
  machine:
    enabled: true
    distributor:
      type: redis
  snowflake:
    enabled: true

Full Changelog: Ahoo-Wang/CosId@v1.12.1...v1.13.0

v1.12.1

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.12.0...v1.12.1

v1.12.0

What's Changed

  • Upgrade to Spring-Boot 2.6.8
  • Upgrade to Spring-Cloud 2021.0.2

Full Changelog: Ahoo-Wang/CosId@v1.11.0...v1.12.0

v1.11.0

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.10.4...v1.11.0

v1.10.4

What's Changed

  • enhance: add SuffixIdConverter .
  • enhance: support config IdConverterDefinition#suffix .
  • refactor: remove unnecessary dependencies .
  • refactor: enhance code robustness for cosid-proxy .

Full Changelog: Ahoo-Wang/CosId@v1.10.3...v1.10.4

v1.10.3

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.10.2...v1.10.3

v1.10.2

What's Changed

Full Changelog: Ahoo-Wang/CosId@v1.10.0...v1.10.2


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants