Skip to content

Commit 01adbc5

Browse files
authored
Merge pull request #7159 from saurabhraghuvanshii/test
fix: Now Build is working
2 parents 97c0c4a + 06bd1a0 commit 01adbc5

File tree

91 files changed

+60
-2009
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+60
-2009
lines changed

gatsby-config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ module.exports = {
1515
flags: {
1616
FAST_DEV: true,
1717
PARALLEL_SOURCING: false, // Disable parallel sourcing to reduce memory pressure
18+
DEV_SSR: false,
1819
},
1920
trailingSlash: "never",
2021
plugins: [
@@ -361,6 +362,8 @@ module.exports = {
361362
name: "collections",
362363
},
363364
},
365+
"gatsby-plugin-sharp",
366+
"gatsby-transformer-sharp",
364367
{
365368
resolve: "gatsby-source-filesystem",
366369
options: {

package-lock.json

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@
7070
"gatsby-plugin-preload-fonts": "^4.11.0",
7171
"gatsby-plugin-purgecss": "^6.2.1",
7272
"gatsby-plugin-robots-txt": "^1.8.0",
73-
"gatsby-plugin-sharp": "^5.11.0",
73+
"gatsby-plugin-sharp": "^5.15.0",
7474
"gatsby-plugin-sitemap": "^6.11.0",
7575
"gatsby-plugin-styled-components": "^6.14.0",
7676
"gatsby-plugin-svgr": "^3.0.0-beta.0",
7777
"gatsby-redirect-from": "1.0.4",
7878
"gatsby-source-filesystem": "^5.14.0",
79-
"gatsby-transformer-sharp": "^5.11.0",
79+
"gatsby-transformer-sharp": "^5.15.0",
8080
"gbimage-bridge": "^0.2.2",
8181
"gray-matter": "^4.0.3",
8282
"gsap": "^3.12.2",

src/collections/blog/2021/2021-04-24-buf-protocols/index.mdx

Lines changed: 36 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: "Adithya Krishna"
66
thumbnail: ./buf-protocol.webp
77
darkthumbnail: ./buf-protocol.webp
88
category: "Cloud Native"
9-
tags:
9+
tags:
1010
- gRPC
1111
published: true
1212
resource: true
@@ -21,21 +21,35 @@ import Problems from "./problems.webp";
2121
<BlogWrapper>
2222
<BufProtocol>
2323

24-
25-
<div className="intro" style="text-align:center;margin: 2rem 4rem;">At Layer5, we are continuously evaluating new technologies and incorporating them into our open source projects. Buf is one of those projects. This post presents an overview of Buf.</div>
26-
24+
<div className="intro" style={{ textAlign: "center", margin: "2rem 4rem" }}>
25+
At Layer5, we are continuously evaluating new technologies and incorporating
26+
them into our open source projects. Buf is one of those projects. This post
27+
presents an overview of Buf.
28+
</div>
2729

2830
## What is Buf?
2931

3032
A tool to make Protobuf reliable and easy to use for service owners and clients, while keeping it the obvious choice on the technical merits.
3133
Our organization should not have to reinvent the wheel to create, maintain, and consume Protobuf APIs efficiently and effectively. It will handle our Protobuf management strategy for us, so we can focus on what matters.
32-
<div className="fact">Learn more about Buf Protocol, visit <a href="https://buf.build" rel="nofollow">Buf Protocol</a> or their documentation at <a href="https://docs.buf.build/" rel="nofollow">Buf Protocol Docs</a></div>
34+
35+
<div className="fact">
36+
Learn more about Buf Protocol, visit
37+
<a href="https://buf.build" rel="nofollow">
38+
{" "}
39+
Buf Protocol{" "}
40+
</a>
41+
or their documentation at
42+
<a href="https://docs.buf.build/" rel="nofollow">
43+
{" "}
44+
Buf Protocol Docs{" "}
45+
</a>
46+
</div>
3347

3448
<img className="problem-image" src={Problems} />
3549

36-
## Features
50+
## Features
3751

38-
- Automatic file discovery.
52+
- Automatic file discovery.
3953
- Selectable configuration - 40 lint checkers and 54 breaking checkers
4054
- Selectable error output - `file:line:col:message`
4155
- Check anything from anywhere - proto files, tar, git, pre-built images or file descriptors.
@@ -52,31 +66,39 @@ Buf attempts to simplify your Protocol Buffers workflow using the Buf CLI and pr
5266
- A configurable file builder that produces Images, our extension of FileDescriptorSets.
5367

5468
## Comparison Between Protobuf and Buf
69+
5570
Layer5 projects currently use protoc as the tool for building their protobuf defintions. The following are some considerations made while determining whether to use Buf.
5671

5772
- Protobuf is not as widely adopted as JSON.
58-
- API Structure
73+
- API Structure
5974
- No standards enforcement
60-
- Inconsistency can arise across an organization's Protobuf APIs,
75+
- Inconsistency can arise across an organization's Protobuf APIs,
6176
- Design decisions can be made that can affect your API's future iterability.
6277
- Backward Compatibility
6378
- Stub distribution
6479
- Tooling
6580

6681
Buf aims to solve the above problems and it's long-term goal is to enable schema-driven development: A future where APIs are defined consistently, in a way that service owners and us can depend on
82+
6783
## Roadmap to Adopting Buf
84+
6885
In consideration of the use of Buf, we would adopt it in phases, starting with the following ares of integration.
6986

70-
- **API Structure Enforcements**
71-
- Linter solves this issue by enforcing standards.
72-
- Also, we don’t need to use Buf as a standalone tool we can just use linter as plugins.
87+
- **API Structure Enforcements**
7388

89+
- Linter solves this issue by enforcing standards.
90+
- Also, we don’t need to use Buf as a standalone tool we can just use linter as plugins.
7491

7592
- **Backward Compatibility**
7693
- It will check for different things that can cause breaking change.
7794
- For example, type change.
7895

79-
<div className="intro">If these topics excite you and you want to explore more <a href="/resources">cloud native technolgies</a>, come and say "Hi" on the community <a href="http://slack.layer5.io">Slack</a> and you are sure to be warmly welcomed. <span>😀</span></div>
96+
<div className="intro">
97+
If these topics excite you and you want to explore more
98+
<a href="/resources"> cloud native technolgies </a>, come and say "Hi" on the community{" "}
99+
<a href="http://slack.layer5.io"> Slack </a> and you are sure to be warmly welcomed.{" "}
100+
<span>😀</span>
101+
</div>
80102

81103
</BufProtocol>
82-
</BlogWrapper>
104+
</BlogWrapper>

src/collections/integrations/appmesh-controller/icons/color/appmesh-controller-color.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/collections/integrations/appmesh-controller/icons/components/backend-group/icons/color/backend-group-color.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/collections/integrations/appmesh-controller/icons/components/backend-group/icons/white/backend-group-white.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)