Skip to content

Commit 9ed770a

Browse files
authored
Add RAT Headers (#1036)
* Add RAT Headers * Add 2.0.0 release notes
1 parent 427393c commit 9ed770a

File tree

10 files changed

+202
-0
lines changed

10 files changed

+202
-0
lines changed

datasource/mongo/sd/indexc_test.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package sd_test
221

322
import (

datasource/mongo/types.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package mongo
221

322
import (

docs/release/Readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#### Release Notes
44

5+
- [Service-Center-2.0.0 Release Notes](releaseNotes-2.0.0.md)
56
- [Service-Center-1.1.0 Release Notes](releaseNotes-1.1.0.md)
67
- [Service-Center-1.0.0 Release Notes](releaseNotes-1.0.0.md)
78
- [Service-Center-1.0.0-m1 Release Notes](releaseNotes-1.0.0-m1.md)

docs/release/releaseNotes-2.0.0.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Release Notes
2+
Release Notes - Apache ServiceComb - Version service-center-2.0.0
3+
4+
5+
<h2> Bug
6+
</h2>
7+
<ul>
8+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-2259'>SCB-2259</a>] - gopool can not reuse worker with certainty
9+
</li>
10+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-2176'>SCB-2176</a>] - SD Cache is not consistency
11+
</li>
12+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-1720'>SCB-1720</a>] - Service-center consumes huge CPU when it is disconnected from etcd
13+
</li>
14+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-1069'>SCB-1069</a>] - Wrong response of batch delete microservices API
15+
</li>
16+
</ul>
17+
18+
19+
<h2> New Feature
20+
</h2>
21+
<ul>
22+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-2133'>SCB-2133</a>] - governance northbound Interface / abstract access layer
23+
</li>
24+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-2094'>SCB-2094</a>] - New datasource architecture
25+
</li>
26+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-2093'>SCB-2093</a>] - Supplement the role module of rbac
27+
</li>
28+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-952'>SCB-952</a>] - Support sync ServiceComb service to Kubernetes
29+
</li>
30+
</ul>
31+
32+
33+
<h2> Improvement
34+
</h2>
35+
<ul>
36+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-624'>SCB-624</a>] - Abstract service layer between api and cache
37+
</li>
38+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-489'>SCB-489</a>] - Suggest to add Service Center user guide and development guide to the ServiceComb official website
39+
</li>
40+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-438'>SCB-438</a>] - As SC model is changing, we should keep SC proto spec in isolated project, so that go sdk can import same model as SC does
41+
</li>
42+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-2022'>SCB-2022</a>] - Migrate service-center documents to sphinx
43+
</li>
44+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-1712'>SCB-1712</a>] - Reset the etcd cache periodically
45+
</li>
46+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-1545'>SCB-1545</a>] - add support env config for logfilepath and logfile level
47+
</li>
48+
<li>[<a href='https://issues.apache.org/jira/browse/SCB-1042'>SCB-1042</a>] - Support upload SC schemas
49+
</li>
50+
</ul>
51+

server/connection/hbws/websocket_test.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package hbws_test
221

322
import (

server/resource/v4/role_resource_test.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package v4_test
221

322
import (

server/service/rbac/role_dao_test.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package rbac_test
221

322
import (

server/service/validator/rbac_validator.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package validator
221

322
import "github.com/go-chassis/cari/rbac"

syncer/plugins/servicecenter/transform_test.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package servicecenter
221

322
import (

test/benchmark/login.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
118
ab -n 10000 -c 10 -p login.json "http://127.0.0.1:30100/v4/token"

0 commit comments

Comments
 (0)