Skip to content

Commit e26aa7b

Browse files
committed
fix #1656 (git reorg)
1 parent abd625c commit e26aa7b

File tree

6 files changed

+28
-28
lines changed

6 files changed

+28
-28
lines changed

Dapper/SqlMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
License: http://www.apache.org/licenses/LICENSE-2.0
3-
Home page: https://github.com/StackExchange/dapper-dot-net
3+
Home page: https://github.com/DapperLib/Dapper-dot-net
44
*/
55

66
using System;

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<AssemblyOriginatorKeyFile>../Dapper.snk</AssemblyOriginatorKeyFile>
88

99
<PackageId>$(AssemblyName)</PackageId>
10-
<PackageReleaseNotes>https://stackexchange.github.io/Dapper/</PackageReleaseNotes>
11-
<PackageProjectUrl>https://github.com/StackExchange/Dapper</PackageProjectUrl>
10+
<PackageReleaseNotes>https://dapperlib.github.io/Dapper/</PackageReleaseNotes>
11+
<PackageProjectUrl>https://github.com/DapperLib/Dapper</PackageProjectUrl>
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1313
<RepositoryType>git</RepositoryType>
14-
<RepositoryUrl>https://github.com/StackExchange/Dapper</RepositoryUrl>
14+
<RepositoryUrl>https://github.com/DapperLib/Dapper</RepositoryUrl>
1515
<Deterministic>false</Deterministic>
1616
<NoWarn>$(NOWARN);IDE0056;IDE0057;IDE0079</NoWarn>
1717
<DebugSymbols>true</DebugSymbols>

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Dapper - a simple object mapper for .Net
44

55
Release Notes
66
-------------
7-
Located at [stackexchange.github.io/Dapper](https://stackexchange.github.io/Dapper/)
7+
Located at [dapperlib.github.io/Dapper](https://dapperlib.github.io/Dapper/)
88

99
Packages
1010
--------
@@ -114,7 +114,7 @@ Performance
114114

115115
A key feature of Dapper is performance. The following metrics show how long it takes to execute a `SELECT` statement against a DB (in various config, each labeled) and map the data returned to objects.
116116

117-
The benchmarks can be found in [Dapper.Tests.Performance](https://github.com/StackExchange/Dapper/tree/main/benchmarks/Dapper.Tests.Performance) (contributions welcome!) and can be run via:
117+
The benchmarks can be found in [Dapper.Tests.Performance](https://github.com/DapperLib/Dapper/tree/main/benchmarks/Dapper.Tests.Performance) (contributions welcome!) and can be run via:
118118
```bash
119119
dotnet run -p .\benchmarks\Dapper.Tests.Performance\ -c Release -f netcoreapp3.1 -- -f * --join
120120
```
@@ -389,7 +389,7 @@ Dapper has no DB specific implementation details, it works across all .NET ADO p
389389
390390
Do you have a comprehensive list of examples?
391391
---------------------
392-
Dapper has a comprehensive test suite in the [test project](https://github.com/StackExchange/Dapper/tree/main/tests/Dapper.Tests).
392+
Dapper has a comprehensive test suite in the [test project](https://github.com/DapperLib/Dapper/tree/main/tests/Dapper.Tests).
393393
394394
Who is using this?
395395
---------------------

benchmarks/Dapper.Tests.Performance/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static void Main(string[] args)
1616
#endif
1717
WriteLine("Welcome to Dapper's ORM performance benchmark suite, based on BenchmarkDotNet.");
1818
Write(" If you find a problem, please report it at: ");
19-
WriteLineColor("https://github.com/StackExchange/Dapper", ConsoleColor.Blue);
19+
WriteLineColor("https://github.com/DapperLib/Dapper", ConsoleColor.Blue);
2020
WriteLine(" Or if you're up to it, please submit a pull request! We welcome new additions.");
2121
WriteLine();
2222

docs/index.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Overview
44

5-
A brief guide is available [on github](https://github.com/StackExchange/Dapper/blob/main/Readme.md)
5+
A brief guide is available [on github](https://github.com/DapperLib/Dapper/blob/main/Readme.md)
66

77
Questions on Stack Overflow should be tagged [`dapper`](https://stackoverflow.com/questions/tagged/dapper)
88

@@ -67,14 +67,14 @@ Other changes merged:
6767

6868
### 1.60.1
6969

70-
- Fix [#1196](https://github.com/StackExchange/Dapper/issues/1196) - versioning fix only ([#1198](https://github.com/StackExchange/Dapper/pull/1198)) - assembly version is now locked at 1.60.0 to resolve some mismatch issues with .NET Core assembly loading/binding.
70+
- Fix [#1196](https://github.com/DapperLib/Dapper/issues/1196) - versioning fix only ([#1198](https://github.com/DapperLib/Dapper/pull/1198)) - assembly version is now locked at 1.60.0 to resolve some mismatch issues with .NET Core assembly loading/binding.
7171

7272
### 1.50.7
7373

74-
- Fix [#1190](https://github.com/StackExchange/Dapper/issues/1190) - incorrect unmanaged pointer when processing parameters that are a boxed struct (rare error relating to GC)
75-
- Fix [#1111](https://github.com/StackExchange/Dapper/issues/1111) - make `SqlMapper.Parse` consistent with `QueryImpl`
74+
- Fix [#1190](https://github.com/DapperLib/Dapper/issues/1190) - incorrect unmanaged pointer when processing parameters that are a boxed struct (rare error relating to GC)
75+
- Fix [#1111](https://github.com/DapperLib/Dapper/issues/1111) - make `SqlMapper.Parse` consistent with `QueryImpl`
7676
- Fix #111- - improve error message for invalid literal types
77-
- Fix [#1149](https://github.com/StackExchange/Dapper/pull/1149) - improve error messages in "contrib"
77+
- Fix [#1149](https://github.com/DapperLib/Dapper/pull/1149) - improve error messages in "contrib"
7878
- Improved detection of empty table-valued-parameters
7979

8080
### 1.50.5
@@ -91,7 +91,7 @@ Other changes merged:
9191

9292
### 1.50.2
9393

94-
- Fix issue [#569](https://github.com/StackExchange/Dapper/issues/569) (`in` expansions using ODBC pseudo-positional arguments)
94+
- Fix issue [#569](https://github.com/DapperLib/Dapper/issues/569) (`in` expansions using ODBC pseudo-positional arguments)
9595

9696
### 1.50.1
9797

@@ -108,7 +108,7 @@ Other changes merged:
108108
### 1.50.0-rc2b
109109

110110
- New `InListStringSplitCount` global setting; if set (non-negative), `in @foo` expansions (of at least the specified size) of primitive types (`int`, `tinyint`, `smallint`, `bigint`) are implemented via the SQL Server 2016 (compat level 130) `STRING_SPLIT` function
111-
- Fix for incorrect conversions in `GridReader` ([#254](https://github.com/StackExchange/Dapper/issues/254))
111+
- Fix for incorrect conversions in `GridReader` ([#254](https://github.com/DapperLib/Dapper/issues/254))
112112

113113
### 1.50.0-rc2 / 1.50.0-rc2a
114114

@@ -117,18 +117,18 @@ Other changes merged:
117117
### 1.50-beta9
118118

119119
- Fix for `PadListExpansions` to work correctly with `not in` scenarios; now uses last non-null value instead of `null`; if none available, don't pad
120-
- Fix problems with single-result/single-row not being supported by all providers (basically: sqlite, [#466](https://github.com/StackExchange/Dapper/issues/466))
121-
- Fix problems with enums - nulls ([#467](https://github.com/StackExchange/Dapper/issues/467)) and primitive values ([#468](https://github.com/StackExchange/Dapper/issues/468))
122-
- Add support for C# 6 get-only properties ([#473](https://github.com/StackExchange/Dapper/issues/473))
123-
- Add support for various xml types ([#427](https://github.com/StackExchange/Dapper/issues/427))
120+
- Fix problems with single-result/single-row not being supported by all providers (basically: sqlite, [#466](https://github.com/DapperLib/Dapper/issues/466))
121+
- Fix problems with enums - nulls ([#467](https://github.com/DapperLib/Dapper/issues/467)) and primitive values ([#468](https://github.com/DapperLib/Dapper/issues/468))
122+
- Add support for C# 6 get-only properties ([#473](https://github.com/DapperLib/Dapper/issues/473))
123+
- Add support for various xml types ([#427](https://github.com/DapperLib/Dapper/issues/427))
124124

125125
### 1.50-beta8
126126

127127
- Addition of `GetRowParser<T>` extension method on `IDataReader` API - allows manual construction of discriminated unions, etc
128128
- Addition of `Settings.PadListExpansions` - reduces query-plan saturation by padding list expansions with `null` values (opt-in, because on some DB configurations this could change the meaning) *(note: bad choice of `null` revised in 1.50-beta9)*
129129
- Addition of `Settings.ApplyNullValues` - assigns (rather than ignores) `null` values when possible
130-
- Fix for [#461](https://github.com/StackExchange/Dapper/issues/461) - ensure type-handlers work for constructor-based initialization
131-
- Fix for [#455](https://github.com/StackExchange/Dapper/issues/455) - make the `LookupDbType` method available again
130+
- Fix for [#461](https://github.com/DapperLib/Dapper/issues/461) - ensure type-handlers work for constructor-based initialization
131+
- Fix for [#455](https://github.com/DapperLib/Dapper/issues/455) - make the `LookupDbType` method available again
132132

133133
### 1.50-beta7
134134

@@ -137,7 +137,7 @@ Other changes merged:
137137

138138
### 1.50-beta6
139139

140-
- Fix for issue [#424](https://github.com/StackExchange/Dapper/issues/424) - defensive `SqlDataRecord` handling
140+
- Fix for issue [#424](https://github.com/DapperLib/Dapper/issues/424) - defensive `SqlDataRecord` handling
141141

142142
### 1.50-beta5
143143

@@ -170,7 +170,7 @@ Other changes merged:
170170
- improve error message if an array is used as a parameter in an invalid context
171171
- Add `Type[]` support for `GridReader.Read` scenarios (@NikolayGlynchak)
172172
- Support for custom type-maps in collection parameters (@gjsduarte)
173-
- Fix incorrect cast in `QueryAsync<T>` (@phnx47, [#346](https://github.com/StackExchange/Dapper/issues/346))
173+
- Fix incorrect cast in `QueryAsync<T>` (@phnx47, [#346](https://github.com/DapperLib/Dapper/issues/346))
174174
- Fix incorrect null handling re `UdtTypeName` (@perliedman)
175175
- Support for `SqlDataRecord` (@sqmgh)
176176
- Allow `DbString` default for `IsAnsi` to be specified (@kppullin)
@@ -221,11 +221,11 @@ Other changes merged:
221221

222222
### 1.36
223223

224-
- Fix Issue [#192](https://github.com/StackExchange/Dapper/issues/192) (expanded parameter naming glitch) and Issue [#178](https://github.com/StackExchange/Dapper/issues/178) (execute reader now wraps the command/reader pair, to extend the command lifetime; note that the underlying command/reader are available by casting to `IWrappedDataReader`)
224+
- Fix Issue [#192](https://github.com/DapperLib/Dapper/issues/192) (expanded parameter naming glitch) and Issue [#178](https://github.com/DapperLib/Dapper/issues/178) (execute reader now wraps the command/reader pair, to extend the command lifetime; note that the underlying command/reader are available by casting to `IWrappedDataReader`)
225225

226226
### 1.35
227227

228-
- Fix Issue [#151](https://github.com/StackExchange/Dapper/issues/151) (Execute should work with `ExpandoObject` etc); Fix Issue #182 (better support for db-type when using `object` values);
228+
- Fix Issue [#151](https://github.com/DapperLib/Dapper/issues/151) (Execute should work with `ExpandoObject` etc); Fix Issue #182 (better support for db-type when using `object` values);
229229
- Output expressions / callbacks in dynamic args (via Derek); arbitrary number of types in multi-mapping (via James Holwell);
230230
- Fix `DbString`/Oracle bug (via Mauro Cerutti); new support for **named positional arguments**
231231

tests/Dapper.Tests/Providers/MySQLTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public void DapperEnumValue_Mysql()
3838
}
3939
}
4040

41-
[FactMySql(Skip = "See https://github.com/StackExchange/Dapper/issues/552, not resolved on the MySQL end.")]
41+
[FactMySql(Skip = "See https://github.com/DapperLib/Dapper/issues/552, not resolved on the MySQL end.")]
4242
public void Issue552_SignedUnsignedBooleans()
4343
{
4444
using (var conn = Provider.GetMySqlConnection(true, false, false))
@@ -96,7 +96,7 @@ public void Issue295_NullableDateTime_MySql_ConvertZeroDatetime()
9696
}
9797
}
9898

99-
[FactMySql(Skip = "See https://github.com/StackExchange/Dapper/issues/295, AllowZeroDateTime=True is not supported")]
99+
[FactMySql(Skip = "See https://github.com/DapperLib/Dapper/issues/295, AllowZeroDateTime=True is not supported")]
100100
public void Issue295_NullableDateTime_MySql_AllowZeroDatetime()
101101
{
102102
using (var conn = Provider.GetMySqlConnection(true, false, true))
@@ -105,7 +105,7 @@ public void Issue295_NullableDateTime_MySql_AllowZeroDatetime()
105105
}
106106
}
107107

108-
[FactMySql(Skip = "See https://github.com/StackExchange/Dapper/issues/295, AllowZeroDateTime=True is not supported")]
108+
[FactMySql(Skip = "See https://github.com/DapperLib/Dapper/issues/295, AllowZeroDateTime=True is not supported")]
109109
public void Issue295_NullableDateTime_MySql_ConvertAllowZeroDatetime()
110110
{
111111
using (var conn = Provider.GetMySqlConnection(true, true, true))

0 commit comments

Comments
 (0)