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

Add license for string processing #476

Merged
merged 2 commits into from
Oct 13, 2023
Merged

Conversation

goccy
Copy link
Owner

@goccy goccy commented Oct 13, 2023

ref #475

@codecov-commenter
Copy link

codecov-commenter commented Oct 13, 2023

Codecov Report

Merging #476 (8f39c90) into master (8e8cdea) will increase coverage by 0.01%.
The diff coverage is 100.00%.

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #476      +/-   ##
==========================================
+ Coverage   76.75%   76.76%   +0.01%     
==========================================
  Files          55       55              
  Lines       18921    18921              
==========================================
+ Hits        14522    14525       +3     
+ Misses       3763     3761       -2     
+ Partials      636      635       -1     

@goccy goccy merged commit 9b91208 into master Oct 13, 2023
14 checks passed
@goccy goccy deleted the add-license-for-segmentio-encoding branch October 13, 2023 03:33
@@ -30,7 +30,7 @@ golangci-lint: | $(BIN_DIR)
GOLANGCI_LINT_TMP_DIR=$$(mktemp -d); \
cd $$GOLANGCI_LINT_TMP_DIR; \
go mod init tmp; \
GOBIN=$(BIN_DIR) go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.48.0; \
GOBIN=$(BIN_DIR) go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.2; \

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@goccy When will this be in a release? There is a divide here between lint in 1.19 and previous and 1.20 and forward.

MrAlias pushed a commit to open-telemetry/opentelemetry-go-contrib that referenced this pull request May 21, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/goccy/go-json](https://togithub.com/goccy/go-json) |
`v0.10.2` -> `v0.10.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoccy%2fgo-json/v0.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoccy%2fgo-json/v0.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoccy%2fgo-json/v0.10.2/v0.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoccy%2fgo-json/v0.10.2/v0.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>goccy/go-json (github.com/goccy/go-json)</summary>

###
[`v0.10.3`](https://togithub.com/goccy/go-json/releases/tag/v0.10.3):
0.10.3

[Compare
Source](https://togithub.com/goccy/go-json/compare/v0.10.2...v0.10.3)

#### What's Changed

- Add license for string processing by
[@&#8203;goccy](https://togithub.com/goccy) in
[goccy/go-json#476
- fix: decode struct with pointer must be nil by
[@&#8203;misyuari](https://togithub.com/misyuari) in
[goccy/go-json#473
- fix: fix a bug for escaping 0xE2 0x80 0xA8 in compactString by
[@&#8203;lizixing](https://togithub.com/lizixing) in
[goccy/go-json#479
- Fix custom map marshaling by
[@&#8203;viewsharp](https://togithub.com/viewsharp) in
[goccy/go-json#505
- Use io package instead of ioutil package by
[@&#8203;shamaton](https://togithub.com/shamaton) in
[goccy/go-json#498

#### New Contributors

- [@&#8203;misyuari](https://togithub.com/misyuari) made their first
contribution in
[goccy/go-json#473
- [@&#8203;lizixing](https://togithub.com/lizixing) made their first
contribution in
[goccy/go-json#479
- [@&#8203;viewsharp](https://togithub.com/viewsharp) made their first
contribution in
[goccy/go-json#505
- [@&#8203;shamaton](https://togithub.com/shamaton) made their first
contribution in
[goccy/go-json#498

**Full Changelog**:
goccy/go-json@v0.10.2...v0.10.3

</details>

---

### 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-telemetry/opentelemetry-go-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIlNraXAgQ2hhbmdlbG9nIiwiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
khushijain21 pushed a commit to khushijain21/opentelemetry-go-contrib that referenced this pull request May 22, 2024
…telemetry#5623)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/goccy/go-json](https://togithub.com/goccy/go-json) |
`v0.10.2` -> `v0.10.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoccy%2fgo-json/v0.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoccy%2fgo-json/v0.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoccy%2fgo-json/v0.10.2/v0.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoccy%2fgo-json/v0.10.2/v0.10.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>goccy/go-json (github.com/goccy/go-json)</summary>

###
[`v0.10.3`](https://togithub.com/goccy/go-json/releases/tag/v0.10.3):
0.10.3

[Compare
Source](https://togithub.com/goccy/go-json/compare/v0.10.2...v0.10.3)

#### What's Changed

- Add license for string processing by
[@&#8203;goccy](https://togithub.com/goccy) in
[goccy/go-json#476
- fix: decode struct with pointer must be nil by
[@&#8203;misyuari](https://togithub.com/misyuari) in
[goccy/go-json#473
- fix: fix a bug for escaping 0xE2 0x80 0xA8 in compactString by
[@&#8203;lizixing](https://togithub.com/lizixing) in
[goccy/go-json#479
- Fix custom map marshaling by
[@&#8203;viewsharp](https://togithub.com/viewsharp) in
[goccy/go-json#505
- Use io package instead of ioutil package by
[@&#8203;shamaton](https://togithub.com/shamaton) in
[goccy/go-json#498

#### New Contributors

- [@&#8203;misyuari](https://togithub.com/misyuari) made their first
contribution in
[goccy/go-json#473
- [@&#8203;lizixing](https://togithub.com/lizixing) made their first
contribution in
[goccy/go-json#479
- [@&#8203;viewsharp](https://togithub.com/viewsharp) made their first
contribution in
[goccy/go-json#505
- [@&#8203;shamaton](https://togithub.com/shamaton) made their first
contribution in
[goccy/go-json#498

**Full Changelog**:
goccy/go-json@v0.10.2...v0.10.3

</details>

---

### 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-telemetry/opentelemetry-go-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIlNraXAgQ2hhbmdlbG9nIiwiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to cloudquery/filetypes that referenced this pull request Jun 1, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/goccy/go-json](https://togithub.com/goccy/go-json) | require | patch | `v0.10.2` -> `v0.10.3` |

---

### Release Notes

<details>
<summary>goccy/go-json (github.com/goccy/go-json)</summary>

### [`v0.10.3`](https://togithub.com/goccy/go-json/releases/tag/v0.10.3): 0.10.3

[Compare Source](https://togithub.com/goccy/go-json/compare/v0.10.2...v0.10.3)

#### What's Changed

-   Add license for string processing by [@&#8203;goccy](https://togithub.com/goccy) in [goccy/go-json#476
-   fix: decode struct with pointer must be nil by [@&#8203;misyuari](https://togithub.com/misyuari) in [goccy/go-json#473
-   fix: fix a bug for escaping 0xE2 0x80 0xA8 in compactString by [@&#8203;lizixing](https://togithub.com/lizixing) in [goccy/go-json#479
-   Fix custom map marshaling by [@&#8203;viewsharp](https://togithub.com/viewsharp) in [goccy/go-json#505
-   Use io package instead of ioutil package by [@&#8203;shamaton](https://togithub.com/shamaton) in [goccy/go-json#498

#### New Contributors

-   [@&#8203;misyuari](https://togithub.com/misyuari) made their first contribution in [goccy/go-json#473
-   [@&#8203;lizixing](https://togithub.com/lizixing) made their first contribution in [goccy/go-json#479
-   [@&#8203;viewsharp](https://togithub.com/viewsharp) made their first contribution in [goccy/go-json#505
-   [@&#8203;shamaton](https://togithub.com/shamaton) made their first contribution in [goccy/go-json#498

**Full Changelog**: goccy/go-json@v0.10.2...v0.10.3

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
kodiakhq bot pushed a commit to cloudquery/plugin-sdk that referenced this pull request Jun 1, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/goccy/go-json](https://togithub.com/goccy/go-json) | require | patch | `v0.10.2` -> `v0.10.3` |

---

### Release Notes

<details>
<summary>goccy/go-json (github.com/goccy/go-json)</summary>

### [`v0.10.3`](https://togithub.com/goccy/go-json/releases/tag/v0.10.3): 0.10.3

[Compare Source](https://togithub.com/goccy/go-json/compare/v0.10.2...v0.10.3)

#### What's Changed

-   Add license for string processing by [@&#8203;goccy](https://togithub.com/goccy) in [goccy/go-json#476
-   fix: decode struct with pointer must be nil by [@&#8203;misyuari](https://togithub.com/misyuari) in [goccy/go-json#473
-   fix: fix a bug for escaping 0xE2 0x80 0xA8 in compactString by [@&#8203;lizixing](https://togithub.com/lizixing) in [goccy/go-json#479
-   Fix custom map marshaling by [@&#8203;viewsharp](https://togithub.com/viewsharp) in [goccy/go-json#505
-   Use io package instead of ioutil package by [@&#8203;shamaton](https://togithub.com/shamaton) in [goccy/go-json#498

#### New Contributors

-   [@&#8203;misyuari](https://togithub.com/misyuari) made their first contribution in [goccy/go-json#473
-   [@&#8203;lizixing](https://togithub.com/lizixing) made their first contribution in [goccy/go-json#479
-   [@&#8203;viewsharp](https://togithub.com/viewsharp) made their first contribution in [goccy/go-json#505
-   [@&#8203;shamaton](https://togithub.com/shamaton) made their first contribution in [goccy/go-json#498

**Full Changelog**: goccy/go-json@v0.10.2...v0.10.3

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
kodiakhq bot pushed a commit to cloudquery/cloudquery that referenced this pull request Jun 1, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/goccy/go-json](https://togithub.com/goccy/go-json) | require | patch | `v0.10.2` -> `v0.10.3` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

---

### Release Notes

<details>
<summary>goccy/go-json (github.com/goccy/go-json)</summary>

### [`v0.10.3`](https://togithub.com/goccy/go-json/releases/tag/v0.10.3): 0.10.3

[Compare Source](https://togithub.com/goccy/go-json/compare/v0.10.2...v0.10.3)

##### What's Changed

-   Add license for string processing by [@&#8203;goccy](https://togithub.com/goccy) in [goccy/go-json#476
-   fix: decode struct with pointer must be nil by [@&#8203;misyuari](https://togithub.com/misyuari) in [goccy/go-json#473
-   fix: fix a bug for escaping 0xE2 0x80 0xA8 in compactString by [@&#8203;lizixing](https://togithub.com/lizixing) in [goccy/go-json#479
-   Fix custom map marshaling by [@&#8203;viewsharp](https://togithub.com/viewsharp) in [goccy/go-json#505
-   Use io package instead of ioutil package by [@&#8203;shamaton](https://togithub.com/shamaton) in [goccy/go-json#498

##### New Contributors

-   [@&#8203;misyuari](https://togithub.com/misyuari) made their first contribution in [goccy/go-json#473
-   [@&#8203;lizixing](https://togithub.com/lizixing) made their first contribution in [goccy/go-json#479
-   [@&#8203;viewsharp](https://togithub.com/viewsharp) made their first contribution in [goccy/go-json#505
-   [@&#8203;shamaton](https://togithub.com/shamaton) made their first contribution in [goccy/go-json#498

**Full Changelog**: goccy/go-json@v0.10.2...v0.10.3

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), 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 [Renovate Bot](https://togithub.com/renovatebot/renovate).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants