Skip to content

Commit 479c745

Browse files
authored
Merge pull request #190 from nacos-group/dev
v1.3.2 release
2 parents 30b864a + 4e4d509 commit 479c745

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
:hidden:
4141
:caption: Release Note
4242

43-
releasenote/v1.2.0
4443
releasenote/v1.2.1
4544
releasenote/v1.2.2
4645
releasenote/v1.3.0
4746
releasenote/v1.3.1
47+
releasenote/v1.3.2
4848

4949
.. toctree::
5050
:maxdepth: 2

docs/releasenote/v1.3.1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v1.3.1 (Jan xth, 2022) 发布记录
1+
v1.3.1 (Jan 20th, 2022) 发布记录
22
=============================================
33

44
1. [NAMING] Fix ServiceListRequest pageSize error

docs/releasenote/v1.3.2.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
v1.3.2 (Mar 15th, 2022) 发布记录
2+
=============================================
3+
4+
1. [NAMING] Fix QueryInstancesOfService error cluster param (#180 #181)
5+
#. [NAMING] Fix Empty namespace issue (#187 #189)
6+
7+
------------
8+
9+
1. [NAMING] 修复 QueryInstancesOfService 请求参数错误 (#180 #181)
10+
#. [NAMING] 修复空命名空间默认值问题 (#187 #189)

src/Nacos/V2/Common/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
public class Constants
44
{
5-
public static string CLIENT_VERSION = "Nacos-CSharp-Client:v1.3.1";
5+
public static string CLIENT_VERSION = "Nacos-CSharp-Client:v1.3.2";
66

77
public const string ClientName = "NacosClient";
88

src/Nacos/V2/Naming/NacosNamingService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public NacosNamingService(
3737
{
3838
_logger = loggerFactory.CreateLogger<NacosNamingService>();
3939
_options = optionAccs.Value;
40-
_namespace = _options.Namespace;
40+
_namespace = string.IsNullOrWhiteSpace(_options.Namespace) ? Utils.UtilAndComs.DEFAULT_NAMESPACE_ID : _options.Namespace;
4141
this._changeNotifier = new InstancesChangeNotifier();
4242
this._serviceInfoHolder = new ServiceInfoHolder(_logger, _namespace, _options, _changeNotifier);
4343
this._clientProxy = new NamingClientProxyDelegate(_logger, _namespace, _serviceInfoHolder, _options, _changeNotifier, clientFactory);

0 commit comments

Comments
 (0)