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

docs: update go.mdx changelog to v1.3.6 #60

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/changelog/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ Server-side SDKs are designed for multi-user systems and intended for use in tru

<div className="row" style={{maxWidth: '500px'}}>

<div className="col--3 text--center">
<a href="/changelog/server-side/go" className="brand-link">
<i className="golang-icon brand-icon"></i>
<span>Go</span>
</a>
</div>

<div className="col--3 text--center">
<a href="/changelog/server-side/node-js" className="brand-link">
<i className="nodejs-icon brand-icon"></i>
Expand All @@ -79,6 +86,3 @@ Server-side SDKs are designed for multi-user systems and intended for use in tru
</div>

</div>



48 changes: 48 additions & 0 deletions docs/changelog/server-side/go.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: Go
slug: /changelog/server-side/go
toc_max_heading_level: 2
---

<style>
{`
h2:not(:first-of-type) {
border-top: 2px solid #ddd7e9;
padding-top: 40px;
}
`}
</style>


## [1.3.6](https://github.com/bucketeer-io/go-server-sdk/compare/v1.3.5...v1.3.6) (2024/02/28)


### Miscellaneous

* update repository path ([#110](https://github.com/bucketeer-io/go-server-sdk/issues/110)) ([cae2883](https://github.com/bucketeer-io/go-server-sdk/commit/cae2883aeeee7a0e1f8f8bcf892371faa3e5a3e0))


### Build System

* update to go 1.20 and its dependencies ([#111](https://github.com/bucketeer-io/go-server-sdk/issues/111)) ([bf0af68](https://github.com/bucketeer-io/go-server-sdk/commit/bf0af681fb8d5ae7494ee25c2a6e41ff285231ca))

## [1.3.5](https://github.com/bucketeer-io/go-server-sdk/compare/v1.3.4...v1.3.5) (2023/06/23)


### Bug Fixes

* sdk version not being updated ([#99](https://github.com/bucketeer-io/go-server-sdk/issues/99)) ([9ee80fb](https://github.com/bucketeer-io/go-server-sdk/commit/9ee80fb6f65388b0a5454e400e80d12682064155))
* size metric event is reporting size incorrectly ([#102](https://github.com/bucketeer-io/go-server-sdk/issues/102)) ([61a9e39](https://github.com/bucketeer-io/go-server-sdk/commit/61a9e398d739a76e209985768382dbeeaf79ef5c))


### Miscellaneous

* support LatencySecond field ([#101](https://github.com/bucketeer-io/go-server-sdk/issues/101)) ([c38e0bb](https://github.com/bucketeer-io/go-server-sdk/commit/c38e0bb368759e00809c36ef32dc6a4f17e44b87))

## [1.3.4](https://github.com/bucketeer-io/go-server-sdk/compare/v1.3.3...v1.3.4) (2023/02/15)


### Miscellaneous

* request to grpc server ([#96](https://github.com/bucketeer-io/go-server-sdk/issues/96)) ([500a8b0](https://github.com/bucketeer-io/go-server-sdk/commit/500a8b0df74dfc08a339c25f3fb6733b977b0a23))
* support new metrics events ([#98](https://github.com/bucketeer-io/go-server-sdk/issues/98)) ([cc775c0](https://github.com/bucketeer-io/go-server-sdk/commit/cc775c0ee23d611e9f1ccd5b8a12591ae159a987))
2 changes: 1 addition & 1 deletion hack/update-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ echo "CHANGELOG_URL = $CHANGELOG_URL"
echo "PWD = $PWD"

# Download the CHANGELOG.md
curl -o $CHANGELOG_TEMP_FILE $CHANGELOG_URL
curl -f -o $CHANGELOG_TEMP_FILE $CHANGELOG_URL

# Remove the first line (The H1 # CHANGELOG)
sed -i'' -e '1d' $CHANGELOG_TEMP_FILE
Expand Down
12 changes: 9 additions & 3 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const sidebars = {
label: 'Audit Logs',
className: 'sidebar-audit-logs',
},

{
type: 'html',
value: "<span class='sidebar-title'>Experimentation</span>",
Expand Down Expand Up @@ -206,13 +206,13 @@ const sidebars = {
type: 'doc',
id: 'integration/index',
},
className: 'sidebar-overview',
className: 'sidebar-overview',
items: [
'integration/pushes',
'integration/notifications',
],
},


{
type: 'html',
Expand Down Expand Up @@ -314,6 +314,12 @@ const sidebars = {
value: "<span class='sidebar-title'>Server</span>",
defaultStyle: true,
},
{
type: 'doc',
id: 'changelog/server-side/go',
label: 'Go',
className: 'sidebar-go',
},
{
type: 'doc',
id: 'changelog/server-side/node-js',
Expand Down
9 changes: 9 additions & 0 deletions src/css/custom.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading